Removed old contents; created new site structure, re-added assets.
jump to
@@ -1,13 +0,0 @@
-# ./Gemfile -source 'https://rubygems.org' - -gem "nanoc", "< 4" -gem "extlib" -gem "bb-ruby" -gem "builder" -gem "less" -gem "therubyracer" -gem "coderay" -gem "glyph" -gem "RedCloth" -gem "rdiscount"
@@ -1,40 +0,0 @@
-h2. H3RALD Web Site - -H3RALD.com was created in 2004 by Fabio Cevasco, a technical writer, programmer and IT enthusiast. It features over a hundred "articles":/articles/ covering a wide range of topics, from programming to writing, productivity and even traveling. - -As of version 8, H3RALD.com is a completely static web site, except for a few AJAX calls. All the files are generated automatically thanks to the "nanoc":http://nanoc.stoneship.org/ publishing system, an ingenious creation of "Denis Defreyne":http://www.stoneship.org/. Nanoc can be used to easily create static web sites using Ruby, as explained in "this article":http://www.h3rald.com/articles/take-back-your-site-with-nanoc/. - - -h3. Licensing - -The "articles":/archives/ and all the content published on this web site is licensed under the _Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 Unported License_. For other uses, please contact us. - -<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"><img alt="Creative Commons License" src="http://i.creativecommons.org/l/by-nc-nd/3.0/88x31.png" /></a> - -The source code of this web site, such as its layout, SASS/CSS stylesheets, custom rake tasks and code is licensed under the terms of the <em><a href="http://creativecommons.org/licenses/MIT/">MIT License</a></em> and it is available on "GitHub":http://github.com/h3rald/h3rald. - - -h3. Requirements - -The following ruby libraries (gems) are used to compile this web site: - -* *"nanoc":http://rubygems.org/gems/nanoc*, to generate the entire web site -* *"extlib":http://rubygems.org/gems/extlib*, in some custom Rake tasks -* *"bb-ruby":http://rubygems.org/gems/bb-ruby*, for the BBCode filter -* *"builder":http://rubygems.org/gems/builder/*, to create RSS and ATOM feeds -* *"sass":http://rubygems.org/gems/sass/*, for the SASS filter -* *"coderay":http://rubygems.org/gems/coderay/*, for syntax highlighting -* *"glyph":http://rubygems.org/gems/glyph*, for the Glyph filter - -Additionally, the following gems were necessary to migrate from the previous version of this web site, powered by the Typo blogging engine: -* *"mysql":http://rubyforge.org/projects/mysql/* -* *"sequel":http://rubyforge.org/projects/sequel/* - - -h3. Credits - -Special thanks to the following people, who made this web site possible: - -* "Denis Defreyne":http://www.stoneship.org/, for creating the wonderful "nanoc":http://nanoc.stoneship.org/ site publishing system. -* "David J.Perry":http://scholarsfonts.net/, who designed the "Cardo font":http://scholarsfonts.net/cardofnt.html I used for the H3RALD logo. -* The creators of the free "Crimson Text":http://aldusleaf.org/crimson/ font, used throughout the web site.
@@ -1,6 +0,0 @@
-require 'rubygems' -require 'nanoc3/tasks' -Dir['tasks/**/*.rake'].sort.each { |rakefile| load rakefile} - -task :default => ["site:update"] do -end
@@ -1,172 +0,0 @@
-#!/usr/bin/env ruby - -ignore /^\/hastystyles\/(styles|fonts|images|README)/ - -ignore '/styles/_*' - -compile /^\/(archives|home)\// do - filter :erb - layout 'default' -end - -compile /^\/(projects|about)/ do - filter :erb - filter :redcloth - layout 'default' -end - -compile /(rss|atom)/ do - filter :erb unless rep.binary? # e.g. rss.png image -end - -compile '/styles/_*/' do -end - -compile '/hastystyles/styles/_*/' do -end - -compile '/styles/*' do - if item[:extension] == "less" && item.identifier.match(/style\/$/) then - filter :less - end -end - -compile "sitemap" do - filter :erb -end - -compile /^\/(js\/.+?)/ do - # do nothing -end - -compile '/hastyscribe/HastyScribe_UserGuide/' do - # do nothing -end - -compile '/litestore/LiteStore_UserGuide/' do - # do nothing -end - -compile '/glyph/book/images/*' do - # do nothing -end - -compile '/glyph/book/*' do - layout 'default' -end - -compile '/ruby-compendium/book/images/*' do - # do nothing -end - -compile '/ruby-compendium/book/*' do - layout 'default' -end - -compile '*' do - if item[:filters_pre] && !item[:filters_pre].empty? then - item[:filters_pre].each do |f| - filter f.to_sym - end - layout 'default' - else - unless rep.binary? then - case item[:extension] - when 'textile' then - filter :redcloth - layout 'default' - when 'md','markdown' then - filter :rdiscount - layout 'default' - when 'bbcode' then - filter :bbcode - layout 'default' - when 'glyph' then - glyph_config @item - glyph_article_for @item - if item[:pdf] then - pdf_file = Pathname.new "#{Dir.pwd}/output#{item.identifier.gsub(/\/$/, '')}.pdf" - glyph_pdf_for @item unless pdf_file.exist? - end - Glyph.reset - end - end - end -end - -route /^\/tags\/.+?-(atom|rss)/ do - item.identifier.gsub(/(.+)-(rss|atom)\/$/, '\1/\2') + '.xml' -end - -route '/(atom|rss)/' do - item.identifier.chop + '.xml' -end - -route '/css/*' do - item.identifier.chop + '.css' -end - -route '/styles/*' do - item.identifier.chop + '.css' -end - -route '/hastyscribe/HastyScribe_UserGuide' do - '/hastyscribe/HastyScribe_UserGuide.htm' -end - -route '/litestore/LiteStore_UserGuide' do - '/litestore/LiteStore_UserGuide.htm' -end - -route '/glyph/book/' do - '/glyph/book/index.html' -end - -route '/ruby-compendium/book/' do - '/ruby-compendium/book/index.html' -end - -route '/glyph/book/images/glyph/*' do - item.identifier.chop + ".#{item[:extension]}" -end - -route '/glyph/book/*' do - item.identifier.chop+'.html' -end -route '/ruby-compendium/book/*' do - item.identifier.chop+'.html' -end - -route '/home/' do - "/index.html" -end - -route '/sitemap' do - item.identifier.chop + '.xml' -end - -route "/htaccess" do - "/.htaccess" -end - -route /\/(images|img|files|favicon|robots)\// do - item.identifier.chop + ".#{item[:extension]}" -end - -route '/js/*' do - item.identifier.chop + '.js' -end - -route '/fonts/*' do - item.identifier.chop + ".#{item[:extension]}" -end - -route '/hastystyles/fonts/*' do - item.identifier.chop + ".#{item[:extension]}" -end - -route '*' do - item.identifier + 'index.html' -end - -layout '*', :erb
@@ -0,0 +1,565 @@
+<?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></metadata> +<defs> +<font id="fontawesomeregular" horiz-adv-x="1536" > +<font-face units-per-em="1792" ascent="1536" descent="-256" /> +<missing-glyph horiz-adv-x="448" /> +<glyph unicode=" " horiz-adv-x="448" /> +<glyph unicode="	" horiz-adv-x="448" /> +<glyph unicode=" " horiz-adv-x="448" /> +<glyph unicode="¨" horiz-adv-x="1792" /> +<glyph unicode="©" horiz-adv-x="1792" /> +<glyph unicode="®" horiz-adv-x="1792" /> +<glyph unicode="´" horiz-adv-x="1792" /> +<glyph unicode="Æ" horiz-adv-x="1792" /> +<glyph unicode="Ø" horiz-adv-x="1792" /> +<glyph unicode=" " horiz-adv-x="768" /> +<glyph unicode=" " horiz-adv-x="1537" /> +<glyph unicode=" " horiz-adv-x="768" /> +<glyph unicode=" " horiz-adv-x="1537" /> +<glyph unicode=" " horiz-adv-x="512" /> +<glyph unicode=" " horiz-adv-x="384" /> +<glyph unicode=" " horiz-adv-x="256" /> +<glyph unicode=" " horiz-adv-x="256" /> +<glyph unicode=" " horiz-adv-x="192" /> +<glyph unicode=" " horiz-adv-x="307" /> +<glyph unicode=" " horiz-adv-x="85" /> +<glyph unicode=" " horiz-adv-x="307" /> +<glyph unicode=" " horiz-adv-x="384" /> +<glyph unicode="™" horiz-adv-x="1792" /> +<glyph unicode="∞" horiz-adv-x="1792" /> +<glyph unicode="≠" horiz-adv-x="1792" /> +<glyph unicode="◼" horiz-adv-x="500" d="M0 0z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" /> +<glyph unicode="" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" /> +<glyph unicode="" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" /> +<glyph unicode="" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> +<glyph unicode="" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" /> +<glyph unicode="" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" /> +<glyph unicode="" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " /> +<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" /> +<glyph unicode="" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" /> +<glyph unicode="" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" /> +<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " /> +<glyph unicode="" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" /> +<glyph unicode="" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" /> +<glyph unicode="" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" /> +<glyph unicode="" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" /> +<glyph unicode="" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" /> +<glyph unicode="" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" /> +<glyph unicode="" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" /> +<glyph unicode="" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" /> +<glyph unicode="" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" /> +<glyph unicode="" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" /> +<glyph unicode="" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" /> +<glyph unicode="" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" /> +<glyph unicode="" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" /> +<glyph unicode="" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" /> +<glyph unicode="" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" /> +<glyph unicode="" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" /> +<glyph unicode="" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> +<glyph unicode="" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" /> +<glyph unicode="" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" /> +<glyph unicode="" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" /> +<glyph unicode="" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" /> +<glyph unicode="" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" /> +<glyph unicode="" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" /> +<glyph unicode="" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" /> +<glyph unicode="" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" /> +<glyph unicode="" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" /> +<glyph unicode="" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" /> +<glyph unicode="" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" /> +<glyph unicode="" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" /> +<glyph unicode="" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" /> +<glyph unicode="" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" /> +<glyph unicode="" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" /> +<glyph unicode="" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" /> +<glyph unicode="" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" /> +<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" /> +<glyph unicode="" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" /> +<glyph unicode="" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " /> +<glyph unicode="" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" /> +<glyph unicode="" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> +<glyph unicode="" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" /> +<glyph unicode="" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " /> +<glyph unicode="" horiz-adv-x="1664" d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" /> +<glyph unicode="" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" /> +<glyph unicode="" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" /> +<glyph unicode="" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960z" /> +<glyph unicode="" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" /> +<glyph unicode="" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" /> +<glyph unicode="" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" /> +<glyph unicode="" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" /> +<glyph unicode="" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" /> +<glyph unicode="" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" /> +<glyph unicode="" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" /> +<glyph unicode="" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" /> +<glyph unicode="" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" /> +<glyph unicode="" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" /> +<glyph unicode="" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" /> +<glyph unicode="" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" /> +<glyph unicode="" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" /> +<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" /> +<glyph unicode="" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" /> +<glyph unicode="" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" /> +<glyph unicode="" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" /> +<glyph unicode="" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" /> +<glyph unicode="" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" /> +<glyph unicode="" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" /> +<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" /> +<glyph unicode="" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" /> +<glyph unicode="" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" /> +<glyph unicode="" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " /> +<glyph unicode="" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " /> +<glyph unicode="" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" /> +<glyph unicode="" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" /> +<glyph unicode="" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" /> +<glyph unicode="" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" /> +<glyph unicode="" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" /> +<glyph unicode="" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" /> +<glyph unicode="" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" /> +<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" /> +<glyph unicode="" d="M829 318q0 -76 -58.5 -112.5t-139.5 -36.5q-41 0 -80.5 9.5t-75.5 28.5t-58 53t-22 78q0 46 25 80t65.5 51.5t82 25t84.5 7.5q20 0 31 -2q2 -1 23 -16.5t26 -19t23 -18t24.5 -22t19 -22.5t17 -26t9 -26.5t4.5 -31.5zM755 863q0 -60 -33 -99.5t-92 -39.5q-53 0 -93 42.5 t-57.5 96.5t-17.5 106q0 61 32 104t92 43q53 0 93.5 -45t58 -101t17.5 -107zM861 1120l88 64h-265q-85 0 -161 -32t-127.5 -98t-51.5 -153q0 -93 64.5 -154.5t158.5 -61.5q22 0 43 3q-13 -29 -13 -54q0 -44 40 -94q-175 -12 -257 -63q-47 -29 -75.5 -73t-28.5 -95 q0 -43 18.5 -77.5t48.5 -56.5t69 -37t77.5 -21t76.5 -6q60 0 120.5 15.5t113.5 46t86 82.5t33 117q0 49 -20 89.5t-49 66.5t-58 47.5t-49 44t-20 44.5t15.5 42.5t37.5 39.5t44 42t37.5 59.5t15.5 82.5q0 60 -22.5 99.5t-72.5 90.5h83zM1152 672h128v64h-128v128h-64v-128 h-128v-64h128v-160h64v160zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M735 740q0 -36 32 -70.5t77.5 -68t90.5 -73.5t77 -104t32 -142q0 -90 -48 -173q-72 -122 -211 -179.5t-298 -57.5q-132 0 -246.5 41.5t-171.5 137.5q-37 60 -37 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 42 -47.5 74t-15.5 73q0 36 21 85q-46 -4 -68 -4 q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q77 66 182.5 98t217.5 32h418l-138 -88h-131q74 -63 112 -133t38 -160q0 -72 -24.5 -129.5t-59 -93t-69.5 -65t-59.5 -61.5t-24.5 -66zM589 836q38 0 78 16.5t66 43.5q53 57 53 159q0 58 -17 125t-48.5 129.5 t-84.5 103.5t-117 41q-42 0 -82.5 -19.5t-65.5 -52.5q-47 -59 -47 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26zM591 -37q58 0 111.5 13t99 39t73 73t27.5 109q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -48 2 q-53 0 -105 -7t-107.5 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -70 35 -123.5t91.5 -83t119 -44t127.5 -14.5zM1401 839h213v-108h-213v-219h-105v219h-212v108h212v217h105v-217z" /> +<glyph unicode="" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> +<glyph unicode="" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" /> +<glyph unicode="" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" /> +<glyph unicode="" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> +<glyph unicode="" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" /> +<glyph unicode="" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" /> +<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" /> +<glyph unicode="" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> +<glyph unicode="" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" /> +<glyph unicode="" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" /> +<glyph unicode="" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" /> +<glyph unicode="" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" /> +<glyph unicode="" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" /> +<glyph unicode="" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" /> +<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" /> +<glyph unicode="" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" /> +<glyph unicode="" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" /> +<glyph unicode="" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" /> +<glyph unicode="" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> +<glyph unicode="" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> +<glyph unicode="" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> +<glyph unicode="" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> +<glyph unicode="" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> +<glyph unicode="" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" /> +<glyph unicode="" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" /> +<glyph unicode="" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" /> +<glyph unicode="" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" /> +<glyph unicode="" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" /> +<glyph unicode="" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" /> +<glyph unicode="" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" /> +<glyph unicode="" horiz-adv-x="1792" d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" /> +<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" /> +<glyph unicode="" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" /> +<glyph unicode="" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" /> +<glyph unicode="" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" /> +<glyph unicode="" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" /> +<glyph unicode="" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" /> +<glyph unicode="" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" /> +<glyph unicode="" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" /> +<glyph unicode="" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" /> +<glyph unicode="" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" /> +<glyph unicode="" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" /> +<glyph unicode="" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" /> +<glyph unicode="" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" /> +<glyph unicode="" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" /> +<glyph unicode="" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" /> +<glyph unicode="" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> +<glyph unicode="" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" /> +<glyph unicode="" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" /> +<glyph unicode="" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" /> +<glyph unicode="" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" /> +<glyph unicode="" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" /> +<glyph unicode="" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" /> +<glyph unicode="" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" /> +<glyph unicode="" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" /> +<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" /> +<glyph unicode="" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" /> +<glyph unicode="" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" /> +<glyph unicode="" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" /> +<glyph unicode="" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" /> +<glyph unicode="" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" /> +<glyph unicode="" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" /> +<glyph unicode="" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" /> +<glyph unicode="" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" /> +<glyph unicode="" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" /> +<glyph unicode="" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" /> +<glyph unicode="" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" /> +<glyph unicode="" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" /> +<glyph unicode="" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" /> +<glyph unicode="" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" /> +<glyph unicode="" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" /> +<glyph unicode="" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" /> +<glyph unicode="" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" /> +<glyph unicode="" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" /> +<glyph unicode="" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" /> +<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" /> +<glyph unicode="" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" /> +<glyph unicode="" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" /> +<glyph unicode="" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" /> +<glyph unicode="" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" /> +<glyph unicode="" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" /> +<glyph unicode="" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" /> +<glyph unicode="" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" /> +<glyph unicode="" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" /> +<glyph unicode="" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> +<glyph unicode="" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> +<glyph unicode="" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" /> +<glyph unicode="" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" /> +<glyph unicode="" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " /> +<glyph unicode="" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" /> +<glyph unicode="" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" /> +<glyph unicode="" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" /> +<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" /> +<glyph unicode="" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" /> +<glyph unicode="" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" /> +<glyph unicode="" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" /> +<glyph unicode="" horiz-adv-x="1280" d="M981 197q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -49 2q-53 0 -104.5 -7t-107 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -56 23.5 -102t61 -75.5t87 -50t100 -29t101.5 -8.5q58 0 111.5 13t99 39t73 73t27.5 109zM864 1055 q0 59 -17 125.5t-48 129t-84 103.5t-117 41q-42 0 -82.5 -19.5t-66.5 -52.5q-46 -59 -46 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26q37 0 77.5 16.5t65.5 43.5q53 56 53 159zM752 1536h417l-137 -88h-132q75 -63 113 -133t38 -160q0 -72 -24.5 -129.5 t-59.5 -93t-69.5 -65t-59 -61.5t-24.5 -66q0 -36 32 -70.5t77 -68t90.5 -73.5t77.5 -104t32 -142q0 -91 -49 -173q-71 -122 -209.5 -179.5t-298.5 -57.5q-132 0 -246.5 41.5t-172.5 137.5q-36 59 -36 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 41 -47.5 73.5 t-15.5 73.5q0 40 21 85q-46 -4 -68 -4q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q76 66 182 98t218 32z" /> +<glyph unicode="" horiz-adv-x="2304" d="M1509 107q0 -14 -12 -29q-52 -59 -147.5 -83t-196.5 -24q-252 0 -346 107q-12 15 -12 29q0 17 12 29.5t29 12.5q15 0 30 -12q58 -49 125.5 -66t159.5 -17t160 17t127 66q15 12 30 12q17 0 29 -12.5t12 -29.5zM978 498q0 -61 -43 -104t-104 -43q-60 0 -104.5 43.5 t-44.5 103.5q0 61 44 105t105 44t104 -44t43 -105zM1622 498q0 -61 -43 -104t-104 -43q-60 0 -104.5 43.5t-44.5 103.5q0 61 44 105t105 44t104 -44t43 -105zM415 793q-39 27 -88 27q-66 0 -113 -47t-47 -113q0 -72 54 -121q53 141 194 254zM2020 382q0 222 -249 387 q-128 85 -291.5 126.5t-331.5 41.5t-331.5 -41.5t-292.5 -126.5q-249 -165 -249 -387t249 -387q129 -85 292.5 -126.5t331.5 -41.5t331.5 41.5t291.5 126.5q249 165 249 387zM2137 660q0 66 -47 113t-113 47q-50 0 -93 -30q140 -114 192 -256q61 48 61 126zM1993 1335 q0 49 -34.5 83.5t-82.5 34.5q-49 0 -83.5 -34.5t-34.5 -83.5q0 -48 34.5 -82.5t83.5 -34.5q48 0 82.5 34.5t34.5 82.5zM2220 660q0 -65 -33 -122t-89 -90q5 -35 5 -66q0 -139 -79 -255.5t-208 -201.5q-140 -92 -313.5 -136.5t-354.5 -44.5t-355 44.5t-314 136.5 q-129 85 -208 201.5t-79 255.5q0 36 6 71q-53 33 -83.5 88.5t-30.5 118.5q0 100 71 171.5t172 71.5q91 0 159 -60q265 170 638 177l144 456q10 29 40 29q24 0 384 -90q24 55 74 88t110 33q82 0 141 -59t59 -142t-59 -141.5t-141 -58.5q-83 0 -141.5 58.5t-59.5 140.5 l-339 80l-125 -395q349 -15 603 -179q71 63 163 63q101 0 172 -71.5t71 -171.5z" /> +<glyph unicode="" d="M950 393q7 7 17.5 7t17.5 -7t7 -18t-7 -18q-65 -64 -208 -64h-1h-1q-143 0 -207 64q-8 7 -8 18t8 18q7 7 17.5 7t17.5 -7q49 -51 172 -51h1h1q122 0 173 51zM671 613q0 -37 -26 -64t-63 -27t-63 27t-26 64t26 63t63 26t63 -26t26 -63zM1214 1049q-29 0 -50 21t-21 50 q0 30 21 51t50 21q30 0 51 -21t21 -51q0 -29 -21 -50t-51 -21zM1216 1408q132 0 226 -94t94 -227v-894q0 -133 -94 -227t-226 -94h-896q-132 0 -226 94t-94 227v894q0 133 94 227t226 94h896zM1321 596q35 14 57 45.5t22 70.5q0 51 -36 87.5t-87 36.5q-60 0 -98 -48 q-151 107 -375 115l83 265l206 -49q1 -50 36.5 -85t84.5 -35q50 0 86 35.5t36 85.5t-36 86t-86 36q-36 0 -66 -20.5t-45 -53.5l-227 54q-9 2 -17.5 -2.5t-11.5 -14.5l-95 -302q-224 -4 -381 -113q-36 43 -93 43q-51 0 -87 -36.5t-36 -87.5q0 -37 19.5 -67.5t52.5 -45.5 q-7 -25 -7 -54q0 -98 74 -181.5t201.5 -132t278.5 -48.5q150 0 277.5 48.5t201.5 132t74 181.5q0 27 -6 54zM971 702q37 0 63 -26t26 -63t-26 -64t-63 -27t-63 27t-26 64t26 63t63 26z" /> +<glyph unicode="" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" /> +<glyph unicode="" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" /> +<glyph unicode="" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" /> +<glyph unicode="" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" /> +<glyph unicode="" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" /> +<glyph unicode="" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" /> +<glyph unicode="" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" /> +<glyph unicode="" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" /> +<glyph unicode="" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" /> +<glyph unicode="" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " /> +<glyph unicode="" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" /> +<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" /> +<glyph unicode="" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " /> +<glyph unicode="" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" /> +<glyph unicode="" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" /> +<glyph unicode="" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" /> +<glyph unicode="" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1024" d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" /> +<glyph unicode="" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" /> +<glyph unicode="" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" /> +<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" /> +<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" /> +<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" /> +<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" /> +<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" /> +<glyph unicode="" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" /> +<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" /> +<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" /> +<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" /> +<glyph unicode="" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" /> +<glyph unicode="" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348q0 222 101 414.5t276.5 317t390.5 155.5v-260q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 q0 230 -145.5 406t-366.5 221v260q215 -31 390.5 -155.5t276.5 -317t101 -414.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" /> +<glyph unicode="" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" /> +<glyph unicode="" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" /> +<glyph unicode="" d="M825 547l343 588h-150q-21 -39 -63.5 -118.5t-68 -128.5t-59.5 -118.5t-60 -128.5h-3q-21 48 -44.5 97t-52 105.5t-46.5 92t-54 104.5t-49 95h-150l323 -589v-435h134v436zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" /> +<glyph unicode="" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" /> +<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" /> +<glyph unicode="" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" /> +<glyph unicode="" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" /> +<glyph unicode="" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" /> +<glyph unicode="" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" /> +<glyph unicode="" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" /> +<glyph unicode="" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" /> +<glyph unicode="" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" /> +<glyph unicode="" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" /> +<glyph unicode="" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" /> +<glyph unicode="" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" /> +<glyph unicode="" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1112 1090q0 159 -237 159h-70q-32 0 -59.5 -21.5t-34.5 -52.5l-63 -276q-2 -5 -2 -16q0 -24 17 -39.5t41 -15.5h53q69 0 128.5 13t112.5 41t83.5 81.5t30.5 126.5zM1716 938q0 -265 -220 -428q-219 -161 -612 -161h-61q-32 0 -59 -21.5t-34 -52.5l-73 -316 q-8 -36 -40.5 -61.5t-69.5 -25.5h-213q-31 0 -53 20t-22 51q0 10 13 65h151q34 0 64 23.5t38 56.5l73 316q8 33 37.5 57t63.5 24h61q390 0 607 160t217 421q0 129 -51 207q183 -92 183 -335zM1533 1123q0 -264 -221 -428q-218 -161 -612 -161h-60q-32 0 -59.5 -22t-34.5 -53 l-73 -315q-8 -36 -40 -61.5t-69 -25.5h-214q-31 0 -52.5 19.5t-21.5 51.5q0 8 2 20l300 1301q8 36 40.5 61.5t69.5 25.5h444q68 0 125 -4t120.5 -15t113.5 -30t96.5 -50.5t77.5 -74t49.5 -103.5t18.5 -136z" /> +<glyph unicode="" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" /> +<glyph unicode="" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> +<glyph unicode="" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> +<glyph unicode="" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" /> +<glyph unicode="" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" /> +<glyph unicode="" horiz-adv-x="2304" d="M322 689h-15q-19 0 -19 18q0 28 19 85q5 15 15 19.5t28 4.5q77 0 77 -49q0 -41 -30.5 -59.5t-74.5 -18.5zM664 528q-47 0 -47 29q0 62 123 62l3 -3q-5 -88 -79 -88zM1438 687h-15q-19 0 -19 19q0 28 19 85q5 15 14.5 19t28.5 4q77 0 77 -49q0 -41 -30.5 -59.5 t-74.5 -18.5zM1780 527q-47 0 -47 30q0 62 123 62l3 -3q-5 -89 -79 -89zM373 894h-128q-8 0 -14.5 -4t-8.5 -7.5t-7 -12.5q-3 -7 -45 -190t-42 -192q0 -7 5.5 -12.5t13.5 -5.5h62q25 0 32.5 34.5l15 69t32.5 34.5q47 0 87.5 7.5t80.5 24.5t63.5 52.5t23.5 84.5 q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM719 798q-38 0 -74 -6q-2 0 -8.5 -1t-9 -1.5l-7.5 -1.5t-7.5 -2t-6.5 -3t-6.5 -4t-5 -5t-4.5 -7t-4 -9q-9 -29 -9 -39t9 -10q5 0 21.5 5t19.5 6q30 8 58 8q74 0 74 -36q0 -11 -10 -14q-8 -2 -18 -3t-21.5 -1.5t-17.5 -1.5 q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5q0 -38 26 -59.5t64 -21.5q24 0 45.5 6.5t33 13t38.5 23.5q-3 -7 -3 -15t5.5 -13.5t12.5 -5.5h56q1 1 7 3.5t7.5 3.5t5 3.5t5 5.5t2.5 8l45 194q4 13 4 30q0 81 -145 81zM1247 793h-74q-22 0 -39 -23q-5 -7 -29.5 -51 t-46.5 -81.5t-26 -38.5l-5 4q0 77 -27 166q-1 5 -3.5 8.5t-6 6.5t-6.5 5t-8.5 3t-8.5 1.5t-9.5 1t-9 0.5h-10h-8.5q-38 0 -38 -21l1 -5q5 -53 25 -151t25 -143q2 -16 2 -24q0 -19 -30.5 -61.5t-30.5 -58.5q0 -13 40 -13q61 0 76 25l245 415q10 20 10 26q0 9 -8 9zM1489 892 h-129q-18 0 -29 -23q-6 -13 -46.5 -191.5t-40.5 -190.5q0 -20 43 -20h7.5h9h9t9.5 1t8.5 2t8.5 3t6.5 4.5t5.5 6t3 8.5l21 91q2 10 10.5 17t19.5 7q47 0 87.5 7t80.5 24.5t63.5 52.5t23.5 84q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM1835 798q-26 0 -74 -6 q-38 -6 -48 -16q-7 -8 -11 -19q-8 -24 -8 -39q0 -10 8 -10q1 0 41 12q30 8 58 8q74 0 74 -36q0 -12 -10 -14q-4 -1 -57 -7q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5t26 -58.5t64 -21.5q24 0 45 6t34 13t38 24q-3 -15 -3 -16q0 -5 2 -8.5t6.5 -5.5t8 -3.5 t10.5 -2t9.5 -0.5h9.5h8q42 0 48 25l45 194q3 15 3 31q0 81 -145 81zM2157 889h-55q-25 0 -33 -40q-10 -44 -36.5 -167t-42.5 -190v-5q0 -16 16 -18h1h57q10 0 18.5 6.5t10.5 16.5l83 374h-1l1 5q0 7 -5.5 12.5t-13.5 5.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048 q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> +<glyph unicode="" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" /> +<glyph unicode="" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" /> +<glyph unicode="" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" /> +<glyph unicode="" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" /> +<glyph unicode="" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" /> +<glyph unicode="" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" /> +<glyph unicode="" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" /> +<glyph unicode="" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" /> +<glyph unicode="" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" /> +<glyph unicode="" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" /> +<glyph unicode="" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" /> +<glyph unicode="" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" /> +<glyph unicode="" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" /> +<glyph unicode="" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" /> +<glyph unicode="" d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" /> +<glyph unicode="" horiz-adv-x="2048" d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360q2 0 4.5 -1t5.5 -2.5l5 -2.5l188 199v347l-187 194 q-13 -8 -29 -10zM986 1438h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13 zM552 226h402l64 66l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224 l213 -225zM1023 946l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196 l-48 -227l130 227h-82zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" /> +<glyph unicode="" d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" /> +<glyph unicode="" d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 q209 0 374 -102q172 107 374 102z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" /> +<glyph unicode="" d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 t-43 -34t-16.5 -53.5z" /> +<glyph unicode="" horiz-adv-x="2048" d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126.5t-103.5 132.5t-108.5 126t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" /> +<glyph unicode="" horiz-adv-x="1664" d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" /> +<glyph unicode="" horiz-adv-x="2048" d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" /> +<glyph unicode="" d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" /> +<glyph unicode="" horiz-adv-x="2304" d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" /> +<glyph unicode="" d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 t158.5 -65.5t65.5 -158.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 t127 -344z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h416q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-419 -420q87 -104 129.5 -236.5t30.5 -276.5q-22 -250 -200.5 -431t-428.5 -206q-163 -17 -314 39.5t-256.5 162t-162 256.5t-39.5 314q25 250 206 428.5 t431 200.5q144 12 276.5 -30.5t236.5 -129.5l419 419h-261q-14 0 -23 9t-9 23v64zM704 -128q117 0 223.5 45.5t184 123t123 184t45.5 223.5t-45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123 t223.5 -45.5z" /> +<glyph unicode="" horiz-adv-x="1280" d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> +<glyph unicode="" d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 q0 -226 -154 -391q103 -57 218 -57z" /> +<glyph unicode="" horiz-adv-x="1920" d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -29 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" /> +<glyph unicode="" horiz-adv-x="2048" d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1728 1536q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-229 -230l156 -156q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-156 157l-99 -100q87 -104 129.5 -236.5t30.5 -276.5q-22 -250 -200.5 -431t-428.5 -206q-163 -17 -314 39.5 t-256.5 162t-162 256.5t-39.5 314q25 250 206 428.5t431 200.5q144 12 276.5 -30.5t236.5 -129.5l99 99l-156 156q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l156 -156l229 229h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM1280 448q0 117 -45.5 223.5t-123 184t-184 123 t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5z" /> +<glyph unicode="" horiz-adv-x="1280" d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 t131.5 -316.5t316.5 -131.5z" /> +<glyph unicode="" horiz-adv-x="2048" d="M2029 685q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-131q-12 -119 -67 -226t-139 -183.5t-196.5 -121.5t-234.5 -45q-180 0 -330.5 91t-234.5 247 t-74 337q8 162 94 300t226.5 219.5t302.5 85.5q166 4 310.5 -71.5t235.5 -208.5t107 -296h131v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM640 128q104 0 198.5 40.5t163.5 109.5t109.5 163.5 t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" /> +<glyph unicode="" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" /> +<glyph unicode="" horiz-adv-x="1280" d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" /> +<glyph unicode="" d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" /> +<glyph unicode="" horiz-adv-x="1792" d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" /> +<glyph unicode="" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" /> +<glyph unicode="" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" /> +<glyph unicode="" horiz-adv-x="2048" d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 q-26 0 -45 -19t-19 -45v-384h1152z" /> +<glyph unicode="" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" /> +<glyph unicode="" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" /> +<glyph unicode="" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" /> +<glyph unicode="" horiz-adv-x="1792" d="M1792 204v-209h-642v209h134v926h-6l-314 -1135h-243l-310 1135h-8v-926h135v-209h-538v209h69q21 0 43 19.5t22 37.5v881q0 18 -22 40t-43 22h-69v209h672l221 -821h6l223 821h670v-209h-71q-19 0 -41 -22t-22 -40v-881q0 -18 21.5 -37.5t41.5 -19.5h71z" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +</font> +</defs></svg>
@@ -0,0 +1,4566 @@
+<?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="latobold" horiz-adv-x="1187" > +<font-face units-per-em="2048" ascent="1649" descent="-399" /> +<missing-glyph horiz-adv-x="395" /> +<glyph unicode="fi" horiz-adv-x="1230" d="M180 0v860l-91 14q-30 5 -47.5 20.5t-17.5 43.5v103h156v34q0 96 32 178.5t96.5 143t162.5 95t232 34.5q43 0 88.5 -4.5t77.5 -15.5l-8 -131q-2 -24 -25.5 -28.5t-58.5 -4.5q-99 0 -166 -17t-108.5 -51.5t-59.5 -86t-18 -120.5v-26h651v-1041h-253v861h-390v-861h-253z " /> +<glyph unicode="fl" horiz-adv-x="1263" d="M180 0v860l-91 14q-30 5 -47.5 20.5t-17.5 43.5v103h156v44q0 84 26 161t80.5 136t137.5 94t197 35q93 0 176.5 -6t166.5 -6h142v-1499h-252v1323q-54 2 -106 5t-88 3q-115 0 -175 -64t-60 -182v-44h249v-180h-241v-861h-253z" /> +<glyph horiz-adv-x="0" /> +<glyph unicode="
" horiz-adv-x="0" /> +<glyph horiz-adv-x="0" /> +<glyph horiz-adv-x="0" /> +<glyph unicode=" " horiz-adv-x="395" /> +<glyph unicode="	" horiz-adv-x="395" /> +<glyph unicode=" " horiz-adv-x="395" /> +<glyph unicode="!" horiz-adv-x="738" d="M492 1481v-586q0 -93 -9.5 -182.5t-24.5 -190.5h-171q-15 100 -24.5 190t-9.5 183v586h239zM214 139q0 32 12 60.5t33 49t49.5 33t61.5 12.5q32 0 60.5 -12.5t49 -33t32.5 -49t12 -60.5q0 -33 -12 -61t-32.5 -48.5t-49.5 -32t-60 -11.5q-33 0 -61.5 11.5t-49.5 32 t-33 48.5t-12 61z" /> +<glyph unicode=""" horiz-adv-x="864" d="M354 1481v-295l-23 -160q-7 -45 -26 -69t-62 -24q-37 0 -58.5 24t-27.5 69l-23 160v295h220zM731 1481v-295l-23 -160q-7 -45 -26 -69t-62 -24q-37 0 -58.5 24t-27.5 69l-23 160v295h220z" /> +<glyph unicode="#" d="M851 418l-79 -418h-116q-31 0 -53 24.5t-22 60.5q0 5 0.5 9.5t1.5 9.5l60 314h-210l-59 -326q-9 -49 -42 -70.5t-73 -21.5h-112l78 418h-117q-33 0 -50.5 16t-17.5 52q0 14 3 33l13 81h195l53 283h-219l19 105q7 39 32 58t80 19h114l63 330q8 41 38 63.5t70 22.5h114 l-77 -416h208l79 416h113q36 0 58.5 -20.5t22.5 -52.5q0 -10 -1 -15l-64 -328h208l-19 -106q-7 -39 -32.5 -57.5t-79.5 -18.5h-102l-52 -283h145q33 0 50 -16t17 -54q0 -14 -4 -32l-12 -80h-222zM459 600h210l52 283h-209z" /> +<glyph unicode="$" d="M474 -9q-120 16 -225 65t-178 122l77 116q10 15 27.5 25t35.5 10q23 0 48.5 -16t58 -37.5t74.5 -43t100 -31.5l38 458q-73 20 -144 48t-127.5 73.5t-91.5 115.5t-35 174q0 78 31.5 152t90.5 132.5t146 96.5t200 43l11 129q2 25 20.5 44.5t48.5 19.5h93l-17 -202 q109 -17 187.5 -61.5t136.5 -99.5l-61 -93q-14 -20 -28.5 -30.5t-35.5 -10.5q-15 0 -36 9.5t-48 23.5t-60 28.5t-73 23.5l-36 -424q74 -23 146.5 -50t130 -70t93.5 -107t36 -160q0 -95 -32 -178.5t-92.5 -147.5t-150 -104t-203.5 -48l-13 -151q-2 -24 -20 -43.5t-48 -19.5 h-93zM868 425q0 39 -13.5 68t-38.5 51.5t-59 39t-74 29.5l-35 -415q109 14 164.5 73t55.5 154zM371 1095q0 -39 13 -69t37 -53t57 -41t72 -32l32 379q-56 -7 -96.5 -24t-66 -41.5t-37 -54.5t-11.5 -64z" /> +<glyph unicode="%" horiz-adv-x="1644" d="M746 1122q0 -84 -28 -151.5t-75 -115t-109.5 -73t-130.5 -25.5q-74 0 -136 25.5t-107.5 73t-71.5 115t-26 151.5q0 86 26 156t71.5 118t108 74t135.5 26q74 0 137 -26t109 -74t71.5 -118t25.5 -156zM551 1122q0 59 -11.5 99.5t-31.5 65t-47 35t-58 10.5t-57.5 -10.5 t-45.5 -35t-30 -64.5t-11 -100q0 -57 11 -95.5t30 -62t46 -33.5t57 -10q31 0 58 10t47 33.5t31.5 62t11.5 95.5zM1239 1441q12 15 30.5 27.5t51.5 12.5h183l-1100 -1443q-12 -16 -31 -27t-45 -11h-189zM1582 348q0 -84 -28 -151.5t-75 -115t-109.5 -73.5t-130.5 -26 q-74 0 -136.5 26t-108 73.5t-71 115t-25.5 151.5q0 86 25.5 155.5t71 118t108 74.5t136.5 26t137 -26t109 -74.5t71.5 -118t25.5 -155.5zM1388 348q0 59 -12 99t-32 65t-47 35.5t-58 10.5t-57.5 -10.5t-45.5 -35.5t-30 -64.5t-11 -99.5q0 -57 11 -96t30 -62.5t45.5 -34 t57.5 -10.5t58 10.5t47 34t32 62.5t12 96z" /> +<glyph unicode="&" horiz-adv-x="1462" d="M679 1497q90 0 161 -27.5t122 -73.5t80 -105.5t34 -123.5l-161 -33q-3 -1 -6.5 -1h-6.5q-17 0 -31 9.5t-22 29.5q-9 27 -23.5 51t-35 42t-48 29t-63.5 11q-43 0 -77 -15t-57.5 -40t-35.5 -58.5t-12 -70.5q0 -31 6.5 -59.5t21 -57t37.5 -59t56 -64.5l394 -409 q34 65 54 136.5t27 145.5q2 24 15 38t37 14h159q-1 -135 -39 -258t-109 -226l310 -322h-247q-19 0 -34.5 2t-28.5 7.5t-25.5 15t-25.5 23.5l-103 106q-98 -80 -218 -125t-261 -45q-86 0 -168 29t-146.5 84.5t-103.5 133.5t-39 177q0 69 22.5 130.5t62 115t94.5 96.5t121 73 q-54 77 -79.5 150.5t-25.5 145.5q0 77 28 146t82 120.5t132 81.5t176 30zM323 428q0 -56 19 -101t53 -76.5t78.5 -48.5t94.5 -17q90 0 164.5 28.5t135.5 78.5l-389 399q-82 -53 -119 -119.5t-37 -143.5z" /> +<glyph unicode="'" horiz-adv-x="487" d="M354 1481v-295l-23 -160q-7 -45 -26 -69t-62 -24q-37 0 -58.5 24t-27.5 69l-23 160v295h220z" /> +<glyph unicode="(" horiz-adv-x="614" d="M328 642q0 -211 51 -414.5t146 -383.5q7 -13 10 -24t3 -21q0 -20 -10.5 -33t-24.5 -21l-113 -69q-76 117 -129 235t-87 237.5t-49.5 242.5t-15.5 251t15.5 251.5t49.5 243t87 237t129 234.5l113 -68q14 -8 24.5 -21t10.5 -32t-14 -46q-94 -179 -145 -383.5t-51 -415.5z " /> +<glyph unicode=")" horiz-adv-x="614" d="M287 642q0 211 -51.5 415.5t-145.5 383.5q-13 27 -13 46t10 32t25 21l112 68q76 -117 129.5 -234.5t87 -237t49.5 -243t16 -251.5t-16 -251t-49.5 -242.5t-87 -237.5t-129.5 -235l-112 69q-14 8 -24.5 21t-10.5 33q0 9 2.5 20.5t9.5 24.5q95 179 146.5 383t51.5 415z" /> +<glyph unicode="*" horiz-adv-x="819" d="M348 857v187q0 20 2.5 40t8.5 37q-11 -14 -26.5 -25.5t-32.5 -22.5l-162 -94l-60 102l163 95q18 11 36 18t37 10q-19 2 -37 10.5t-36 19.5l-163 95l59 103l163 -97q17 -11 33 -23t27 -26q-7 17 -9.5 36.5t-2.5 40.5v189h121v-187q0 -22 -2.5 -41.5t-9.5 -37.5 q11 14 26.5 26t33.5 23l162 95l60 -103l-162 -93q-18 -11 -36.5 -19t-37.5 -11q35 -6 74 -28l162 -96l-59 -102l-163 95q-18 11 -33.5 22.5t-27.5 25.5q13 -33 13 -75v-189h-121z" /> +<glyph unicode="+" d="M694 1201v-420h399v-187h-399v-422h-205v422h-396v187h396v420h205z" /> +<glyph unicode="," horiz-adv-x="460" d="M82 156q0 29 10.5 53.5t30 43.5t47.5 30t60 11q39 0 68 -14t48.5 -38t28.5 -55t9 -66q0 -49 -15 -103.5t-43.5 -108.5t-70.5 -105.5t-96 -94.5l-44 40q-18 15 -19 38q0 8 6 18.5t14 18.5l27.5 30t33 41t30 50t19.5 58q-32 0 -58.5 12t-45.5 32.5t-29.5 48t-10.5 60.5z " /> +<glyph unicode="-" horiz-adv-x="735" d="M102 724h531v-211h-531v211z" /> +<glyph unicode="." horiz-adv-x="460" d="M75 139q0 32 11.5 60.5t32.5 49t50 33t61 12.5t60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61z" /> +<glyph unicode="/" horiz-adv-x="792" d="M223 -3q-9 -24 -23.5 -41t-33 -29t-38.5 -18t-40 -6h-106l598 1530q17 43 50 66t79 23h107z" /> +<glyph unicode="0" d="M1137 740q0 -194 -41.5 -336.5t-115 -235.5t-173 -138.5t-215.5 -45.5t-214.5 45.5t-171.5 138.5t-114 236t-41 336q0 195 41 337.5t114 235.5t171.5 138.5t214.5 45.5t215.5 -45.5t173 -138.5t115 -235.5t41.5 -337.5zM876 740q0 161 -24 266.5t-63 168t-90.5 87.5 t-106.5 25q-54 0 -105 -25t-90 -87.5t-62 -168t-23 -266.5t23 -266t62 -167.5t90 -87.5t105 -25q55 0 106.5 25t90.5 87.5t63 167.5t24 266z" /> +<glyph unicode="1" d="M275 189h300v864q0 50 4 105l-213 -178q-13 -11 -27 -15t-28 -4q-20 0 -37 8.5t-25 19.5l-80 110l452 384h207v-1294h267v-189h-820v189z" /> +<glyph unicode="2" d="M616 1497q102 0 187.5 -30t146 -85.5t94 -133.5t33.5 -173q0 -82 -24 -151.5t-64.5 -133t-94.5 -123t-114 -120.5l-334 -341q49 14 96.5 22t90.5 8h380q41 0 65 -23.5t24 -60.5v-152h-1016v84q0 26 11 53.5t34 50.5l450 451q56 57 100.5 109.5t74.5 103.5t46 104t16 111 q0 53 -15.5 93.5t-44 68t-68 41.5t-88.5 14q-91 0 -150 -46t-82 -124q-11 -39 -34 -56t-57 -17q-15 0 -34 3l-133 24q15 106 59 186.5t110 134.5t151.5 81t183.5 27z" /> +<glyph unicode="3" d="M640 1497q102 0 184.5 -29t141 -81t89.5 -121.5t31 -150.5q0 -71 -15.5 -124.5t-46 -93.5t-74 -67.5t-98.5 -46.5q133 -42 198.5 -128t65.5 -216q0 -111 -41 -195.5t-110.5 -142.5t-161 -87.5t-194.5 -29.5q-112 0 -194.5 25.5t-144 75.5t-104.5 123t-74 168l112 46 q29 12 58 12q27 0 48 -11t32 -33q18 -36 40 -70.5t53 -62t72.5 -44t98.5 -16.5q65 0 113 21t80 54.5t48 75t16 83.5q0 53 -11 96.5t-47 74.5t-103 48.5t-180 17.5v180q93 1 154.5 17.5t98 45.5t51 70t14.5 90q0 105 -57.5 159t-156.5 54q-90 0 -149.5 -47.5t-83.5 -122.5 q-12 -39 -33.5 -56t-56.5 -17q-16 0 -35 3l-133 24q15 106 59.5 186.5t110.5 134.5t151.5 81t183.5 27z" /> +<glyph unicode="4" d="M965 558h186v-146q0 -20 -13.5 -35.5t-38.5 -15.5h-134v-361h-222v361h-624q-26 0 -45.5 16t-24.5 40l-25 128l701 937h240v-924zM743 1042q0 33 2.5 71t7.5 79l-460 -634h450v484z" /> +<glyph unicode="5" d="M1013 1373q0 -54 -34.5 -88t-114.5 -34h-407l-54 -309q100 20 184 21q117 0 205.5 -35t148.5 -96.5t91 -144t31 -177.5q0 -118 -41.5 -215t-115 -166.5t-174.5 -107t-220 -37.5q-70 0 -132.5 14t-117 38t-101 55.5t-83.5 66.5l78 107q25 35 65 35q26 0 52 -16.5t61 -36 t81 -35.5t111 -16q70 0 123 22.5t88.5 63t53.5 96t18 121.5q0 121 -70 189t-207 68q-108 0 -216 -39l-157 45l123 719h731v-108z" /> +<glyph unicode="6" d="M686 925q84 0 163.5 -28t140 -83.5t97 -138.5t36.5 -194q0 -103 -37.5 -193.5t-106.5 -158.5t-165.5 -106.5t-213.5 -38.5q-119 0 -213 37.5t-160.5 106t-102 164t-35.5 212.5q0 104 42.5 214t131.5 229l353 474q18 25 54 42.5t82 17.5h225l-439 -538q-14 -17 -27 -32.5 t-26 -31.5q43 22 93 34t108 12zM332 465q0 -61 17 -112t50 -87t82 -56t114 -20q60 0 111 20.5t87 57.5t56.5 86.5t20.5 108.5q0 63 -19.5 114t-55 86t-86 53.5t-110.5 18.5t-109.5 -20.5t-84.5 -56.5t-54 -86t-19 -107z" /> +<glyph unicode="7" d="M1122 1481v-110q0 -49 -10.5 -79t-20.5 -51l-561 -1155q-17 -36 -48.5 -61t-86.5 -25h-183l573 1132q36 70 80 119h-708q-24 0 -41.5 17.5t-17.5 41.5v171h1024z" /> +<glyph unicode="8" d="M594 -16q-115 0 -209.5 30.5t-162 87t-105 136t-37.5 178.5q0 131 64.5 221.5t200.5 134.5q-109 45 -162.5 128t-53.5 200q0 84 34.5 156.5t96 126.5t147 84t187.5 30t187.5 -30t147 -84t96 -126.5t34.5 -156.5q0 -117 -54.5 -200t-161.5 -128q136 -44 200.5 -134.5 t64.5 -221.5q0 -98 -37.5 -178t-105 -136.5t-162 -87t-209.5 -30.5zM594 181q62 0 109.5 18t79.5 50t48.5 76t16.5 95q0 122 -67.5 184.5t-186.5 62.5t-186.5 -62.5t-67.5 -184.5q0 -51 16.5 -95t48.5 -76t79.5 -50t109.5 -18zM594 865q61 0 103 19.5t68 52t36.5 74 t10.5 85.5q0 42 -13.5 79.5t-40 67t-67.5 47t-97 17.5t-97 -17.5t-68.5 -47t-40 -67t-12.5 -79.5q0 -44 10.5 -85.5t36.5 -74t68 -52t103 -19.5z" /> +<glyph unicode="9" d="M543 591q-77 0 -151 26.5t-131.5 80.5t-92.5 133t-35 186q0 99 37 186t103.5 152.5t159.5 103.5t206 38q114 0 204.5 -36t154.5 -100.5t98 -154.5t34 -197q0 -69 -11.5 -130.5t-33.5 -118.5t-53 -110.5t-68 -107.5l-339 -484q-17 -25 -51.5 -41.5t-78.5 -16.5h-233 l460 574q17 22 32.5 42.5t29.5 40.5q-51 -33 -112 -49.5t-129 -16.5zM888 1034q0 60 -18.5 108t-52.5 80.5t-80.5 50t-101.5 17.5q-57 0 -103.5 -19t-78.5 -52.5t-49.5 -80t-17.5 -102.5q0 -124 64 -189t182 -65q61 0 108.5 19.5t80.5 53.5t50 80t17 99z" /> +<glyph unicode=":" horiz-adv-x="542" d="M116 139q0 32 11.5 60.5t32.5 49t50 33t61 12.5t60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61zM116 869q0 32 11.5 60.5t32.5 49t50 33t61 12.5t60.5 -12.5t49 -33t33 -49 t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61z" /> +<glyph unicode=";" horiz-adv-x="542" d="M123 156q0 29 10.5 53.5t30 43.5t47.5 30t60 11q39 0 68 -14t48.5 -38t28.5 -55t9 -66q0 -49 -15 -103.5t-43.5 -108.5t-70.5 -105.5t-96 -94.5l-44 40q-18 15 -19 38q0 8 5.5 18.5t14.5 18.5l27.5 30t32.5 41t30 50t20 58q-32 0 -58.5 12t-45.5 32.5t-29.5 48 t-10.5 60.5zM116 869q0 32 11.5 60.5t32.5 49t50 33t61 12.5t60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61z" /> +<glyph unicode="<" d="M142 741l811 423v-180q0 -20 -10 -37t-34 -29l-371 -191q-24 -12 -50 -21t-56 -16q30 -7 56 -15.5t50 -21.5l371 -191q24 -12 34 -29t10 -38v-180l-811 424v102z" /> +<glyph unicode="=" d="M139 602h908v-188h-908v188zM139 963h908v-188h-908v188z" /> +<glyph unicode=">" d="M234 215v180q0 20 10.5 37.5t34.5 29.5l371 191q45 23 106 37q-30 7 -56 16t-50 21l-371 191q-24 12 -34.5 29t-10.5 37v180l812 -423v-102z" /> +<glyph unicode="?" horiz-adv-x="861" d="M38 1347q35 31 76.5 58.5t89.5 48t104.5 32t121.5 11.5q89 0 162.5 -24.5t125.5 -70t80.5 -110t28.5 -144.5q0 -78 -22.5 -135t-56.5 -99t-74 -72.5t-76 -57.5t-62 -53t-31 -59l-24 -150h-173l-17 167q-1 5 -1 8.5v9.5q0 45 22.5 78t56 62.5t72.5 57t73 59.5t56.5 73 t22.5 97q0 37 -14 66t-38.5 50t-59 32t-73.5 11q-58 0 -99 -12.5t-69 -28.5t-47.5 -29t-34.5 -13q-37 0 -54 31zM231 139q0 32 12 60.5t33 49t49.5 33t61.5 12.5q32 0 60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5 t-49.5 32t-33 48.5t-12 61z" /> +<glyph unicode="@" horiz-adv-x="1684" d="M1194 188q-70 0 -124.5 33t-76.5 106q-60 -74 -127.5 -106t-145.5 -32q-65 0 -112.5 22.5t-79.5 62t-48 93.5t-16 117q0 58 15 118.5t44.5 116t74 104t105 85t135 57.5t166.5 21q79 0 135 -12t108 -35l-98 -380q-16 -66 -16 -109q0 -31 7.5 -51.5t20.5 -33t31 -17 t40 -4.5q43 0 81.5 27t67 76.5t45.5 117t17 147.5q0 133 -41.5 234.5t-116 169.5t-177.5 102t-226 34q-134 0 -249.5 -50.5t-200 -138.5t-132 -208t-47.5 -258q0 -168 52 -295.5t143.5 -213t214.5 -128.5t267 -43q79 0 147.5 8.5t126 23.5t104.5 34t84 41q20 11 34 11 q30 0 42 -33l35 -91q-106 -70 -248.5 -114t-324.5 -44q-185 0 -343 58.5t-273 167.5t-180 265.5t-65 352.5q0 110 28 213t80 194t126 166.5t164 130t195 84.5t220 30q145 0 278.5 -48.5t236.5 -139t164.5 -221t61.5 -294.5q0 -110 -32 -205.5t-90 -166.5t-136.5 -111.5 t-170.5 -40.5zM770 352q27 0 54 8.5t51.5 29.5t45 55.5t33.5 86.5l75 289q-33 6 -67 6q-63 0 -119 -27.5t-96 -74.5t-64 -108t-24 -127t28.5 -102t82.5 -36z" /> +<glyph unicode="A" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493q-12 33 -27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5z" /> +<glyph unicode="B" horiz-adv-x="1334" d="M150 0v1481h510q145 0 248.5 -28t169.5 -79t96.5 -123.5t30.5 -164.5q0 -52 -15 -99.5t-47.5 -89t-82 -75.5t-118.5 -57q305 -69 305 -330q0 -94 -35.5 -174t-104.5 -137.5t-169 -90.5t-229 -33h-559zM425 649v-434h280q77 0 128.5 18.5t82.5 49t45 71.5t14 87 q0 48 -15.5 86.5t-48 66t-84 41.5t-124.5 14h-278zM425 840h220q140 0 213 51t73 163q0 116 -65.5 165t-205.5 49h-235v-428z" /> +<glyph unicode="C" horiz-adv-x="1373" d="M1167 349q23 0 39 -17l109 -118q-90 -112 -221.5 -171t-316.5 -59q-165 0 -296.5 56t-224.5 156.5t-143 239.5t-50 304q0 167 55.5 306t156 239t240 156t308.5 56q165 0 288.5 -52.5t211.5 -139.5l-92 -128q-8 -12 -21 -21.5t-35 -9.5q-24 0 -48.5 18.5t-62.5 40t-96 40 t-147 18.5q-104 0 -191.5 -36.5t-150.5 -104t-98.5 -164.5t-35.5 -218q0 -125 35.5 -222t96 -163.5t142 -102t176.5 -35.5q56 0 101.5 6t84 19.5t72.5 34.5t68 52q10 9 21.5 14.5t24.5 5.5z" /> +<glyph unicode="D" horiz-adv-x="1530" d="M1464 740q0 -163 -54 -299t-152.5 -234t-236.5 -152.5t-306 -54.5h-565v1481h565q168 0 306 -55t236.5 -152.5t152.5 -234t54 -299.5zM1183 740q0 122 -33 219t-93.5 164t-147 103t-194.5 36h-288v-1043h288q109 0 195 36t146.5 103t93.5 163.5t33 218.5z" /> +<glyph unicode="E" horiz-adv-x="1172" d="M1083 1481v-219h-656v-411h517v-212h-517v-419h656v-220h-933v1481h933z" /> +<glyph unicode="F" horiz-adv-x="1149" d="M1083 1481v-219h-656v-439h554v-220h-554v-603h-277v1481h933z" /> +<glyph unicode="G" horiz-adv-x="1480" d="M829 203q93 0 162.5 17t131.5 46v270h-185q-27 0 -42 14.5t-15 36.5v155h492v-599q-56 -41 -117 -71t-130 -49.5t-148 -29t-170 -9.5q-162 0 -298 56t-235.5 156.5t-155.5 239.5t-56 304q0 167 54.5 306.5t154.5 239.5t242 155.5t320 55.5q181 0 313.5 -53.5 t224.5 -139.5l-80 -125q-24 -38 -62 -38q-25 0 -50 16q-33 19 -67.5 38.5t-76 34t-93 24t-119.5 9.5q-110 0 -198 -37t-150.5 -105.5t-96.5 -165t-34 -215.5q0 -128 36 -227.5t100.5 -168.5t153.5 -105t194 -36z" /> +<glyph unicode="H" horiz-adv-x="1548" d="M1399 0h-278v647h-694v-647h-277v1481h277v-637h694v637h278v-1481z" /> +<glyph unicode="I" horiz-adv-x="643" d="M460 0h-277v1481h277v-1481z" /> +<glyph unicode="J" horiz-adv-x="894" d="M745 526q0 -125 -30.5 -225t-91.5 -171t-152 -108.5t-212 -37.5q-55 0 -108.5 6.5t-111.5 20.5l14 164q2 23 17 36.5t44 13.5q17 0 45 -7t71 -7q58 0 103.5 17t75.5 53.5t45.5 95.5t15.5 143v961h275v-955z" /> +<glyph unicode="K" horiz-adv-x="1429" d="M434 860h65q39 0 64.5 11t43.5 34l409 517q26 33 54 46t71 13h237l-498 -616q-24 -29 -45.5 -48t-46.5 -32q34 -12 61.5 -34.5t52.5 -57.5l514 -693h-244q-49 0 -73 14t-40 40l-419 547q-20 27 -46 38.5t-73 11.5h-87v-651h-275v1482h275v-622z" /> +<glyph unicode="L" horiz-adv-x="1058" d="M425 227h593v-227h-868v1481h275v-1254z" /> +<glyph unicode="M" horiz-adv-x="1904" d="M893 614q17 -33 32 -68t29 -71q14 37 29.5 73t33.5 68l438 821q8 15 17 24t19.5 13.5t24 5.5t31.5 1h208v-1481h-243v956q0 27 2 59t5 64l-448 -839q-15 -29 -39.5 -45t-57.5 -16h-38q-33 0 -57.5 16t-39.5 45l-454 842q4 -34 5.5 -66t1.5 -60v-956h-242v1481h207 q18 0 31.5 -1t24.5 -5.5t20 -13.5t18 -24l442 -823v0z" /> +<glyph unicode="N" horiz-adv-x="1548" d="M294 1481q18 0 30.5 -1.5t22 -6.5t19 -13.5t20.5 -22.5l777 -991q-4 36 -5.5 70.5t-1.5 64.5v900h243v-1481h-143q-33 0 -54 10t-42 37l-774 986q3 -33 4.5 -65t1.5 -59v-909h-242v1481h144v0z" /> +<glyph unicode="O" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5z" /> +<glyph unicode="P" horiz-adv-x="1280" d="M434 521v-521h-275v1481h482q148 0 257 -35t179.5 -97.5t104 -149.5t33.5 -190q0 -108 -35.5 -197.5t-107.5 -154t-179.5 -100.5t-251.5 -36h-207zM434 736h207q76 0 132 19t93 54.5t55.5 86t18.5 113.5q0 59 -18.5 107t-55.5 82t-93 52t-132 18h-207v-532z" /> +<glyph unicode="Q" horiz-adv-x="1637" d="M1570 740q0 -99 -20.5 -189.5t-59 -169.5t-94 -145t-125.5 -116l376 -410h-228q-49 0 -88.5 13.5t-72.5 49.5l-217 239q-52 -14 -106.5 -21t-114.5 -7q-168 0 -306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5 t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5z" /> +<glyph unicode="R" horiz-adv-x="1341" d="M434 579v-579h-275v1481h451q152 0 260 -31.5t177 -87.5t101.5 -134.5t32.5 -172.5q0 -75 -22 -141.5t-63.5 -121t-102.5 -95.5t-139 -65q52 -30 90 -85l371 -547h-248q-36 0 -61 14.5t-42 40.5l-312 474q-17 27 -38 38.5t-62 11.5h-118zM434 776h172q78 0 136 19.5 t95 54t55.5 81.5t18.5 103q0 113 -74 173.5t-227 60.5h-176v-492z" /> +<glyph unicode="S" horiz-adv-x="1098" d="M943 1211q-11 -23 -26 -32t-35 -9t-46 16t-61 35.5t-81.5 35.5t-109.5 16q-57 0 -100 -14t-72 -38.5t-43.5 -59t-14.5 -75.5q0 -52 29.5 -86.5t77.5 -59.5t109.5 -44t125.5 -41t125.5 -51.5t109.5 -74t77 -109t29 -156.5q0 -100 -34 -188t-100 -153t-161.5 -102 t-218.5 -37q-71 0 -139.5 13.5t-131.5 39t-117.5 61.5t-97.5 80l80 132q11 14 27 24t35 10q26 0 55.5 -21t70 -46.5t95.5 -46.5t131 -21q118 0 182.5 56t64.5 160q0 58 -29 95t-77 62t-109.5 42.5t-125 38t-125 49t-109.5 75t-77.5 115.5t-29.5 170q0 81 32.5 158t94.5 136 t152 95t206 36q131 0 241.5 -41t188.5 -115z" /> +<glyph unicode="T" horiz-adv-x="1218" d="M1193 1481v-227h-445v-1254h-276v1254h-447v227h1168z" /> +<glyph unicode="U" horiz-adv-x="1490" d="M745 222q80 0 143 26.5t106.5 75t66.5 117t23 153.5v887h276v-887q0 -132 -42.5 -244t-122.5 -193.5t-193.5 -127t-256.5 -45.5q-142 0 -255.5 45.5t-193 127t-122 193.5t-42.5 244v887h276v-886q0 -85 23 -153.5t66 -117.5t105.5 -75.5t142.5 -26.5z" /> +<glyph unicode="V" horiz-adv-x="1454" d="M4 1481h222q36 0 58.5 -17.5t33.5 -45.5l349 -903q17 -44 33 -96.5t30 -111.5q24 118 58 208l348 903q9 24 32.5 43.5t58.5 19.5h222l-598 -1481h-249z" /> +<glyph unicode="W" horiz-adv-x="2143" d="M12 1481h232q36 0 60 -17t32 -46l252 -886q9 -33 16.5 -71t15.5 -81q8 43 17.5 81.5t20.5 70.5l291 886q8 24 32.5 43.5t58.5 19.5h81q36 0 59.5 -17t32.5 -46l289 -886q23 -66 39 -145q7 40 15 77t16 68l252 886q7 26 31.5 44.5t59.5 18.5h216l-460 -1481h-249 l-323 1012q-6 19 -13 41.5t-13 48.5q-6 -26 -12.5 -48.5t-12.5 -41.5l-327 -1012h-249z" /> +<glyph unicode="X" horiz-adv-x="1390" d="M505 762l-472 719h274q29 0 41.5 -8t23.5 -25l337 -544q5 13 11 26t14 26l308 487q23 38 59 38h264l-477 -708l490 -773h-275q-28 0 -45 14.5t-28 32.5l-343 567q-4 -12 -9 -22.5t-10 -20.5l-329 -524q-11 -17 -27.5 -32t-41.5 -15h-258z" /> +<glyph unicode="Y" horiz-adv-x="1340" d="M808 575v-575h-276v575l-539 906h243q36 0 56.5 -17.5t35.5 -44.5l271 -494q24 -44 41 -83.5t32 -77.5q13 39 30 78.5t40 82.5l270 494q11 23 33.5 42.5t57.5 19.5h244z" /> +<glyph unicode="Z" horiz-adv-x="1263" d="M1207 1481v-102q0 -47 -26 -86l-760 -1073h768v-220h-1126v109q0 20 7.5 39t18.5 35l762 1079h-739v219h1095z" /> +<glyph unicode="[" horiz-adv-x="614" d="M118 -315v1899h420v-99q0 -27 -19 -46t-49 -19h-141v-1572h141q30 0 49 -18.5t19 -45.5v-99h-420z" /> +<glyph unicode="\" horiz-adv-x="799" d="M-29 1522h109q45 0 78 -23t51 -66l597 -1530h-107q-40 0 -78 23.5t-56 70.5z" /> +<glyph unicode="]" horiz-adv-x="614" d="M77 -315v99q0 27 19 45.5t48 18.5h142v1572h-142q-30 0 -48.5 19t-18.5 46v99h420v-1899h-420z" /> +<glyph unicode="^" d="M1053 796h-186q-24 0 -38.5 12t-24.5 30l-163 296q-15 29 -28 54t-21 52q-8 -27 -19.5 -53t-26.5 -53l-160 -296q-9 -17 -24.5 -29.5t-42.5 -12.5h-194l382 685h164z" /> +<glyph unicode="_" horiz-adv-x="806" d="M807 -137v-164h-807v164h807z" /> +<glyph unicode="`" horiz-adv-x="653" d="M236 1497q42 0 61.5 -14t35.5 -40l146 -249h-144q-29 0 -47 7.5t-36 28.5l-253 267h237z" /> +<glyph unicode="a" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32 t-55.5 -32.5t-56.5 -14.5q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z " /> +<glyph unicode="b" horiz-adv-x="1167" d="M138 0v1522h253v-600q62 67 141 106t185 39q86 0 157 -35.5t123 -103t80 -166.5t28 -228q0 -118 -32 -218.5t-90.5 -174t-142 -115t-187.5 -41.5q-48 0 -88 9.5t-72.5 27t-61 42.5t-53.5 56l-11 -71q-6 -27 -21 -38t-41 -11h-167zM630 870q-79 0 -135 -33t-104 -94v-471 q43 -53 94 -74t110 -21q57 0 103 21.5t78.5 65.5t50 111t17.5 159t-15 156t-42.5 104t-67 58t-89.5 18z" /> +<glyph unicode="c" horiz-adv-x="976" d="M873 828q-11 -14 -21.5 -22t-31.5 -8q-19 0 -37.5 11.5t-44 26.5t-61 26.5t-87.5 11.5q-67 0 -117 -24t-83.5 -69t-49.5 -109t-16 -145q0 -84 17.5 -149.5t51.5 -110t82 -67.5t109 -23q60 0 97.5 15t63 33t44.5 32.5t42 14.5q31 0 47 -23l72 -92q-42 -49 -91 -82.5 t-101.5 -53.5t-109 -28t-111.5 -8q-97 0 -183.5 36t-150.5 106t-101 170.5t-37 229.5q0 116 33 215t97.5 171t160 113t218.5 41q118 0 206.5 -38t159.5 -108z" /> +<glyph unicode="d" horiz-adv-x="1167" d="M874 0q-49 0 -64 46l-20 101q-33 -37 -69 -66.5t-77.5 -51t-89 -33t-102.5 -11.5q-86 0 -158 35.5t-123.5 104t-80 168.5t-28.5 229q0 117 32 217.5t91.5 174t142.5 115t186 41.5q88 0 150.5 -28t111.5 -75v555h253v-1522h-155zM538 185q79 0 134 33t104 93v471 q-43 52 -93.5 74t-109.5 22q-57 0 -103.5 -21.5t-79 -65t-49.5 -111t-17 -158.5q0 -92 14.5 -156t42.5 -104.5t68 -58.5t89 -18z" /> +<glyph unicode="e" horiz-adv-x="1094" d="M569 1067q99 0 183 -31.5t144 -92.5t94 -149.5t34 -202.5q0 -29 -2.5 -48t-9 -29.5t-18 -15t-28.5 -4.5h-650q11 -162 87 -238t201 -76q61 0 106 14.5t78 32t58 31.5t49 14q15 0 26.5 -6t19.5 -17l74 -92q-42 -49 -94.5 -82.5t-109 -53.5t-115.5 -28t-114 -8 q-110 0 -204 36t-164 107.5t-109.5 176.5t-39.5 243q0 108 34.5 202.5t99.5 164.5t158.5 111t211.5 41zM574 886q-111 0 -173 -62.5t-79 -177.5h475q0 49 -13.5 92.5t-41 76.5t-70 52t-98.5 19z" /> +<glyph unicode="f" horiz-adv-x="717" d="M180 0v860l-91 14q-30 5 -47.5 20.5t-17.5 43.5v103h156v78q0 90 27 162t78 122t123.5 76.5t163.5 26.5q73 0 136 -19l-6 -127q-2 -30 -27.5 -37t-59.5 -7q-45 0 -80 -10t-59.5 -34t-37.5 -63.5t-13 -97.5v-70h273v-180h-265v-861h-253z" /> +<glyph unicode="g" horiz-adv-x="1059" d="M499 1069q68 0 127 -14t108 -40h302v-94q0 -24 -12 -37.5t-42 -18.5l-94 -17q10 -27 15.5 -56.5t5.5 -62.5q0 -78 -31 -141t-86 -107t-130 -68t-163 -24q-59 0 -116 11q-49 -30 -49 -66q0 -32 29 -47t76.5 -21t108 -7.5t124 -6.5t124 -18t108 -40.5t77 -75t29.5 -122.5 q0 -70 -34.5 -135.5t-99.5 -116.5t-159 -82.5t-215 -31.5q-120 0 -208 23t-146 61.5t-86.5 89t-28.5 104.5q0 74 45 124t125 80q-39 22 -62.5 57.5t-23.5 92.5q0 24 8 49t25 49.5t42.5 46.5t60.5 39q-80 43 -125.5 115t-45.5 168q0 78 31 141t87 107.5t132.5 68t166.5 23.5z M776 -47q0 31 -18.5 50.5t-50 30t-74 15.5t-90 7.5t-98.5 5.5t-98 9q-43 -24 -69 -56t-26 -74q0 -28 14 -52t44 -41.5t78 -27t118 -9.5q71 0 122 10.5t84 29.5t48.5 45t15.5 57zM499 551q47 0 81.5 13t58 35.5t35 54t11.5 69.5q0 78 -46.5 123.5t-139.5 45.5t-140 -45.5 t-47 -123.5q0 -37 12 -68.5t35 -54.5t58.5 -36t81.5 -13z" /> +<glyph unicode="h" horiz-adv-x="1164" d="M135 0v1522h253v-585q61 58 135 94t173 36q86 0 152.5 -29t111.5 -82t68 -126t23 -161v-669h-253v669q0 96 -44.5 148.5t-133.5 52.5q-66 0 -123.5 -29.5t-108.5 -80.5v-760h-253z" /> +<glyph unicode="i" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252zM442 1357q0 -33 -13 -61.5t-35 -50t-52 -34.5t-63 -13t-62.5 13t-51 34.5t-34 50t-12.5 61.5q0 34 12.5 63.5t34 51t51 34.5t62.5 13q34 0 63.5 -13t51.5 -34.5t35 -51t13 -63.5z" /> +<glyph unicode="j" horiz-adv-x="550" d="M404 1051v-1087q0 -69 -17.5 -129t-57 -105.5t-103.5 -72t-156 -26.5q-36 0 -67 5t-62 15l8 136q3 20 16 26t51 6t64 7.5t42 24.5t23 44.5t7 68.5v1087h252zM442 1357q0 -33 -13 -61.5t-35 -50t-52 -34.5t-63 -13t-62.5 13t-51 34.5t-34 50t-12.5 61.5q0 34 12.5 63.5 t34 51t51 34.5t62.5 13q34 0 63.5 -13t51.5 -34.5t35 -51t13 -63.5z" /> +<glyph unicode="k" horiz-adv-x="1129" d="M391 1522v-872h47q26 0 40.5 7.5t30.5 26.5l261 323q17 20 36.5 32t51.5 12h232l-327 -391q-17 -22 -35.5 -39.5t-40.5 -30.5q22 -15 38 -35.5t33 -44.5l350 -510h-228q-30 0 -50.5 10t-36.5 35l-268 398q-15 24 -30.5 31t-45.5 7h-58v-481h-253v1522h253z" /> +<glyph unicode="l" horiz-adv-x="555" d="M404 1522v-1522h-252v1522h252z" /> +<glyph unicode="m" horiz-adv-x="1724" d="M135 0v1051h155q49 0 64 -46l17 -78q28 31 58 56.5t64 44t73.5 29t86.5 10.5q99 0 163.5 -54t95.5 -143q25 52 62 89.5t81 61t93.5 35t99.5 11.5q87 0 154.5 -26.5t114 -78t70.5 -125t24 -168.5v-669h-253v669q0 100 -44 150.5t-129 50.5q-39 0 -72.5 -13t-58.5 -38 t-39.5 -63t-14.5 -87v-669h-254v669q0 105 -42 153t-125 48q-54 0 -102 -27t-89 -74v-769h-253z" /> +<glyph unicode="n" horiz-adv-x="1164" d="M135 0v1051h155q49 0 64 -46l18 -83q32 33 67 59.5t74.5 46t84.5 29.5t98 10q86 0 152.5 -29t111.5 -82t68 -126t23 -161v-669h-253v669q0 96 -44.5 148.5t-133.5 52.5q-66 0 -123.5 -29.5t-108.5 -80.5v-760h-253z" /> +<glyph unicode="o" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5z" /> +<glyph unicode="p" horiz-adv-x="1158" d="M135 -343v1394h155q25 0 42 -11.5t22 -34.5l21 -98q63 73 145.5 118t193.5 45q86 0 157 -36t123 -104t80 -167.5t28 -228.5q0 -118 -32 -218.5t-90.5 -174t-142 -115t-187.5 -41.5q-89 0 -151 27t-111 75v-430h-253zM627 870q-79 0 -135 -33t-104 -94v-471 q43 -53 93.5 -74t109.5 -21q57 0 103.5 21.5t79 65.5t50 111t17.5 159t-15 156t-42.5 104t-67 58t-89.5 18z" /> +<glyph unicode="q" horiz-adv-x="1167" d="M1029 1051v-1394h-253v475q-32 -34 -67 -61t-75 -46t-85 -29.5t-97 -10.5q-86 0 -158 35.5t-123.5 104t-80 168.5t-28.5 229q0 117 32 217.5t91.5 174t142.5 115t186 41.5q49 0 89.5 -8.5t75 -25t63 -39t55.5 -51.5l13 59q5 24 22.5 35t41.5 11h155zM538 185q79 0 134 33 t104 93v471q-43 52 -93.5 74t-109.5 22q-57 0 -103.5 -21.5t-79 -65t-49.5 -111t-17 -158.5q0 -92 14.5 -156t42.5 -104.5t68 -58.5t89 -18z" /> +<glyph unicode="r" horiz-adv-x="836" d="M135 0v1051h149q39 0 54 -14.5t20 -49.5l16 -127q56 97 132 153.5t170 56.5q78 0 129 -36l-33 -189q-3 -18 -13 -26t-28 -8q-15 0 -41.5 7t-71.5 7q-79 0 -135 -43.5t-95 -127.5v-654h-253z" /> +<glyph unicode="s" horiz-adv-x="894" d="M759 846q-10 -16 -21.5 -23t-28.5 -7q-18 0 -39.5 10.5t-49 23t-63 23t-83.5 10.5q-75 0 -118 -32t-43 -83q0 -34 22 -57t58.5 -40.5t82.5 -31t94 -30t94.5 -37.5t82.5 -53.5t58 -77.5t22 -108q0 -76 -27.5 -140t-80.5 -110.5t-131.5 -72.5t-179.5 -26q-54 0 -106 9.5 t-99.5 27t-88 41t-71.5 51.5l58 96q11 17 26.5 26.5t39.5 9.5t44.5 -13.5t48.5 -29t65 -28.5t95 -13q45 0 77 10.5t53 28t31 40.5t10 48q0 37 -22 60.5t-58.5 41t-83 31t-95 30t-95.5 38.5t-83 56t-58 83t-22 118q0 65 25.5 123.5t75 102t124 69.5t171.5 26q109 0 198 -36 t148 -94z" /> +<glyph unicode="t" horiz-adv-x="792" d="M480 -16q-136 0 -209.5 77t-73.5 213v587h-107q-20 0 -35 13.5t-15 39.5v101l169 27l53 287q4 20 19 31.5t37 11.5h132v-331h276v-180h-276v-569q0 -49 24.5 -77t65.5 -28q24 0 39.5 6t27 12t21 11.5t18.5 5.5q11 0 18.5 -5.5t15.5 -16.5l76 -123q-55 -46 -127 -69.5 t-149 -23.5z" /> +<glyph unicode="u" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 84q-33 -33 -68 -60t-74.5 -46t-85 -29.5t-97.5 -10.5q-86 0 -152 29t-111 82t-68 126.5t-23 161.5v668h253z" /> +<glyph unicode="v" horiz-adv-x="1092" d="M662 0h-230l-418 1051h210q28 0 47 -13.5t26 -33.5l203 -562q17 -49 29 -96t21 -94q9 47 21 94t30 96l208 562q7 20 25.5 33.5t44.5 13.5h199z" /> +<glyph unicode="w" horiz-adv-x="1619" d="M7 1051h201q29 0 48 -13.5t25 -33.5l150 -562q12 -46 20 -90t15 -88q11 44 24 88t27 90l174 564q6 20 24.5 33.5t43.5 13.5h111q28 0 46.5 -13.5t24.5 -33.5l172 -574q13 -44 24 -85.5t21 -83.5q7 44 16 88t22 91l156 562q5 20 24.5 33.5t44.5 13.5h192l-333 -1051h-204 q-33 0 -47 45l-189 607q-9 30 -17 60t-13 60q-6 -31 -13 -61t-17 -61l-191 -605q-14 -45 -55 -45h-194z" /> +<glyph unicode="x" horiz-adv-x="1105" d="M384 542l-345 509h244q28 0 41 -8t23 -25l220 -351q5 17 13 34.5t19 34.5l177 277q12 19 25.5 28.5t33.5 9.5h232l-346 -498l360 -553h-243q-28 0 -45 14.5t-28 32.5l-223 366q-9 -37 -26 -62l-197 -304q-11 -17 -27.5 -32t-40.5 -15h-226z" /> +<glyph unicode="y" horiz-adv-x="1092" d="M508 -289q-11 -27 -29 -40.5t-55 -13.5h-188l196 421l-425 973h221q31 0 47.5 -14.5t24.5 -32.5l224 -545q11 -27 19.5 -55.5t14.5 -57.5q8 30 18 57.5t21 56.5l211 544q8 20 27 33.5t43 13.5h202z" /> +<glyph unicode="z" horiz-adv-x="961" d="M895 946q0 -27 -9.5 -52t-23.5 -42l-500 -657h519v-195h-812v105q0 17 8 41.5t25 46.5l504 664h-508v194h797v-105z" /> +<glyph unicode="{" horiz-adv-x="614" d="M153 420q0 62 -29.5 101.5t-93.5 39.5v147q65 0 94 39t29 102q0 48 -7 95.5t-15.5 96t-15 97t-6.5 98.5q0 78 22.5 142t69 110t117.5 71t167 25h55v-113q0 -13 -6 -22.5t-14.5 -16t-17.5 -9.5t-17 -3h-9q-72 0 -109.5 -45t-37.5 -124q0 -56 6 -107.5t12.5 -100.5t13 -96 t6.5 -95q0 -39 -11 -74t-32 -63t-50 -49.5t-66 -31.5q37 -11 66 -32t50 -50t32 -63.5t11 -72.5q0 -48 -6.5 -95.5t-13 -96t-12.5 -100t-6 -108.5q0 -78 37.5 -123t109.5 -45h9q7 0 16.5 -3t18 -9t14.5 -16t6 -24v-111h-55q-96 0 -167 25t-117.5 70.5t-69 109.5t-22.5 142 q0 50 6.5 98.5t15 96.5t15.5 96.5t7 96.5z" /> +<glyph unicode="|" horiz-adv-x="614" d="M209 1584h197v-1927h-197v1927z" /> +<glyph unicode="}" horiz-adv-x="614" d="M462 420q0 -48 6.5 -96.5t15.5 -96.5t15.5 -96.5t6.5 -98.5q0 -78 -22.5 -142t-69 -109.5t-118 -70.5t-167.5 -25h-54v111q0 13 5.5 23.5t14 16.5t18 9t16.5 3h9q72 0 110 45.5t38 122.5q0 56 -6.5 108t-13 100.5t-12.5 96t-6 95.5q0 38 10.5 72.5t31 63.5t50.5 50t67 32 q-37 10 -67 31.5t-50.5 49.5t-31 63t-10.5 74q0 48 6 95t12.5 96t13 100.5t6.5 107.5q0 79 -38 124t-110 45h-9q-7 0 -16.5 3t-18 9.5t-14 16t-5.5 22.5v113h54q96 0 167.5 -25t118 -71t69 -110t22.5 -142q0 -50 -6.5 -98.5t-15.5 -97t-15.5 -96t-6.5 -95.5q0 -62 29 -101.5 t94 -39.5v-147q-65 0 -94 -39.5t-29 -101.5z" /> +<glyph unicode="~" d="M763 664q57 0 89 36.5t32 103.5h203q0 -79 -20.5 -143t-60 -109.5t-97 -70t-131.5 -24.5q-54 0 -103.5 14t-94 31t-83.5 31.5t-72 14.5q-57 0 -89 -37t-32 -103h-204q0 79 21 142.5t60.5 109.5t97 70.5t131.5 24.5q54 0 103.5 -14.5t94 -31.5t83.5 -31t72 -14z" /> +<glyph unicode="¡" horiz-adv-x="738" d="M253 -343v546q0 93 9 182.5t25 189.5h171q15 -100 24.5 -189.5t9.5 -182.5v-546h-239zM214 913q0 33 12 61t32.5 48.5t49 32.5t61.5 12t61 -12t49 -32.5t33 -48.5t12 -61t-12 -61t-33 -48.5t-49.5 -32.5t-60.5 -12q-33 0 -61.5 12t-49 32.5t-32.5 48.5t-12 61z" /> +<glyph unicode="¢" d="M552 -8q-91 13 -169 54.5t-135.5 109.5t-89.5 161t-32 208q0 112 34 208.5t100 168.5t162.5 115t221.5 48l14 161q2 24 20.5 43.5t48.5 19.5h93l-20 -234q81 -14 146.5 -48.5t120.5 -85.5l-66 -90q-10 -14 -20 -21t-31 -7q-14 0 -29.5 6.5t-35.5 17t-44.5 20.5t-57.5 18 l-59 -689q54 5 90.5 20t62.5 30.5t45.5 27.5t40.5 12q31 0 47 -21l69 -90q-36 -42 -79 -72t-90 -50t-98 -30.5t-104 -14.5l-13 -151q-2 -25 -20.5 -44.5t-47.5 -19.5h-93zM376 525q0 -137 50 -221.5t143 -114.5l59 683q-129 -16 -190.5 -106t-61.5 -241z" /> +<glyph unicode="£" d="M40 695q0 35 21.5 60t63.5 25h111v242q0 96 28.5 182.5t87 151.5t146.5 103t207 38q82 0 146.5 -21t115.5 -57t88.5 -84.5t63.5 -104.5l-101 -65q-33 -16 -59 -16q-38 0 -67 34q-19 23 -38 41.5t-41 32t-48.5 20.5t-59.5 7q-105 0 -157.5 -69t-52.5 -192v-243h418v-100 q0 -25 -20 -45.5t-51 -20.5h-347v-198q0 -68 -25.5 -120.5t-69.5 -97.5q76 17 151 17h600v-106q0 -18 -7.5 -38t-22 -36t-34.5 -25.5t-45 -9.5h-982v159q35 8 67 23t56 38t38.5 54t14.5 73v267h-196v81z" /> +<glyph unicode="¤" d="M216 689q0 54 14 103t39 92l-156 155l128 125l153 -153q44 27 94.5 41.5t105.5 14.5q53 0 102 -14t92 -39l156 155l126 -126l-155 -154q27 -44 42 -94.5t15 -105.5q0 -54 -14 -102t-39 -91l156 -156l-128 -126l-154 154q-43 -27 -93.5 -41.5t-105.5 -14.5 q-53 0 -102 13.5t-92 39.5l-156 -156l-126 127l154 153q-27 44 -41.5 94.5t-14.5 105.5zM402 689q0 -39 15 -74t41 -61.5t61 -41.5t75 -15t75.5 15t61.5 41.5t41 61.5t15 74q0 41 -15 76.5t-41 61.5t-61.5 41.5t-75.5 15.5t-75 -15.5t-61 -41.5t-41 -61.5t-15 -76.5z" /> +<glyph unicode="¥" d="M136 648h283l-408 833h210q36 0 58.5 -17t34.5 -45l225 -499q20 -46 32.5 -85t20.5 -77q8 38 20 77t32 85l222 499q11 24 34 43t57 19h212l-408 -833h282v-141h-326v-97h326v-141h-326v-269h-253v269h-328v141h328v97h-328v141z" /> +<glyph unicode="¦" horiz-adv-x="614" d="M209 1584h197v-828h-197v828zM209 484h197v-827h-197v827z" /> +<glyph unicode="§" horiz-adv-x="1034" d="M847 1275q-10 -16 -21.5 -23.5t-28.5 -7.5q-19 0 -40.5 10.5t-49 23t-63 23t-83.5 10.5q-43 0 -75.5 -10t-54.5 -27t-34 -39.5t-12 -47.5q0 -33 24 -57.5t64 -46.5t90.5 -42.5t104 -43.5t104 -50.5t90.5 -63.5t64 -83t24 -109q0 -83 -38.5 -150t-123.5 -108 q46 -38 75.5 -88t29.5 -120q0 -76 -27 -139.5t-80.5 -110.5t-132 -73t-180.5 -26q-54 0 -106 10t-99.5 27t-88 40.5t-70.5 51.5l59 96q11 17 26 26.5t38 9.5q24 0 45 -13t49.5 -28.5t68.5 -29t101 -13.5q84 0 130.5 35t46.5 96q0 41 -24.5 71t-65.5 53t-93 42t-105.5 40.5 t-105.5 47.5t-93 62t-65.5 85t-24.5 116q0 81 42.5 145t129.5 102q-47 40 -76.5 95t-29.5 133q0 65 25 122.5t75 101.5t124 70t171 26q109 0 198.5 -36t147.5 -94zM321 742q0 -43 29.5 -74t77 -56t107 -48t117.5 -50q41 20 59.5 51.5t18.5 68.5q0 45 -28.5 76t-74.5 57 t-104 48.5t-115 48.5q-46 -25 -66.5 -54t-20.5 -68z" /> +<glyph unicode="¨" horiz-adv-x="653" d="M276 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM659 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29 t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5t30.5 -45.5t11 -56z" /> +<glyph unicode="©" horiz-adv-x="1620" d="M1041 524q11 0 20.5 -4.5t15.5 -12.5l84 -89q-57 -73 -144 -111.5t-205 -38.5q-102 0 -185 36.5t-142 100.5t-91 150.5t-32 187.5q0 104 36 191.5t99.5 150.5t149 98t186.5 35q115 0 196 -38t136 -99l-66 -91q-6 -8 -16.5 -16t-27.5 -8t-32.5 10t-37 22.5t-54.5 22.5 t-85 10q-61 0 -109.5 -20t-81.5 -57.5t-50.5 -90.5t-17.5 -120q0 -70 18 -123t49.5 -89t75 -55t94.5 -19q50 0 82.5 8t55 19.5t39.5 22.5t40 17zM54 740q0 104 27.5 201t76.5 181t118 153.5t153 118.5t180.5 76t200.5 27t201 -27t181 -76t153 -118.5t118 -153.5t76.5 -180.5 t27.5 -201.5q0 -103 -27.5 -200t-76.5 -180.5t-118 -152.5t-153 -118t-181 -76t-201 -27t-200.5 27t-180.5 76t-153 118t-118 152.5t-76.5 180t-27.5 200.5zM193 740q0 -133 47.5 -248.5t131 -201t196 -135t242.5 -49.5t243.5 49.5t197.5 135t132.5 201t48.5 248.5 q0 89 -22 171t-62 153.5t-97 129t-125.5 99t-148.5 64t-167 22.5t-166.5 -22.5t-148 -64t-124.5 -99t-95.5 -129t-61 -153.5t-21.5 -171z" /> +<glyph unicode="ª" horiz-adv-x="712" d="M637 861h-85q-25 0 -39 6.5t-23 30.5l-12 37q-25 -20 -47 -35.5t-46 -26t-51 -15.5t-61 -5q-43 0 -77.5 11.5t-59.5 33.5t-39 54t-14 74q0 34 17.5 69t60.5 64t115.5 48t183.5 22v25q0 55 -24 78.5t-70 23.5q-35 0 -57.5 -7.5t-40 -16.5t-33 -16t-36.5 -7q-19 0 -32.5 10 t-21.5 23l-31 59q57 52 125.5 76t148.5 24q57 0 103.5 -18.5t78.5 -51.5t49.5 -78t17.5 -99v-393zM331 977q39 0 68.5 14t60.5 43v83q-60 -2 -99 -9t-62.5 -18t-32.5 -24.5t-9 -30.5q0 -33 19 -45.5t55 -12.5z" /> +<glyph unicode="«" horiz-adv-x="995" d="M126 535v32l262 406l83 -39q20 -9 29.5 -23.5t9.5 -31.5q0 -22 -13 -44l-142 -241q-14 -27 -32 -43q16 -14 32 -43l142 -242q13 -23 13 -45q0 -35 -39 -53l-83 -39zM463 535v32l262 406l83 -39q20 -9 29.5 -23.5t9.5 -31.5q0 -22 -13 -44l-142 -241q-14 -27 -33 -43 q16 -14 33 -43l142 -242q13 -23 13 -45q0 -35 -39 -53l-83 -39z" /> +<glyph unicode="¬" d="M139 781h908v-477h-214v290h-694v187z" /> +<glyph unicode="­" horiz-adv-x="735" d="M102 724h531v-211h-531v211z" /> +<glyph unicode="®" horiz-adv-x="1620" d="M54 740q0 104 27.5 201t76.5 181t118 153.5t153 118.5t180.5 76t200.5 27t201 -27t181 -76t153 -118.5t118 -153.5t76.5 -180.5t27.5 -201.5q0 -103 -27.5 -200t-76.5 -180.5t-118 -152.5t-153 -118t-181 -76t-201 -27t-200.5 27t-180.5 76t-153 118t-118 152.5 t-76.5 180t-27.5 200.5zM193 740q0 -133 47.5 -248.5t131 -201t196 -135t242.5 -49.5t243.5 49.5t197.5 135t132.5 201t48.5 248.5q0 89 -22 171t-62 153.5t-97 129t-125.5 99t-148.5 64t-167 22.5t-166.5 -22.5t-148 -64t-124.5 -99t-95.5 -129t-61 -153.5t-21.5 -171z M695 616v-332h-219v918h329q191 0 280.5 -68.5t89.5 -196.5q0 -91 -47.5 -159t-146.5 -100q24 -13 39 -33t31 -47l185 -314h-211q-46 0 -64 33l-148 270q-10 14 -23 21.5t-38 7.5h-57zM695 773h91q52 0 86 9t53 26t26 43t7 58t-6 56t-23 40t-47 23.5t-77 7.5h-110v-263z" /> +<glyph unicode="¯" horiz-adv-x="653" d="M20 1405h613v-162h-613v162z" /> +<glyph unicode="°" horiz-adv-x="822" d="M56 1150q0 73 27.5 137t75 111t112 74t139.5 27t139.5 -27t113 -74t76 -111t27.5 -137q0 -71 -27.5 -134.5t-76 -111t-113.5 -75t-139 -27.5q-75 0 -139.5 27.5t-112 75t-75 111t-27.5 134.5zM232 1148q0 -38 13.5 -71t37.5 -57t56.5 -37.5t70.5 -13.5t70.5 13.5 t56.5 37.5t37.5 57t13.5 71q0 39 -13.5 72t-37.5 58t-57 39t-70 14q-38 0 -70.5 -14t-56.5 -39t-37.5 -58t-13.5 -72z" /> +<glyph unicode="±" d="M694 1271v-363h399v-188h-399v-349h-205v349h-396v188h396v363h205zM93 269h1000v-187h-1000v187z" /> +<glyph unicode="²" horiz-adv-x="681" d="M358 1689q59 0 106 -17.5t79 -47.5t48.5 -70.5t16.5 -87.5q0 -42 -12.5 -76.5t-33.5 -66.5t-49 -61.5t-57 -60.5l-131 -133q29 8 56.5 12.5t50.5 4.5h132q29 0 45 -15t16 -41v-107h-554v58q0 17 6.5 36.5t22.5 36.5l214 211q23 23 43.5 47.5t35 49.5t23 50.5t8.5 48.5 q0 37 -20 60t-56 23q-34 0 -54.5 -17t-33.5 -48q-11 -18 -24 -27.5t-36 -9.5q-5 0 -11 0.5t-13 1.5l-101 15q17 118 92.5 174.5t190.5 56.5z" /> +<glyph unicode="³" horiz-adv-x="681" d="M369 1689q58 0 103 -17t77 -45t48 -63t16 -73q0 -65 -26.5 -109.5t-84.5 -68.5q61 -20 93 -57.5t32 -98.5q0 -63 -23.5 -109t-61.5 -76t-86 -44.5t-98 -14.5q-55 0 -99 11t-78.5 35t-60 63.5t-44.5 96.5l79 32q23 8 41 8q38 0 52 -29q6 -11 14 -23t20.5 -22t29 -16 t37.5 -6q46 0 70.5 25.5t24.5 61.5q0 28 -7 46t-24 29.5t-46 16t-72 4.5v119q43 0 71 6.5t44 18.5t22.5 29.5t6.5 38.5q0 38 -20 60t-60 22q-36 0 -56.5 -17t-32.5 -43q-9 -20 -21 -30t-33 -10q-11 0 -27 3l-93 15q8 58 32.5 102t60 72.5t82 42.5t98.5 14z" /> +<glyph unicode="´" horiz-adv-x="653" d="M681 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249q15 27 35.5 40.5t61.5 13.5h246z" /> +<glyph unicode="µ" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 85q-32 -32 -63 -54t-62.5 -35.5t-66 -20t-73.5 -6.5q-60 0 -109 18.5t-87 52.5q11 -45 14.5 -93t3.5 -90v-246h-125q-53 0 -82 27t-29 78v1289h253z" /> +<glyph unicode="¶" horiz-adv-x="1434" d="M1403 1481v-212h-219v-1483h-221v1483h-241v-1483h-221v859q-106 0 -192.5 33.5t-147.5 90t-94 132.5t-33 161q0 93 33 170t94 132t147 86t193 31h902z" /> +<glyph unicode="·" horiz-adv-x="572" d="M93 609q0 40 15 75.5t41 61.5t61 41t75 15q41 0 76 -15t61.5 -41t41.5 -61.5t15 -75.5t-15 -74t-41.5 -60t-61.5 -41t-76 -15q-40 0 -75 15t-61 41t-41 60t-15 74z" /> +<glyph unicode="¸" horiz-adv-x="653" d="M187 -232q7 0 15 -2.5t17.5 -5.5t21.5 -5t28 -2q34 0 51 13t17 31q0 30 -37 43t-114 23l46 151h158l-20 -70q91 -23 128 -61.5t37 -90.5q0 -34 -18 -61.5t-51 -47t-79 -30t-101 -10.5q-42 0 -78.5 6t-72.5 17l24 78q5 24 28 24z" /> +<glyph unicode="¹" horiz-adv-x="681" d="M165 1038h142v369l5 52l-79 -62q-16 -12 -34 -13q-15 0 -27.5 6.5t-17.5 14.5l-57 77l239 198h152v-642h118v-116h-441v116z" /> +<glyph unicode="º" horiz-adv-x="794" d="M399 1499q74 0 135.5 -22.5t105.5 -64t68 -101.5t24 -134q0 -76 -24 -137t-68 -103.5t-105.5 -65t-135.5 -22.5q-76 0 -137.5 22.5t-105.5 65t-69 103.5t-25 137q0 75 25 134.5t69 101t105.5 64t137.5 22.5zM399 996q69 0 102.5 43.5t33.5 135.5q0 91 -33.5 134 t-102.5 43q-73 0 -106 -43t-33 -134t33 -135t106 -44z" /> +<glyph unicode="»" horiz-adv-x="995" d="M269 129l-83 39q-20 9 -29.5 23.5t-9.5 31.5q0 20 14 43l141 242q16 29 33 43q-18 16 -33 43l-141 241q-13 23 -14 44q0 37 39 55l83 39l262 -406v-32zM606 129l-83 39q-20 9 -29.5 23.5t-9.5 31.5q0 20 14 43l141 242q16 29 33 43q-18 16 -33 43l-141 241q-13 23 -14 44 q0 37 39 55l83 39l262 -406v-32z" /> +<glyph unicode="¼" horiz-adv-x="1458" d="M466 73q-27 -42 -57 -57.5t-69 -15.5h-109l854 1398q24 39 55.5 61t78.5 22h107zM1352 289h96v-90q0 -13 -9 -23.5t-26 -10.5h-61v-165h-152v165h-296q-25 0 -38.5 10.5t-16.5 27.5l-15 78l343 478h175v-470zM145 840h143v368l5 53l-79 -63q-16 -12 -35 -12 q-15 0 -27.5 6t-17.5 14l-56 77l238 199h153v-642h118v-117h-442v117zM1200 461q0 24 1.5 52.5t5.5 58.5l-207 -283h200v172z" /> +<glyph unicode="½" horiz-adv-x="1458" d="M424 73q-27 -42 -57 -57.5t-69 -15.5h-109l854 1398q24 39 55.5 61t78.5 22h107zM1155 767q59 0 106 -17.5t79 -47t48.5 -70t16.5 -87.5q0 -42 -13 -77t-34 -66.5t-48.5 -61.5t-57.5 -60l-131 -134q29 8 56.5 13t51.5 5h132q29 0 44.5 -15.5t15.5 -40.5v-108h-554v58 q0 17 7 37t23 36l214 211q23 23 43.5 48t34.5 50t23 50t9 49q0 37 -20 60t-56 23q-34 0 -53.5 -16t-34.5 -50q-16 -37 -61 -37q-5 0 -10.5 0.5t-12.5 1.5l-102 16q17 118 93 174t191 56zM145 840h143v368l5 53l-79 -63q-16 -12 -35 -12q-15 0 -27.5 6t-17.5 14l-56 77 l238 199h153v-642h118v-117h-442v117z" /> +<glyph unicode="¾" horiz-adv-x="1459" d="M469 73q-27 -42 -57 -57.5t-69 -15.5h-109l855 1398q24 39 55.5 61t77.5 22h107zM1352 289h96v-90q0 -13 -9 -23.5t-26 -10.5h-61v-165h-152v165h-296q-25 0 -38.5 10.5t-16.5 27.5l-15 78l343 478h175v-470zM349 1490q58 0 103.5 -17t77 -44.5t48 -63t16.5 -73.5 q0 -65 -26.5 -109t-85.5 -69q61 -20 93 -57.5t32 -98.5q0 -63 -23.5 -108.5t-61.5 -76t-86 -44.5t-97 -14q-55 0 -99 10.5t-78.5 34.5t-60 63.5t-45.5 97.5l79 31q23 8 41 9q38 0 52 -29q6 -11 14.5 -23.5t20.5 -22t28.5 -16t38.5 -6.5q46 0 70.5 25.5t24.5 61.5 q0 28 -7 46.5t-24 29.5t-46.5 16t-72.5 5v118q43 0 71.5 7t44.5 18.5t22.5 29t6.5 39.5q0 38 -20 59.5t-60 21.5q-36 0 -57 -16t-32 -44q-10 -20 -22 -30t-32 -10q-11 0 -27 3l-93 16q8 58 32 101.5t60 72t82 42.5t98 14zM1200 461q0 24 1.5 52.5t5.5 58.5l-207 -283h200 v172z" /> +<glyph unicode="¿" horiz-adv-x="861" d="M840 -208q-36 -31 -77.5 -58t-89.5 -48t-104.5 -32.5t-122.5 -11.5q-89 0 -162 23.5t-125.5 67.5t-81 107t-28.5 143q0 78 22.5 132t57 92.5t75 65t76 50t62 47.5t31.5 57l23 148h173l18 -166q1 -5 1 -10v-10q0 -47 -22.5 -78.5t-56.5 -56.5t-73 -47t-72.5 -49t-56 -63.5 t-22.5 -89.5q0 -37 13.5 -66t38 -50t58.5 -32.5t74 -11.5q58 0 98.5 13.5t69 29t47.5 28.5t36 13q36 0 52 -31zM332 913q0 32 11.5 60.5t32.5 49t50 33t61 12.5t61 -12.5t49 -33t32.5 -49t12.5 -60.5q0 -33 -12.5 -61t-32.5 -48.5t-49 -32t-61 -11.5q-33 0 -61.5 11.5 t-49.5 32t-32.5 48.5t-11.5 61z" /> +<glyph unicode="À" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493q-12 33 -27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM582 1834q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 0.5 t-20 3t-18.5 8t-20.5 13.5l-304 223h281z" /> +<glyph unicode="Á" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493q-12 33 -27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM1121 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207 q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" /> +<glyph unicode="Â" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493q-12 33 -27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM1101 1586h-191q-15 0 -33.5 4t-30.5 13l-103 68q-4 2 -7.5 5t-7.5 6 q-2 -2 -6.5 -5t-9.5 -6l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" /> +<glyph unicode="Ã" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493q-12 33 -27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM854 1740q28 0 44.5 16t17.5 48h137q0 -51 -13 -93t-37.5 -71.5t-60.5 -46.5 t-82 -17q-37 0 -71.5 11t-65.5 24.5t-58 25t-49 11.5q-28 0 -44 -17t-17 -50h-140q0 50 13.5 92.5t39 73.5t61.5 47.5t81 16.5q37 0 71.5 -11t66 -24.5t58 -24.5t48.5 -11z" /> +<glyph unicode="Ä" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493q-12 33 -27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM644 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10 t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM1086 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44 t10.5 -53z" /> +<glyph unicode="Å" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493q-12 33 -27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM517 1723q0 44 17.5 80t46 61.5t66.5 40t80 14.5q44 0 82.5 -14.5t68.5 -40 t47.5 -61.5t17.5 -80q0 -43 -17.5 -78t-47.5 -60.5t-68.5 -39.5t-82.5 -14q-42 0 -80 14t-66.5 39.5t-46 60.5t-17.5 78zM638 1723q0 -40 24 -65.5t69 -25.5q41 0 65.5 25.5t24.5 65.5q0 43 -24.5 68t-65.5 25q-45 0 -69 -25t-24 -68z" /> +<glyph unicode="Æ" horiz-adv-x="1912" d="M1823 1262h-711l51 -411h521v-212h-495l51 -419h583v-220h-816l-45 365h-533l-145 -304q-13 -28 -40 -44.5t-64 -16.5h-209l753 1481h1099v-219zM523 559h415l-88 717q-16 -52 -34 -98t-36 -85z" /> +<glyph unicode="Ç" horiz-adv-x="1373" d="M647 -232q7 0 15 -2.5t17.5 -5.5t21.5 -5t28 -2q34 0 51 13t17 31q0 30 -37 43t-114 23l38 126q-144 15 -259 77t-195 161t-123.5 229.5t-43.5 283.5q0 167 55.5 306t156 239t240 156t308.5 56q165 0 288.5 -52.5t211.5 -139.5l-92 -128q-8 -12 -21 -21.5t-35 -9.5 q-24 0 -48.5 18.5t-62.5 40t-96 40t-147 18.5q-104 0 -191.5 -36.5t-150.5 -104t-98.5 -164.5t-35.5 -218q0 -125 35.5 -222t96 -163.5t142 -102t176.5 -35.5q56 0 101.5 6t84 19.5t72.5 34.5t68 52q10 9 21.5 14.5t24.5 5.5q23 0 39 -17l109 -118q-82 -102 -198.5 -160 t-274.5 -68l-13 -42q91 -23 128 -61.5t37 -90.5q0 -34 -18 -61.5t-50.5 -47t-78.5 -30t-102 -10.5q-42 0 -78 6t-72 17l23 78q6 24 29 24z" /> +<glyph unicode="È" horiz-adv-x="1172" d="M1083 1481v-219h-656v-411h517v-212h-517v-419h656v-220h-933v1481h933zM486 1834q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 0.5t-20 3t-18.5 8t-20.5 13.5l-304 223h281z" /> +<glyph unicode="É" horiz-adv-x="1172" d="M1083 1481v-219h-656v-411h517v-212h-517v-419h656v-220h-933v1481h933zM1025 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" /> +<glyph unicode="Ê" horiz-adv-x="1172" d="M1083 1481v-219h-656v-411h517v-212h-517v-419h656v-220h-933v1481h933zM1005 1586h-191q-15 0 -33.5 4t-30.5 13l-103 68q-4 2 -7.5 5t-7.5 6q-2 -2 -6.5 -5t-9.5 -6l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" /> +<glyph unicode="Ë" horiz-adv-x="1172" d="M1083 1481v-219h-656v-411h517v-212h-517v-419h656v-220h-933v1481h933zM548 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM990 1707 q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" /> +<glyph unicode="Ì" horiz-adv-x="643" d="M460 0h-277v1481h277v-1481zM181 1834q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 0.5t-20 3t-18.5 8t-20.5 13.5l-304 223h281z" /> +<glyph unicode="Í" horiz-adv-x="643" d="M460 0h-277v1481h277v-1481zM720 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" /> +<glyph unicode="Î" horiz-adv-x="643" d="M460 0h-277v1481h277v-1481zM699 1586h-191q-15 0 -33.5 4t-30.5 13l-103 68q-4 2 -7.5 5t-7.5 6q-2 -2 -6.5 -5t-9.5 -6l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" /> +<glyph unicode="Ï" horiz-adv-x="643" d="M460 0h-277v1481h277v-1481zM242 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM684 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10 q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" /> +<glyph unicode="Ð" horiz-adv-x="1618" d="M54 823h185v658h565q168 0 306 -55t236.5 -152.5t152.5 -234t54 -299.5t-54 -299t-152.5 -234t-236.5 -152.5t-306 -54.5h-565v667h-185v156zM1271 740q0 122 -32.5 219t-93 164t-147 103t-194.5 36h-288v-439h370v-156h-370v-448h288q109 0 195 36t146.5 103t93 163.5 t32.5 218.5z" /> +<glyph unicode="Ñ" horiz-adv-x="1548" d="M294 1481q18 0 30.5 -1.5t22 -6.5t19 -13.5t20.5 -22.5l777 -991q-4 36 -5.5 70.5t-1.5 64.5v900h243v-1481h-143q-33 0 -54 10t-42 37l-774 986q3 -33 4.5 -65t1.5 -59v-909h-242v1481h144v0zM917 1740q28 0 44.5 16t17.5 48h137q0 -51 -13 -93t-37.5 -71.5t-60.5 -46.5 t-82 -17q-37 0 -71.5 11t-65.5 24.5t-58 25t-49 11.5q-28 0 -44 -17t-17 -50h-140q0 50 13.5 92.5t39 73.5t61.5 47.5t81 16.5q37 0 71.5 -11t66 -24.5t58 -24.5t48.5 -11z" /> +<glyph unicode="Ò" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5zM676 1834q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 0.5t-20 3t-18.5 8t-20.5 13.5l-304 223h281z" /> +<glyph unicode="Ó" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5zM1215 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" /> +<glyph unicode="Ô" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5zM1196 1586h-191q-15 0 -33.5 4t-30.5 13l-103 68q-4 2 -7.5 5t-7.5 6q-2 -2 -6.5 -5t-9.5 -6l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5 h-191l248 224h252z" /> +<glyph unicode="Õ" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5zM949 1740q28 0 44.5 16t17.5 48h137q0 -51 -13 -93t-37.5 -71.5t-60.5 -46.5t-82 -17q-37 0 -71.5 11t-65.5 24.5t-58 25t-49 11.5 q-28 0 -44 -17t-17 -50h-140q0 50 13.5 92.5t39 73.5t61.5 47.5t81 16.5q37 0 71.5 -11t66 -24.5t58 -24.5t48.5 -11z" /> +<glyph unicode="Ö" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5zM739 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11 q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM1181 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" /> +<glyph unicode="×" d="M1058 1020l-333 -333l349 -348l-134 -132l-348 347l-349 -349l-134 132l350 350l-335 335l133 133l335 -335l332 333z" /> +<glyph unicode="Ø" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5q-103 0 -194 21.5t-171 62.5l-78 -108q-30 -41 -71.5 -57.5t-80.5 -16.5h-108l199 275q-118 102 -182.5 250.5t-64.5 328.5q0 163 54 302t153 240t237.5 158t306.5 57q113 0 211.5 -25.5t182.5 -74.5 l61 84q13 18 24.5 31.5t24 21t28 11t38.5 3.5h141l-183 -252q106 -102 164 -244t58 -312zM350 740q0 -118 30 -211t87 -160l603 829q-106 65 -250 65q-109 0 -195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219zM1287 740q0 105 -24 191.5t-70 151.5l-594 -817q97 -47 221 -47 q109 0 195.5 36t147 103t92.5 163.5t32 218.5z" /> +<glyph unicode="Ù" horiz-adv-x="1490" d="M745 222q80 0 143 26.5t106.5 75t66.5 117t23 153.5v887h276v-887q0 -132 -42.5 -244t-122.5 -193.5t-193.5 -127t-256.5 -45.5q-142 0 -255.5 45.5t-193 127t-122 193.5t-42.5 244v887h276v-886q0 -85 23 -153.5t66 -117.5t105.5 -75.5t142.5 -26.5zM600 1834 q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 0.5t-20 3t-18.5 8t-20.5 13.5l-304 223h281z" /> +<glyph unicode="Ú" horiz-adv-x="1490" d="M745 222q80 0 143 26.5t106.5 75t66.5 117t23 153.5v887h276v-887q0 -132 -42.5 -244t-122.5 -193.5t-193.5 -127t-256.5 -45.5q-142 0 -255.5 45.5t-193 127t-122 193.5t-42.5 244v887h276v-886q0 -85 23 -153.5t66 -117.5t105.5 -75.5t142.5 -26.5zM1139 1834 l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" /> +<glyph unicode="Û" horiz-adv-x="1490" d="M745 222q80 0 143 26.5t106.5 75t66.5 117t23 153.5v887h276v-887q0 -132 -42.5 -244t-122.5 -193.5t-193.5 -127t-256.5 -45.5q-142 0 -255.5 45.5t-193 127t-122 193.5t-42.5 244v887h276v-886q0 -85 23 -153.5t66 -117.5t105.5 -75.5t142.5 -26.5zM1119 1586h-191 q-15 0 -33.5 4t-30.5 13l-103 68q-4 2 -7.5 5t-7.5 6q-2 -2 -6.5 -5t-9.5 -6l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" /> +<glyph unicode="Ü" horiz-adv-x="1490" d="M745 222q80 0 143 26.5t106.5 75t66.5 117t23 153.5v887h276v-887q0 -132 -42.5 -244t-122.5 -193.5t-193.5 -127t-256.5 -45.5q-142 0 -255.5 45.5t-193 127t-122 193.5t-42.5 244v887h276v-886q0 -85 23 -153.5t66 -117.5t105.5 -75.5t142.5 -26.5zM662 1707 q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM1104 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5 t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" /> +<glyph unicode="Ý" horiz-adv-x="1340" d="M808 575v-575h-276v575l-539 906h243q36 0 56.5 -17.5t35.5 -44.5l271 -494q24 -44 41 -83.5t32 -77.5q13 39 30 78.5t40 82.5l270 494q11 23 33.5 42.5t57.5 19.5h244zM1066 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5 t22.5 13t25.5 6t35 1.5h281z" /> +<glyph unicode="Þ" horiz-adv-x="1280" d="M434 267v-267h-275v1481h275v-254h207q148 0 257 -35t179.5 -97.5t104 -149.5t33.5 -190q0 -108 -35.5 -197.5t-107.5 -154t-179.5 -100.5t-251.5 -36h-207zM434 482h207q76 0 132 19t93 54.5t55.5 86t18.5 113.5q0 59 -18.5 107t-55.5 82t-93 52t-132 18h-207v-532z" /> +<glyph unicode="ß" horiz-adv-x="1300" d="M717 1506q120 0 205 -34.5t138 -87t77.5 -113t24.5 -112.5q0 -59 -20 -101t-50 -74t-65 -55.5t-65 -45t-50 -44.5t-20 -53q0 -34 25.5 -58.5t63.5 -48t83 -50t83 -65t63.5 -92.5t25.5 -133q0 -87 -32.5 -153t-87.5 -111t-128.5 -68t-154.5 -23q-47 0 -93.5 9.5t-89 27 t-80.5 41t-68 51.5l59 96q10 17 25.5 26.5t39.5 9.5t45 -13.5t46.5 -29t58.5 -28.5t79 -13q65 0 104.5 38.5t39.5 99.5q0 48 -27.5 80t-69 57t-89.5 49t-89.5 56t-69 78.5t-27.5 116.5q0 58 21.5 100.5t53.5 75t70 58.5t70 54t54 59.5t22 74.5q0 34 -12 64t-37.5 52 t-66 35.5t-96.5 13.5q-134 0 -203.5 -82.5t-69.5 -241.5v-999h-253v1008q0 109 37.5 199.5t106.5 157.5t168.5 104t224.5 37z" /> +<glyph unicode="à" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32 t-55.5 -32.5t-56.5 -14.5q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M468 1497q42 0 61.5 -14t35.5 -40l146 -249h-144q-29 0 -47 7.5t-36 28.5l-253 267h237z" /> +<glyph unicode="á" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32 t-55.5 -32.5t-56.5 -14.5q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M913 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249q15 27 35.5 40.5t61.5 13.5h246z" /> +<glyph unicode="â" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32 t-55.5 -32.5t-56.5 -14.5q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M912 1196h-169q-32 0 -51 18l-108 98q-5 5 -10.5 10t-10.5 12q-5 -7 -11 -12t-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" /> +<glyph unicode="ã" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32 t-55.5 -32.5t-56.5 -14.5q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M668 1392q31 0 48.5 16.5t17.5 60.5h153q0 -57 -15.5 -103.5t-43.5 -80t-66 -51t-85 -17.5q-37 0 -68.5 13t-59 28.5t-51.5 28.5t-45 13q-30 0 -46.5 -17.5t-16.5 -60.5h-157q0 57 16 103.5t44.5 80t67 52t83.5 18.5q37 0 69 -13.5t60 -29t51.5 -28.5t43.5 -13z" /> +<glyph unicode="ä" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32 t-55.5 -32.5t-56.5 -14.5q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M508 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM891 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5 t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5t30.5 -45.5t11 -56z" /> +<glyph unicode="å" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32 t-55.5 -32.5t-56.5 -14.5q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M331 1357q0 47 18.5 86t50 66.5t72.5 43t86 15.5q46 0 88 -15.5t73.5 -43t50.5 -66.5t19 -86q0 -46 -19 -84t-50.5 -65t-73.5 -42t-88 -15q-45 0 -86 15t-72.5 42t-50 65t-18.5 84zM469 1357q0 -39 24 -65t69 -26q41 0 65.5 26t24.5 65q0 43 -24.5 68t-65.5 25 q-45 0 -69 -25t-24 -68z" /> +<glyph unicode="æ" horiz-adv-x="1690" d="M1202 1067q89 0 166 -34.5t132.5 -99t87.5 -156.5t32 -207q0 -29 -2.5 -47.5t-8.5 -29.5t-17 -15.5t-28 -4.5h-613q14 -151 85.5 -222t184.5 -71q70 0 113 13.5t72 30t48.5 29.5t40.5 13q18 0 30.5 -6t20.5 -17l68 -86q-42 -49 -92.5 -82.5t-105 -53.5t-111 -28 t-109.5 -8q-112 0 -208.5 50t-159.5 156q-31 -55 -75.5 -94t-99 -64.5t-116 -37t-123.5 -11.5q-77 0 -138 19.5t-104 56.5t-66 93t-23 129q0 59 31 119t104 109t193.5 81.5t300.5 36.5v36q0 105 -44.5 159.5t-129.5 54.5q-61 0 -102.5 -16t-71.5 -34.5t-55.5 -34.5 t-56.5 -16q-26 0 -44.5 13.5t-29.5 32.5l-46 81q91 83 190 124.5t220 41.5q119 0 194.5 -45t115.5 -124q58 77 145 121.5t205 44.5zM712 473q-111 -5 -185 -21t-119.5 -39.5t-64 -54t-18.5 -64.5q0 -71 39.5 -103.5t109.5 -32.5q50 0 93.5 15t75.5 47.5t50.5 83.5t18.5 122 v47zM1191 886q-108 0 -166.5 -68t-72.5 -192h444q0 50 -12.5 97t-37.5 83.5t-64 58t-91 21.5z" /> +<glyph unicode="ç" horiz-adv-x="976" d="M415 -232q7 0 14.5 -2.5t17.5 -5.5t21.5 -5t28.5 -2q34 0 50.5 13t16.5 31q0 30 -37 43t-113 23l39 129q-82 14 -153.5 56.5t-123.5 110.5t-81.5 161t-29.5 207q0 116 33 215t97.5 171t160 113t218.5 41q118 0 206.5 -38t159.5 -108l-67 -93q-11 -14 -21.5 -22t-31.5 -8 q-19 0 -37.5 11.5t-44 26.5t-61 26.5t-87.5 11.5q-67 0 -117 -24t-83.5 -69t-49.5 -109t-16 -145q0 -84 17.5 -149.5t51.5 -110t82 -67.5t109 -23q60 0 97.5 15t63 33t44.5 32.5t42 14.5q28 0 47 -23l72 -92q-71 -83 -159 -121.5t-182 -46.5l-12 -45q91 -23 128 -61.5 t37 -90.5q0 -34 -18 -61.5t-51 -47t-79 -30t-101 -10.5q-42 0 -78.5 6t-72.5 17l24 78q6 24 29 24z" /> +<glyph unicode="è" horiz-adv-x="1094" d="M569 1067q99 0 183 -31.5t144 -92.5t94 -149.5t34 -202.5q0 -29 -2.5 -48t-9 -29.5t-18 -15t-28.5 -4.5h-650q11 -162 87 -238t201 -76q61 0 106 14.5t78 32t58 31.5t49 14q15 0 26.5 -6t19.5 -17l74 -92q-42 -49 -94.5 -82.5t-109 -53.5t-115.5 -28t-114 -8 q-110 0 -204 36t-164 107.5t-109.5 176.5t-39.5 243q0 108 34.5 202.5t99.5 164.5t158.5 111t211.5 41zM574 886q-111 0 -173 -62.5t-79 -177.5h475q0 49 -13.5 92.5t-41 76.5t-70 52t-98.5 19zM485 1497q42 0 61.5 -14t35.5 -40l146 -249h-144q-29 0 -47 7.5t-36 28.5 l-253 267h237z" /> +<glyph unicode="é" horiz-adv-x="1094" d="M569 1067q99 0 183 -31.5t144 -92.5t94 -149.5t34 -202.5q0 -29 -2.5 -48t-9 -29.5t-18 -15t-28.5 -4.5h-650q11 -162 87 -238t201 -76q61 0 106 14.5t78 32t58 31.5t49 14q15 0 26.5 -6t19.5 -17l74 -92q-42 -49 -94.5 -82.5t-109 -53.5t-115.5 -28t-114 -8 q-110 0 -204 36t-164 107.5t-109.5 176.5t-39.5 243q0 108 34.5 202.5t99.5 164.5t158.5 111t211.5 41zM574 886q-111 0 -173 -62.5t-79 -177.5h475q0 49 -13.5 92.5t-41 76.5t-70 52t-98.5 19zM930 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249q15 27 35.5 40.5 t61.5 13.5h246z" /> +<glyph unicode="ê" horiz-adv-x="1094" d="M569 1067q99 0 183 -31.5t144 -92.5t94 -149.5t34 -202.5q0 -29 -2.5 -48t-9 -29.5t-18 -15t-28.5 -4.5h-650q11 -162 87 -238t201 -76q61 0 106 14.5t78 32t58 31.5t49 14q15 0 26.5 -6t19.5 -17l74 -92q-42 -49 -94.5 -82.5t-109 -53.5t-115.5 -28t-114 -8 q-110 0 -204 36t-164 107.5t-109.5 176.5t-39.5 243q0 108 34.5 202.5t99.5 164.5t158.5 111t211.5 41zM574 886q-111 0 -173 -62.5t-79 -177.5h475q0 49 -13.5 92.5t-41 76.5t-70 52t-98.5 19zM929 1196h-169q-32 0 -51 18l-108 98q-5 5 -10.5 10t-10.5 12q-5 -7 -11 -12 t-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" /> +<glyph unicode="ë" horiz-adv-x="1094" d="M569 1067q99 0 183 -31.5t144 -92.5t94 -149.5t34 -202.5q0 -29 -2.5 -48t-9 -29.5t-18 -15t-28.5 -4.5h-650q11 -162 87 -238t201 -76q61 0 106 14.5t78 32t58 31.5t49 14q15 0 26.5 -6t19.5 -17l74 -92q-42 -49 -94.5 -82.5t-109 -53.5t-115.5 -28t-114 -8 q-110 0 -204 36t-164 107.5t-109.5 176.5t-39.5 243q0 108 34.5 202.5t99.5 164.5t158.5 111t211.5 41zM574 886q-111 0 -173 -62.5t-79 -177.5h475q0 49 -13.5 92.5t-41 76.5t-70 52t-98.5 19zM525 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5 t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM908 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5 t30.5 -45.5t11 -56z" /> +<glyph unicode="ì" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252zM195 1497q42 0 61.5 -14t35.5 -40l146 -249h-144q-29 0 -47 7.5t-36 28.5l-253 267h237z" /> +<glyph unicode="í" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252zM640 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249q15 27 35.5 40.5t61.5 13.5h246z" /> +<glyph unicode="î" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252zM639 1196h-169q-32 0 -51 18l-108 98q-5 5 -10.5 10t-10.5 12q-5 -7 -11 -12t-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" /> +<glyph unicode="ï" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252zM235 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM618 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29 t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5t30.5 -45.5t11 -56z" /> +<glyph unicode="ð" horiz-adv-x="1163" d="M395 1087q-10 16 -10 34q0 31 33 49l77 44q-33 13 -69.5 24.5t-76.5 23.5q-26 7 -42.5 25.5t-16.5 48.5q0 16 8 43l30 87q103 -17 199 -49t181 -82l180 117l50 -82q10 -17 10 -32q0 -14 -7.5 -26.5t-21.5 -20.5l-83 -47q58 -52 105 -116t81 -141t52 -168t18 -196 q0 -151 -34.5 -269t-101 -200.5t-165 -125.5t-225.5 -43q-106 0 -197 34t-158 98.5t-105 157.5t-38 210q0 94 33 179.5t94 149.5t147 101.5t193 37.5q97 0 178 -35t143 -103q-22 109 -73 187t-138 137l-203 -131zM572 177q59 0 109.5 21.5t87.5 69t59 123.5t25 184 q-15 38 -39 72t-57 59t-75.5 40t-95.5 15q-66 0 -115.5 -21.5t-83.5 -59.5t-51.5 -88t-17.5 -109q0 -75 20 -131.5t54.5 -95.5t80.5 -59t99 -20z" /> +<glyph unicode="ñ" horiz-adv-x="1164" d="M135 0v1051h155q49 0 64 -46l18 -83q32 33 67 59.5t74.5 46t84.5 29.5t98 10q86 0 152.5 -29t111.5 -82t68 -126t23 -161v-669h-253v669q0 96 -44.5 148.5t-133.5 52.5q-66 0 -123.5 -29.5t-108.5 -80.5v-760h-253zM701 1392q31 0 48.5 16.5t17.5 60.5h153 q0 -57 -15.5 -103.5t-43.5 -80t-66 -51t-85 -17.5q-37 0 -68.5 13t-59 28.5t-51.5 28.5t-45 13q-30 0 -46.5 -17.5t-16.5 -60.5h-157q0 57 16 103.5t44.5 80t67 52t83.5 18.5q37 0 69 -13.5t60 -29t51.5 -28.5t43.5 -13z" /> +<glyph unicode="ò" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5zM494 1497q42 0 61.5 -14t35.5 -40l146 -249h-144q-29 0 -47 7.5t-36 28.5l-253 267h237z" /> +<glyph unicode="ó" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5zM939 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249q15 27 35.5 40.5t61.5 13.5h246z" /> +<glyph unicode="ô" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5zM938 1196h-169q-32 0 -51 18l-108 98q-5 5 -10.5 10t-10.5 12q-5 -7 -11 -12t-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" /> +<glyph unicode="õ" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5zM694 1392q31 0 48.5 16.5t17.5 60.5h153q0 -57 -15.5 -103.5t-43.5 -80t-66 -51t-85 -17.5q-37 0 -68.5 13t-59 28.5t-51.5 28.5t-45 13q-30 0 -46.5 -17.5t-16.5 -60.5h-157q0 57 16 103.5t44.5 80 t67 52t83.5 18.5q37 0 69 -13.5t60 -29t51.5 -28.5t43.5 -13z" /> +<glyph unicode="ö" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5zM534 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM917 1323 q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5t30.5 -45.5t11 -56z" /> +<glyph unicode="÷" d="M93 781h1000v-187h-1000v187zM437 1052q0 32 12 60.5t32.5 49t49 32.5t61.5 12q32 0 60.5 -12t49.5 -32.5t33.5 -49.5t12.5 -60q0 -33 -12.5 -61t-33.5 -48.5t-49.5 -32.5t-60.5 -12q-33 0 -61.5 12t-49 32.5t-32.5 48.5t-12 61zM437 323q0 32 12 60.5t32.5 49t49 32.5 t61.5 12q32 0 60.5 -12t49.5 -32.5t33.5 -49.5t12.5 -60q0 -33 -12.5 -61.5t-33.5 -48.5t-49.5 -32t-60.5 -12q-33 0 -61.5 12t-49 32t-32.5 48.5t-12 61.5z" /> +<glyph unicode="ø" horiz-adv-x="1164" d="M966 914q66 -71 101 -168t35 -219q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-74 0 -139 14.5t-121 43.5l-35 -48q-30 -40 -71.5 -57t-80.5 -17h-93l158 214q-68 71 -104 169.5t-36 222.5t37.5 224.5t105.5 170t164.5 107.5t214.5 38q74 0 139 -15.5 t121 -43.5l57 76q13 18 24.5 31t24.5 21.5t28 12t38 3.5h125zM307 525q0 -122 33 -201l385 522q-57 35 -141 35q-134 0 -205.5 -93t-71.5 -263zM584 171q131 0 202 92t71 262q0 60 -8 109.5t-24 88.5l-383 -519q57 -33 142 -33z" /> +<glyph unicode="ù" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 84q-33 -33 -68 -60t-74.5 -46t-85 -29.5t-97.5 -10.5q-86 0 -152 29t-111 82t-68 126.5t-23 161.5v668h253zM489 1497q42 0 61.5 -14t35.5 -40l146 -249h-144 q-29 0 -47 7.5t-36 28.5l-253 267h237z" /> +<glyph unicode="ú" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 84q-33 -33 -68 -60t-74.5 -46t-85 -29.5t-97.5 -10.5q-86 0 -152 29t-111 82t-68 126.5t-23 161.5v668h253zM934 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151 l145 249q15 27 35.5 40.5t61.5 13.5h246z" /> +<glyph unicode="û" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 84q-33 -33 -68 -60t-74.5 -46t-85 -29.5t-97.5 -10.5q-86 0 -152 29t-111 82t-68 126.5t-23 161.5v668h253zM933 1196h-169q-32 0 -51 18l-108 98q-5 5 -10.5 10 t-10.5 12q-5 -7 -11 -12t-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" /> +<glyph unicode="ü" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 84q-33 -33 -68 -60t-74.5 -46t-85 -29.5t-97.5 -10.5q-86 0 -152 29t-111 82t-68 126.5t-23 161.5v668h253zM529 1323q0 -29 -11 -54t-31 -43.5t-46 -29 t-55 -10.5q-28 0 -53 10.5t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM912 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5 t54.5 11t55 -11t45.5 -30.5t30.5 -45.5t11 -56z" /> +<glyph unicode="ý" horiz-adv-x="1092" d="M508 -289q-11 -27 -29 -40.5t-55 -13.5h-188l196 421l-425 973h221q31 0 47.5 -14.5t24.5 -32.5l224 -545q11 -27 19.5 -55.5t14.5 -57.5q8 30 18 57.5t21 56.5l211 544q8 20 27 33.5t43 13.5h202zM921 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249 q15 27 35.5 40.5t61.5 13.5h246z" /> +<glyph unicode="þ" horiz-adv-x="1158" d="M135 -343v1865h253v-600q62 67 141 106t185 39q86 0 157 -35.5t123 -103t80 -166.5t28 -228q0 -118 -32 -218.5t-90.5 -174t-142 -115t-187.5 -41.5q-45 0 -83 8t-69.5 24t-58 38t-51.5 49v-447h-253zM627 870q-79 0 -135 -33t-104 -94v-471q43 -53 93.5 -74t109.5 -21 q57 0 103.5 21.5t79 65.5t50 111t17.5 159t-15 156t-42.5 104t-67 58t-89.5 18z" /> +<glyph unicode="ÿ" horiz-adv-x="1092" d="M508 -289q-11 -27 -29 -40.5t-55 -13.5h-188l196 421l-425 973h221q31 0 47.5 -14.5t24.5 -32.5l224 -545q11 -27 19.5 -55.5t14.5 -57.5q8 30 18 57.5t21 56.5l211 544q8 20 27 33.5t43 13.5h202zM516 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5 t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM899 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5 t30.5 -45.5t11 -56z" /> +<glyph unicode="ı" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252z" /> +<glyph unicode="Œ" horiz-adv-x="2214" d="M2125 1481v-219h-657v-411h519v-212h-519v-419h657v-220h-901v189q-89 -96 -209.5 -150t-270.5 -54q-152 0 -276 56.5t-213 157.5t-137.5 240t-48.5 301q0 163 48.5 302t137.5 240t213.5 158t275.5 57q148 0 269.5 -54t210.5 -152v190h901zM1192 740q0 122 -28.5 220 t-83 167t-132.5 106t-175 37q-98 0 -177 -37t-133 -106t-83.5 -167t-29.5 -220t29.5 -219.5t83.5 -166t133 -105.5t177 -37q97 0 175 37t132.5 105.5t83 166t28.5 219.5z" /> +<glyph unicode="œ" horiz-adv-x="1790" d="M1303 1067q89 0 165.5 -34.5t132.5 -99t87.5 -156.5t31.5 -207q0 -29 -2.5 -47.5t-8.5 -29.5t-17 -15.5t-28 -4.5h-612q14 -151 85 -222t184 -71q57 0 98 14.5t72.5 32t56 31.5t47.5 14q27 0 45 -23l74 -92q-42 -49 -92 -82.5t-105 -53.5t-111 -28t-110 -8 q-111 0 -207.5 49.5t-158.5 155.5q-61 -99 -160 -152t-230 -53q-104 0 -192 37.5t-151.5 108.5t-99 171t-35.5 225q0 124 36 224.5t100 170t153.5 107.5t197.5 38q127 0 222.5 -52.5t156.5 -150.5q56 92 150.5 147.5t224.5 55.5zM563 179q121 0 179.5 88t58.5 258t-58.5 259 t-179.5 89q-123 0 -181 -89.5t-58 -258.5q0 -170 57.5 -258t181.5 -88zM1291 886q-108 0 -166.5 -68t-71.5 -192h443q0 50 -12.5 97t-37.5 83.5t-64 58t-91 21.5z" /> +<glyph unicode="Ÿ" horiz-adv-x="1340" d="M808 575v-575h-276v575l-539 906h243q36 0 56.5 -17.5t35.5 -44.5l271 -494q24 -44 41 -83.5t32 -77.5q13 39 30 78.5t40 82.5l270 494q11 23 33.5 42.5t57.5 19.5h244zM589 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43 t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM1031 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" /> +<glyph unicode="ˆ" horiz-adv-x="653" d="M680 1196h-169q-32 0 -51 18l-108 98q-5 5 -10.5 10t-10.5 12q-5 -7 -11 -12t-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" /> +<glyph unicode="˚" horiz-adv-x="653" d="M98 1357q0 47 18.5 86t50 66.5t72.5 43t86 15.5q46 0 88 -15.5t73.5 -43t50.5 -66.5t19 -86q0 -46 -19 -84t-50.5 -65t-73.5 -42t-88 -15q-45 0 -86 15t-72.5 42t-50 65t-18.5 84zM236 1357q0 -39 24 -65t69 -26q41 0 65.5 26t24.5 65q0 43 -24.5 68t-65.5 25 q-45 0 -69 -25t-24 -68z" /> +<glyph unicode="˜" horiz-adv-x="653" d="M436 1392q31 0 48.5 16.5t17.5 60.5h153q0 -57 -15.5 -103.5t-43.5 -80t-66 -51t-85 -17.5q-37 0 -68.5 13t-59 28.5t-51.5 28.5t-45 13q-30 0 -46.5 -17.5t-16.5 -60.5h-157q0 57 16 103.5t44.5 80t67 52t83.5 18.5q37 0 69 -13.5t60 -29t51.5 -28.5t43.5 -13z" /> +<glyph unicode=" " horiz-adv-x="959" /> +<glyph unicode=" " horiz-adv-x="1919" /> +<glyph unicode=" " horiz-adv-x="959" /> +<glyph unicode=" " horiz-adv-x="1919" /> +<glyph unicode=" " horiz-adv-x="639" /> +<glyph unicode=" " horiz-adv-x="479" /> +<glyph unicode=" " horiz-adv-x="319" /> +<glyph unicode=" " horiz-adv-x="319" /> +<glyph unicode=" " horiz-adv-x="239" /> +<glyph unicode=" " horiz-adv-x="383" /> +<glyph unicode=" " horiz-adv-x="106" /> +<glyph unicode="‐" horiz-adv-x="735" d="M102 724h531v-211h-531v211z" /> +<glyph unicode="‑" horiz-adv-x="735" d="M102 724h531v-211h-531v211z" /> +<glyph unicode="‒" horiz-adv-x="735" d="M102 724h531v-211h-531v211z" /> +<glyph unicode="–" horiz-adv-x="1164" d="M167 703h830v-179h-830v179z" /> +<glyph unicode="—" horiz-adv-x="1724" d="M167 703h1389v-179h-1389v179z" /> +<glyph unicode="‘" horiz-adv-x="460" d="M170 1000q-70 114 -70 230q0 102 52 196t150 171l79 -48q10 -6 14 -14.5t4 -16.5q0 -9 -4 -17.5t-9 -14.5q-13 -15 -28 -35.5t-27.5 -45t-20.5 -53t-8 -61.5q0 -35 11.5 -74t37.5 -82q9 -14 9 -29q0 -33 -36 -46z" /> +<glyph unicode="’" horiz-adv-x="460" d="M316 1569q36 -57 53 -114.5t17 -115.5q0 -102 -51.5 -195t-149.5 -172l-79 48q-10 6 -14 14.5t-4 17.5q0 19 13 32q13 15 28 35.5t27.5 44.5t20 52.5t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 27q0 33 38 46z" /> +<glyph unicode="‚" horiz-adv-x="460" d="M316 298q36 -57 53 -114.5t17 -114.5q0 -102 -51.5 -195.5t-149.5 -172.5l-79 48q-10 6 -14 15t-4 17q0 19 13 33q13 15 28 35t27.5 44t20 52.5t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 28q0 33 38 46z" /> +<glyph unicode="“" horiz-adv-x="800" d="M170 1000q-70 114 -70 230q0 102 52 196t150 171l79 -48q10 -6 14 -14.5t4 -16.5q0 -9 -4 -17.5t-9 -14.5q-13 -15 -28 -35.5t-27.5 -45t-20.5 -53t-8 -61.5q0 -35 11.5 -74t37.5 -82q9 -14 9 -29q0 -33 -36 -46zM510 1000q-70 114 -70 230q0 102 52 196t150 171l79 -48 q10 -6 14 -14.5t4 -16.5q0 -9 -4 -17.5t-9 -14.5q-13 -15 -28 -35.5t-27.5 -45t-20.5 -53t-8 -61.5q0 -35 11.5 -74t37.5 -82q9 -14 9 -29q0 -33 -36 -46z" /> +<glyph unicode="”" horiz-adv-x="800" d="M316 1569q36 -57 53 -114.5t17 -115.5q0 -102 -51.5 -195t-149.5 -172l-79 48q-10 6 -14 14.5t-4 17.5q0 19 13 32q13 15 28 35t27.5 44.5t20 53t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 27q0 33 38 46zM656 1569q36 -57 53 -114.5t17 -115.5q0 -102 -51.5 -195 t-149.5 -172l-79 48q-10 6 -14 14.5t-4 17.5q0 19 13 32q13 15 28 35t27.5 44.5t20 53t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 27q0 33 38 46z" /> +<glyph unicode="„" horiz-adv-x="800" d="M316 298q36 -57 53 -114.5t17 -114.5q0 -102 -51.5 -195.5t-149.5 -172.5l-79 48q-10 6 -14 15t-4 17q0 19 13 33q13 15 28 34.5t27.5 44t20 53t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 28q0 33 38 46zM656 298q36 -57 53 -114.5t17 -114.5q0 -102 -51.5 -195.5 t-149.5 -172.5l-79 48q-10 6 -14 15t-4 17q0 19 13 33q13 15 28 34.5t27.5 44t20 53t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 28q0 33 38 46z" /> +<glyph unicode="•" d="M146 607q0 92 35.5 173t96 142t141.5 96t173 35t174 -35t142.5 -96t95.5 -142t35 -173q0 -91 -35 -171.5t-95.5 -141t-142.5 -95t-174 -34.5t-173 34.5t-141.5 95t-96 141t-35.5 171.5z" /> +<glyph unicode="…" horiz-adv-x="1553" d="M75 139q0 32 11.5 60.5t32.5 49t50 33t61 12.5t60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61zM1168 139q0 32 12 60.5t33 49t49.5 33t61.5 12.5q32 0 60.5 -12.5t49 -33t33 -49 t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-33 48.5t-12 61zM622 139q0 32 11.5 60.5t32.5 49t49.5 33t61.5 12.5q32 0 60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5 t-49.5 32t-32.5 48.5t-11.5 61z" /> +<glyph unicode=" " horiz-adv-x="383" /> +<glyph unicode="‹" horiz-adv-x="657" d="M126 535v32l262 406l83 -39q20 -9 29.5 -23.5t9.5 -31.5q0 -22 -13 -44l-142 -241q-14 -27 -32 -43q16 -14 32 -43l142 -242q13 -23 13 -44q0 -36 -39 -54l-83 -39z" /> +<glyph unicode="›" horiz-adv-x="657" d="M269 129l-83 39q-20 9 -29.5 23.5t-9.5 31.5q0 20 14 43l141 242q16 29 33 43q-18 16 -33 43l-141 241q-13 23 -14 44q0 37 39 55l83 39l262 -406v-32z" /> +<glyph unicode=" " horiz-adv-x="479" /> +<glyph unicode="€" d="M38 950h136q24 125 75 226t124.5 171.5t167 109t202.5 38.5q142 0 244 -55t170 -148l-89 -96q-10 -11 -21.5 -20t-31.5 -9q-14 0 -26 8.5t-26.5 20.5t-32 26.5t-41.5 27t-56.5 20.5t-77.5 8q-121 0 -204 -83t-116 -245h514v-78q0 -24 -19 -43.5t-51 -19.5h-461 q-1 -17 -1 -34v-35v-24.5t1 -23.5h434v-77q0 -24 -19 -43.5t-51 -19.5h-352q29 -176 110.5 -262.5t201.5 -86.5q74 0 118.5 20t73 44.5t47 44.5t41.5 20q11 0 20 -3.5t17 -14.5l109 -100q-72 -111 -182 -169.5t-257 -58.5q-120 0 -215.5 40.5t-166.5 114t-116 178t-63 233.5 h-130v140h119q-1 11 -1 23.5v24.5v34.5t1 34.5h-119v141z" /> +<glyph unicode="™" horiz-adv-x="1486" d="M983 1193q8 -18 15 -36t12 -37q6 18 13 37t16 36l137 261q10 19 22 23t34 4h150v-618h-153v309l11 102l-157 -309q-19 -38 -59 -38h-25q-42 0 -60 38l-155 304l12 -97v-309h-154v618h151q23 0 34.5 -3t21.5 -24zM568 1481v-144h-168v-474h-175v474h-167v144h510z" /> +<glyph unicode="◼" horiz-adv-x="1049" d="M0 1050h1050v-1050h-1050v1050z" /> +<glyph horiz-adv-x="653" d="M197 1834q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 0.5t-20 3t-18.5 8t-20.5 13.5l-304 223h281z" /> +<glyph horiz-adv-x="653" d="M243 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM685 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43 t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" /> +<glyph horiz-adv-x="653" d="M736 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" /> +<glyph horiz-adv-x="653" d="M700 1586h-191q-15 0 -33.5 4t-30.5 13l-103 68q-4 2 -7.5 5t-7.5 6q-2 -2 -6.5 -5t-9.5 -6l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" /> +<glyph horiz-adv-x="653" d="M115 1723q0 44 17.5 80t46 61.5t66.5 40t80 14.5q44 0 82.5 -14.5t68.5 -40t47.5 -61.5t17.5 -80q0 -43 -17.5 -78t-47.5 -60.5t-68.5 -39.5t-82.5 -14q-42 0 -80 14t-66.5 39.5t-46 60.5t-17.5 78zM236 1723q0 -40 24 -65.5t69 -25.5q41 0 65.5 25.5t24.5 65.5 q0 43 -24.5 68t-65.5 25q-45 0 -69 -25t-24 -68z" /> +<glyph horiz-adv-x="653" d="M453 1740q28 0 44.5 16t17.5 48h137q0 -51 -13 -93t-37.5 -71.5t-60.5 -46.5t-82 -17q-37 0 -71.5 11t-65.5 24.5t-58 25t-49 11.5q-28 0 -44 -17t-17 -50h-140q0 50 13.5 92.5t39 73.5t61.5 47.5t81 16.5q37 0 71.5 -11t66 -24.5t58 -24.5t48.5 -11z" /> +<hkern u1=""" u2="›" k="173" /> +<hkern u1=""" u2="‹" k="173" /> +<hkern u1=""" u2="•" k="173" /> +<hkern u1=""" u2="„" k="218" /> +<hkern u1=""" u2="‚" k="218" /> +<hkern u1=""" u2="—" k="173" /> +<hkern u1=""" u2="–" k="173" /> +<hkern u1=""" u2="Ÿ" k="-37" /> +<hkern u1=""" u2="œ" k="98" /> +<hkern u1=""" u2="Œ" k="43" /> +<hkern u1=""" u2="ø" k="98" /> +<hkern u1=""" u2="ö" k="98" /> +<hkern u1=""" u2="õ" k="98" /> +<hkern u1=""" u2="ô" k="98" /> +<hkern u1=""" u2="ó" k="98" /> +<hkern u1=""" u2="ò" k="98" /> +<hkern u1=""" u2="ð" k="98" /> +<hkern u1=""" u2="ë" k="98" /> +<hkern u1=""" u2="ê" k="98" /> +<hkern u1=""" u2="é" k="98" /> +<hkern u1=""" u2="è" k="98" /> +<hkern u1=""" u2="ç" k="98" /> +<hkern u1=""" u2="æ" k="68" /> +<hkern u1=""" u2="å" k="68" /> +<hkern u1=""" u2="ä" k="68" /> +<hkern u1=""" u2="ã" k="68" /> +<hkern u1=""" u2="â" k="68" /> +<hkern u1=""" u2="á" k="68" /> +<hkern u1=""" u2="à" k="68" /> +<hkern u1=""" u2="Ý" k="-37" /> +<hkern u1=""" u2="Ø" k="43" /> +<hkern u1=""" u2="Ö" k="43" /> +<hkern u1=""" u2="Õ" k="43" /> +<hkern u1=""" u2="Ô" k="43" /> +<hkern u1=""" u2="Ó" k="43" /> +<hkern u1=""" u2="Ò" k="43" /> +<hkern u1=""" u2="Ç" k="43" /> +<hkern u1=""" u2="Æ" k="196" /> +<hkern u1=""" u2="Å" k="196" /> +<hkern u1=""" u2="Ä" k="196" /> +<hkern u1=""" u2="Ã" k="196" /> +<hkern u1=""" u2="Â" k="196" /> +<hkern u1=""" u2="Á" k="196" /> +<hkern u1=""" u2="À" k="196" /> +<hkern u1=""" u2="»" k="173" /> +<hkern u1=""" u2="·" k="173" /> +<hkern u1=""" u2="®" k="43" /> +<hkern u1=""" u2="­" k="173" /> +<hkern u1=""" u2="«" k="173" /> +<hkern u1=""" u2="©" k="43" /> +<hkern u1=""" u2="q" k="98" /> +<hkern u1=""" u2="o" k="98" /> +<hkern u1=""" u2="e" k="98" /> +<hkern u1=""" u2="d" k="98" /> +<hkern u1=""" u2="c" k="98" /> +<hkern u1=""" u2="a" k="68" /> +<hkern u1=""" u2="\" k="-45" /> +<hkern u1=""" u2="Y" k="-37" /> +<hkern u1=""" u2="W" k="-45" /> +<hkern u1=""" u2="V" k="-45" /> +<hkern u1=""" u2="Q" k="43" /> +<hkern u1=""" u2="O" k="43" /> +<hkern u1=""" u2="G" k="43" /> +<hkern u1=""" u2="C" k="43" /> +<hkern u1=""" u2="A" k="196" /> +<hkern u1=""" u2="@" k="43" /> +<hkern u1=""" u2="/" k="196" /> +<hkern u1=""" u2="." k="218" /> +<hkern u1=""" u2="-" k="173" /> +<hkern u1=""" u2="," k="218" /> +<hkern u1=""" u2="&" k="196" /> +<hkern u1="'" u2="›" k="173" /> +<hkern u1="'" u2="‹" k="173" /> +<hkern u1="'" u2="•" k="173" /> +<hkern u1="'" u2="„" k="218" /> +<hkern u1="'" u2="‚" k="218" /> +<hkern u1="'" u2="—" k="173" /> +<hkern u1="'" u2="–" k="173" /> +<hkern u1="'" u2="Ÿ" k="-37" /> +<hkern u1="'" u2="œ" k="98" /> +<hkern u1="'" u2="Œ" k="43" /> +<hkern u1="'" u2="ø" k="98" /> +<hkern u1="'" u2="ö" k="98" /> +<hkern u1="'" u2="õ" k="98" /> +<hkern u1="'" u2="ô" k="98" /> +<hkern u1="'" u2="ó" k="98" /> +<hkern u1="'" u2="ò" k="98" /> +<hkern u1="'" u2="ð" k="98" /> +<hkern u1="'" u2="ë" k="98" /> +<hkern u1="'" u2="ê" k="98" /> +<hkern u1="'" u2="é" k="98" /> +<hkern u1="'" u2="è" k="98" /> +<hkern u1="'" u2="ç" k="98" /> +<hkern u1="'" u2="æ" k="68" /> +<hkern u1="'" u2="å" k="68" /> +<hkern u1="'" u2="ä" k="68" /> +<hkern u1="'" u2="ã" k="68" /> +<hkern u1="'" u2="â" k="68" /> +<hkern u1="'" u2="á" k="68" /> +<hkern u1="'" u2="à" k="68" /> +<hkern u1="'" u2="Ý" k="-37" /> +<hkern u1="'" u2="Ø" k="43" /> +<hkern u1="'" u2="Ö" k="43" /> +<hkern u1="'" u2="Õ" k="43" /> +<hkern u1="'" u2="Ô" k="43" /> +<hkern u1="'" u2="Ó" k="43" /> +<hkern u1="'" u2="Ò" k="43" /> +<hkern u1="'" u2="Ç" k="43" /> +<hkern u1="'" u2="Æ" k="196" /> +<hkern u1="'" u2="Å" k="196" /> +<hkern u1="'" u2="Ä" k="196" /> +<hkern u1="'" u2="Ã" k="196" /> +<hkern u1="'" u2="Â" k="196" /> +<hkern u1="'" u2="Á" k="196" /> +<hkern u1="'" u2="À" k="196" /> +<hkern u1="'" u2="»" k="173" /> +<hkern u1="'" u2="·" k="173" /> +<hkern u1="'" u2="®" k="43" /> +<hkern u1="'" u2="­" k="173" /> +<hkern u1="'" u2="«" k="173" /> +<hkern u1="'" u2="©" k="43" /> +<hkern u1="'" u2="q" k="98" /> +<hkern u1="'" u2="o" k="98" /> +<hkern u1="'" u2="e" k="98" /> +<hkern u1="'" u2="d" k="98" /> +<hkern u1="'" u2="c" k="98" /> +<hkern u1="'" u2="a" k="68" /> +<hkern u1="'" u2="\" k="-45" /> +<hkern u1="'" u2="Y" k="-37" /> +<hkern u1="'" u2="W" k="-45" /> +<hkern u1="'" u2="V" k="-45" /> +<hkern u1="'" u2="Q" k="43" /> +<hkern u1="'" u2="O" k="43" /> +<hkern u1="'" u2="G" k="43" /> +<hkern u1="'" u2="C" k="43" /> +<hkern u1="'" u2="A" k="196" /> +<hkern u1="'" u2="@" k="43" /> +<hkern u1="'" u2="/" k="196" /> +<hkern u1="'" u2="." k="218" /> +<hkern u1="'" u2="-" k="173" /> +<hkern u1="'" u2="," k="218" /> +<hkern u1="'" u2="&" k="196" /> +<hkern u1="(" u2="œ" k="37" /> +<hkern u1="(" u2="Œ" k="41" /> +<hkern u1="(" u2="ø" k="37" /> +<hkern u1="(" u2="ö" k="37" /> +<hkern u1="(" u2="õ" k="37" /> +<hkern u1="(" u2="ô" k="37" /> +<hkern u1="(" u2="ó" k="37" /> +<hkern u1="(" u2="ò" k="37" /> +<hkern u1="(" u2="ð" k="37" /> +<hkern u1="(" u2="ë" k="37" /> +<hkern u1="(" u2="ê" k="37" /> +<hkern u1="(" u2="é" k="37" /> +<hkern u1="(" u2="è" k="37" /> +<hkern u1="(" u2="ç" k="37" /> +<hkern u1="(" u2="Ø" k="41" /> +<hkern u1="(" u2="Ö" k="41" /> +<hkern u1="(" u2="Õ" k="41" /> +<hkern u1="(" u2="Ô" k="41" /> +<hkern u1="(" u2="Ó" k="41" /> +<hkern u1="(" u2="Ò" k="41" /> +<hkern u1="(" u2="Ç" k="41" /> +<hkern u1="(" u2="®" k="41" /> +<hkern u1="(" u2="©" k="41" /> +<hkern u1="(" u2="q" k="37" /> +<hkern u1="(" u2="o" k="37" /> +<hkern u1="(" u2="e" k="37" /> +<hkern u1="(" u2="d" k="37" /> +<hkern u1="(" u2="c" k="37" /> +<hkern u1="(" u2="Q" k="41" /> +<hkern u1="(" u2="O" k="41" /> +<hkern u1="(" u2="G" k="41" /> +<hkern u1="(" u2="C" k="41" /> +<hkern u1="(" u2="@" k="41" /> +<hkern u1="*" u2="›" k="173" /> +<hkern u1="*" u2="‹" k="173" /> +<hkern u1="*" u2="•" k="173" /> +<hkern u1="*" u2="„" k="218" /> +<hkern u1="*" u2="‚" k="218" /> +<hkern u1="*" u2="—" k="173" /> +<hkern u1="*" u2="–" k="173" /> +<hkern u1="*" u2="Ÿ" k="-37" /> +<hkern u1="*" u2="œ" k="98" /> +<hkern u1="*" u2="Œ" k="43" /> +<hkern u1="*" u2="ø" k="98" /> +<hkern u1="*" u2="ö" k="98" /> +<hkern u1="*" u2="õ" k="98" /> +<hkern u1="*" u2="ô" k="98" /> +<hkern u1="*" u2="ó" k="98" /> +<hkern u1="*" u2="ò" k="98" /> +<hkern u1="*" u2="ð" k="98" /> +<hkern u1="*" u2="ë" k="98" /> +<hkern u1="*" u2="ê" k="98" /> +<hkern u1="*" u2="é" k="98" /> +<hkern u1="*" u2="è" k="98" /> +<hkern u1="*" u2="ç" k="98" /> +<hkern u1="*" u2="æ" k="68" /> +<hkern u1="*" u2="å" k="68" /> +<hkern u1="*" u2="ä" k="68" /> +<hkern u1="*" u2="ã" k="68" /> +<hkern u1="*" u2="â" k="68" /> +<hkern u1="*" u2="á" k="68" /> +<hkern u1="*" u2="à" k="68" /> +<hkern u1="*" u2="Ý" k="-37" /> +<hkern u1="*" u2="Ø" k="43" /> +<hkern u1="*" u2="Ö" k="43" /> +<hkern u1="*" u2="Õ" k="43" /> +<hkern u1="*" u2="Ô" k="43" /> +<hkern u1="*" u2="Ó" k="43" /> +<hkern u1="*" u2="Ò" k="43" /> +<hkern u1="*" u2="Ç" k="43" /> +<hkern u1="*" u2="Æ" k="196" /> +<hkern u1="*" u2="Å" k="196" /> +<hkern u1="*" u2="Ä" k="196" /> +<hkern u1="*" u2="Ã" k="196" /> +<hkern u1="*" u2="Â" k="196" /> +<hkern u1="*" u2="Á" k="196" /> +<hkern u1="*" u2="À" k="196" /> +<hkern u1="*" u2="»" k="173" /> +<hkern u1="*" u2="·" k="173" /> +<hkern u1="*" u2="®" k="43" /> +<hkern u1="*" u2="­" k="173" /> +<hkern u1="*" u2="«" k="173" /> +<hkern u1="*" u2="©" k="43" /> +<hkern u1="*" u2="q" k="98" /> +<hkern u1="*" u2="o" k="98" /> +<hkern u1="*" u2="e" k="98" /> +<hkern u1="*" u2="d" k="98" /> +<hkern u1="*" u2="c" k="98" /> +<hkern u1="*" u2="a" k="68" /> +<hkern u1="*" u2="\" k="-45" /> +<hkern u1="*" u2="Y" k="-37" /> +<hkern u1="*" u2="W" k="-45" /> +<hkern u1="*" u2="V" k="-45" /> +<hkern u1="*" u2="Q" k="43" /> +<hkern u1="*" u2="O" k="43" /> +<hkern u1="*" u2="G" k="43" /> +<hkern u1="*" u2="C" k="43" /> +<hkern u1="*" u2="A" k="196" /> +<hkern u1="*" u2="@" k="43" /> +<hkern u1="*" u2="/" k="196" /> +<hkern u1="*" u2="." k="218" /> +<hkern u1="*" u2="-" k="173" /> +<hkern u1="*" u2="," k="218" /> +<hkern u1="*" u2="&" k="196" /> +<hkern u1="," u2="™" k="218" /> +<hkern u1="," u2="›" k="135" /> +<hkern u1="," u2="‹" k="135" /> +<hkern u1="," u2="•" k="135" /> +<hkern u1="," u2="”" k="218" /> +<hkern u1="," u2="“" k="218" /> +<hkern u1="," u2="’" k="218" /> +<hkern u1="," u2="‘" k="218" /> +<hkern u1="," u2="—" k="135" /> +<hkern u1="," u2="–" k="135" /> +<hkern u1="," u2="Ÿ" k="171" /> +<hkern u1="," u2="Œ" k="53" /> +<hkern u1="," u2="ÿ" k="139" /> +<hkern u1="," u2="ý" k="139" /> +<hkern u1="," u2="Ý" k="171" /> +<hkern u1="," u2="Ø" k="53" /> +<hkern u1="," u2="Ö" k="53" /> +<hkern u1="," u2="Õ" k="53" /> +<hkern u1="," u2="Ô" k="53" /> +<hkern u1="," u2="Ó" k="53" /> +<hkern u1="," u2="Ò" k="53" /> +<hkern u1="," u2="Ç" k="53" /> +<hkern u1="," u2="»" k="135" /> +<hkern u1="," u2="º" k="218" /> +<hkern u1="," u2="·" k="135" /> +<hkern u1="," u2="°" k="218" /> +<hkern u1="," u2="®" k="53" /> +<hkern u1="," u2="­" k="135" /> +<hkern u1="," u2="«" k="135" /> +<hkern u1="," u2="ª" k="218" /> +<hkern u1="," u2="©" k="53" /> +<hkern u1="," u2="y" k="139" /> +<hkern u1="," u2="w" k="73" /> +<hkern u1="," u2="v" k="139" /> +<hkern u1="," u2="\" k="184" /> +<hkern u1="," u2="Y" k="171" /> +<hkern u1="," u2="W" k="134" /> +<hkern u1="," u2="V" k="184" /> +<hkern u1="," u2="T" k="184" /> +<hkern u1="," u2="Q" k="53" /> +<hkern u1="," u2="O" k="53" /> +<hkern u1="," u2="G" k="53" /> +<hkern u1="," u2="C" k="53" /> +<hkern u1="," u2="@" k="53" /> +<hkern u1="," u2="-" k="135" /> +<hkern u1="," u2="*" k="218" /> +<hkern u1="," u2="'" k="218" /> +<hkern u1="," u2=""" k="218" /> +<hkern u1="-" u2="™" k="173" /> +<hkern u1="-" u2="„" k="135" /> +<hkern u1="-" u2="”" k="173" /> +<hkern u1="-" u2="“" k="173" /> +<hkern u1="-" u2="‚" k="135" /> +<hkern u1="-" u2="’" k="173" /> +<hkern u1="-" u2="‘" k="173" /> +<hkern u1="-" u2="Ÿ" k="164" /> +<hkern u1="-" u2="Ý" k="164" /> +<hkern u1="-" u2="Æ" k="69" /> +<hkern u1="-" u2="Å" k="69" /> +<hkern u1="-" u2="Ä" k="69" /> +<hkern u1="-" u2="Ã" k="69" /> +<hkern u1="-" u2="Â" k="69" /> +<hkern u1="-" u2="Á" k="69" /> +<hkern u1="-" u2="À" k="69" /> +<hkern u1="-" u2="º" k="173" /> +<hkern u1="-" u2="°" k="173" /> +<hkern u1="-" u2="ª" k="173" /> +<hkern u1="-" u2="\" k="119" /> +<hkern u1="-" u2="Z" k="49" /> +<hkern u1="-" u2="Y" k="164" /> +<hkern u1="-" u2="X" k="68" /> +<hkern u1="-" u2="W" k="37" /> +<hkern u1="-" u2="V" k="119" /> +<hkern u1="-" u2="T" k="184" /> +<hkern u1="-" u2="A" k="69" /> +<hkern u1="-" u2="/" k="69" /> +<hkern u1="-" u2="." k="135" /> +<hkern u1="-" u2="," k="135" /> +<hkern u1="-" u2="*" k="173" /> +<hkern u1="-" u2="'" k="173" /> +<hkern u1="-" u2="&" k="69" /> +<hkern u1="-" u2=""" k="173" /> +<hkern u1="." u2="™" k="218" /> +<hkern u1="." u2="›" k="135" /> +<hkern u1="." u2="‹" k="135" /> +<hkern u1="." u2="•" k="135" /> +<hkern u1="." u2="”" k="218" /> +<hkern u1="." u2="“" k="218" /> +<hkern u1="." u2="’" k="218" /> +<hkern u1="." u2="‘" k="218" /> +<hkern u1="." u2="—" k="135" /> +<hkern u1="." u2="–" k="135" /> +<hkern u1="." u2="Ÿ" k="171" /> +<hkern u1="." u2="Œ" k="53" /> +<hkern u1="." u2="ÿ" k="139" /> +<hkern u1="." u2="ý" k="139" /> +<hkern u1="." u2="Ý" k="171" /> +<hkern u1="." u2="Ø" k="53" /> +<hkern u1="." u2="Ö" k="53" /> +<hkern u1="." u2="Õ" k="53" /> +<hkern u1="." u2="Ô" k="53" /> +<hkern u1="." u2="Ó" k="53" /> +<hkern u1="." u2="Ò" k="53" /> +<hkern u1="." u2="Ç" k="53" /> +<hkern u1="." u2="»" k="135" /> +<hkern u1="." u2="º" k="218" /> +<hkern u1="." u2="·" k="135" /> +<hkern u1="." u2="°" k="218" /> +<hkern u1="." u2="®" k="53" /> +<hkern u1="." u2="­" k="135" /> +<hkern u1="." u2="«" k="135" /> +<hkern u1="." u2="ª" k="218" /> +<hkern u1="." u2="©" k="53" /> +<hkern u1="." u2="y" k="139" /> +<hkern u1="." u2="w" k="73" /> +<hkern u1="." u2="v" k="139" /> +<hkern u1="." u2="\" k="184" /> +<hkern u1="." u2="Y" k="171" /> +<hkern u1="." u2="W" k="134" /> +<hkern u1="." u2="V" k="184" /> +<hkern u1="." u2="T" k="184" /> +<hkern u1="." u2="Q" k="53" /> +<hkern u1="." u2="O" k="53" /> +<hkern u1="." u2="G" k="53" /> +<hkern u1="." u2="C" k="53" /> +<hkern u1="." u2="@" k="53" /> +<hkern u1="." u2="-" k="135" /> +<hkern u1="." u2="*" k="218" /> +<hkern u1="." u2="'" k="218" /> +<hkern u1="." u2=""" k="218" /> +<hkern u1="/" u2="™" k="-45" /> +<hkern u1="/" u2="›" k="119" /> +<hkern u1="/" u2="‹" k="119" /> +<hkern u1="/" u2="•" k="119" /> +<hkern u1="/" u2="„" k="201" /> +<hkern u1="/" u2="”" k="-45" /> +<hkern u1="/" u2="“" k="-45" /> +<hkern u1="/" u2="‚" k="201" /> +<hkern u1="/" u2="’" k="-45" /> +<hkern u1="/" u2="‘" k="-45" /> +<hkern u1="/" u2="—" k="119" /> +<hkern u1="/" u2="–" k="119" /> +<hkern u1="/" u2="œ" k="126" /> +<hkern u1="/" u2="Œ" k="57" /> +<hkern u1="/" u2="ı" k="101" /> +<hkern u1="/" u2="ÿ" k="60" /> +<hkern u1="/" u2="ý" k="60" /> +<hkern u1="/" u2="ü" k="101" /> +<hkern u1="/" u2="û" k="101" /> +<hkern u1="/" u2="ú" k="101" /> +<hkern u1="/" u2="ù" k="101" /> +<hkern u1="/" u2="ø" k="126" /> +<hkern u1="/" u2="ö" k="126" /> +<hkern u1="/" u2="õ" k="126" /> +<hkern u1="/" u2="ô" k="126" /> +<hkern u1="/" u2="ó" k="126" /> +<hkern u1="/" u2="ò" k="126" /> +<hkern u1="/" u2="ñ" k="101" /> +<hkern u1="/" u2="ð" k="126" /> +<hkern u1="/" u2="ë" k="126" /> +<hkern u1="/" u2="ê" k="126" /> +<hkern u1="/" u2="é" k="126" /> +<hkern u1="/" u2="è" k="126" /> +<hkern u1="/" u2="ç" k="126" /> +<hkern u1="/" u2="æ" k="126" /> +<hkern u1="/" u2="å" k="126" /> +<hkern u1="/" u2="ä" k="126" /> +<hkern u1="/" u2="ã" k="126" /> +<hkern u1="/" u2="â" k="126" /> +<hkern u1="/" u2="á" k="126" /> +<hkern u1="/" u2="à" k="126" /> +<hkern u1="/" u2="Ø" k="57" /> +<hkern u1="/" u2="Ö" k="57" /> +<hkern u1="/" u2="Õ" k="57" /> +<hkern u1="/" u2="Ô" k="57" /> +<hkern u1="/" u2="Ó" k="57" /> +<hkern u1="/" u2="Ò" k="57" /> +<hkern u1="/" u2="Ç" k="57" /> +<hkern u1="/" u2="Æ" k="173" /> +<hkern u1="/" u2="Å" k="173" /> +<hkern u1="/" u2="Ä" k="173" /> +<hkern u1="/" u2="Ã" k="173" /> +<hkern u1="/" u2="Â" k="173" /> +<hkern u1="/" u2="Á" k="173" /> +<hkern u1="/" u2="À" k="173" /> +<hkern u1="/" u2="»" k="119" /> +<hkern u1="/" u2="º" k="-45" /> +<hkern u1="/" u2="¹" k="-50" /> +<hkern u1="/" u2="·" k="119" /> +<hkern u1="/" u2="µ" k="101" /> +<hkern u1="/" u2="³" k="-50" /> +<hkern u1="/" u2="²" k="-50" /> +<hkern u1="/" u2="°" k="-45" /> +<hkern u1="/" u2="®" k="57" /> +<hkern u1="/" u2="­" k="119" /> +<hkern u1="/" u2="«" k="119" /> +<hkern u1="/" u2="ª" k="-45" /> +<hkern u1="/" u2="©" k="57" /> +<hkern u1="/" u2="z" k="93" /> +<hkern u1="/" u2="y" k="60" /> +<hkern u1="/" u2="x" k="69" /> +<hkern u1="/" u2="v" k="60" /> +<hkern u1="/" u2="u" k="101" /> +<hkern u1="/" u2="t" k="47" /> +<hkern u1="/" u2="s" k="111" /> +<hkern u1="/" u2="r" k="101" /> +<hkern u1="/" u2="q" k="126" /> +<hkern u1="/" u2="p" k="101" /> +<hkern u1="/" u2="o" k="126" /> +<hkern u1="/" u2="n" k="101" /> +<hkern u1="/" u2="m" k="101" /> +<hkern u1="/" u2="g" k="141" /> +<hkern u1="/" u2="f" k="31" /> +<hkern u1="/" u2="e" k="126" /> +<hkern u1="/" u2="d" k="126" /> +<hkern u1="/" u2="c" k="126" /> +<hkern u1="/" u2="a" k="126" /> +<hkern u1="/" u2="Q" k="57" /> +<hkern u1="/" u2="O" k="57" /> +<hkern u1="/" u2="J" k="160" /> +<hkern u1="/" u2="G" k="57" /> +<hkern u1="/" u2="C" k="57" /> +<hkern u1="/" u2="A" k="173" /> +<hkern u1="/" u2="@" k="57" /> +<hkern u1="/" u2="?" k="-40" /> +<hkern u1="/" u2=";" k="101" /> +<hkern u1="/" u2=":" k="101" /> +<hkern u1="/" u2="/" k="173" /> +<hkern u1="/" u2="." k="201" /> +<hkern u1="/" u2="-" k="119" /> +<hkern u1="/" u2="," k="201" /> +<hkern u1="/" u2="*" k="-45" /> +<hkern u1="/" u2="'" k="-45" /> +<hkern u1="/" u2="&" k="173" /> +<hkern u1="/" u2=""" k="-45" /> +<hkern u1="@" u2="™" k="43" /> +<hkern u1="@" u2="„" k="53" /> +<hkern u1="@" u2="”" k="43" /> +<hkern u1="@" u2="“" k="43" /> +<hkern u1="@" u2="‚" k="53" /> +<hkern u1="@" u2="’" k="43" /> +<hkern u1="@" u2="‘" k="43" /> +<hkern u1="@" u2="Ÿ" k="82" /> +<hkern u1="@" u2="Ý" k="82" /> +<hkern u1="@" u2="Æ" k="52" /> +<hkern u1="@" u2="Å" k="52" /> +<hkern u1="@" u2="Ä" k="52" /> +<hkern u1="@" u2="Ã" k="52" /> +<hkern u1="@" u2="Â" k="52" /> +<hkern u1="@" u2="Á" k="52" /> +<hkern u1="@" u2="À" k="52" /> +<hkern u1="@" u2="º" k="43" /> +<hkern u1="@" u2="°" k="43" /> +<hkern u1="@" u2="ª" k="43" /> +<hkern u1="@" u2="}" k="41" /> +<hkern u1="@" u2="]" k="41" /> +<hkern u1="@" u2="\" k="57" /> +<hkern u1="@" u2="Z" k="66" /> +<hkern u1="@" u2="Y" k="82" /> +<hkern u1="@" u2="X" k="31" /> +<hkern u1="@" u2="V" k="57" /> +<hkern u1="@" u2="T" k="80" /> +<hkern u1="@" u2="A" k="52" /> +<hkern u1="@" u2="/" k="52" /> +<hkern u1="@" u2="." k="53" /> +<hkern u1="@" u2="," k="53" /> +<hkern u1="@" u2="*" k="43" /> +<hkern u1="@" u2=")" k="41" /> +<hkern u1="@" u2="'" k="43" /> +<hkern u1="@" u2="&" k="52" /> +<hkern u1="@" u2=""" k="43" /> +<hkern u1="A" u2="™" k="196" /> +<hkern u1="A" u2="›" k="69" /> +<hkern u1="A" u2="‹" k="69" /> +<hkern u1="A" u2="•" k="69" /> +<hkern u1="A" u2="”" k="196" /> +<hkern u1="A" u2="“" k="196" /> +<hkern u1="A" u2="’" k="196" /> +<hkern u1="A" u2="‘" k="196" /> +<hkern u1="A" u2="—" k="69" /> +<hkern u1="A" u2="–" k="69" /> +<hkern u1="A" u2="Ÿ" k="186" /> +<hkern u1="A" u2="Œ" k="52" /> +<hkern u1="A" u2="ÿ" k="93" /> +<hkern u1="A" u2="ý" k="93" /> +<hkern u1="A" u2="Ý" k="186" /> +<hkern u1="A" u2="Ü" k="53" /> +<hkern u1="A" u2="Û" k="53" /> +<hkern u1="A" u2="Ú" k="53" /> +<hkern u1="A" u2="Ù" k="53" /> +<hkern u1="A" u2="Ø" k="52" /> +<hkern u1="A" u2="Ö" k="52" /> +<hkern u1="A" u2="Õ" k="52" /> +<hkern u1="A" u2="Ô" k="52" /> +<hkern u1="A" u2="Ó" k="52" /> +<hkern u1="A" u2="Ò" k="52" /> +<hkern u1="A" u2="Ç" k="52" /> +<hkern u1="A" u2="»" k="69" /> +<hkern u1="A" u2="º" k="196" /> +<hkern u1="A" u2="¹" k="207" /> +<hkern u1="A" u2="·" k="69" /> +<hkern u1="A" u2="³" k="207" /> +<hkern u1="A" u2="²" k="207" /> +<hkern u1="A" u2="°" k="196" /> +<hkern u1="A" u2="®" k="52" /> +<hkern u1="A" u2="­" k="69" /> +<hkern u1="A" u2="«" k="69" /> +<hkern u1="A" u2="ª" k="196" /> +<hkern u1="A" u2="©" k="52" /> +<hkern u1="A" u2="y" k="93" /> +<hkern u1="A" u2="v" k="93" /> +<hkern u1="A" u2="\" k="173" /> +<hkern u1="A" u2="Y" k="186" /> +<hkern u1="A" u2="W" k="104" /> +<hkern u1="A" u2="V" k="173" /> +<hkern u1="A" u2="U" k="53" /> +<hkern u1="A" u2="T" k="151" /> +<hkern u1="A" u2="Q" k="52" /> +<hkern u1="A" u2="O" k="52" /> +<hkern u1="A" u2="J" k="-57" /> +<hkern u1="A" u2="G" k="52" /> +<hkern u1="A" u2="C" k="52" /> +<hkern u1="A" u2="@" k="52" /> +<hkern u1="A" u2="?" k="65" /> +<hkern u1="A" u2="-" k="69" /> +<hkern u1="A" u2="*" k="196" /> +<hkern u1="A" u2="'" k="196" /> +<hkern u1="A" u2=""" k="196" /> +<hkern u1="C" u2="›" k="147" /> +<hkern u1="C" u2="‹" k="147" /> +<hkern u1="C" u2="•" k="147" /> +<hkern u1="C" u2="—" k="147" /> +<hkern u1="C" u2="–" k="147" /> +<hkern u1="C" u2="»" k="147" /> +<hkern u1="C" u2="·" k="147" /> +<hkern u1="C" u2="­" k="147" /> +<hkern u1="C" u2="«" k="147" /> +<hkern u1="C" u2="-" k="147" /> +<hkern u1="D" u2="™" k="43" /> +<hkern u1="D" u2="„" k="53" /> +<hkern u1="D" u2="”" k="43" /> +<hkern u1="D" u2="“" k="43" /> +<hkern u1="D" u2="‚" k="53" /> +<hkern u1="D" u2="’" k="43" /> +<hkern u1="D" u2="‘" k="43" /> +<hkern u1="D" u2="Ÿ" k="82" /> +<hkern u1="D" u2="Ý" k="82" /> +<hkern u1="D" u2="Æ" k="52" /> +<hkern u1="D" u2="Å" k="52" /> +<hkern u1="D" u2="Ä" k="52" /> +<hkern u1="D" u2="Ã" k="52" /> +<hkern u1="D" u2="Â" k="52" /> +<hkern u1="D" u2="Á" k="52" /> +<hkern u1="D" u2="À" k="52" /> +<hkern u1="D" u2="º" k="43" /> +<hkern u1="D" u2="°" k="43" /> +<hkern u1="D" u2="ª" k="43" /> +<hkern u1="D" u2="}" k="41" /> +<hkern u1="D" u2="]" k="41" /> +<hkern u1="D" u2="\" k="57" /> +<hkern u1="D" u2="Z" k="66" /> +<hkern u1="D" u2="Y" k="82" /> +<hkern u1="D" u2="X" k="31" /> +<hkern u1="D" u2="V" k="57" /> +<hkern u1="D" u2="T" k="80" /> +<hkern u1="D" u2="A" k="52" /> +<hkern u1="D" u2="/" k="52" /> +<hkern u1="D" u2="." k="53" /> +<hkern u1="D" u2="," k="53" /> +<hkern u1="D" u2="*" k="43" /> +<hkern u1="D" u2=")" k="41" /> +<hkern u1="D" u2="'" k="43" /> +<hkern u1="D" u2="&" k="52" /> +<hkern u1="D" u2=""" k="43" /> +<hkern u1="F" u2="„" k="184" /> +<hkern u1="F" u2="‚" k="184" /> +<hkern u1="F" u2="œ" k="66" /> +<hkern u1="F" u2="ı" k="61" /> +<hkern u1="F" u2="ü" k="61" /> +<hkern u1="F" u2="û" k="61" /> +<hkern u1="F" u2="ú" k="61" /> +<hkern u1="F" u2="ù" k="61" /> +<hkern u1="F" u2="ø" k="66" /> +<hkern u1="F" u2="ö" k="66" /> +<hkern u1="F" u2="õ" k="66" /> +<hkern u1="F" u2="ô" k="66" /> +<hkern u1="F" u2="ó" k="66" /> +<hkern u1="F" u2="ò" k="66" /> +<hkern u1="F" u2="ñ" k="61" /> +<hkern u1="F" u2="ð" k="66" /> +<hkern u1="F" u2="ë" k="66" /> +<hkern u1="F" u2="ê" k="66" /> +<hkern u1="F" u2="é" k="66" /> +<hkern u1="F" u2="è" k="66" /> +<hkern u1="F" u2="ç" k="66" /> +<hkern u1="F" u2="Æ" k="151" /> +<hkern u1="F" u2="Å" k="151" /> +<hkern u1="F" u2="Ä" k="151" /> +<hkern u1="F" u2="Ã" k="151" /> +<hkern u1="F" u2="Â" k="151" /> +<hkern u1="F" u2="Á" k="151" /> +<hkern u1="F" u2="À" k="151" /> +<hkern u1="F" u2="µ" k="61" /> +<hkern u1="F" u2="u" k="61" /> +<hkern u1="F" u2="r" k="61" /> +<hkern u1="F" u2="q" k="66" /> +<hkern u1="F" u2="p" k="61" /> +<hkern u1="F" u2="o" k="66" /> +<hkern u1="F" u2="n" k="61" /> +<hkern u1="F" u2="m" k="61" /> +<hkern u1="F" u2="e" k="66" /> +<hkern u1="F" u2="d" k="66" /> +<hkern u1="F" u2="c" k="66" /> +<hkern u1="F" u2="J" k="194" /> +<hkern u1="F" u2="A" k="151" /> +<hkern u1="F" u2="?" k="-31" /> +<hkern u1="F" u2=";" k="61" /> +<hkern u1="F" u2=":" k="61" /> +<hkern u1="F" u2="/" k="151" /> +<hkern u1="F" u2="." k="184" /> +<hkern u1="F" u2="," k="184" /> +<hkern u1="F" u2="&" k="151" /> +<hkern u1="J" u2="„" k="51" /> +<hkern u1="J" u2="‚" k="51" /> +<hkern u1="J" u2="Æ" k="53" /> +<hkern u1="J" u2="Å" k="53" /> +<hkern u1="J" u2="Ä" k="53" /> +<hkern u1="J" u2="Ã" k="53" /> +<hkern u1="J" u2="Â" k="53" /> +<hkern u1="J" u2="Á" k="53" /> +<hkern u1="J" u2="À" k="53" /> +<hkern u1="J" u2="A" k="53" /> +<hkern u1="J" u2="/" k="53" /> +<hkern u1="J" u2="." k="51" /> +<hkern u1="J" u2="," k="51" /> +<hkern u1="J" u2="&" k="53" /> +<hkern u1="K" u2="›" k="68" /> +<hkern u1="K" u2="‹" k="68" /> +<hkern u1="K" u2="•" k="68" /> +<hkern u1="K" u2="—" k="68" /> +<hkern u1="K" u2="–" k="68" /> +<hkern u1="K" u2="œ" k="44" /> +<hkern u1="K" u2="Œ" k="31" /> +<hkern u1="K" u2="ÿ" k="75" /> +<hkern u1="K" u2="ý" k="75" /> +<hkern u1="K" u2="ø" k="44" /> +<hkern u1="K" u2="ö" k="44" /> +<hkern u1="K" u2="õ" k="44" /> +<hkern u1="K" u2="ô" k="44" /> +<hkern u1="K" u2="ó" k="44" /> +<hkern u1="K" u2="ò" k="44" /> +<hkern u1="K" u2="ð" k="44" /> +<hkern u1="K" u2="ë" k="44" /> +<hkern u1="K" u2="ê" k="44" /> +<hkern u1="K" u2="é" k="44" /> +<hkern u1="K" u2="è" k="44" /> +<hkern u1="K" u2="ç" k="44" /> +<hkern u1="K" u2="Ø" k="31" /> +<hkern u1="K" u2="Ö" k="31" /> +<hkern u1="K" u2="Õ" k="31" /> +<hkern u1="K" u2="Ô" k="31" /> +<hkern u1="K" u2="Ó" k="31" /> +<hkern u1="K" u2="Ò" k="31" /> +<hkern u1="K" u2="Ç" k="31" /> +<hkern u1="K" u2="»" k="68" /> +<hkern u1="K" u2="·" k="68" /> +<hkern u1="K" u2="®" k="31" /> +<hkern u1="K" u2="­" k="68" /> +<hkern u1="K" u2="«" k="68" /> +<hkern u1="K" u2="©" k="31" /> +<hkern u1="K" u2="y" k="75" /> +<hkern u1="K" u2="w" k="53" /> +<hkern u1="K" u2="v" k="75" /> +<hkern u1="K" u2="t" k="93" /> +<hkern u1="K" u2="q" k="44" /> +<hkern u1="K" u2="o" k="44" /> +<hkern u1="K" u2="f" k="57" /> +<hkern u1="K" u2="e" k="44" /> +<hkern u1="K" u2="d" k="44" /> +<hkern u1="K" u2="c" k="44" /> +<hkern u1="K" u2="Q" k="31" /> +<hkern u1="K" u2="O" k="31" /> +<hkern u1="K" u2="G" k="31" /> +<hkern u1="K" u2="C" k="31" /> +<hkern u1="K" u2="@" k="31" /> +<hkern u1="K" u2="-" k="68" /> +<hkern u1="L" u2="™" k="291" /> +<hkern u1="L" u2="›" k="182" /> +<hkern u1="L" u2="‹" k="182" /> +<hkern u1="L" u2="•" k="182" /> +<hkern u1="L" u2="„" k="-59" /> +<hkern u1="L" u2="”" k="291" /> +<hkern u1="L" u2="“" k="291" /> +<hkern u1="L" u2="‚" k="-59" /> +<hkern u1="L" u2="’" k="291" /> +<hkern u1="L" u2="‘" k="291" /> +<hkern u1="L" u2="—" k="182" /> +<hkern u1="L" u2="–" k="182" /> +<hkern u1="L" u2="Ÿ" k="232" /> +<hkern u1="L" u2="œ" k="39" /> +<hkern u1="L" u2="Œ" k="82" /> +<hkern u1="L" u2="ÿ" k="122" /> +<hkern u1="L" u2="ý" k="122" /> +<hkern u1="L" u2="ø" k="39" /> +<hkern u1="L" u2="ö" k="39" /> +<hkern u1="L" u2="õ" k="39" /> +<hkern u1="L" u2="ô" k="39" /> +<hkern u1="L" u2="ó" k="39" /> +<hkern u1="L" u2="ò" k="39" /> +<hkern u1="L" u2="ð" k="39" /> +<hkern u1="L" u2="ë" k="39" /> +<hkern u1="L" u2="ê" k="39" /> +<hkern u1="L" u2="é" k="39" /> +<hkern u1="L" u2="è" k="39" /> +<hkern u1="L" u2="ç" k="39" /> +<hkern u1="L" u2="Ý" k="232" /> +<hkern u1="L" u2="Ø" k="82" /> +<hkern u1="L" u2="Ö" k="82" /> +<hkern u1="L" u2="Õ" k="82" /> +<hkern u1="L" u2="Ô" k="82" /> +<hkern u1="L" u2="Ó" k="82" /> +<hkern u1="L" u2="Ò" k="82" /> +<hkern u1="L" u2="Ç" k="82" /> +<hkern u1="L" u2="»" k="182" /> +<hkern u1="L" u2="º" k="291" /> +<hkern u1="L" u2="¹" k="216" /> +<hkern u1="L" u2="·" k="182" /> +<hkern u1="L" u2="³" k="216" /> +<hkern u1="L" u2="²" k="216" /> +<hkern u1="L" u2="°" k="291" /> +<hkern u1="L" u2="®" k="82" /> +<hkern u1="L" u2="­" k="182" /> +<hkern u1="L" u2="«" k="182" /> +<hkern u1="L" u2="ª" k="291" /> +<hkern u1="L" u2="©" k="82" /> +<hkern u1="L" u2="y" k="122" /> +<hkern u1="L" u2="w" k="82" /> +<hkern u1="L" u2="v" k="122" /> +<hkern u1="L" u2="q" k="39" /> +<hkern u1="L" u2="o" k="39" /> +<hkern u1="L" u2="e" k="39" /> +<hkern u1="L" u2="d" k="39" /> +<hkern u1="L" u2="c" k="39" /> +<hkern u1="L" u2="\" k="196" /> +<hkern u1="L" u2="Y" k="232" /> +<hkern u1="L" u2="W" k="171" /> +<hkern u1="L" u2="V" k="196" /> +<hkern u1="L" u2="T" k="180" /> +<hkern u1="L" u2="Q" k="82" /> +<hkern u1="L" u2="O" k="82" /> +<hkern u1="L" u2="G" k="82" /> +<hkern u1="L" u2="C" k="82" /> +<hkern u1="L" u2="@" k="82" /> +<hkern u1="L" u2="?" k="51" /> +<hkern u1="L" u2="." k="-59" /> +<hkern u1="L" u2="-" k="182" /> +<hkern u1="L" u2="," k="-59" /> +<hkern u1="L" u2="*" k="291" /> +<hkern u1="L" u2="'" k="291" /> +<hkern u1="L" u2=""" k="291" /> +<hkern u1="O" u2="™" k="43" /> +<hkern u1="O" u2="„" k="53" /> +<hkern u1="O" u2="”" k="43" /> +<hkern u1="O" u2="“" k="43" /> +<hkern u1="O" u2="‚" k="53" /> +<hkern u1="O" u2="’" k="43" /> +<hkern u1="O" u2="‘" k="43" /> +<hkern u1="O" u2="Ÿ" k="82" /> +<hkern u1="O" u2="Ý" k="82" /> +<hkern u1="O" u2="Æ" k="52" /> +<hkern u1="O" u2="Å" k="52" /> +<hkern u1="O" u2="Ä" k="52" /> +<hkern u1="O" u2="Ã" k="52" /> +<hkern u1="O" u2="Â" k="52" /> +<hkern u1="O" u2="Á" k="52" /> +<hkern u1="O" u2="À" k="52" /> +<hkern u1="O" u2="º" k="43" /> +<hkern u1="O" u2="°" k="43" /> +<hkern u1="O" u2="ª" k="43" /> +<hkern u1="O" u2="}" k="41" /> +<hkern u1="O" u2="]" k="41" /> +<hkern u1="O" u2="\" k="57" /> +<hkern u1="O" u2="Z" k="66" /> +<hkern u1="O" u2="Y" k="82" /> +<hkern u1="O" u2="X" k="31" /> +<hkern u1="O" u2="V" k="57" /> +<hkern u1="O" u2="T" k="80" /> +<hkern u1="O" u2="A" k="52" /> +<hkern u1="O" u2="/" k="52" /> +<hkern u1="O" u2="." k="53" /> +<hkern u1="O" u2="," k="53" /> +<hkern u1="O" u2="*" k="43" /> +<hkern u1="O" u2=")" k="41" /> +<hkern u1="O" u2="'" k="43" /> +<hkern u1="O" u2="&" k="52" /> +<hkern u1="O" u2=""" k="43" /> +<hkern u1="P" u2="„" k="271" /> +<hkern u1="P" u2="‚" k="271" /> +<hkern u1="P" u2="œ" k="31" /> +<hkern u1="P" u2="ø" k="31" /> +<hkern u1="P" u2="ö" k="31" /> +<hkern u1="P" u2="õ" k="31" /> +<hkern u1="P" u2="ô" k="31" /> +<hkern u1="P" u2="ó" k="31" /> +<hkern u1="P" u2="ò" k="31" /> +<hkern u1="P" u2="ð" k="31" /> +<hkern u1="P" u2="ë" k="31" /> +<hkern u1="P" u2="ê" k="31" /> +<hkern u1="P" u2="é" k="31" /> +<hkern u1="P" u2="è" k="31" /> +<hkern u1="P" u2="ç" k="31" /> +<hkern u1="P" u2="æ" k="51" /> +<hkern u1="P" u2="å" k="51" /> +<hkern u1="P" u2="ä" k="51" /> +<hkern u1="P" u2="ã" k="51" /> +<hkern u1="P" u2="â" k="51" /> +<hkern u1="P" u2="á" k="51" /> +<hkern u1="P" u2="à" k="51" /> +<hkern u1="P" u2="Æ" k="159" /> +<hkern u1="P" u2="Å" k="159" /> +<hkern u1="P" u2="Ä" k="159" /> +<hkern u1="P" u2="Ã" k="159" /> +<hkern u1="P" u2="Â" k="159" /> +<hkern u1="P" u2="Á" k="159" /> +<hkern u1="P" u2="À" k="159" /> +<hkern u1="P" u2="q" k="31" /> +<hkern u1="P" u2="o" k="31" /> +<hkern u1="P" u2="e" k="31" /> +<hkern u1="P" u2="d" k="31" /> +<hkern u1="P" u2="c" k="31" /> +<hkern u1="P" u2="a" k="51" /> +<hkern u1="P" u2="J" k="196" /> +<hkern u1="P" u2="A" k="159" /> +<hkern u1="P" u2="/" k="159" /> +<hkern u1="P" u2="." k="271" /> +<hkern u1="P" u2="," k="271" /> +<hkern u1="P" u2="&" k="159" /> +<hkern u1="Q" u2="™" k="43" /> +<hkern u1="Q" u2="„" k="53" /> +<hkern u1="Q" u2="”" k="43" /> +<hkern u1="Q" u2="“" k="43" /> +<hkern u1="Q" u2="‚" k="53" /> +<hkern u1="Q" u2="’" k="43" /> +<hkern u1="Q" u2="‘" k="43" /> +<hkern u1="Q" u2="Ÿ" k="82" /> +<hkern u1="Q" u2="Ý" k="82" /> +<hkern u1="Q" u2="Æ" k="52" /> +<hkern u1="Q" u2="Å" k="52" /> +<hkern u1="Q" u2="Ä" k="52" /> +<hkern u1="Q" u2="Ã" k="52" /> +<hkern u1="Q" u2="Â" k="52" /> +<hkern u1="Q" u2="Á" k="52" /> +<hkern u1="Q" u2="À" k="52" /> +<hkern u1="Q" u2="º" k="43" /> +<hkern u1="Q" u2="°" k="43" /> +<hkern u1="Q" u2="ª" k="43" /> +<hkern u1="Q" u2="}" k="41" /> +<hkern u1="Q" u2="]" k="41" /> +<hkern u1="Q" u2="\" k="57" /> +<hkern u1="Q" u2="Z" k="66" /> +<hkern u1="Q" u2="Y" k="82" /> +<hkern u1="Q" u2="X" k="31" /> +<hkern u1="Q" u2="V" k="57" /> +<hkern u1="Q" u2="T" k="80" /> +<hkern u1="Q" u2="A" k="52" /> +<hkern u1="Q" u2="/" k="52" /> +<hkern u1="Q" u2="." k="53" /> +<hkern u1="Q" u2="," k="53" /> +<hkern u1="Q" u2="*" k="43" /> +<hkern u1="Q" u2=")" k="41" /> +<hkern u1="Q" u2="'" k="43" /> +<hkern u1="Q" u2="&" k="52" /> +<hkern u1="Q" u2=""" k="43" /> +<hkern u1="R" u2="Œ" k="49" /> +<hkern u1="R" u2="Ü" k="52" /> +<hkern u1="R" u2="Û" k="52" /> +<hkern u1="R" u2="Ú" k="52" /> +<hkern u1="R" u2="Ù" k="52" /> +<hkern u1="R" u2="Ø" k="49" /> +<hkern u1="R" u2="Ö" k="49" /> +<hkern u1="R" u2="Õ" k="49" /> +<hkern u1="R" u2="Ô" k="49" /> +<hkern u1="R" u2="Ó" k="49" /> +<hkern u1="R" u2="Ò" k="49" /> +<hkern u1="R" u2="Ç" k="49" /> +<hkern u1="R" u2="®" k="49" /> +<hkern u1="R" u2="©" k="49" /> +<hkern u1="R" u2="U" k="52" /> +<hkern u1="R" u2="T" k="57" /> +<hkern u1="R" u2="Q" k="49" /> +<hkern u1="R" u2="O" k="49" /> +<hkern u1="R" u2="G" k="49" /> +<hkern u1="R" u2="C" k="49" /> +<hkern u1="R" u2="@" k="49" /> +<hkern u1="T" u2="›" k="184" /> +<hkern u1="T" u2="‹" k="184" /> +<hkern u1="T" u2="•" k="184" /> +<hkern u1="T" u2="„" k="184" /> +<hkern u1="T" u2="‚" k="184" /> +<hkern u1="T" u2="—" k="184" /> +<hkern u1="T" u2="–" k="184" /> +<hkern u1="T" u2="œ" k="209" /> +<hkern u1="T" u2="Œ" k="80" /> +<hkern u1="T" u2="ı" k="164" /> +<hkern u1="T" u2="ÿ" k="184" /> +<hkern u1="T" u2="ý" k="184" /> +<hkern u1="T" u2="ü" k="164" /> +<hkern u1="T" u2="û" k="164" /> +<hkern u1="T" u2="ú" k="164" /> +<hkern u1="T" u2="ù" k="164" /> +<hkern u1="T" u2="ø" k="209" /> +<hkern u1="T" u2="ö" k="209" /> +<hkern u1="T" u2="õ" k="209" /> +<hkern u1="T" u2="ô" k="209" /> +<hkern u1="T" u2="ó" k="209" /> +<hkern u1="T" u2="ò" k="209" /> +<hkern u1="T" u2="ñ" k="164" /> +<hkern u1="T" u2="ð" k="209" /> +<hkern u1="T" u2="ë" k="209" /> +<hkern u1="T" u2="ê" k="209" /> +<hkern u1="T" u2="é" k="209" /> +<hkern u1="T" u2="è" k="209" /> +<hkern u1="T" u2="ç" k="209" /> +<hkern u1="T" u2="æ" k="250" /> +<hkern u1="T" u2="å" k="250" /> +<hkern u1="T" u2="ä" k="250" /> +<hkern u1="T" u2="ã" k="250" /> +<hkern u1="T" u2="â" k="250" /> +<hkern u1="T" u2="á" k="250" /> +<hkern u1="T" u2="à" k="250" /> +<hkern u1="T" u2="Ø" k="80" /> +<hkern u1="T" u2="Ö" k="80" /> +<hkern u1="T" u2="Õ" k="80" /> +<hkern u1="T" u2="Ô" k="80" /> +<hkern u1="T" u2="Ó" k="80" /> +<hkern u1="T" u2="Ò" k="80" /> +<hkern u1="T" u2="Ç" k="80" /> +<hkern u1="T" u2="Æ" k="151" /> +<hkern u1="T" u2="Å" k="151" /> +<hkern u1="T" u2="Ä" k="151" /> +<hkern u1="T" u2="Ã" k="151" /> +<hkern u1="T" u2="Â" k="151" /> +<hkern u1="T" u2="Á" k="151" /> +<hkern u1="T" u2="À" k="151" /> +<hkern u1="T" u2="»" k="184" /> +<hkern u1="T" u2="·" k="184" /> +<hkern u1="T" u2="µ" k="164" /> +<hkern u1="T" u2="®" k="80" /> +<hkern u1="T" u2="­" k="184" /> +<hkern u1="T" u2="«" k="184" /> +<hkern u1="T" u2="©" k="80" /> +<hkern u1="T" u2="z" k="123" /> +<hkern u1="T" u2="y" k="184" /> +<hkern u1="T" u2="x" k="140" /> +<hkern u1="T" u2="w" k="143" /> +<hkern u1="T" u2="v" k="184" /> +<hkern u1="T" u2="u" k="164" /> +<hkern u1="T" u2="s" k="143" /> +<hkern u1="T" u2="r" k="164" /> +<hkern u1="T" u2="q" k="209" /> +<hkern u1="T" u2="p" k="164" /> +<hkern u1="T" u2="o" k="209" /> +<hkern u1="T" u2="n" k="164" /> +<hkern u1="T" u2="m" k="164" /> +<hkern u1="T" u2="g" k="185" /> +<hkern u1="T" u2="e" k="209" /> +<hkern u1="T" u2="d" k="209" /> +<hkern u1="T" u2="c" k="209" /> +<hkern u1="T" u2="a" k="250" /> +<hkern u1="T" u2="Q" k="80" /> +<hkern u1="T" u2="O" k="80" /> +<hkern u1="T" u2="J" k="205" /> +<hkern u1="T" u2="G" k="80" /> +<hkern u1="T" u2="C" k="80" /> +<hkern u1="T" u2="A" k="151" /> +<hkern u1="T" u2="@" k="80" /> +<hkern u1="T" u2=";" k="164" /> +<hkern u1="T" u2=":" k="164" /> +<hkern u1="T" u2="/" k="151" /> +<hkern u1="T" u2="." k="184" /> +<hkern u1="T" u2="-" k="184" /> +<hkern u1="T" u2="," k="184" /> +<hkern u1="T" u2="&" k="151" /> +<hkern u1="U" u2="„" k="51" /> +<hkern u1="U" u2="‚" k="51" /> +<hkern u1="U" u2="Æ" k="53" /> +<hkern u1="U" u2="Å" k="53" /> +<hkern u1="U" u2="Ä" k="53" /> +<hkern u1="U" u2="Ã" k="53" /> +<hkern u1="U" u2="Â" k="53" /> +<hkern u1="U" u2="Á" k="53" /> +<hkern u1="U" u2="À" k="53" /> +<hkern u1="U" u2="A" k="53" /> +<hkern u1="U" u2="/" k="53" /> +<hkern u1="U" u2="." k="51" /> +<hkern u1="U" u2="," k="51" /> +<hkern u1="U" u2="&" k="53" /> +<hkern u1="V" u2="™" k="-45" /> +<hkern u1="V" u2="›" k="119" /> +<hkern u1="V" u2="‹" k="119" /> +<hkern u1="V" u2="•" k="119" /> +<hkern u1="V" u2="„" k="201" /> +<hkern u1="V" u2="”" k="-45" /> +<hkern u1="V" u2="“" k="-45" /> +<hkern u1="V" u2="‚" k="201" /> +<hkern u1="V" u2="’" k="-45" /> +<hkern u1="V" u2="‘" k="-45" /> +<hkern u1="V" u2="—" k="119" /> +<hkern u1="V" u2="–" k="119" /> +<hkern u1="V" u2="œ" k="126" /> +<hkern u1="V" u2="Œ" k="57" /> +<hkern u1="V" u2="ı" k="101" /> +<hkern u1="V" u2="ÿ" k="60" /> +<hkern u1="V" u2="ý" k="60" /> +<hkern u1="V" u2="ü" k="101" /> +<hkern u1="V" u2="û" k="101" /> +<hkern u1="V" u2="ú" k="101" /> +<hkern u1="V" u2="ù" k="101" /> +<hkern u1="V" u2="ø" k="126" /> +<hkern u1="V" u2="ö" k="126" /> +<hkern u1="V" u2="õ" k="126" /> +<hkern u1="V" u2="ô" k="126" /> +<hkern u1="V" u2="ó" k="126" /> +<hkern u1="V" u2="ò" k="126" /> +<hkern u1="V" u2="ñ" k="101" /> +<hkern u1="V" u2="ð" k="126" /> +<hkern u1="V" u2="ë" k="126" /> +<hkern u1="V" u2="ê" k="126" /> +<hkern u1="V" u2="é" k="126" /> +<hkern u1="V" u2="è" k="126" /> +<hkern u1="V" u2="ç" k="126" /> +<hkern u1="V" u2="æ" k="126" /> +<hkern u1="V" u2="å" k="126" /> +<hkern u1="V" u2="ä" k="126" /> +<hkern u1="V" u2="ã" k="126" /> +<hkern u1="V" u2="â" k="126" /> +<hkern u1="V" u2="á" k="126" /> +<hkern u1="V" u2="à" k="126" /> +<hkern u1="V" u2="Ø" k="57" /> +<hkern u1="V" u2="Ö" k="57" /> +<hkern u1="V" u2="Õ" k="57" /> +<hkern u1="V" u2="Ô" k="57" /> +<hkern u1="V" u2="Ó" k="57" /> +<hkern u1="V" u2="Ò" k="57" /> +<hkern u1="V" u2="Ç" k="57" /> +<hkern u1="V" u2="Æ" k="173" /> +<hkern u1="V" u2="Å" k="173" /> +<hkern u1="V" u2="Ä" k="173" /> +<hkern u1="V" u2="Ã" k="173" /> +<hkern u1="V" u2="Â" k="173" /> +<hkern u1="V" u2="Á" k="173" /> +<hkern u1="V" u2="À" k="173" /> +<hkern u1="V" u2="»" k="119" /> +<hkern u1="V" u2="º" k="-45" /> +<hkern u1="V" u2="¹" k="-50" /> +<hkern u1="V" u2="·" k="119" /> +<hkern u1="V" u2="µ" k="101" /> +<hkern u1="V" u2="³" k="-50" /> +<hkern u1="V" u2="²" k="-50" /> +<hkern u1="V" u2="°" k="-45" /> +<hkern u1="V" u2="®" k="57" /> +<hkern u1="V" u2="­" k="119" /> +<hkern u1="V" u2="«" k="119" /> +<hkern u1="V" u2="ª" k="-45" /> +<hkern u1="V" u2="©" k="57" /> +<hkern u1="V" u2="z" k="93" /> +<hkern u1="V" u2="y" k="60" /> +<hkern u1="V" u2="x" k="69" /> +<hkern u1="V" u2="v" k="60" /> +<hkern u1="V" u2="u" k="101" /> +<hkern u1="V" u2="t" k="47" /> +<hkern u1="V" u2="s" k="111" /> +<hkern u1="V" u2="r" k="101" /> +<hkern u1="V" u2="q" k="126" /> +<hkern u1="V" u2="p" k="101" /> +<hkern u1="V" u2="o" k="126" /> +<hkern u1="V" u2="n" k="101" /> +<hkern u1="V" u2="m" k="101" /> +<hkern u1="V" u2="g" k="141" /> +<hkern u1="V" u2="f" k="31" /> +<hkern u1="V" u2="e" k="126" /> +<hkern u1="V" u2="d" k="126" /> +<hkern u1="V" u2="c" k="126" /> +<hkern u1="V" u2="a" k="126" /> +<hkern u1="V" u2="Q" k="57" /> +<hkern u1="V" u2="O" k="57" /> +<hkern u1="V" u2="J" k="160" /> +<hkern u1="V" u2="G" k="57" /> +<hkern u1="V" u2="C" k="57" /> +<hkern u1="V" u2="A" k="173" /> +<hkern u1="V" u2="@" k="57" /> +<hkern u1="V" u2="?" k="-40" /> +<hkern u1="V" u2=";" k="101" /> +<hkern u1="V" u2=":" k="101" /> +<hkern u1="V" u2="/" k="173" /> +<hkern u1="V" u2="." k="201" /> +<hkern u1="V" u2="-" k="119" /> +<hkern u1="V" u2="," k="201" /> +<hkern u1="V" u2="*" k="-45" /> +<hkern u1="V" u2="'" k="-45" /> +<hkern u1="V" u2="&" k="173" /> +<hkern u1="V" u2=""" k="-45" /> +<hkern u1="W" u2="™" k="-45" /> +<hkern u1="W" u2="›" k="37" /> +<hkern u1="W" u2="‹" k="37" /> +<hkern u1="W" u2="•" k="37" /> +<hkern u1="W" u2="„" k="134" /> +<hkern u1="W" u2="”" k="-45" /> +<hkern u1="W" u2="“" k="-45" /> +<hkern u1="W" u2="‚" k="134" /> +<hkern u1="W" u2="’" k="-45" /> +<hkern u1="W" u2="‘" k="-45" /> +<hkern u1="W" u2="—" k="37" /> +<hkern u1="W" u2="–" k="37" /> +<hkern u1="W" u2="œ" k="42" /> +<hkern u1="W" u2="ø" k="42" /> +<hkern u1="W" u2="ö" k="42" /> +<hkern u1="W" u2="õ" k="42" /> +<hkern u1="W" u2="ô" k="42" /> +<hkern u1="W" u2="ó" k="42" /> +<hkern u1="W" u2="ò" k="42" /> +<hkern u1="W" u2="ð" k="42" /> +<hkern u1="W" u2="ë" k="42" /> +<hkern u1="W" u2="ê" k="42" /> +<hkern u1="W" u2="é" k="42" /> +<hkern u1="W" u2="è" k="42" /> +<hkern u1="W" u2="ç" k="42" /> +<hkern u1="W" u2="æ" k="101" /> +<hkern u1="W" u2="å" k="101" /> +<hkern u1="W" u2="ä" k="101" /> +<hkern u1="W" u2="ã" k="101" /> +<hkern u1="W" u2="â" k="101" /> +<hkern u1="W" u2="á" k="101" /> +<hkern u1="W" u2="à" k="101" /> +<hkern u1="W" u2="Æ" k="121" /> +<hkern u1="W" u2="Å" k="121" /> +<hkern u1="W" u2="Ä" k="121" /> +<hkern u1="W" u2="Ã" k="121" /> +<hkern u1="W" u2="Â" k="121" /> +<hkern u1="W" u2="Á" k="121" /> +<hkern u1="W" u2="À" k="121" /> +<hkern u1="W" u2="»" k="37" /> +<hkern u1="W" u2="º" k="-45" /> +<hkern u1="W" u2="¹" k="-45" /> +<hkern u1="W" u2="·" k="37" /> +<hkern u1="W" u2="³" k="-45" /> +<hkern u1="W" u2="²" k="-45" /> +<hkern u1="W" u2="°" k="-45" /> +<hkern u1="W" u2="­" k="37" /> +<hkern u1="W" u2="«" k="37" /> +<hkern u1="W" u2="ª" k="-45" /> +<hkern u1="W" u2="s" k="54" /> +<hkern u1="W" u2="q" k="42" /> +<hkern u1="W" u2="o" k="42" /> +<hkern u1="W" u2="g" k="98" /> +<hkern u1="W" u2="e" k="42" /> +<hkern u1="W" u2="d" k="42" /> +<hkern u1="W" u2="c" k="42" /> +<hkern u1="W" u2="a" k="101" /> +<hkern u1="W" u2="J" k="114" /> +<hkern u1="W" u2="A" k="121" /> +<hkern u1="W" u2="?" k="-33" /> +<hkern u1="W" u2="/" k="121" /> +<hkern u1="W" u2="." k="134" /> +<hkern u1="W" u2="-" k="37" /> +<hkern u1="W" u2="," k="134" /> +<hkern u1="W" u2="*" k="-45" /> +<hkern u1="W" u2="'" k="-45" /> +<hkern u1="W" u2="&" k="121" /> +<hkern u1="W" u2=""" k="-45" /> +<hkern u1="X" u2="›" k="68" /> +<hkern u1="X" u2="‹" k="68" /> +<hkern u1="X" u2="•" k="68" /> +<hkern u1="X" u2="—" k="68" /> +<hkern u1="X" u2="–" k="68" /> +<hkern u1="X" u2="œ" k="44" /> +<hkern u1="X" u2="Œ" k="31" /> +<hkern u1="X" u2="ÿ" k="75" /> +<hkern u1="X" u2="ý" k="75" /> +<hkern u1="X" u2="ø" k="44" /> +<hkern u1="X" u2="ö" k="44" /> +<hkern u1="X" u2="õ" k="44" /> +<hkern u1="X" u2="ô" k="44" /> +<hkern u1="X" u2="ó" k="44" /> +<hkern u1="X" u2="ò" k="44" /> +<hkern u1="X" u2="ð" k="44" /> +<hkern u1="X" u2="ë" k="44" /> +<hkern u1="X" u2="ê" k="44" /> +<hkern u1="X" u2="é" k="44" /> +<hkern u1="X" u2="è" k="44" /> +<hkern u1="X" u2="ç" k="44" /> +<hkern u1="X" u2="Ø" k="31" /> +<hkern u1="X" u2="Ö" k="31" /> +<hkern u1="X" u2="Õ" k="31" /> +<hkern u1="X" u2="Ô" k="31" /> +<hkern u1="X" u2="Ó" k="31" /> +<hkern u1="X" u2="Ò" k="31" /> +<hkern u1="X" u2="Ç" k="31" /> +<hkern u1="X" u2="»" k="68" /> +<hkern u1="X" u2="·" k="68" /> +<hkern u1="X" u2="®" k="31" /> +<hkern u1="X" u2="­" k="68" /> +<hkern u1="X" u2="«" k="68" /> +<hkern u1="X" u2="©" k="31" /> +<hkern u1="X" u2="y" k="75" /> +<hkern u1="X" u2="w" k="53" /> +<hkern u1="X" u2="v" k="75" /> +<hkern u1="X" u2="t" k="93" /> +<hkern u1="X" u2="q" k="44" /> +<hkern u1="X" u2="o" k="44" /> +<hkern u1="X" u2="f" k="57" /> +<hkern u1="X" u2="e" k="44" /> +<hkern u1="X" u2="d" k="44" /> +<hkern u1="X" u2="c" k="44" /> +<hkern u1="X" u2="Q" k="31" /> +<hkern u1="X" u2="O" k="31" /> +<hkern u1="X" u2="G" k="31" /> +<hkern u1="X" u2="C" k="31" /> +<hkern u1="X" u2="@" k="31" /> +<hkern u1="X" u2="-" k="68" /> +<hkern u1="Y" u2="™" k="-37" /> +<hkern u1="Y" u2="›" k="164" /> +<hkern u1="Y" u2="‹" k="164" /> +<hkern u1="Y" u2="•" k="164" /> +<hkern u1="Y" u2="„" k="171" /> +<hkern u1="Y" u2="”" k="-37" /> +<hkern u1="Y" u2="“" k="-37" /> +<hkern u1="Y" u2="‚" k="171" /> +<hkern u1="Y" u2="’" k="-37" /> +<hkern u1="Y" u2="‘" k="-37" /> +<hkern u1="Y" u2="—" k="164" /> +<hkern u1="Y" u2="–" k="164" /> +<hkern u1="Y" u2="œ" k="164" /> +<hkern u1="Y" u2="Œ" k="82" /> +<hkern u1="Y" u2="ı" k="134" /> +<hkern u1="Y" u2="ÿ" k="102" /> +<hkern u1="Y" u2="ý" k="102" /> +<hkern u1="Y" u2="ü" k="134" /> +<hkern u1="Y" u2="û" k="134" /> +<hkern u1="Y" u2="ú" k="134" /> +<hkern u1="Y" u2="ù" k="134" /> +<hkern u1="Y" u2="ø" k="164" /> +<hkern u1="Y" u2="ö" k="164" /> +<hkern u1="Y" u2="õ" k="164" /> +<hkern u1="Y" u2="ô" k="164" /> +<hkern u1="Y" u2="ó" k="164" /> +<hkern u1="Y" u2="ò" k="164" /> +<hkern u1="Y" u2="ñ" k="134" /> +<hkern u1="Y" u2="ð" k="164" /> +<hkern u1="Y" u2="ë" k="164" /> +<hkern u1="Y" u2="ê" k="164" /> +<hkern u1="Y" u2="é" k="164" /> +<hkern u1="Y" u2="è" k="164" /> +<hkern u1="Y" u2="ç" k="164" /> +<hkern u1="Y" u2="æ" k="148" /> +<hkern u1="Y" u2="å" k="148" /> +<hkern u1="Y" u2="ä" k="148" /> +<hkern u1="Y" u2="ã" k="148" /> +<hkern u1="Y" u2="â" k="148" /> +<hkern u1="Y" u2="á" k="148" /> +<hkern u1="Y" u2="à" k="148" /> +<hkern u1="Y" u2="Ø" k="82" /> +<hkern u1="Y" u2="Ö" k="82" /> +<hkern u1="Y" u2="Õ" k="82" /> +<hkern u1="Y" u2="Ô" k="82" /> +<hkern u1="Y" u2="Ó" k="82" /> +<hkern u1="Y" u2="Ò" k="82" /> +<hkern u1="Y" u2="Ç" k="82" /> +<hkern u1="Y" u2="Æ" k="186" /> +<hkern u1="Y" u2="Å" k="186" /> +<hkern u1="Y" u2="Ä" k="186" /> +<hkern u1="Y" u2="Ã" k="186" /> +<hkern u1="Y" u2="Â" k="186" /> +<hkern u1="Y" u2="Á" k="186" /> +<hkern u1="Y" u2="À" k="186" /> +<hkern u1="Y" u2="»" k="164" /> +<hkern u1="Y" u2="º" k="-37" /> +<hkern u1="Y" u2="¹" k="-57" /> +<hkern u1="Y" u2="·" k="164" /> +<hkern u1="Y" u2="µ" k="134" /> +<hkern u1="Y" u2="³" k="-57" /> +<hkern u1="Y" u2="²" k="-57" /> +<hkern u1="Y" u2="°" k="-37" /> +<hkern u1="Y" u2="®" k="82" /> +<hkern u1="Y" u2="­" k="164" /> +<hkern u1="Y" u2="«" k="164" /> +<hkern u1="Y" u2="ª" k="-37" /> +<hkern u1="Y" u2="©" k="82" /> +<hkern u1="Y" u2="y" k="102" /> +<hkern u1="Y" u2="x" k="139" /> +<hkern u1="Y" u2="w" k="98" /> +<hkern u1="Y" u2="v" k="102" /> +<hkern u1="Y" u2="u" k="134" /> +<hkern u1="Y" u2="s" k="142" /> +<hkern u1="Y" u2="r" k="134" /> +<hkern u1="Y" u2="q" k="164" /> +<hkern u1="Y" u2="p" k="134" /> +<hkern u1="Y" u2="o" k="164" /> +<hkern u1="Y" u2="n" k="134" /> +<hkern u1="Y" u2="m" k="134" /> +<hkern u1="Y" u2="g" k="180" /> +<hkern u1="Y" u2="e" k="164" /> +<hkern u1="Y" u2="d" k="164" /> +<hkern u1="Y" u2="c" k="164" /> +<hkern u1="Y" u2="a" k="148" /> +<hkern u1="Y" u2="Q" k="82" /> +<hkern u1="Y" u2="O" k="82" /> +<hkern u1="Y" u2="J" k="205" /> +<hkern u1="Y" u2="G" k="82" /> +<hkern u1="Y" u2="C" k="82" /> +<hkern u1="Y" u2="A" k="186" /> +<hkern u1="Y" u2="@" k="82" /> +<hkern u1="Y" u2="?" k="-33" /> +<hkern u1="Y" u2=";" k="134" /> +<hkern u1="Y" u2=":" k="134" /> +<hkern u1="Y" u2="/" k="186" /> +<hkern u1="Y" u2="." k="171" /> +<hkern u1="Y" u2="-" k="164" /> +<hkern u1="Y" u2="," k="171" /> +<hkern u1="Y" u2="*" k="-37" /> +<hkern u1="Y" u2="'" k="-37" /> +<hkern u1="Y" u2="&" k="186" /> +<hkern u1="Y" u2=""" k="-37" /> +<hkern u1="Z" u2="›" k="66" /> +<hkern u1="Z" u2="‹" k="66" /> +<hkern u1="Z" u2="•" k="66" /> +<hkern u1="Z" u2="—" k="66" /> +<hkern u1="Z" u2="–" k="66" /> +<hkern u1="Z" u2="œ" k="30" /> +<hkern u1="Z" u2="Œ" k="50" /> +<hkern u1="Z" u2="ÿ" k="35" /> +<hkern u1="Z" u2="ý" k="35" /> +<hkern u1="Z" u2="ø" k="30" /> +<hkern u1="Z" u2="ö" k="30" /> +<hkern u1="Z" u2="õ" k="30" /> +<hkern u1="Z" u2="ô" k="30" /> +<hkern u1="Z" u2="ó" k="30" /> +<hkern u1="Z" u2="ò" k="30" /> +<hkern u1="Z" u2="ð" k="30" /> +<hkern u1="Z" u2="ë" k="30" /> +<hkern u1="Z" u2="ê" k="30" /> +<hkern u1="Z" u2="é" k="30" /> +<hkern u1="Z" u2="è" k="30" /> +<hkern u1="Z" u2="ç" k="30" /> +<hkern u1="Z" u2="Ø" k="50" /> +<hkern u1="Z" u2="Ö" k="50" /> +<hkern u1="Z" u2="Õ" k="50" /> +<hkern u1="Z" u2="Ô" k="50" /> +<hkern u1="Z" u2="Ó" k="50" /> +<hkern u1="Z" u2="Ò" k="50" /> +<hkern u1="Z" u2="Ç" k="50" /> +<hkern u1="Z" u2="»" k="66" /> +<hkern u1="Z" u2="·" k="66" /> +<hkern u1="Z" u2="®" k="50" /> +<hkern u1="Z" u2="­" k="66" /> +<hkern u1="Z" u2="«" k="66" /> +<hkern u1="Z" u2="©" k="50" /> +<hkern u1="Z" u2="y" k="35" /> +<hkern u1="Z" u2="v" k="35" /> +<hkern u1="Z" u2="s" k="19" /> +<hkern u1="Z" u2="q" k="30" /> +<hkern u1="Z" u2="o" k="30" /> +<hkern u1="Z" u2="e" k="30" /> +<hkern u1="Z" u2="d" k="30" /> +<hkern u1="Z" u2="c" k="30" /> +<hkern u1="Z" u2="Q" k="50" /> +<hkern u1="Z" u2="O" k="50" /> +<hkern u1="Z" u2="G" k="50" /> +<hkern u1="Z" u2="C" k="50" /> +<hkern u1="Z" u2="@" k="50" /> +<hkern u1="Z" u2="?" k="-33" /> +<hkern u1="Z" u2="-" k="66" /> +<hkern u1="[" u2="œ" k="37" /> +<hkern u1="[" u2="Œ" k="41" /> +<hkern u1="[" u2="ø" k="37" /> +<hkern u1="[" u2="ö" k="37" /> +<hkern u1="[" u2="õ" k="37" /> +<hkern u1="[" u2="ô" k="37" /> +<hkern u1="[" u2="ó" k="37" /> +<hkern u1="[" u2="ò" k="37" /> +<hkern u1="[" u2="ð" k="37" /> +<hkern u1="[" u2="ë" k="37" /> +<hkern u1="[" u2="ê" k="37" /> +<hkern u1="[" u2="é" k="37" /> +<hkern u1="[" u2="è" k="37" /> +<hkern u1="[" u2="ç" k="37" /> +<hkern u1="[" u2="Ø" k="41" /> +<hkern u1="[" u2="Ö" k="41" /> +<hkern u1="[" u2="Õ" k="41" /> +<hkern u1="[" u2="Ô" k="41" /> +<hkern u1="[" u2="Ó" k="41" /> +<hkern u1="[" u2="Ò" k="41" /> +<hkern u1="[" u2="Ç" k="41" /> +<hkern u1="[" u2="®" k="41" /> +<hkern u1="[" u2="©" k="41" /> +<hkern u1="[" u2="q" k="37" /> +<hkern u1="[" u2="o" k="37" /> +<hkern u1="[" u2="e" k="37" /> +<hkern u1="[" u2="d" k="37" /> +<hkern u1="[" u2="c" k="37" /> +<hkern u1="[" u2="Q" k="41" /> +<hkern u1="[" u2="O" k="41" /> +<hkern u1="[" u2="G" k="41" /> +<hkern u1="[" u2="C" k="41" /> +<hkern u1="[" u2="@" k="41" /> +<hkern u1="\" u2="™" k="196" /> +<hkern u1="\" u2="›" k="69" /> +<hkern u1="\" u2="‹" k="69" /> +<hkern u1="\" u2="•" k="69" /> +<hkern u1="\" u2="”" k="196" /> +<hkern u1="\" u2="“" k="196" /> +<hkern u1="\" u2="’" k="196" /> +<hkern u1="\" u2="‘" k="196" /> +<hkern u1="\" u2="—" k="69" /> +<hkern u1="\" u2="–" k="69" /> +<hkern u1="\" u2="Ÿ" k="186" /> +<hkern u1="\" u2="Œ" k="52" /> +<hkern u1="\" u2="ÿ" k="93" /> +<hkern u1="\" u2="ý" k="93" /> +<hkern u1="\" u2="Ý" k="186" /> +<hkern u1="\" u2="Ü" k="53" /> +<hkern u1="\" u2="Û" k="53" /> +<hkern u1="\" u2="Ú" k="53" /> +<hkern u1="\" u2="Ù" k="53" /> +<hkern u1="\" u2="Ø" k="52" /> +<hkern u1="\" u2="Ö" k="52" /> +<hkern u1="\" u2="Õ" k="52" /> +<hkern u1="\" u2="Ô" k="52" /> +<hkern u1="\" u2="Ó" k="52" /> +<hkern u1="\" u2="Ò" k="52" /> +<hkern u1="\" u2="Ç" k="52" /> +<hkern u1="\" u2="»" k="69" /> +<hkern u1="\" u2="º" k="196" /> +<hkern u1="\" u2="¹" k="207" /> +<hkern u1="\" u2="·" k="69" /> +<hkern u1="\" u2="³" k="207" /> +<hkern u1="\" u2="²" k="207" /> +<hkern u1="\" u2="°" k="196" /> +<hkern u1="\" u2="®" k="52" /> +<hkern u1="\" u2="­" k="69" /> +<hkern u1="\" u2="«" k="69" /> +<hkern u1="\" u2="ª" k="196" /> +<hkern u1="\" u2="©" k="52" /> +<hkern u1="\" u2="y" k="93" /> +<hkern u1="\" u2="v" k="93" /> +<hkern u1="\" u2="\" k="173" /> +<hkern u1="\" u2="Y" k="186" /> +<hkern u1="\" u2="W" k="104" /> +<hkern u1="\" u2="V" k="173" /> +<hkern u1="\" u2="U" k="53" /> +<hkern u1="\" u2="T" k="151" /> +<hkern u1="\" u2="Q" k="52" /> +<hkern u1="\" u2="O" k="52" /> +<hkern u1="\" u2="J" k="-57" /> +<hkern u1="\" u2="G" k="52" /> +<hkern u1="\" u2="C" k="52" /> +<hkern u1="\" u2="@" k="52" /> +<hkern u1="\" u2="?" k="65" /> +<hkern u1="\" u2="-" k="69" /> +<hkern u1="\" u2="*" k="196" /> +<hkern u1="\" u2="'" k="196" /> +<hkern u1="\" u2=""" k="196" /> +<hkern u1="a" u2="™" k="78" /> +<hkern u1="a" u2="”" k="78" /> +<hkern u1="a" u2="“" k="78" /> +<hkern u1="a" u2="’" k="78" /> +<hkern u1="a" u2="‘" k="78" /> +<hkern u1="a" u2="ÿ" k="37" /> +<hkern u1="a" u2="ý" k="37" /> +<hkern u1="a" u2="º" k="78" /> +<hkern u1="a" u2="¹" k="78" /> +<hkern u1="a" u2="³" k="78" /> +<hkern u1="a" u2="²" k="78" /> +<hkern u1="a" u2="°" k="78" /> +<hkern u1="a" u2="ª" k="78" /> +<hkern u1="a" u2="y" k="37" /> +<hkern u1="a" u2="w" k="18" /> +<hkern u1="a" u2="v" k="37" /> +<hkern u1="a" u2="*" k="78" /> +<hkern u1="a" u2="'" k="78" /> +<hkern u1="a" u2=""" k="78" /> +<hkern u1="b" u2="™" k="98" /> +<hkern u1="b" u2="”" k="98" /> +<hkern u1="b" u2="“" k="98" /> +<hkern u1="b" u2="’" k="98" /> +<hkern u1="b" u2="‘" k="98" /> +<hkern u1="b" u2="ÿ" k="34" /> +<hkern u1="b" u2="ý" k="34" /> +<hkern u1="b" u2="º" k="98" /> +<hkern u1="b" u2="°" k="98" /> +<hkern u1="b" u2="ª" k="98" /> +<hkern u1="b" u2="}" k="37" /> +<hkern u1="b" u2="y" k="34" /> +<hkern u1="b" u2="x" k="61" /> +<hkern u1="b" u2="v" k="34" /> +<hkern u1="b" u2="]" k="37" /> +<hkern u1="b" u2="\" k="126" /> +<hkern u1="b" u2="W" k="42" /> +<hkern u1="b" u2="V" k="126" /> +<hkern u1="b" u2="*" k="98" /> +<hkern u1="b" u2=")" k="37" /> +<hkern u1="b" u2="'" k="98" /> +<hkern u1="b" u2=""" k="98" /> +<hkern u1="e" u2="™" k="98" /> +<hkern u1="e" u2="”" k="98" /> +<hkern u1="e" u2="“" k="98" /> +<hkern u1="e" u2="’" k="98" /> +<hkern u1="e" u2="‘" k="98" /> +<hkern u1="e" u2="ÿ" k="34" /> +<hkern u1="e" u2="ý" k="34" /> +<hkern u1="e" u2="º" k="98" /> +<hkern u1="e" u2="°" k="98" /> +<hkern u1="e" u2="ª" k="98" /> +<hkern u1="e" u2="}" k="37" /> +<hkern u1="e" u2="y" k="34" /> +<hkern u1="e" u2="x" k="61" /> +<hkern u1="e" u2="v" k="34" /> +<hkern u1="e" u2="]" k="37" /> +<hkern u1="e" u2="\" k="126" /> +<hkern u1="e" u2="W" k="42" /> +<hkern u1="e" u2="V" k="126" /> +<hkern u1="e" u2="*" k="98" /> +<hkern u1="e" u2=")" k="37" /> +<hkern u1="e" u2="'" k="98" /> +<hkern u1="e" u2=""" k="98" /> +<hkern u1="f" u2="™" k="-66" /> +<hkern u1="f" u2="„" k="127" /> +<hkern u1="f" u2="”" k="-66" /> +<hkern u1="f" u2="“" k="-66" /> +<hkern u1="f" u2="‚" k="127" /> +<hkern u1="f" u2="’" k="-66" /> +<hkern u1="f" u2="‘" k="-66" /> +<hkern u1="f" u2="º" k="-66" /> +<hkern u1="f" u2="¹" k="-102" /> +<hkern u1="f" u2="³" k="-102" /> +<hkern u1="f" u2="²" k="-102" /> +<hkern u1="f" u2="°" k="-66" /> +<hkern u1="f" u2="ª" k="-66" /> +<hkern u1="f" u2="." k="127" /> +<hkern u1="f" u2="," k="127" /> +<hkern u1="f" u2="*" k="-66" /> +<hkern u1="f" u2="'" k="-66" /> +<hkern u1="f" u2=""" k="-66" /> +<hkern u1="h" u2="™" k="78" /> +<hkern u1="h" u2="”" k="78" /> +<hkern u1="h" u2="“" k="78" /> +<hkern u1="h" u2="’" k="78" /> +<hkern u1="h" u2="‘" k="78" /> +<hkern u1="h" u2="ÿ" k="37" /> +<hkern u1="h" u2="ý" k="37" /> +<hkern u1="h" u2="º" k="78" /> +<hkern u1="h" u2="¹" k="78" /> +<hkern u1="h" u2="³" k="78" /> +<hkern u1="h" u2="²" k="78" /> +<hkern u1="h" u2="°" k="78" /> +<hkern u1="h" u2="ª" k="78" /> +<hkern u1="h" u2="y" k="37" /> +<hkern u1="h" u2="w" k="18" /> +<hkern u1="h" u2="v" k="37" /> +<hkern u1="h" u2="*" k="78" /> +<hkern u1="h" u2="'" k="78" /> +<hkern u1="h" u2=""" k="78" /> +<hkern u1="k" u2="œ" k="61" /> +<hkern u1="k" u2="ø" k="61" /> +<hkern u1="k" u2="ö" k="61" /> +<hkern u1="k" u2="õ" k="61" /> +<hkern u1="k" u2="ô" k="61" /> +<hkern u1="k" u2="ó" k="61" /> +<hkern u1="k" u2="ò" k="61" /> +<hkern u1="k" u2="ð" k="61" /> +<hkern u1="k" u2="ë" k="61" /> +<hkern u1="k" u2="ê" k="61" /> +<hkern u1="k" u2="é" k="61" /> +<hkern u1="k" u2="è" k="61" /> +<hkern u1="k" u2="ç" k="61" /> +<hkern u1="k" u2="q" k="61" /> +<hkern u1="k" u2="o" k="61" /> +<hkern u1="k" u2="e" k="61" /> +<hkern u1="k" u2="d" k="61" /> +<hkern u1="k" u2="c" k="61" /> +<hkern u1="m" u2="™" k="78" /> +<hkern u1="m" u2="”" k="78" /> +<hkern u1="m" u2="“" k="78" /> +<hkern u1="m" u2="’" k="78" /> +<hkern u1="m" u2="‘" k="78" /> +<hkern u1="m" u2="ÿ" k="37" /> +<hkern u1="m" u2="ý" k="37" /> +<hkern u1="m" u2="º" k="78" /> +<hkern u1="m" u2="¹" k="78" /> +<hkern u1="m" u2="³" k="78" /> +<hkern u1="m" u2="²" k="78" /> +<hkern u1="m" u2="°" k="78" /> +<hkern u1="m" u2="ª" k="78" /> +<hkern u1="m" u2="y" k="37" /> +<hkern u1="m" u2="w" k="18" /> +<hkern u1="m" u2="v" k="37" /> +<hkern u1="m" u2="*" k="78" /> +<hkern u1="m" u2="'" k="78" /> +<hkern u1="m" u2=""" k="78" /> +<hkern u1="n" u2="™" k="78" /> +<hkern u1="n" u2="”" k="78" /> +<hkern u1="n" u2="“" k="78" /> +<hkern u1="n" u2="’" k="78" /> +<hkern u1="n" u2="‘" k="78" /> +<hkern u1="n" u2="ÿ" k="37" /> +<hkern u1="n" u2="ý" k="37" /> +<hkern u1="n" u2="º" k="78" /> +<hkern u1="n" u2="¹" k="78" /> +<hkern u1="n" u2="³" k="78" /> +<hkern u1="n" u2="²" k="78" /> +<hkern u1="n" u2="°" k="78" /> +<hkern u1="n" u2="ª" k="78" /> +<hkern u1="n" u2="y" k="37" /> +<hkern u1="n" u2="w" k="18" /> +<hkern u1="n" u2="v" k="37" /> +<hkern u1="n" u2="*" k="78" /> +<hkern u1="n" u2="'" k="78" /> +<hkern u1="n" u2=""" k="78" /> +<hkern u1="o" u2="™" k="98" /> +<hkern u1="o" u2="”" k="98" /> +<hkern u1="o" u2="“" k="98" /> +<hkern u1="o" u2="’" k="98" /> +<hkern u1="o" u2="‘" k="98" /> +<hkern u1="o" u2="ÿ" k="34" /> +<hkern u1="o" u2="ý" k="34" /> +<hkern u1="o" u2="º" k="98" /> +<hkern u1="o" u2="°" k="98" /> +<hkern u1="o" u2="ª" k="98" /> +<hkern u1="o" u2="}" k="37" /> +<hkern u1="o" u2="y" k="34" /> +<hkern u1="o" u2="x" k="61" /> +<hkern u1="o" u2="v" k="34" /> +<hkern u1="o" u2="]" k="37" /> +<hkern u1="o" u2="\" k="126" /> +<hkern u1="o" u2="W" k="42" /> +<hkern u1="o" u2="V" k="126" /> +<hkern u1="o" u2="*" k="98" /> +<hkern u1="o" u2=")" k="37" /> +<hkern u1="o" u2="'" k="98" /> +<hkern u1="o" u2=""" k="98" /> +<hkern u1="p" u2="™" k="98" /> +<hkern u1="p" u2="”" k="98" /> +<hkern u1="p" u2="“" k="98" /> +<hkern u1="p" u2="’" k="98" /> +<hkern u1="p" u2="‘" k="98" /> +<hkern u1="p" u2="ÿ" k="34" /> +<hkern u1="p" u2="ý" k="34" /> +<hkern u1="p" u2="º" k="98" /> +<hkern u1="p" u2="°" k="98" /> +<hkern u1="p" u2="ª" k="98" /> +<hkern u1="p" u2="}" k="37" /> +<hkern u1="p" u2="y" k="34" /> +<hkern u1="p" u2="x" k="61" /> +<hkern u1="p" u2="v" k="34" /> +<hkern u1="p" u2="]" k="37" /> +<hkern u1="p" u2="\" k="126" /> +<hkern u1="p" u2="W" k="42" /> +<hkern u1="p" u2="V" k="126" /> +<hkern u1="p" u2="*" k="98" /> +<hkern u1="p" u2=")" k="37" /> +<hkern u1="p" u2="'" k="98" /> +<hkern u1="p" u2=""" k="98" /> +<hkern u1="r" u2="„" k="139" /> +<hkern u1="r" u2="‚" k="139" /> +<hkern u1="r" u2="æ" k="30" /> +<hkern u1="r" u2="å" k="30" /> +<hkern u1="r" u2="ä" k="30" /> +<hkern u1="r" u2="ã" k="30" /> +<hkern u1="r" u2="â" k="30" /> +<hkern u1="r" u2="á" k="30" /> +<hkern u1="r" u2="à" k="30" /> +<hkern u1="r" u2="a" k="30" /> +<hkern u1="r" u2="." k="139" /> +<hkern u1="r" u2="," k="139" /> +<hkern u1="v" u2="„" k="139" /> +<hkern u1="v" u2="‚" k="139" /> +<hkern u1="v" u2="œ" k="34" /> +<hkern u1="v" u2="ø" k="34" /> +<hkern u1="v" u2="ö" k="34" /> +<hkern u1="v" u2="õ" k="34" /> +<hkern u1="v" u2="ô" k="34" /> +<hkern u1="v" u2="ó" k="34" /> +<hkern u1="v" u2="ò" k="34" /> +<hkern u1="v" u2="ð" k="34" /> +<hkern u1="v" u2="ë" k="34" /> +<hkern u1="v" u2="ê" k="34" /> +<hkern u1="v" u2="é" k="34" /> +<hkern u1="v" u2="è" k="34" /> +<hkern u1="v" u2="ç" k="34" /> +<hkern u1="v" u2="Æ" k="93" /> +<hkern u1="v" u2="Å" k="93" /> +<hkern u1="v" u2="Ä" k="93" /> +<hkern u1="v" u2="Ã" k="93" /> +<hkern u1="v" u2="Â" k="93" /> +<hkern u1="v" u2="Á" k="93" /> +<hkern u1="v" u2="À" k="93" /> +<hkern u1="v" u2="q" k="34" /> +<hkern u1="v" u2="o" k="34" /> +<hkern u1="v" u2="e" k="34" /> +<hkern u1="v" u2="d" k="34" /> +<hkern u1="v" u2="c" k="34" /> +<hkern u1="v" u2="A" k="93" /> +<hkern u1="v" u2="/" k="93" /> +<hkern u1="v" u2="." k="139" /> +<hkern u1="v" u2="," k="139" /> +<hkern u1="v" u2="&" k="93" /> +<hkern u1="w" u2="„" k="73" /> +<hkern u1="w" u2="‚" k="73" /> +<hkern u1="w" u2="." k="73" /> +<hkern u1="w" u2="," k="73" /> +<hkern u1="x" u2="œ" k="61" /> +<hkern u1="x" u2="ø" k="61" /> +<hkern u1="x" u2="ö" k="61" /> +<hkern u1="x" u2="õ" k="61" /> +<hkern u1="x" u2="ô" k="61" /> +<hkern u1="x" u2="ó" k="61" /> +<hkern u1="x" u2="ò" k="61" /> +<hkern u1="x" u2="ð" k="61" /> +<hkern u1="x" u2="ë" k="61" /> +<hkern u1="x" u2="ê" k="61" /> +<hkern u1="x" u2="é" k="61" /> +<hkern u1="x" u2="è" k="61" /> +<hkern u1="x" u2="ç" k="61" /> +<hkern u1="x" u2="q" k="61" /> +<hkern u1="x" u2="o" k="61" /> +<hkern u1="x" u2="e" k="61" /> +<hkern u1="x" u2="d" k="61" /> +<hkern u1="x" u2="c" k="61" /> +<hkern u1="y" u2="„" k="139" /> +<hkern u1="y" u2="‚" k="139" /> +<hkern u1="y" u2="œ" k="34" /> +<hkern u1="y" u2="ø" k="34" /> +<hkern u1="y" u2="ö" k="34" /> +<hkern u1="y" u2="õ" k="34" /> +<hkern u1="y" u2="ô" k="34" /> +<hkern u1="y" u2="ó" k="34" /> +<hkern u1="y" u2="ò" k="34" /> +<hkern u1="y" u2="ð" k="34" /> +<hkern u1="y" u2="ë" k="34" /> +<hkern u1="y" u2="ê" k="34" /> +<hkern u1="y" u2="é" k="34" /> +<hkern u1="y" u2="è" k="34" /> +<hkern u1="y" u2="ç" k="34" /> +<hkern u1="y" u2="Æ" k="93" /> +<hkern u1="y" u2="Å" k="93" /> +<hkern u1="y" u2="Ä" k="93" /> +<hkern u1="y" u2="Ã" k="93" /> +<hkern u1="y" u2="Â" k="93" /> +<hkern u1="y" u2="Á" k="93" /> +<hkern u1="y" u2="À" k="93" /> +<hkern u1="y" u2="q" k="34" /> +<hkern u1="y" u2="o" k="34" /> +<hkern u1="y" u2="e" k="34" /> +<hkern u1="y" u2="d" k="34" /> +<hkern u1="y" u2="c" k="34" /> +<hkern u1="y" u2="A" k="93" /> +<hkern u1="y" u2="/" k="93" /> +<hkern u1="y" u2="." k="139" /> +<hkern u1="y" u2="," k="139" /> +<hkern u1="y" u2="&" k="93" /> +<hkern u1="{" u2="œ" k="37" /> +<hkern u1="{" u2="Œ" k="41" /> +<hkern u1="{" u2="ø" k="37" /> +<hkern u1="{" u2="ö" k="37" /> +<hkern u1="{" u2="õ" k="37" /> +<hkern u1="{" u2="ô" k="37" /> +<hkern u1="{" u2="ó" k="37" /> +<hkern u1="{" u2="ò" k="37" /> +<hkern u1="{" u2="ð" k="37" /> +<hkern u1="{" u2="ë" k="37" /> +<hkern u1="{" u2="ê" k="37" /> +<hkern u1="{" u2="é" k="37" /> +<hkern u1="{" u2="è" k="37" /> +<hkern u1="{" u2="ç" k="37" /> +<hkern u1="{" u2="Ø" k="41" /> +<hkern u1="{" u2="Ö" k="41" /> +<hkern u1="{" u2="Õ" k="41" /> +<hkern u1="{" u2="Ô" k="41" /> +<hkern u1="{" u2="Ó" k="41" /> +<hkern u1="{" u2="Ò" k="41" /> +<hkern u1="{" u2="Ç" k="41" /> +<hkern u1="{" u2="®" k="41" /> +<hkern u1="{" u2="©" k="41" /> +<hkern u1="{" u2="q" k="37" /> +<hkern u1="{" u2="o" k="37" /> +<hkern u1="{" u2="e" k="37" /> +<hkern u1="{" u2="d" k="37" /> +<hkern u1="{" u2="c" k="37" /> +<hkern u1="{" u2="Q" k="41" /> +<hkern u1="{" u2="O" k="41" /> +<hkern u1="{" u2="G" k="41" /> +<hkern u1="{" u2="C" k="41" /> +<hkern u1="{" u2="@" k="41" /> +<hkern u1="©" u2="™" k="43" /> +<hkern u1="©" u2="„" k="53" /> +<hkern u1="©" u2="”" k="43" /> +<hkern u1="©" u2="“" k="43" /> +<hkern u1="©" u2="‚" k="53" /> +<hkern u1="©" u2="’" k="43" /> +<hkern u1="©" u2="‘" k="43" /> +<hkern u1="©" u2="Ÿ" k="82" /> +<hkern u1="©" u2="Ý" k="82" /> +<hkern u1="©" u2="Æ" k="52" /> +<hkern u1="©" u2="Å" k="52" /> +<hkern u1="©" u2="Ä" k="52" /> +<hkern u1="©" u2="Ã" k="52" /> +<hkern u1="©" u2="Â" k="52" /> +<hkern u1="©" u2="Á" k="52" /> +<hkern u1="©" u2="À" k="52" /> +<hkern u1="©" u2="º" k="43" /> +<hkern u1="©" u2="°" k="43" /> +<hkern u1="©" u2="ª" k="43" /> +<hkern u1="©" u2="}" k="41" /> +<hkern u1="©" u2="]" k="41" /> +<hkern u1="©" u2="\" k="57" /> +<hkern u1="©" u2="Z" k="66" /> +<hkern u1="©" u2="Y" k="82" /> +<hkern u1="©" u2="X" k="31" /> +<hkern u1="©" u2="V" k="57" /> +<hkern u1="©" u2="T" k="80" /> +<hkern u1="©" u2="A" k="52" /> +<hkern u1="©" u2="/" k="52" /> +<hkern u1="©" u2="." k="53" /> +<hkern u1="©" u2="," k="53" /> +<hkern u1="©" u2="*" k="43" /> +<hkern u1="©" u2=")" k="41" /> +<hkern u1="©" u2="'" k="43" /> +<hkern u1="©" u2="&" k="52" /> +<hkern u1="©" u2=""" k="43" /> +<hkern u1="ª" u2="›" k="173" /> +<hkern u1="ª" u2="‹" k="173" /> +<hkern u1="ª" u2="•" k="173" /> +<hkern u1="ª" u2="„" k="218" /> +<hkern u1="ª" u2="‚" k="218" /> +<hkern u1="ª" u2="—" k="173" /> +<hkern u1="ª" u2="–" k="173" /> +<hkern u1="ª" u2="Ÿ" k="-37" /> +<hkern u1="ª" u2="œ" k="98" /> +<hkern u1="ª" u2="Œ" k="43" /> +<hkern u1="ª" u2="ø" k="98" /> +<hkern u1="ª" u2="ö" k="98" /> +<hkern u1="ª" u2="õ" k="98" /> +<hkern u1="ª" u2="ô" k="98" /> +<hkern u1="ª" u2="ó" k="98" /> +<hkern u1="ª" u2="ò" k="98" /> +<hkern u1="ª" u2="ð" k="98" /> +<hkern u1="ª" u2="ë" k="98" /> +<hkern u1="ª" u2="ê" k="98" /> +<hkern u1="ª" u2="é" k="98" /> +<hkern u1="ª" u2="è" k="98" /> +<hkern u1="ª" u2="ç" k="98" /> +<hkern u1="ª" u2="æ" k="68" /> +<hkern u1="ª" u2="å" k="68" /> +<hkern u1="ª" u2="ä" k="68" /> +<hkern u1="ª" u2="ã" k="68" /> +<hkern u1="ª" u2="â" k="68" /> +<hkern u1="ª" u2="á" k="68" /> +<hkern u1="ª" u2="à" k="68" /> +<hkern u1="ª" u2="Ý" k="-37" /> +<hkern u1="ª" u2="Ø" k="43" /> +<hkern u1="ª" u2="Ö" k="43" /> +<hkern u1="ª" u2="Õ" k="43" /> +<hkern u1="ª" u2="Ô" k="43" /> +<hkern u1="ª" u2="Ó" k="43" /> +<hkern u1="ª" u2="Ò" k="43" /> +<hkern u1="ª" u2="Ç" k="43" /> +<hkern u1="ª" u2="Æ" k="196" /> +<hkern u1="ª" u2="Å" k="196" /> +<hkern u1="ª" u2="Ä" k="196" /> +<hkern u1="ª" u2="Ã" k="196" /> +<hkern u1="ª" u2="Â" k="196" /> +<hkern u1="ª" u2="Á" k="196" /> +<hkern u1="ª" u2="À" k="196" /> +<hkern u1="ª" u2="»" k="173" /> +<hkern u1="ª" u2="·" k="173" /> +<hkern u1="ª" u2="®" k="43" /> +<hkern u1="ª" u2="­" k="173" /> +<hkern u1="ª" u2="«" k="173" /> +<hkern u1="ª" u2="©" k="43" /> +<hkern u1="ª" u2="q" k="98" /> +<hkern u1="ª" u2="o" k="98" /> +<hkern u1="ª" u2="e" k="98" /> +<hkern u1="ª" u2="d" k="98" /> +<hkern u1="ª" u2="c" k="98" /> +<hkern u1="ª" u2="a" k="68" /> +<hkern u1="ª" u2="\" k="-45" /> +<hkern u1="ª" u2="Y" k="-37" /> +<hkern u1="ª" u2="W" k="-45" /> +<hkern u1="ª" u2="V" k="-45" /> +<hkern u1="ª" u2="Q" k="43" /> +<hkern u1="ª" u2="O" k="43" /> +<hkern u1="ª" u2="G" k="43" /> +<hkern u1="ª" u2="C" k="43" /> +<hkern u1="ª" u2="A" k="196" /> +<hkern u1="ª" u2="@" k="43" /> +<hkern u1="ª" u2="/" k="196" /> +<hkern u1="ª" u2="." k="218" /> +<hkern u1="ª" u2="-" k="173" /> +<hkern u1="ª" u2="," k="218" /> +<hkern u1="ª" u2="&" k="196" /> +<hkern u1="«" u2="™" k="173" /> +<hkern u1="«" u2="„" k="135" /> +<hkern u1="«" u2="”" k="173" /> +<hkern u1="«" u2="“" k="173" /> +<hkern u1="«" u2="‚" k="135" /> +<hkern u1="«" u2="’" k="173" /> +<hkern u1="«" u2="‘" k="173" /> +<hkern u1="«" u2="Ÿ" k="164" /> +<hkern u1="«" u2="Ý" k="164" /> +<hkern u1="«" u2="Æ" k="69" /> +<hkern u1="«" u2="Å" k="69" /> +<hkern u1="«" u2="Ä" k="69" /> +<hkern u1="«" u2="Ã" k="69" /> +<hkern u1="«" u2="Â" k="69" /> +<hkern u1="«" u2="Á" k="69" /> +<hkern u1="«" u2="À" k="69" /> +<hkern u1="«" u2="º" k="173" /> +<hkern u1="«" u2="°" k="173" /> +<hkern u1="«" u2="ª" k="173" /> +<hkern u1="«" u2="\" k="119" /> +<hkern u1="«" u2="Z" k="49" /> +<hkern u1="«" u2="Y" k="164" /> +<hkern u1="«" u2="X" k="68" /> +<hkern u1="«" u2="W" k="37" /> +<hkern u1="«" u2="V" k="119" /> +<hkern u1="«" u2="T" k="184" /> +<hkern u1="«" u2="A" k="69" /> +<hkern u1="«" u2="/" k="69" /> +<hkern u1="«" u2="." k="135" /> +<hkern u1="«" u2="," k="135" /> +<hkern u1="«" u2="*" k="173" /> +<hkern u1="«" u2="'" k="173" /> +<hkern u1="«" u2="&" k="69" /> +<hkern u1="«" u2=""" k="173" /> +<hkern u1="­" u2="™" k="173" /> +<hkern u1="­" u2="„" k="135" /> +<hkern u1="­" u2="”" k="173" /> +<hkern u1="­" u2="“" k="173" /> +<hkern u1="­" u2="‚" k="135" /> +<hkern u1="­" u2="’" k="173" /> +<hkern u1="­" u2="‘" k="173" /> +<hkern u1="­" u2="Ÿ" k="164" /> +<hkern u1="­" u2="Ý" k="164" /> +<hkern u1="­" u2="Æ" k="69" /> +<hkern u1="­" u2="Å" k="69" /> +<hkern u1="­" u2="Ä" k="69" /> +<hkern u1="­" u2="Ã" k="69" /> +<hkern u1="­" u2="Â" k="69" /> +<hkern u1="­" u2="Á" k="69" /> +<hkern u1="­" u2="À" k="69" /> +<hkern u1="­" u2="º" k="173" /> +<hkern u1="­" u2="°" k="173" /> +<hkern u1="­" u2="ª" k="173" /> +<hkern u1="­" u2="\" k="119" /> +<hkern u1="­" u2="Z" k="49" /> +<hkern u1="­" u2="Y" k="164" /> +<hkern u1="­" u2="X" k="68" /> +<hkern u1="­" u2="W" k="37" /> +<hkern u1="­" u2="V" k="119" /> +<hkern u1="­" u2="T" k="184" /> +<hkern u1="­" u2="A" k="69" /> +<hkern u1="­" u2="/" k="69" /> +<hkern u1="­" u2="." k="135" /> +<hkern u1="­" u2="," k="135" /> +<hkern u1="­" u2="*" k="173" /> +<hkern u1="­" u2="'" k="173" /> +<hkern u1="­" u2="&" k="69" /> +<hkern u1="­" u2=""" k="173" /> +<hkern u1="®" u2="™" k="43" /> +<hkern u1="®" u2="„" k="53" /> +<hkern u1="®" u2="”" k="43" /> +<hkern u1="®" u2="“" k="43" /> +<hkern u1="®" u2="‚" k="53" /> +<hkern u1="®" u2="’" k="43" /> +<hkern u1="®" u2="‘" k="43" /> +<hkern u1="®" u2="Ÿ" k="82" /> +<hkern u1="®" u2="Ý" k="82" /> +<hkern u1="®" u2="Æ" k="52" /> +<hkern u1="®" u2="Å" k="52" /> +<hkern u1="®" u2="Ä" k="52" /> +<hkern u1="®" u2="Ã" k="52" /> +<hkern u1="®" u2="Â" k="52" /> +<hkern u1="®" u2="Á" k="52" /> +<hkern u1="®" u2="À" k="52" /> +<hkern u1="®" u2="º" k="43" /> +<hkern u1="®" u2="°" k="43" /> +<hkern u1="®" u2="ª" k="43" /> +<hkern u1="®" u2="}" k="41" /> +<hkern u1="®" u2="]" k="41" /> +<hkern u1="®" u2="\" k="57" /> +<hkern u1="®" u2="Z" k="66" /> +<hkern u1="®" u2="Y" k="82" /> +<hkern u1="®" u2="X" k="31" /> +<hkern u1="®" u2="V" k="57" /> +<hkern u1="®" u2="T" k="80" /> +<hkern u1="®" u2="A" k="52" /> +<hkern u1="®" u2="/" k="52" /> +<hkern u1="®" u2="." k="53" /> +<hkern u1="®" u2="," k="53" /> +<hkern u1="®" u2="*" k="43" /> +<hkern u1="®" u2=")" k="41" /> +<hkern u1="®" u2="'" k="43" /> +<hkern u1="®" u2="&" k="52" /> +<hkern u1="®" u2=""" k="43" /> +<hkern u1="°" u2="›" k="173" /> +<hkern u1="°" u2="‹" k="173" /> +<hkern u1="°" u2="•" k="173" /> +<hkern u1="°" u2="„" k="218" /> +<hkern u1="°" u2="‚" k="218" /> +<hkern u1="°" u2="—" k="173" /> +<hkern u1="°" u2="–" k="173" /> +<hkern u1="°" u2="Ÿ" k="-37" /> +<hkern u1="°" u2="œ" k="98" /> +<hkern u1="°" u2="Œ" k="43" /> +<hkern u1="°" u2="ø" k="98" /> +<hkern u1="°" u2="ö" k="98" /> +<hkern u1="°" u2="õ" k="98" /> +<hkern u1="°" u2="ô" k="98" /> +<hkern u1="°" u2="ó" k="98" /> +<hkern u1="°" u2="ò" k="98" /> +<hkern u1="°" u2="ð" k="98" /> +<hkern u1="°" u2="ë" k="98" /> +<hkern u1="°" u2="ê" k="98" /> +<hkern u1="°" u2="é" k="98" /> +<hkern u1="°" u2="è" k="98" /> +<hkern u1="°" u2="ç" k="98" /> +<hkern u1="°" u2="æ" k="68" /> +<hkern u1="°" u2="å" k="68" /> +<hkern u1="°" u2="ä" k="68" /> +<hkern u1="°" u2="ã" k="68" /> +<hkern u1="°" u2="â" k="68" /> +<hkern u1="°" u2="á" k="68" /> +<hkern u1="°" u2="à" k="68" /> +<hkern u1="°" u2="Ý" k="-37" /> +<hkern u1="°" u2="Ø" k="43" /> +<hkern u1="°" u2="Ö" k="43" /> +<hkern u1="°" u2="Õ" k="43" /> +<hkern u1="°" u2="Ô" k="43" /> +<hkern u1="°" u2="Ó" k="43" /> +<hkern u1="°" u2="Ò" k="43" /> +<hkern u1="°" u2="Ç" k="43" /> +<hkern u1="°" u2="Æ" k="196" /> +<hkern u1="°" u2="Å" k="196" /> +<hkern u1="°" u2="Ä" k="196" /> +<hkern u1="°" u2="Ã" k="196" /> +<hkern u1="°" u2="Â" k="196" /> +<hkern u1="°" u2="Á" k="196" /> +<hkern u1="°" u2="À" k="196" /> +<hkern u1="°" u2="»" k="173" /> +<hkern u1="°" u2="·" k="173" /> +<hkern u1="°" u2="®" k="43" /> +<hkern u1="°" u2="­" k="173" /> +<hkern u1="°" u2="«" k="173" /> +<hkern u1="°" u2="©" k="43" /> +<hkern u1="°" u2="q" k="98" /> +<hkern u1="°" u2="o" k="98" /> +<hkern u1="°" u2="e" k="98" /> +<hkern u1="°" u2="d" k="98" /> +<hkern u1="°" u2="c" k="98" /> +<hkern u1="°" u2="a" k="68" /> +<hkern u1="°" u2="\" k="-45" /> +<hkern u1="°" u2="Y" k="-37" /> +<hkern u1="°" u2="W" k="-45" /> +<hkern u1="°" u2="V" k="-45" /> +<hkern u1="°" u2="Q" k="43" /> +<hkern u1="°" u2="O" k="43" /> +<hkern u1="°" u2="G" k="43" /> +<hkern u1="°" u2="C" k="43" /> +<hkern u1="°" u2="A" k="196" /> +<hkern u1="°" u2="@" k="43" /> +<hkern u1="°" u2="/" k="196" /> +<hkern u1="°" u2="." k="218" /> +<hkern u1="°" u2="-" k="173" /> +<hkern u1="°" u2="," k="218" /> +<hkern u1="°" u2="&" k="196" /> +<hkern u1="²" u2="Ÿ" k="-41" /> +<hkern u1="²" u2="Ý" k="-41" /> +<hkern u1="²" u2="Æ" k="207" /> +<hkern u1="²" u2="Å" k="207" /> +<hkern u1="²" u2="Ä" k="207" /> +<hkern u1="²" u2="Ã" k="207" /> +<hkern u1="²" u2="Â" k="207" /> +<hkern u1="²" u2="Á" k="207" /> +<hkern u1="²" u2="À" k="207" /> +<hkern u1="²" u2="\" k="-50" /> +<hkern u1="²" u2="Y" k="-41" /> +<hkern u1="²" u2="W" k="-50" /> +<hkern u1="²" u2="V" k="-50" /> +<hkern u1="²" u2="A" k="207" /> +<hkern u1="²" u2="/" k="207" /> +<hkern u1="²" u2="&" k="207" /> +<hkern u1="³" u2="Ÿ" k="-41" /> +<hkern u1="³" u2="Ý" k="-41" /> +<hkern u1="³" u2="Æ" k="207" /> +<hkern u1="³" u2="Å" k="207" /> +<hkern u1="³" u2="Ä" k="207" /> +<hkern u1="³" u2="Ã" k="207" /> +<hkern u1="³" u2="Â" k="207" /> +<hkern u1="³" u2="Á" k="207" /> +<hkern u1="³" u2="À" k="207" /> +<hkern u1="³" u2="\" k="-50" /> +<hkern u1="³" u2="Y" k="-41" /> +<hkern u1="³" u2="W" k="-50" /> +<hkern u1="³" u2="V" k="-50" /> +<hkern u1="³" u2="A" k="207" /> +<hkern u1="³" u2="/" k="207" /> +<hkern u1="³" u2="&" k="207" /> +<hkern u1="·" u2="™" k="173" /> +<hkern u1="·" u2="„" k="135" /> +<hkern u1="·" u2="”" k="173" /> +<hkern u1="·" u2="“" k="173" /> +<hkern u1="·" u2="‚" k="135" /> +<hkern u1="·" u2="’" k="173" /> +<hkern u1="·" u2="‘" k="173" /> +<hkern u1="·" u2="Ÿ" k="164" /> +<hkern u1="·" u2="Ý" k="164" /> +<hkern u1="·" u2="Æ" k="69" /> +<hkern u1="·" u2="Å" k="69" /> +<hkern u1="·" u2="Ä" k="69" /> +<hkern u1="·" u2="Ã" k="69" /> +<hkern u1="·" u2="Â" k="69" /> +<hkern u1="·" u2="Á" k="69" /> +<hkern u1="·" u2="À" k="69" /> +<hkern u1="·" u2="º" k="173" /> +<hkern u1="·" u2="°" k="173" /> +<hkern u1="·" u2="ª" k="173" /> +<hkern u1="·" u2="\" k="119" /> +<hkern u1="·" u2="Z" k="49" /> +<hkern u1="·" u2="Y" k="164" /> +<hkern u1="·" u2="X" k="68" /> +<hkern u1="·" u2="W" k="37" /> +<hkern u1="·" u2="V" k="119" /> +<hkern u1="·" u2="T" k="184" /> +<hkern u1="·" u2="A" k="69" /> +<hkern u1="·" u2="/" k="69" /> +<hkern u1="·" u2="." k="135" /> +<hkern u1="·" u2="," k="135" /> +<hkern u1="·" u2="*" k="173" /> +<hkern u1="·" u2="'" k="173" /> +<hkern u1="·" u2="&" k="69" /> +<hkern u1="·" u2=""" k="173" /> +<hkern u1="¹" u2="Ÿ" k="-41" /> +<hkern u1="¹" u2="Ý" k="-41" /> +<hkern u1="¹" u2="Æ" k="207" /> +<hkern u1="¹" u2="Å" k="207" /> +<hkern u1="¹" u2="Ä" k="207" /> +<hkern u1="¹" u2="Ã" k="207" /> +<hkern u1="¹" u2="Â" k="207" /> +<hkern u1="¹" u2="Á" k="207" /> +<hkern u1="¹" u2="À" k="207" /> +<hkern u1="¹" u2="\" k="-50" /> +<hkern u1="¹" u2="Y" k="-41" /> +<hkern u1="¹" u2="W" k="-50" /> +<hkern u1="¹" u2="V" k="-50" /> +<hkern u1="¹" u2="A" k="207" /> +<hkern u1="¹" u2="/" k="207" /> +<hkern u1="¹" u2="&" k="207" /> +<hkern u1="º" u2="›" k="173" /> +<hkern u1="º" u2="‹" k="173" /> +<hkern u1="º" u2="•" k="173" /> +<hkern u1="º" u2="„" k="218" /> +<hkern u1="º" u2="‚" k="218" /> +<hkern u1="º" u2="—" k="173" /> +<hkern u1="º" u2="–" k="173" /> +<hkern u1="º" u2="Ÿ" k="-37" /> +<hkern u1="º" u2="œ" k="98" /> +<hkern u1="º" u2="Œ" k="43" /> +<hkern u1="º" u2="ø" k="98" /> +<hkern u1="º" u2="ö" k="98" /> +<hkern u1="º" u2="õ" k="98" /> +<hkern u1="º" u2="ô" k="98" /> +<hkern u1="º" u2="ó" k="98" /> +<hkern u1="º" u2="ò" k="98" /> +<hkern u1="º" u2="ð" k="98" /> +<hkern u1="º" u2="ë" k="98" /> +<hkern u1="º" u2="ê" k="98" /> +<hkern u1="º" u2="é" k="98" /> +<hkern u1="º" u2="è" k="98" /> +<hkern u1="º" u2="ç" k="98" /> +<hkern u1="º" u2="æ" k="68" /> +<hkern u1="º" u2="å" k="68" /> +<hkern u1="º" u2="ä" k="68" /> +<hkern u1="º" u2="ã" k="68" /> +<hkern u1="º" u2="â" k="68" /> +<hkern u1="º" u2="á" k="68" /> +<hkern u1="º" u2="à" k="68" /> +<hkern u1="º" u2="Ý" k="-37" /> +<hkern u1="º" u2="Ø" k="43" /> +<hkern u1="º" u2="Ö" k="43" /> +<hkern u1="º" u2="Õ" k="43" /> +<hkern u1="º" u2="Ô" k="43" /> +<hkern u1="º" u2="Ó" k="43" /> +<hkern u1="º" u2="Ò" k="43" /> +<hkern u1="º" u2="Ç" k="43" /> +<hkern u1="º" u2="Æ" k="196" /> +<hkern u1="º" u2="Å" k="196" /> +<hkern u1="º" u2="Ä" k="196" /> +<hkern u1="º" u2="Ã" k="196" /> +<hkern u1="º" u2="Â" k="196" /> +<hkern u1="º" u2="Á" k="196" /> +<hkern u1="º" u2="À" k="196" /> +<hkern u1="º" u2="»" k="173" /> +<hkern u1="º" u2="·" k="173" /> +<hkern u1="º" u2="®" k="43" /> +<hkern u1="º" u2="­" k="173" /> +<hkern u1="º" u2="«" k="173" /> +<hkern u1="º" u2="©" k="43" /> +<hkern u1="º" u2="q" k="98" /> +<hkern u1="º" u2="o" k="98" /> +<hkern u1="º" u2="e" k="98" /> +<hkern u1="º" u2="d" k="98" /> +<hkern u1="º" u2="c" k="98" /> +<hkern u1="º" u2="a" k="68" /> +<hkern u1="º" u2="\" k="-45" /> +<hkern u1="º" u2="Y" k="-37" /> +<hkern u1="º" u2="W" k="-45" /> +<hkern u1="º" u2="V" k="-45" /> +<hkern u1="º" u2="Q" k="43" /> +<hkern u1="º" u2="O" k="43" /> +<hkern u1="º" u2="G" k="43" /> +<hkern u1="º" u2="C" k="43" /> +<hkern u1="º" u2="A" k="196" /> +<hkern u1="º" u2="@" k="43" /> +<hkern u1="º" u2="/" k="196" /> +<hkern u1="º" u2="." k="218" /> +<hkern u1="º" u2="-" k="173" /> +<hkern u1="º" u2="," k="218" /> +<hkern u1="º" u2="&" k="196" /> +<hkern u1="»" u2="™" k="173" /> +<hkern u1="»" u2="„" k="135" /> +<hkern u1="»" u2="”" k="173" /> +<hkern u1="»" u2="“" k="173" /> +<hkern u1="»" u2="‚" k="135" /> +<hkern u1="»" u2="’" k="173" /> +<hkern u1="»" u2="‘" k="173" /> +<hkern u1="»" u2="Ÿ" k="164" /> +<hkern u1="»" u2="Ý" k="164" /> +<hkern u1="»" u2="Æ" k="69" /> +<hkern u1="»" u2="Å" k="69" /> +<hkern u1="»" u2="Ä" k="69" /> +<hkern u1="»" u2="Ã" k="69" /> +<hkern u1="»" u2="Â" k="69" /> +<hkern u1="»" u2="Á" k="69" /> +<hkern u1="»" u2="À" k="69" /> +<hkern u1="»" u2="º" k="173" /> +<hkern u1="»" u2="°" k="173" /> +<hkern u1="»" u2="ª" k="173" /> +<hkern u1="»" u2="\" k="119" /> +<hkern u1="»" u2="Z" k="49" /> +<hkern u1="»" u2="Y" k="164" /> +<hkern u1="»" u2="X" k="68" /> +<hkern u1="»" u2="W" k="37" /> +<hkern u1="»" u2="V" k="119" /> +<hkern u1="»" u2="T" k="184" /> +<hkern u1="»" u2="A" k="69" /> +<hkern u1="»" u2="/" k="69" /> +<hkern u1="»" u2="." k="135" /> +<hkern u1="»" u2="," k="135" /> +<hkern u1="»" u2="*" k="173" /> +<hkern u1="»" u2="'" k="173" /> +<hkern u1="»" u2="&" k="69" /> +<hkern u1="»" u2=""" k="173" /> +<hkern u1="À" u2="™" k="196" /> +<hkern u1="À" u2="›" k="69" /> +<hkern u1="À" u2="‹" k="69" /> +<hkern u1="À" u2="•" k="69" /> +<hkern u1="À" u2="”" k="196" /> +<hkern u1="À" u2="“" k="196" /> +<hkern u1="À" u2="’" k="196" /> +<hkern u1="À" u2="‘" k="196" /> +<hkern u1="À" u2="—" k="69" /> +<hkern u1="À" u2="–" k="69" /> +<hkern u1="À" u2="Ÿ" k="186" /> +<hkern u1="À" u2="Œ" k="52" /> +<hkern u1="À" u2="ÿ" k="93" /> +<hkern u1="À" u2="ý" k="93" /> +<hkern u1="À" u2="Ý" k="186" /> +<hkern u1="À" u2="Ü" k="53" /> +<hkern u1="À" u2="Û" k="53" /> +<hkern u1="À" u2="Ú" k="53" /> +<hkern u1="À" u2="Ù" k="53" /> +<hkern u1="À" u2="Ø" k="52" /> +<hkern u1="À" u2="Ö" k="52" /> +<hkern u1="À" u2="Õ" k="52" /> +<hkern u1="À" u2="Ô" k="52" /> +<hkern u1="À" u2="Ó" k="52" /> +<hkern u1="À" u2="Ò" k="52" /> +<hkern u1="À" u2="Ç" k="52" /> +<hkern u1="À" u2="»" k="69" /> +<hkern u1="À" u2="º" k="196" /> +<hkern u1="À" u2="¹" k="207" /> +<hkern u1="À" u2="·" k="69" /> +<hkern u1="À" u2="³" k="207" /> +<hkern u1="À" u2="²" k="207" /> +<hkern u1="À" u2="°" k="196" /> +<hkern u1="À" u2="®" k="52" /> +<hkern u1="À" u2="­" k="69" /> +<hkern u1="À" u2="«" k="69" /> +<hkern u1="À" u2="ª" k="196" /> +<hkern u1="À" u2="©" k="52" /> +<hkern u1="À" u2="y" k="93" /> +<hkern u1="À" u2="v" k="93" /> +<hkern u1="À" u2="\" k="173" /> +<hkern u1="À" u2="Y" k="186" /> +<hkern u1="À" u2="W" k="104" /> +<hkern u1="À" u2="V" k="173" /> +<hkern u1="À" u2="U" k="53" /> +<hkern u1="À" u2="T" k="151" /> +<hkern u1="À" u2="Q" k="52" /> +<hkern u1="À" u2="O" k="52" /> +<hkern u1="À" u2="J" k="-57" /> +<hkern u1="À" u2="G" k="52" /> +<hkern u1="À" u2="C" k="52" /> +<hkern u1="À" u2="@" k="52" /> +<hkern u1="À" u2="?" k="65" /> +<hkern u1="À" u2="-" k="69" /> +<hkern u1="À" u2="*" k="196" /> +<hkern u1="À" u2="'" k="196" /> +<hkern u1="À" u2=""" k="196" /> +<hkern u1="Á" u2="™" k="196" /> +<hkern u1="Á" u2="›" k="69" /> +<hkern u1="Á" u2="‹" k="69" /> +<hkern u1="Á" u2="•" k="69" /> +<hkern u1="Á" u2="”" k="196" /> +<hkern u1="Á" u2="“" k="196" /> +<hkern u1="Á" u2="’" k="196" /> +<hkern u1="Á" u2="‘" k="196" /> +<hkern u1="Á" u2="—" k="69" /> +<hkern u1="Á" u2="–" k="69" /> +<hkern u1="Á" u2="Ÿ" k="186" /> +<hkern u1="Á" u2="Œ" k="52" /> +<hkern u1="Á" u2="ÿ" k="93" /> +<hkern u1="Á" u2="ý" k="93" /> +<hkern u1="Á" u2="Ý" k="186" /> +<hkern u1="Á" u2="Ü" k="53" /> +<hkern u1="Á" u2="Û" k="53" /> +<hkern u1="Á" u2="Ú" k="53" /> +<hkern u1="Á" u2="Ù" k="53" /> +<hkern u1="Á" u2="Ø" k="52" /> +<hkern u1="Á" u2="Ö" k="52" /> +<hkern u1="Á" u2="Õ" k="52" /> +<hkern u1="Á" u2="Ô" k="52" /> +<hkern u1="Á" u2="Ó" k="52" /> +<hkern u1="Á" u2="Ò" k="52" /> +<hkern u1="Á" u2="Ç" k="52" /> +<hkern u1="Á" u2="»" k="69" /> +<hkern u1="Á" u2="º" k="196" /> +<hkern u1="Á" u2="¹" k="207" /> +<hkern u1="Á" u2="·" k="69" /> +<hkern u1="Á" u2="³" k="207" /> +<hkern u1="Á" u2="²" k="207" /> +<hkern u1="Á" u2="°" k="196" /> +<hkern u1="Á" u2="®" k="52" /> +<hkern u1="Á" u2="­" k="69" /> +<hkern u1="Á" u2="«" k="69" /> +<hkern u1="Á" u2="ª" k="196" /> +<hkern u1="Á" u2="©" k="52" /> +<hkern u1="Á" u2="y" k="93" /> +<hkern u1="Á" u2="v" k="93" /> +<hkern u1="Á" u2="\" k="173" /> +<hkern u1="Á" u2="Y" k="186" /> +<hkern u1="Á" u2="W" k="104" /> +<hkern u1="Á" u2="V" k="173" /> +<hkern u1="Á" u2="U" k="53" /> +<hkern u1="Á" u2="T" k="151" /> +<hkern u1="Á" u2="Q" k="52" /> +<hkern u1="Á" u2="O" k="52" /> +<hkern u1="Á" u2="J" k="-57" /> +<hkern u1="Á" u2="G" k="52" /> +<hkern u1="Á" u2="C" k="52" /> +<hkern u1="Á" u2="@" k="52" /> +<hkern u1="Á" u2="?" k="65" /> +<hkern u1="Á" u2="-" k="69" /> +<hkern u1="Á" u2="*" k="196" /> +<hkern u1="Á" u2="'" k="196" /> +<hkern u1="Á" u2=""" k="196" /> +<hkern u1="Â" u2="™" k="196" /> +<hkern u1="Â" u2="›" k="69" /> +<hkern u1="Â" u2="‹" k="69" /> +<hkern u1="Â" u2="•" k="69" /> +<hkern u1="Â" u2="”" k="196" /> +<hkern u1="Â" u2="“" k="196" /> +<hkern u1="Â" u2="’" k="196" /> +<hkern u1="Â" u2="‘" k="196" /> +<hkern u1="Â" u2="—" k="69" /> +<hkern u1="Â" u2="–" k="69" /> +<hkern u1="Â" u2="Ÿ" k="186" /> +<hkern u1="Â" u2="Œ" k="52" /> +<hkern u1="Â" u2="ÿ" k="93" /> +<hkern u1="Â" u2="ý" k="93" /> +<hkern u1="Â" u2="Ý" k="186" /> +<hkern u1="Â" u2="Ü" k="53" /> +<hkern u1="Â" u2="Û" k="53" /> +<hkern u1="Â" u2="Ú" k="53" /> +<hkern u1="Â" u2="Ù" k="53" /> +<hkern u1="Â" u2="Ø" k="52" /> +<hkern u1="Â" u2="Ö" k="52" /> +<hkern u1="Â" u2="Õ" k="52" /> +<hkern u1="Â" u2="Ô" k="52" /> +<hkern u1="Â" u2="Ó" k="52" /> +<hkern u1="Â" u2="Ò" k="52" /> +<hkern u1="Â" u2="Ç" k="52" /> +<hkern u1="Â" u2="»" k="69" /> +<hkern u1="Â" u2="º" k="196" /> +<hkern u1="Â" u2="¹" k="207" /> +<hkern u1="Â" u2="·" k="69" /> +<hkern u1="Â" u2="³" k="207" /> +<hkern u1="Â" u2="²" k="207" /> +<hkern u1="Â" u2="°" k="196" /> +<hkern u1="Â" u2="®" k="52" /> +<hkern u1="Â" u2="­" k="69" /> +<hkern u1="Â" u2="«" k="69" /> +<hkern u1="Â" u2="ª" k="196" /> +<hkern u1="Â" u2="©" k="52" /> +<hkern u1="Â" u2="y" k="93" /> +<hkern u1="Â" u2="v" k="93" /> +<hkern u1="Â" u2="\" k="173" /> +<hkern u1="Â" u2="Y" k="186" /> +<hkern u1="Â" u2="W" k="104" /> +<hkern u1="Â" u2="V" k="173" /> +<hkern u1="Â" u2="U" k="53" /> +<hkern u1="Â" u2="T" k="151" /> +<hkern u1="Â" u2="Q" k="52" /> +<hkern u1="Â" u2="O" k="52" /> +<hkern u1="Â" u2="J" k="-57" /> +<hkern u1="Â" u2="G" k="52" /> +<hkern u1="Â" u2="C" k="52" /> +<hkern u1="Â" u2="@" k="52" /> +<hkern u1="Â" u2="?" k="65" /> +<hkern u1="Â" u2="-" k="69" /> +<hkern u1="Â" u2="*" k="196" /> +<hkern u1="Â" u2="'" k="196" /> +<hkern u1="Â" u2=""" k="196" /> +<hkern u1="Ã" u2="™" k="196" /> +<hkern u1="Ã" u2="›" k="69" /> +<hkern u1="Ã" u2="‹" k="69" /> +<hkern u1="Ã" u2="•" k="69" /> +<hkern u1="Ã" u2="”" k="196" /> +<hkern u1="Ã" u2="“" k="196" /> +<hkern u1="Ã" u2="’" k="196" /> +<hkern u1="Ã" u2="‘" k="196" /> +<hkern u1="Ã" u2="—" k="69" /> +<hkern u1="Ã" u2="–" k="69" /> +<hkern u1="Ã" u2="Ÿ" k="186" /> +<hkern u1="Ã" u2="Œ" k="52" /> +<hkern u1="Ã" u2="ÿ" k="93" /> +<hkern u1="Ã" u2="ý" k="93" /> +<hkern u1="Ã" u2="Ý" k="186" /> +<hkern u1="Ã" u2="Ü" k="53" /> +<hkern u1="Ã" u2="Û" k="53" /> +<hkern u1="Ã" u2="Ú" k="53" /> +<hkern u1="Ã" u2="Ù" k="53" /> +<hkern u1="Ã" u2="Ø" k="52" /> +<hkern u1="Ã" u2="Ö" k="52" /> +<hkern u1="Ã" u2="Õ" k="52" /> +<hkern u1="Ã" u2="Ô" k="52" /> +<hkern u1="Ã" u2="Ó" k="52" /> +<hkern u1="Ã" u2="Ò" k="52" /> +<hkern u1="Ã" u2="Ç" k="52" /> +<hkern u1="Ã" u2="»" k="69" /> +<hkern u1="Ã" u2="º" k="196" /> +<hkern u1="Ã" u2="¹" k="207" /> +<hkern u1="Ã" u2="·" k="69" /> +<hkern u1="Ã" u2="³" k="207" /> +<hkern u1="Ã" u2="²" k="207" /> +<hkern u1="Ã" u2="°" k="196" /> +<hkern u1="Ã" u2="®" k="52" /> +<hkern u1="Ã" u2="­" k="69" /> +<hkern u1="Ã" u2="«" k="69" /> +<hkern u1="Ã" u2="ª" k="196" /> +<hkern u1="Ã" u2="©" k="52" /> +<hkern u1="Ã" u2="y" k="93" /> +<hkern u1="Ã" u2="v" k="93" /> +<hkern u1="Ã" u2="\" k="173" /> +<hkern u1="Ã" u2="Y" k="186" /> +<hkern u1="Ã" u2="W" k="104" /> +<hkern u1="Ã" u2="V" k="173" /> +<hkern u1="Ã" u2="U" k="53" /> +<hkern u1="Ã" u2="T" k="151" /> +<hkern u1="Ã" u2="Q" k="52" /> +<hkern u1="Ã" u2="O" k="52" /> +<hkern u1="Ã" u2="J" k="-57" /> +<hkern u1="Ã" u2="G" k="52" /> +<hkern u1="Ã" u2="C" k="52" /> +<hkern u1="Ã" u2="@" k="52" /> +<hkern u1="Ã" u2="?" k="65" /> +<hkern u1="Ã" u2="-" k="69" /> +<hkern u1="Ã" u2="*" k="196" /> +<hkern u1="Ã" u2="'" k="196" /> +<hkern u1="Ã" u2=""" k="196" /> +<hkern u1="Ä" u2="™" k="196" /> +<hkern u1="Ä" u2="›" k="69" /> +<hkern u1="Ä" u2="‹" k="69" /> +<hkern u1="Ä" u2="•" k="69" /> +<hkern u1="Ä" u2="”" k="196" /> +<hkern u1="Ä" u2="“" k="196" /> +<hkern u1="Ä" u2="’" k="196" /> +<hkern u1="Ä" u2="‘" k="196" /> +<hkern u1="Ä" u2="—" k="69" /> +<hkern u1="Ä" u2="–" k="69" /> +<hkern u1="Ä" u2="Ÿ" k="186" /> +<hkern u1="Ä" u2="Œ" k="52" /> +<hkern u1="Ä" u2="ÿ" k="93" /> +<hkern u1="Ä" u2="ý" k="93" /> +<hkern u1="Ä" u2="Ý" k="186" /> +<hkern u1="Ä" u2="Ü" k="53" /> +<hkern u1="Ä" u2="Û" k="53" /> +<hkern u1="Ä" u2="Ú" k="53" /> +<hkern u1="Ä" u2="Ù" k="53" /> +<hkern u1="Ä" u2="Ø" k="52" /> +<hkern u1="Ä" u2="Ö" k="52" /> +<hkern u1="Ä" u2="Õ" k="52" /> +<hkern u1="Ä" u2="Ô" k="52" /> +<hkern u1="Ä" u2="Ó" k="52" /> +<hkern u1="Ä" u2="Ò" k="52" /> +<hkern u1="Ä" u2="Ç" k="52" /> +<hkern u1="Ä" u2="»" k="69" /> +<hkern u1="Ä" u2="º" k="196" /> +<hkern u1="Ä" u2="¹" k="207" /> +<hkern u1="Ä" u2="·" k="69" /> +<hkern u1="Ä" u2="³" k="207" /> +<hkern u1="Ä" u2="²" k="207" /> +<hkern u1="Ä" u2="°" k="196" /> +<hkern u1="Ä" u2="®" k="52" /> +<hkern u1="Ä" u2="­" k="69" /> +<hkern u1="Ä" u2="«" k="69" /> +<hkern u1="Ä" u2="ª" k="196" /> +<hkern u1="Ä" u2="©" k="52" /> +<hkern u1="Ä" u2="y" k="93" /> +<hkern u1="Ä" u2="v" k="93" /> +<hkern u1="Ä" u2="\" k="173" /> +<hkern u1="Ä" u2="Y" k="186" /> +<hkern u1="Ä" u2="W" k="104" /> +<hkern u1="Ä" u2="V" k="173" /> +<hkern u1="Ä" u2="U" k="53" /> +<hkern u1="Ä" u2="T" k="151" /> +<hkern u1="Ä" u2="Q" k="52" /> +<hkern u1="Ä" u2="O" k="52" /> +<hkern u1="Ä" u2="J" k="-57" /> +<hkern u1="Ä" u2="G" k="52" /> +<hkern u1="Ä" u2="C" k="52" /> +<hkern u1="Ä" u2="@" k="52" /> +<hkern u1="Ä" u2="?" k="65" /> +<hkern u1="Ä" u2="-" k="69" /> +<hkern u1="Ä" u2="*" k="196" /> +<hkern u1="Ä" u2="'" k="196" /> +<hkern u1="Ä" u2=""" k="196" /> +<hkern u1="Å" u2="™" k="196" /> +<hkern u1="Å" u2="›" k="69" /> +<hkern u1="Å" u2="‹" k="69" /> +<hkern u1="Å" u2="•" k="69" /> +<hkern u1="Å" u2="”" k="196" /> +<hkern u1="Å" u2="“" k="196" /> +<hkern u1="Å" u2="’" k="196" /> +<hkern u1="Å" u2="‘" k="196" /> +<hkern u1="Å" u2="—" k="69" /> +<hkern u1="Å" u2="–" k="69" /> +<hkern u1="Å" u2="Ÿ" k="186" /> +<hkern u1="Å" u2="Œ" k="52" /> +<hkern u1="Å" u2="ÿ" k="93" /> +<hkern u1="Å" u2="ý" k="93" /> +<hkern u1="Å" u2="Ý" k="186" /> +<hkern u1="Å" u2="Ü" k="53" /> +<hkern u1="Å" u2="Û" k="53" /> +<hkern u1="Å" u2="Ú" k="53" /> +<hkern u1="Å" u2="Ù" k="53" /> +<hkern u1="Å" u2="Ø" k="52" /> +<hkern u1="Å" u2="Ö" k="52" /> +<hkern u1="Å" u2="Õ" k="52" /> +<hkern u1="Å" u2="Ô" k="52" /> +<hkern u1="Å" u2="Ó" k="52" /> +<hkern u1="Å" u2="Ò" k="52" /> +<hkern u1="Å" u2="Ç" k="52" /> +<hkern u1="Å" u2="»" k="69" /> +<hkern u1="Å" u2="º" k="196" /> +<hkern u1="Å" u2="¹" k="207" /> +<hkern u1="Å" u2="·" k="69" /> +<hkern u1="Å" u2="³" k="207" /> +<hkern u1="Å" u2="²" k="207" /> +<hkern u1="Å" u2="°" k="196" /> +<hkern u1="Å" u2="®" k="52" /> +<hkern u1="Å" u2="­" k="69" /> +<hkern u1="Å" u2="«" k="69" /> +<hkern u1="Å" u2="ª" k="196" /> +<hkern u1="Å" u2="©" k="52" /> +<hkern u1="Å" u2="y" k="93" /> +<hkern u1="Å" u2="v" k="93" /> +<hkern u1="Å" u2="\" k="173" /> +<hkern u1="Å" u2="Y" k="186" /> +<hkern u1="Å" u2="W" k="104" /> +<hkern u1="Å" u2="V" k="173" /> +<hkern u1="Å" u2="U" k="53" /> +<hkern u1="Å" u2="T" k="151" /> +<hkern u1="Å" u2="Q" k="52" /> +<hkern u1="Å" u2="O" k="52" /> +<hkern u1="Å" u2="J" k="-57" /> +<hkern u1="Å" u2="G" k="52" /> +<hkern u1="Å" u2="C" k="52" /> +<hkern u1="Å" u2="@" k="52" /> +<hkern u1="Å" u2="?" k="65" /> +<hkern u1="Å" u2="-" k="69" /> +<hkern u1="Å" u2="*" k="196" /> +<hkern u1="Å" u2="'" k="196" /> +<hkern u1="Å" u2=""" k="196" /> +<hkern u1="Ç" u2="›" k="147" /> +<hkern u1="Ç" u2="‹" k="147" /> +<hkern u1="Ç" u2="•" k="147" /> +<hkern u1="Ç" u2="—" k="147" /> +<hkern u1="Ç" u2="–" k="147" /> +<hkern u1="Ç" u2="»" k="147" /> +<hkern u1="Ç" u2="·" k="147" /> +<hkern u1="Ç" u2="­" k="147" /> +<hkern u1="Ç" u2="«" k="147" /> +<hkern u1="Ç" u2="-" k="147" /> +<hkern u1="Ð" u2="™" k="43" /> +<hkern u1="Ð" u2="„" k="53" /> +<hkern u1="Ð" u2="”" k="43" /> +<hkern u1="Ð" u2="“" k="43" /> +<hkern u1="Ð" u2="‚" k="53" /> +<hkern u1="Ð" u2="’" k="43" /> +<hkern u1="Ð" u2="‘" k="43" /> +<hkern u1="Ð" u2="Ÿ" k="82" /> +<hkern u1="Ð" u2="Ý" k="82" /> +<hkern u1="Ð" u2="Æ" k="52" /> +<hkern u1="Ð" u2="Å" k="52" /> +<hkern u1="Ð" u2="Ä" k="52" /> +<hkern u1="Ð" u2="Ã" k="52" /> +<hkern u1="Ð" u2="Â" k="52" /> +<hkern u1="Ð" u2="Á" k="52" /> +<hkern u1="Ð" u2="À" k="52" /> +<hkern u1="Ð" u2="º" k="43" /> +<hkern u1="Ð" u2="°" k="43" /> +<hkern u1="Ð" u2="ª" k="43" /> +<hkern u1="Ð" u2="}" k="41" /> +<hkern u1="Ð" u2="]" k="41" /> +<hkern u1="Ð" u2="\" k="57" /> +<hkern u1="Ð" u2="Z" k="66" /> +<hkern u1="Ð" u2="Y" k="82" /> +<hkern u1="Ð" u2="X" k="31" /> +<hkern u1="Ð" u2="V" k="57" /> +<hkern u1="Ð" u2="T" k="80" /> +<hkern u1="Ð" u2="A" k="52" /> +<hkern u1="Ð" u2="/" k="52" /> +<hkern u1="Ð" u2="." k="53" /> +<hkern u1="Ð" u2="," k="53" /> +<hkern u1="Ð" u2="*" k="43" /> +<hkern u1="Ð" u2=")" k="41" /> +<hkern u1="Ð" u2="'" k="43" /> +<hkern u1="Ð" u2="&" k="52" /> +<hkern u1="Ð" u2=""" k="43" /> +<hkern u1="Ò" u2="™" k="43" /> +<hkern u1="Ò" u2="„" k="53" /> +<hkern u1="Ò" u2="”" k="43" /> +<hkern u1="Ò" u2="“" k="43" /> +<hkern u1="Ò" u2="‚" k="53" /> +<hkern u1="Ò" u2="’" k="43" /> +<hkern u1="Ò" u2="‘" k="43" /> +<hkern u1="Ò" u2="Ÿ" k="82" /> +<hkern u1="Ò" u2="Ý" k="82" /> +<hkern u1="Ò" u2="Æ" k="52" /> +<hkern u1="Ò" u2="Å" k="52" /> +<hkern u1="Ò" u2="Ä" k="52" /> +<hkern u1="Ò" u2="Ã" k="52" /> +<hkern u1="Ò" u2="Â" k="52" /> +<hkern u1="Ò" u2="Á" k="52" /> +<hkern u1="Ò" u2="À" k="52" /> +<hkern u1="Ò" u2="º" k="43" /> +<hkern u1="Ò" u2="°" k="43" /> +<hkern u1="Ò" u2="ª" k="43" /> +<hkern u1="Ò" u2="}" k="41" /> +<hkern u1="Ò" u2="]" k="41" /> +<hkern u1="Ò" u2="\" k="57" /> +<hkern u1="Ò" u2="Z" k="66" /> +<hkern u1="Ò" u2="Y" k="82" /> +<hkern u1="Ò" u2="X" k="31" /> +<hkern u1="Ò" u2="V" k="57" /> +<hkern u1="Ò" u2="T" k="80" /> +<hkern u1="Ò" u2="A" k="52" /> +<hkern u1="Ò" u2="/" k="52" /> +<hkern u1="Ò" u2="." k="53" /> +<hkern u1="Ò" u2="," k="53" /> +<hkern u1="Ò" u2="*" k="43" /> +<hkern u1="Ò" u2=")" k="41" /> +<hkern u1="Ò" u2="'" k="43" /> +<hkern u1="Ò" u2="&" k="52" /> +<hkern u1="Ò" u2=""" k="43" /> +<hkern u1="Ó" u2="™" k="43" /> +<hkern u1="Ó" u2="„" k="53" /> +<hkern u1="Ó" u2="”" k="43" /> +<hkern u1="Ó" u2="“" k="43" /> +<hkern u1="Ó" u2="‚" k="53" /> +<hkern u1="Ó" u2="’" k="43" /> +<hkern u1="Ó" u2="‘" k="43" /> +<hkern u1="Ó" u2="Ÿ" k="82" /> +<hkern u1="Ó" u2="Ý" k="82" /> +<hkern u1="Ó" u2="Æ" k="52" /> +<hkern u1="Ó" u2="Å" k="52" /> +<hkern u1="Ó" u2="Ä" k="52" /> +<hkern u1="Ó" u2="Ã" k="52" /> +<hkern u1="Ó" u2="Â" k="52" /> +<hkern u1="Ó" u2="Á" k="52" /> +<hkern u1="Ó" u2="À" k="52" /> +<hkern u1="Ó" u2="º" k="43" /> +<hkern u1="Ó" u2="°" k="43" /> +<hkern u1="Ó" u2="ª" k="43" /> +<hkern u1="Ó" u2="}" k="41" /> +<hkern u1="Ó" u2="]" k="41" /> +<hkern u1="Ó" u2="\" k="57" /> +<hkern u1="Ó" u2="Z" k="66" /> +<hkern u1="Ó" u2="Y" k="82" /> +<hkern u1="Ó" u2="X" k="31" /> +<hkern u1="Ó" u2="V" k="57" /> +<hkern u1="Ó" u2="T" k="80" /> +<hkern u1="Ó" u2="A" k="52" /> +<hkern u1="Ó" u2="/" k="52" /> +<hkern u1="Ó" u2="." k="53" /> +<hkern u1="Ó" u2="," k="53" /> +<hkern u1="Ó" u2="*" k="43" /> +<hkern u1="Ó" u2=")" k="41" /> +<hkern u1="Ó" u2="'" k="43" /> +<hkern u1="Ó" u2="&" k="52" /> +<hkern u1="Ó" u2=""" k="43" /> +<hkern u1="Ô" u2="™" k="43" /> +<hkern u1="Ô" u2="„" k="53" /> +<hkern u1="Ô" u2="”" k="43" /> +<hkern u1="Ô" u2="“" k="43" /> +<hkern u1="Ô" u2="‚" k="53" /> +<hkern u1="Ô" u2="’" k="43" /> +<hkern u1="Ô" u2="‘" k="43" /> +<hkern u1="Ô" u2="Ÿ" k="82" /> +<hkern u1="Ô" u2="Ý" k="82" /> +<hkern u1="Ô" u2="Æ" k="52" /> +<hkern u1="Ô" u2="Å" k="52" /> +<hkern u1="Ô" u2="Ä" k="52" /> +<hkern u1="Ô" u2="Ã" k="52" /> +<hkern u1="Ô" u2="Â" k="52" /> +<hkern u1="Ô" u2="Á" k="52" /> +<hkern u1="Ô" u2="À" k="52" /> +<hkern u1="Ô" u2="º" k="43" /> +<hkern u1="Ô" u2="°" k="43" /> +<hkern u1="Ô" u2="ª" k="43" /> +<hkern u1="Ô" u2="}" k="41" /> +<hkern u1="Ô" u2="]" k="41" /> +<hkern u1="Ô" u2="\" k="57" /> +<hkern u1="Ô" u2="Z" k="66" /> +<hkern u1="Ô" u2="Y" k="82" /> +<hkern u1="Ô" u2="X" k="31" /> +<hkern u1="Ô" u2="V" k="57" /> +<hkern u1="Ô" u2="T" k="80" /> +<hkern u1="Ô" u2="A" k="52" /> +<hkern u1="Ô" u2="/" k="52" /> +<hkern u1="Ô" u2="." k="53" /> +<hkern u1="Ô" u2="," k="53" /> +<hkern u1="Ô" u2="*" k="43" /> +<hkern u1="Ô" u2=")" k="41" /> +<hkern u1="Ô" u2="'" k="43" /> +<hkern u1="Ô" u2="&" k="52" /> +<hkern u1="Ô" u2=""" k="43" /> +<hkern u1="Õ" u2="™" k="43" /> +<hkern u1="Õ" u2="„" k="53" /> +<hkern u1="Õ" u2="”" k="43" /> +<hkern u1="Õ" u2="“" k="43" /> +<hkern u1="Õ" u2="‚" k="53" /> +<hkern u1="Õ" u2="’" k="43" /> +<hkern u1="Õ" u2="‘" k="43" /> +<hkern u1="Õ" u2="Ÿ" k="82" /> +<hkern u1="Õ" u2="Ý" k="82" /> +<hkern u1="Õ" u2="Æ" k="52" /> +<hkern u1="Õ" u2="Å" k="52" /> +<hkern u1="Õ" u2="Ä" k="52" /> +<hkern u1="Õ" u2="Ã" k="52" /> +<hkern u1="Õ" u2="Â" k="52" /> +<hkern u1="Õ" u2="Á" k="52" /> +<hkern u1="Õ" u2="À" k="52" /> +<hkern u1="Õ" u2="º" k="43" /> +<hkern u1="Õ" u2="°" k="43" /> +<hkern u1="Õ" u2="ª" k="43" /> +<hkern u1="Õ" u2="}" k="41" /> +<hkern u1="Õ" u2="]" k="41" /> +<hkern u1="Õ" u2="\" k="57" /> +<hkern u1="Õ" u2="Z" k="66" /> +<hkern u1="Õ" u2="Y" k="82" /> +<hkern u1="Õ" u2="X" k="31" /> +<hkern u1="Õ" u2="V" k="57" /> +<hkern u1="Õ" u2="T" k="80" /> +<hkern u1="Õ" u2="A" k="52" /> +<hkern u1="Õ" u2="/" k="52" /> +<hkern u1="Õ" u2="." k="53" /> +<hkern u1="Õ" u2="," k="53" /> +<hkern u1="Õ" u2="*" k="43" /> +<hkern u1="Õ" u2=")" k="41" /> +<hkern u1="Õ" u2="'" k="43" /> +<hkern u1="Õ" u2="&" k="52" /> +<hkern u1="Õ" u2=""" k="43" /> +<hkern u1="Ö" u2="™" k="43" /> +<hkern u1="Ö" u2="„" k="53" /> +<hkern u1="Ö" u2="”" k="43" /> +<hkern u1="Ö" u2="“" k="43" /> +<hkern u1="Ö" u2="‚" k="53" /> +<hkern u1="Ö" u2="’" k="43" /> +<hkern u1="Ö" u2="‘" k="43" /> +<hkern u1="Ö" u2="Ÿ" k="82" /> +<hkern u1="Ö" u2="Ý" k="82" /> +<hkern u1="Ö" u2="Æ" k="52" /> +<hkern u1="Ö" u2="Å" k="52" /> +<hkern u1="Ö" u2="Ä" k="52" /> +<hkern u1="Ö" u2="Ã" k="52" /> +<hkern u1="Ö" u2="Â" k="52" /> +<hkern u1="Ö" u2="Á" k="52" /> +<hkern u1="Ö" u2="À" k="52" /> +<hkern u1="Ö" u2="º" k="43" /> +<hkern u1="Ö" u2="°" k="43" /> +<hkern u1="Ö" u2="ª" k="43" /> +<hkern u1="Ö" u2="}" k="41" /> +<hkern u1="Ö" u2="]" k="41" /> +<hkern u1="Ö" u2="\" k="57" /> +<hkern u1="Ö" u2="Z" k="66" /> +<hkern u1="Ö" u2="Y" k="82" /> +<hkern u1="Ö" u2="X" k="31" /> +<hkern u1="Ö" u2="V" k="57" /> +<hkern u1="Ö" u2="T" k="80" /> +<hkern u1="Ö" u2="A" k="52" /> +<hkern u1="Ö" u2="/" k="52" /> +<hkern u1="Ö" u2="." k="53" /> +<hkern u1="Ö" u2="," k="53" /> +<hkern u1="Ö" u2="*" k="43" /> +<hkern u1="Ö" u2=")" k="41" /> +<hkern u1="Ö" u2="'" k="43" /> +<hkern u1="Ö" u2="&" k="52" /> +<hkern u1="Ö" u2=""" k="43" /> +<hkern u1="Ø" u2="™" k="43" /> +<hkern u1="Ø" u2="„" k="53" /> +<hkern u1="Ø" u2="”" k="43" /> +<hkern u1="Ø" u2="“" k="43" /> +<hkern u1="Ø" u2="‚" k="53" /> +<hkern u1="Ø" u2="’" k="43" /> +<hkern u1="Ø" u2="‘" k="43" /> +<hkern u1="Ø" u2="Ÿ" k="82" /> +<hkern u1="Ø" u2="Ý" k="82" /> +<hkern u1="Ø" u2="Æ" k="52" /> +<hkern u1="Ø" u2="Å" k="52" /> +<hkern u1="Ø" u2="Ä" k="52" /> +<hkern u1="Ø" u2="Ã" k="52" /> +<hkern u1="Ø" u2="Â" k="52" /> +<hkern u1="Ø" u2="Á" k="52" /> +<hkern u1="Ø" u2="À" k="52" /> +<hkern u1="Ø" u2="º" k="43" /> +<hkern u1="Ø" u2="°" k="43" /> +<hkern u1="Ø" u2="ª" k="43" /> +<hkern u1="Ø" u2="}" k="41" /> +<hkern u1="Ø" u2="]" k="41" /> +<hkern u1="Ø" u2="\" k="57" /> +<hkern u1="Ø" u2="Z" k="66" /> +<hkern u1="Ø" u2="Y" k="82" /> +<hkern u1="Ø" u2="X" k="31" /> +<hkern u1="Ø" u2="V" k="57" /> +<hkern u1="Ø" u2="T" k="80" /> +<hkern u1="Ø" u2="A" k="52" /> +<hkern u1="Ø" u2="/" k="52" /> +<hkern u1="Ø" u2="." k="53" /> +<hkern u1="Ø" u2="," k="53" /> +<hkern u1="Ø" u2="*" k="43" /> +<hkern u1="Ø" u2=")" k="41" /> +<hkern u1="Ø" u2="'" k="43" /> +<hkern u1="Ø" u2="&" k="52" /> +<hkern u1="Ø" u2=""" k="43" /> +<hkern u1="Ù" u2="„" k="51" /> +<hkern u1="Ù" u2="‚" k="51" /> +<hkern u1="Ù" u2="Æ" k="53" /> +<hkern u1="Ù" u2="Å" k="53" /> +<hkern u1="Ù" u2="Ä" k="53" /> +<hkern u1="Ù" u2="Ã" k="53" /> +<hkern u1="Ù" u2="Â" k="53" /> +<hkern u1="Ù" u2="Á" k="53" /> +<hkern u1="Ù" u2="À" k="53" /> +<hkern u1="Ù" u2="A" k="53" /> +<hkern u1="Ù" u2="/" k="53" /> +<hkern u1="Ù" u2="." k="51" /> +<hkern u1="Ù" u2="," k="51" /> +<hkern u1="Ù" u2="&" k="53" /> +<hkern u1="Ú" u2="„" k="51" /> +<hkern u1="Ú" u2="‚" k="51" /> +<hkern u1="Ú" u2="Æ" k="53" /> +<hkern u1="Ú" u2="Å" k="53" /> +<hkern u1="Ú" u2="Ä" k="53" /> +<hkern u1="Ú" u2="Ã" k="53" /> +<hkern u1="Ú" u2="Â" k="53" /> +<hkern u1="Ú" u2="Á" k="53" /> +<hkern u1="Ú" u2="À" k="53" /> +<hkern u1="Ú" u2="A" k="53" /> +<hkern u1="Ú" u2="/" k="53" /> +<hkern u1="Ú" u2="." k="51" /> +<hkern u1="Ú" u2="," k="51" /> +<hkern u1="Ú" u2="&" k="53" /> +<hkern u1="Û" u2="„" k="51" /> +<hkern u1="Û" u2="‚" k="51" /> +<hkern u1="Û" u2="Æ" k="53" /> +<hkern u1="Û" u2="Å" k="53" /> +<hkern u1="Û" u2="Ä" k="53" /> +<hkern u1="Û" u2="Ã" k="53" /> +<hkern u1="Û" u2="Â" k="53" /> +<hkern u1="Û" u2="Á" k="53" /> +<hkern u1="Û" u2="À" k="53" /> +<hkern u1="Û" u2="A" k="53" /> +<hkern u1="Û" u2="/" k="53" /> +<hkern u1="Û" u2="." k="51" /> +<hkern u1="Û" u2="," k="51" /> +<hkern u1="Û" u2="&" k="53" /> +<hkern u1="Ü" u2="„" k="51" /> +<hkern u1="Ü" u2="‚" k="51" /> +<hkern u1="Ü" u2="Æ" k="53" /> +<hkern u1="Ü" u2="Å" k="53" /> +<hkern u1="Ü" u2="Ä" k="53" /> +<hkern u1="Ü" u2="Ã" k="53" /> +<hkern u1="Ü" u2="Â" k="53" /> +<hkern u1="Ü" u2="Á" k="53" /> +<hkern u1="Ü" u2="À" k="53" /> +<hkern u1="Ü" u2="A" k="53" /> +<hkern u1="Ü" u2="/" k="53" /> +<hkern u1="Ü" u2="." k="51" /> +<hkern u1="Ü" u2="," k="51" /> +<hkern u1="Ü" u2="&" k="53" /> +<hkern u1="Ý" u2="™" k="-37" /> +<hkern u1="Ý" u2="›" k="164" /> +<hkern u1="Ý" u2="‹" k="164" /> +<hkern u1="Ý" u2="•" k="164" /> +<hkern u1="Ý" u2="„" k="171" /> +<hkern u1="Ý" u2="”" k="-37" /> +<hkern u1="Ý" u2="“" k="-37" /> +<hkern u1="Ý" u2="‚" k="171" /> +<hkern u1="Ý" u2="’" k="-37" /> +<hkern u1="Ý" u2="‘" k="-37" /> +<hkern u1="Ý" u2="—" k="164" /> +<hkern u1="Ý" u2="–" k="164" /> +<hkern u1="Ý" u2="œ" k="164" /> +<hkern u1="Ý" u2="Œ" k="82" /> +<hkern u1="Ý" u2="ı" k="134" /> +<hkern u1="Ý" u2="ÿ" k="102" /> +<hkern u1="Ý" u2="ý" k="102" /> +<hkern u1="Ý" u2="ü" k="134" /> +<hkern u1="Ý" u2="û" k="134" /> +<hkern u1="Ý" u2="ú" k="134" /> +<hkern u1="Ý" u2="ù" k="134" /> +<hkern u1="Ý" u2="ø" k="164" /> +<hkern u1="Ý" u2="ö" k="164" /> +<hkern u1="Ý" u2="õ" k="164" /> +<hkern u1="Ý" u2="ô" k="164" /> +<hkern u1="Ý" u2="ó" k="164" /> +<hkern u1="Ý" u2="ò" k="164" /> +<hkern u1="Ý" u2="ñ" k="134" /> +<hkern u1="Ý" u2="ð" k="164" /> +<hkern u1="Ý" u2="ë" k="164" /> +<hkern u1="Ý" u2="ê" k="164" /> +<hkern u1="Ý" u2="é" k="164" /> +<hkern u1="Ý" u2="è" k="164" /> +<hkern u1="Ý" u2="ç" k="164" /> +<hkern u1="Ý" u2="æ" k="148" /> +<hkern u1="Ý" u2="å" k="148" /> +<hkern u1="Ý" u2="ä" k="148" /> +<hkern u1="Ý" u2="ã" k="148" /> +<hkern u1="Ý" u2="â" k="148" /> +<hkern u1="Ý" u2="á" k="148" /> +<hkern u1="Ý" u2="à" k="148" /> +<hkern u1="Ý" u2="Ø" k="82" /> +<hkern u1="Ý" u2="Ö" k="82" /> +<hkern u1="Ý" u2="Õ" k="82" /> +<hkern u1="Ý" u2="Ô" k="82" /> +<hkern u1="Ý" u2="Ó" k="82" /> +<hkern u1="Ý" u2="Ò" k="82" /> +<hkern u1="Ý" u2="Ç" k="82" /> +<hkern u1="Ý" u2="Æ" k="186" /> +<hkern u1="Ý" u2="Å" k="186" /> +<hkern u1="Ý" u2="Ä" k="186" /> +<hkern u1="Ý" u2="Ã" k="186" /> +<hkern u1="Ý" u2="Â" k="186" /> +<hkern u1="Ý" u2="Á" k="186" /> +<hkern u1="Ý" u2="À" k="186" /> +<hkern u1="Ý" u2="»" k="164" /> +<hkern u1="Ý" u2="º" k="-37" /> +<hkern u1="Ý" u2="¹" k="-57" /> +<hkern u1="Ý" u2="·" k="164" /> +<hkern u1="Ý" u2="µ" k="134" /> +<hkern u1="Ý" u2="³" k="-57" /> +<hkern u1="Ý" u2="²" k="-57" /> +<hkern u1="Ý" u2="°" k="-37" /> +<hkern u1="Ý" u2="®" k="82" /> +<hkern u1="Ý" u2="­" k="164" /> +<hkern u1="Ý" u2="«" k="164" /> +<hkern u1="Ý" u2="ª" k="-37" /> +<hkern u1="Ý" u2="©" k="82" /> +<hkern u1="Ý" u2="y" k="102" /> +<hkern u1="Ý" u2="x" k="139" /> +<hkern u1="Ý" u2="w" k="98" /> +<hkern u1="Ý" u2="v" k="102" /> +<hkern u1="Ý" u2="u" k="134" /> +<hkern u1="Ý" u2="s" k="142" /> +<hkern u1="Ý" u2="r" k="134" /> +<hkern u1="Ý" u2="q" k="164" /> +<hkern u1="Ý" u2="p" k="134" /> +<hkern u1="Ý" u2="o" k="164" /> +<hkern u1="Ý" u2="n" k="134" /> +<hkern u1="Ý" u2="m" k="134" /> +<hkern u1="Ý" u2="g" k="180" /> +<hkern u1="Ý" u2="e" k="164" /> +<hkern u1="Ý" u2="d" k="164" /> +<hkern u1="Ý" u2="c" k="164" /> +<hkern u1="Ý" u2="a" k="148" /> +<hkern u1="Ý" u2="Q" k="82" /> +<hkern u1="Ý" u2="O" k="82" /> +<hkern u1="Ý" u2="J" k="205" /> +<hkern u1="Ý" u2="G" k="82" /> +<hkern u1="Ý" u2="C" k="82" /> +<hkern u1="Ý" u2="A" k="186" /> +<hkern u1="Ý" u2="@" k="82" /> +<hkern u1="Ý" u2="?" k="-33" /> +<hkern u1="Ý" u2=";" k="134" /> +<hkern u1="Ý" u2=":" k="134" /> +<hkern u1="Ý" u2="/" k="186" /> +<hkern u1="Ý" u2="." k="171" /> +<hkern u1="Ý" u2="-" k="164" /> +<hkern u1="Ý" u2="," k="171" /> +<hkern u1="Ý" u2="*" k="-37" /> +<hkern u1="Ý" u2="'" k="-37" /> +<hkern u1="Ý" u2="&" k="186" /> +<hkern u1="Ý" u2=""" k="-37" /> +<hkern u1="Þ" u2="™" k="43" /> +<hkern u1="Þ" u2="„" k="53" /> +<hkern u1="Þ" u2="”" k="43" /> +<hkern u1="Þ" u2="“" k="43" /> +<hkern u1="Þ" u2="‚" k="53" /> +<hkern u1="Þ" u2="’" k="43" /> +<hkern u1="Þ" u2="‘" k="43" /> +<hkern u1="Þ" u2="Ÿ" k="82" /> +<hkern u1="Þ" u2="Ý" k="82" /> +<hkern u1="Þ" u2="Æ" k="52" /> +<hkern u1="Þ" u2="Å" k="52" /> +<hkern u1="Þ" u2="Ä" k="52" /> +<hkern u1="Þ" u2="Ã" k="52" /> +<hkern u1="Þ" u2="Â" k="52" /> +<hkern u1="Þ" u2="Á" k="52" /> +<hkern u1="Þ" u2="À" k="52" /> +<hkern u1="Þ" u2="º" k="43" /> +<hkern u1="Þ" u2="°" k="43" /> +<hkern u1="Þ" u2="ª" k="43" /> +<hkern u1="Þ" u2="}" k="41" /> +<hkern u1="Þ" u2="]" k="41" /> +<hkern u1="Þ" u2="\" k="57" /> +<hkern u1="Þ" u2="Z" k="66" /> +<hkern u1="Þ" u2="Y" k="82" /> +<hkern u1="Þ" u2="X" k="31" /> +<hkern u1="Þ" u2="V" k="57" /> +<hkern u1="Þ" u2="T" k="80" /> +<hkern u1="Þ" u2="A" k="52" /> +<hkern u1="Þ" u2="/" k="52" /> +<hkern u1="Þ" u2="." k="53" /> +<hkern u1="Þ" u2="," k="53" /> +<hkern u1="Þ" u2="*" k="43" /> +<hkern u1="Þ" u2=")" k="41" /> +<hkern u1="Þ" u2="'" k="43" /> +<hkern u1="Þ" u2="&" k="52" /> +<hkern u1="Þ" u2=""" k="43" /> +<hkern u1="à" u2="™" k="78" /> +<hkern u1="à" u2="”" k="78" /> +<hkern u1="à" u2="“" k="78" /> +<hkern u1="à" u2="’" k="78" /> +<hkern u1="à" u2="‘" k="78" /> +<hkern u1="à" u2="ÿ" k="37" /> +<hkern u1="à" u2="ý" k="37" /> +<hkern u1="à" u2="º" k="78" /> +<hkern u1="à" u2="¹" k="78" /> +<hkern u1="à" u2="³" k="78" /> +<hkern u1="à" u2="²" k="78" /> +<hkern u1="à" u2="°" k="78" /> +<hkern u1="à" u2="ª" k="78" /> +<hkern u1="à" u2="y" k="37" /> +<hkern u1="à" u2="w" k="18" /> +<hkern u1="à" u2="v" k="37" /> +<hkern u1="à" u2="*" k="78" /> +<hkern u1="à" u2="'" k="78" /> +<hkern u1="à" u2=""" k="78" /> +<hkern u1="á" u2="™" k="78" /> +<hkern u1="á" u2="”" k="78" /> +<hkern u1="á" u2="“" k="78" /> +<hkern u1="á" u2="’" k="78" /> +<hkern u1="á" u2="‘" k="78" /> +<hkern u1="á" u2="ÿ" k="37" /> +<hkern u1="á" u2="ý" k="37" /> +<hkern u1="á" u2="º" k="78" /> +<hkern u1="á" u2="¹" k="78" /> +<hkern u1="á" u2="³" k="78" /> +<hkern u1="á" u2="²" k="78" /> +<hkern u1="á" u2="°" k="78" /> +<hkern u1="á" u2="ª" k="78" /> +<hkern u1="á" u2="y" k="37" /> +<hkern u1="á" u2="w" k="18" /> +<hkern u1="á" u2="v" k="37" /> +<hkern u1="á" u2="*" k="78" /> +<hkern u1="á" u2="'" k="78" /> +<hkern u1="á" u2=""" k="78" /> +<hkern u1="â" u2="™" k="78" /> +<hkern u1="â" u2="”" k="78" /> +<hkern u1="â" u2="“" k="78" /> +<hkern u1="â" u2="’" k="78" /> +<hkern u1="â" u2="‘" k="78" /> +<hkern u1="â" u2="ÿ" k="37" /> +<hkern u1="â" u2="ý" k="37" /> +<hkern u1="â" u2="º" k="78" /> +<hkern u1="â" u2="¹" k="78" /> +<hkern u1="â" u2="³" k="78" /> +<hkern u1="â" u2="²" k="78" /> +<hkern u1="â" u2="°" k="78" /> +<hkern u1="â" u2="ª" k="78" /> +<hkern u1="â" u2="y" k="37" /> +<hkern u1="â" u2="w" k="18" /> +<hkern u1="â" u2="v" k="37" /> +<hkern u1="â" u2="*" k="78" /> +<hkern u1="â" u2="'" k="78" /> +<hkern u1="â" u2=""" k="78" /> +<hkern u1="ã" u2="™" k="78" /> +<hkern u1="ã" u2="”" k="78" /> +<hkern u1="ã" u2="“" k="78" /> +<hkern u1="ã" u2="’" k="78" /> +<hkern u1="ã" u2="‘" k="78" /> +<hkern u1="ã" u2="ÿ" k="37" /> +<hkern u1="ã" u2="ý" k="37" /> +<hkern u1="ã" u2="º" k="78" /> +<hkern u1="ã" u2="¹" k="78" /> +<hkern u1="ã" u2="³" k="78" /> +<hkern u1="ã" u2="²" k="78" /> +<hkern u1="ã" u2="°" k="78" /> +<hkern u1="ã" u2="ª" k="78" /> +<hkern u1="ã" u2="y" k="37" /> +<hkern u1="ã" u2="w" k="18" /> +<hkern u1="ã" u2="v" k="37" /> +<hkern u1="ã" u2="*" k="78" /> +<hkern u1="ã" u2="'" k="78" /> +<hkern u1="ã" u2=""" k="78" /> +<hkern u1="ä" u2="™" k="78" /> +<hkern u1="ä" u2="”" k="78" /> +<hkern u1="ä" u2="“" k="78" /> +<hkern u1="ä" u2="’" k="78" /> +<hkern u1="ä" u2="‘" k="78" /> +<hkern u1="ä" u2="ÿ" k="37" /> +<hkern u1="ä" u2="ý" k="37" /> +<hkern u1="ä" u2="º" k="78" /> +<hkern u1="ä" u2="¹" k="78" /> +<hkern u1="ä" u2="³" k="78" /> +<hkern u1="ä" u2="²" k="78" /> +<hkern u1="ä" u2="°" k="78" /> +<hkern u1="ä" u2="ª" k="78" /> +<hkern u1="ä" u2="y" k="37" /> +<hkern u1="ä" u2="w" k="18" /> +<hkern u1="ä" u2="v" k="37" /> +<hkern u1="ä" u2="*" k="78" /> +<hkern u1="ä" u2="'" k="78" /> +<hkern u1="ä" u2=""" k="78" /> +<hkern u1="å" u2="™" k="78" /> +<hkern u1="å" u2="”" k="78" /> +<hkern u1="å" u2="“" k="78" /> +<hkern u1="å" u2="’" k="78" /> +<hkern u1="å" u2="‘" k="78" /> +<hkern u1="å" u2="ÿ" k="37" /> +<hkern u1="å" u2="ý" k="37" /> +<hkern u1="å" u2="º" k="78" /> +<hkern u1="å" u2="¹" k="78" /> +<hkern u1="å" u2="³" k="78" /> +<hkern u1="å" u2="²" k="78" /> +<hkern u1="å" u2="°" k="78" /> +<hkern u1="å" u2="ª" k="78" /> +<hkern u1="å" u2="y" k="37" /> +<hkern u1="å" u2="w" k="18" /> +<hkern u1="å" u2="v" k="37" /> +<hkern u1="å" u2="*" k="78" /> +<hkern u1="å" u2="'" k="78" /> +<hkern u1="å" u2=""" k="78" /> +<hkern u1="æ" u2="™" k="98" /> +<hkern u1="æ" u2="”" k="98" /> +<hkern u1="æ" u2="“" k="98" /> +<hkern u1="æ" u2="’" k="98" /> +<hkern u1="æ" u2="‘" k="98" /> +<hkern u1="æ" u2="ÿ" k="34" /> +<hkern u1="æ" u2="ý" k="34" /> +<hkern u1="æ" u2="º" k="98" /> +<hkern u1="æ" u2="°" k="98" /> +<hkern u1="æ" u2="ª" k="98" /> +<hkern u1="æ" u2="}" k="37" /> +<hkern u1="æ" u2="y" k="34" /> +<hkern u1="æ" u2="x" k="61" /> +<hkern u1="æ" u2="v" k="34" /> +<hkern u1="æ" u2="]" k="37" /> +<hkern u1="æ" u2="\" k="126" /> +<hkern u1="æ" u2="W" k="42" /> +<hkern u1="æ" u2="V" k="126" /> +<hkern u1="æ" u2="*" k="98" /> +<hkern u1="æ" u2=")" k="37" /> +<hkern u1="æ" u2="'" k="98" /> +<hkern u1="æ" u2=""" k="98" /> +<hkern u1="è" u2="™" k="98" /> +<hkern u1="è" u2="”" k="98" /> +<hkern u1="è" u2="“" k="98" /> +<hkern u1="è" u2="’" k="98" /> +<hkern u1="è" u2="‘" k="98" /> +<hkern u1="è" u2="ÿ" k="34" /> +<hkern u1="è" u2="ý" k="34" /> +<hkern u1="è" u2="º" k="98" /> +<hkern u1="è" u2="°" k="98" /> +<hkern u1="è" u2="ª" k="98" /> +<hkern u1="è" u2="}" k="37" /> +<hkern u1="è" u2="y" k="34" /> +<hkern u1="è" u2="x" k="61" /> +<hkern u1="è" u2="v" k="34" /> +<hkern u1="è" u2="]" k="37" /> +<hkern u1="è" u2="\" k="126" /> +<hkern u1="è" u2="W" k="42" /> +<hkern u1="è" u2="V" k="126" /> +<hkern u1="è" u2="*" k="98" /> +<hkern u1="è" u2=")" k="37" /> +<hkern u1="è" u2="'" k="98" /> +<hkern u1="è" u2=""" k="98" /> +<hkern u1="é" u2="™" k="98" /> +<hkern u1="é" u2="”" k="98" /> +<hkern u1="é" u2="“" k="98" /> +<hkern u1="é" u2="’" k="98" /> +<hkern u1="é" u2="‘" k="98" /> +<hkern u1="é" u2="ÿ" k="34" /> +<hkern u1="é" u2="ý" k="34" /> +<hkern u1="é" u2="º" k="98" /> +<hkern u1="é" u2="°" k="98" /> +<hkern u1="é" u2="ª" k="98" /> +<hkern u1="é" u2="}" k="37" /> +<hkern u1="é" u2="y" k="34" /> +<hkern u1="é" u2="x" k="61" /> +<hkern u1="é" u2="v" k="34" /> +<hkern u1="é" u2="]" k="37" /> +<hkern u1="é" u2="\" k="126" /> +<hkern u1="é" u2="W" k="42" /> +<hkern u1="é" u2="V" k="126" /> +<hkern u1="é" u2="*" k="98" /> +<hkern u1="é" u2=")" k="37" /> +<hkern u1="é" u2="'" k="98" /> +<hkern u1="é" u2=""" k="98" /> +<hkern u1="ê" u2="™" k="98" /> +<hkern u1="ê" u2="”" k="98" /> +<hkern u1="ê" u2="“" k="98" /> +<hkern u1="ê" u2="’" k="98" /> +<hkern u1="ê" u2="‘" k="98" /> +<hkern u1="ê" u2="ÿ" k="34" /> +<hkern u1="ê" u2="ý" k="34" /> +<hkern u1="ê" u2="º" k="98" /> +<hkern u1="ê" u2="°" k="98" /> +<hkern u1="ê" u2="ª" k="98" /> +<hkern u1="ê" u2="}" k="37" /> +<hkern u1="ê" u2="y" k="34" /> +<hkern u1="ê" u2="x" k="61" /> +<hkern u1="ê" u2="v" k="34" /> +<hkern u1="ê" u2="]" k="37" /> +<hkern u1="ê" u2="\" k="126" /> +<hkern u1="ê" u2="W" k="42" /> +<hkern u1="ê" u2="V" k="126" /> +<hkern u1="ê" u2="*" k="98" /> +<hkern u1="ê" u2=")" k="37" /> +<hkern u1="ê" u2="'" k="98" /> +<hkern u1="ê" u2=""" k="98" /> +<hkern u1="ë" u2="™" k="98" /> +<hkern u1="ë" u2="”" k="98" /> +<hkern u1="ë" u2="“" k="98" /> +<hkern u1="ë" u2="’" k="98" /> +<hkern u1="ë" u2="‘" k="98" /> +<hkern u1="ë" u2="ÿ" k="34" /> +<hkern u1="ë" u2="ý" k="34" /> +<hkern u1="ë" u2="º" k="98" /> +<hkern u1="ë" u2="°" k="98" /> +<hkern u1="ë" u2="ª" k="98" /> +<hkern u1="ë" u2="}" k="37" /> +<hkern u1="ë" u2="y" k="34" /> +<hkern u1="ë" u2="x" k="61" /> +<hkern u1="ë" u2="v" k="34" /> +<hkern u1="ë" u2="]" k="37" /> +<hkern u1="ë" u2="\" k="126" /> +<hkern u1="ë" u2="W" k="42" /> +<hkern u1="ë" u2="V" k="126" /> +<hkern u1="ë" u2="*" k="98" /> +<hkern u1="ë" u2=")" k="37" /> +<hkern u1="ë" u2="'" k="98" /> +<hkern u1="ë" u2=""" k="98" /> +<hkern u1="ñ" u2="™" k="78" /> +<hkern u1="ñ" u2="”" k="78" /> +<hkern u1="ñ" u2="“" k="78" /> +<hkern u1="ñ" u2="’" k="78" /> +<hkern u1="ñ" u2="‘" k="78" /> +<hkern u1="ñ" u2="ÿ" k="37" /> +<hkern u1="ñ" u2="ý" k="37" /> +<hkern u1="ñ" u2="º" k="78" /> +<hkern u1="ñ" u2="¹" k="78" /> +<hkern u1="ñ" u2="³" k="78" /> +<hkern u1="ñ" u2="²" k="78" /> +<hkern u1="ñ" u2="°" k="78" /> +<hkern u1="ñ" u2="ª" k="78" /> +<hkern u1="ñ" u2="y" k="37" /> +<hkern u1="ñ" u2="w" k="18" /> +<hkern u1="ñ" u2="v" k="37" /> +<hkern u1="ñ" u2="*" k="78" /> +<hkern u1="ñ" u2="'" k="78" /> +<hkern u1="ñ" u2=""" k="78" /> +<hkern u1="ò" u2="™" k="98" /> +<hkern u1="ò" u2="”" k="98" /> +<hkern u1="ò" u2="“" k="98" /> +<hkern u1="ò" u2="’" k="98" /> +<hkern u1="ò" u2="‘" k="98" /> +<hkern u1="ò" u2="ÿ" k="34" /> +<hkern u1="ò" u2="ý" k="34" /> +<hkern u1="ò" u2="º" k="98" /> +<hkern u1="ò" u2="°" k="98" /> +<hkern u1="ò" u2="ª" k="98" /> +<hkern u1="ò" u2="}" k="37" /> +<hkern u1="ò" u2="y" k="34" /> +<hkern u1="ò" u2="x" k="61" /> +<hkern u1="ò" u2="v" k="34" /> +<hkern u1="ò" u2="]" k="37" /> +<hkern u1="ò" u2="\" k="126" /> +<hkern u1="ò" u2="W" k="42" /> +<hkern u1="ò" u2="V" k="126" /> +<hkern u1="ò" u2="*" k="98" /> +<hkern u1="ò" u2=")" k="37" /> +<hkern u1="ò" u2="'" k="98" /> +<hkern u1="ò" u2=""" k="98" /> +<hkern u1="ó" u2="™" k="98" /> +<hkern u1="ó" u2="”" k="98" /> +<hkern u1="ó" u2="“" k="98" /> +<hkern u1="ó" u2="’" k="98" /> +<hkern u1="ó" u2="‘" k="98" /> +<hkern u1="ó" u2="ÿ" k="34" /> +<hkern u1="ó" u2="ý" k="34" /> +<hkern u1="ó" u2="º" k="98" /> +<hkern u1="ó" u2="°" k="98" /> +<hkern u1="ó" u2="ª" k="98" /> +<hkern u1="ó" u2="}" k="37" /> +<hkern u1="ó" u2="y" k="34" /> +<hkern u1="ó" u2="x" k="61" /> +<hkern u1="ó" u2="v" k="34" /> +<hkern u1="ó" u2="]" k="37" /> +<hkern u1="ó" u2="\" k="126" /> +<hkern u1="ó" u2="W" k="42" /> +<hkern u1="ó" u2="V" k="126" /> +<hkern u1="ó" u2="*" k="98" /> +<hkern u1="ó" u2=")" k="37" /> +<hkern u1="ó" u2="'" k="98" /> +<hkern u1="ó" u2=""" k="98" /> +<hkern u1="ô" u2="™" k="98" /> +<hkern u1="ô" u2="”" k="98" /> +<hkern u1="ô" u2="“" k="98" /> +<hkern u1="ô" u2="’" k="98" /> +<hkern u1="ô" u2="‘" k="98" /> +<hkern u1="ô" u2="ÿ" k="34" /> +<hkern u1="ô" u2="ý" k="34" /> +<hkern u1="ô" u2="º" k="98" /> +<hkern u1="ô" u2="°" k="98" /> +<hkern u1="ô" u2="ª" k="98" /> +<hkern u1="ô" u2="}" k="37" /> +<hkern u1="ô" u2="y" k="34" /> +<hkern u1="ô" u2="x" k="61" /> +<hkern u1="ô" u2="v" k="34" /> +<hkern u1="ô" u2="]" k="37" /> +<hkern u1="ô" u2="\" k="126" /> +<hkern u1="ô" u2="W" k="42" /> +<hkern u1="ô" u2="V" k="126" /> +<hkern u1="ô" u2="*" k="98" /> +<hkern u1="ô" u2=")" k="37" /> +<hkern u1="ô" u2="'" k="98" /> +<hkern u1="ô" u2=""" k="98" /> +<hkern u1="õ" u2="™" k="98" /> +<hkern u1="õ" u2="”" k="98" /> +<hkern u1="õ" u2="“" k="98" /> +<hkern u1="õ" u2="’" k="98" /> +<hkern u1="õ" u2="‘" k="98" /> +<hkern u1="õ" u2="ÿ" k="34" /> +<hkern u1="õ" u2="ý" k="34" /> +<hkern u1="õ" u2="º" k="98" /> +<hkern u1="õ" u2="°" k="98" /> +<hkern u1="õ" u2="ª" k="98" /> +<hkern u1="õ" u2="}" k="37" /> +<hkern u1="õ" u2="y" k="34" /> +<hkern u1="õ" u2="x" k="61" /> +<hkern u1="õ" u2="v" k="34" /> +<hkern u1="õ" u2="]" k="37" /> +<hkern u1="õ" u2="\" k="126" /> +<hkern u1="õ" u2="W" k="42" /> +<hkern u1="õ" u2="V" k="126" /> +<hkern u1="õ" u2="*" k="98" /> +<hkern u1="õ" u2=")" k="37" /> +<hkern u1="õ" u2="'" k="98" /> +<hkern u1="õ" u2=""" k="98" /> +<hkern u1="ö" u2="™" k="98" /> +<hkern u1="ö" u2="”" k="98" /> +<hkern u1="ö" u2="“" k="98" /> +<hkern u1="ö" u2="’" k="98" /> +<hkern u1="ö" u2="‘" k="98" /> +<hkern u1="ö" u2="ÿ" k="34" /> +<hkern u1="ö" u2="ý" k="34" /> +<hkern u1="ö" u2="º" k="98" /> +<hkern u1="ö" u2="°" k="98" /> +<hkern u1="ö" u2="ª" k="98" /> +<hkern u1="ö" u2="}" k="37" /> +<hkern u1="ö" u2="y" k="34" /> +<hkern u1="ö" u2="x" k="61" /> +<hkern u1="ö" u2="v" k="34" /> +<hkern u1="ö" u2="]" k="37" /> +<hkern u1="ö" u2="\" k="126" /> +<hkern u1="ö" u2="W" k="42" /> +<hkern u1="ö" u2="V" k="126" /> +<hkern u1="ö" u2="*" k="98" /> +<hkern u1="ö" u2=")" k="37" /> +<hkern u1="ö" u2="'" k="98" /> +<hkern u1="ö" u2=""" k="98" /> +<hkern u1="ø" u2="™" k="98" /> +<hkern u1="ø" u2="”" k="98" /> +<hkern u1="ø" u2="“" k="98" /> +<hkern u1="ø" u2="’" k="98" /> +<hkern u1="ø" u2="‘" k="98" /> +<hkern u1="ø" u2="ÿ" k="34" /> +<hkern u1="ø" u2="ý" k="34" /> +<hkern u1="ø" u2="º" k="98" /> +<hkern u1="ø" u2="°" k="98" /> +<hkern u1="ø" u2="ª" k="98" /> +<hkern u1="ø" u2="}" k="37" /> +<hkern u1="ø" u2="y" k="34" /> +<hkern u1="ø" u2="x" k="61" /> +<hkern u1="ø" u2="v" k="34" /> +<hkern u1="ø" u2="]" k="37" /> +<hkern u1="ø" u2="\" k="126" /> +<hkern u1="ø" u2="W" k="42" /> +<hkern u1="ø" u2="V" k="126" /> +<hkern u1="ø" u2="*" k="98" /> +<hkern u1="ø" u2=")" k="37" /> +<hkern u1="ø" u2="'" k="98" /> +<hkern u1="ø" u2=""" k="98" /> +<hkern u1="ý" u2="„" k="139" /> +<hkern u1="ý" u2="‚" k="139" /> +<hkern u1="ý" u2="œ" k="34" /> +<hkern u1="ý" u2="ø" k="34" /> +<hkern u1="ý" u2="ö" k="34" /> +<hkern u1="ý" u2="õ" k="34" /> +<hkern u1="ý" u2="ô" k="34" /> +<hkern u1="ý" u2="ó" k="34" /> +<hkern u1="ý" u2="ò" k="34" /> +<hkern u1="ý" u2="ð" k="34" /> +<hkern u1="ý" u2="ë" k="34" /> +<hkern u1="ý" u2="ê" k="34" /> +<hkern u1="ý" u2="é" k="34" /> +<hkern u1="ý" u2="è" k="34" /> +<hkern u1="ý" u2="ç" k="34" /> +<hkern u1="ý" u2="Æ" k="93" /> +<hkern u1="ý" u2="Å" k="93" /> +<hkern u1="ý" u2="Ä" k="93" /> +<hkern u1="ý" u2="Ã" k="93" /> +<hkern u1="ý" u2="Â" k="93" /> +<hkern u1="ý" u2="Á" k="93" /> +<hkern u1="ý" u2="À" k="93" /> +<hkern u1="ý" u2="q" k="34" /> +<hkern u1="ý" u2="o" k="34" /> +<hkern u1="ý" u2="e" k="34" /> +<hkern u1="ý" u2="d" k="34" /> +<hkern u1="ý" u2="c" k="34" /> +<hkern u1="ý" u2="A" k="93" /> +<hkern u1="ý" u2="/" k="93" /> +<hkern u1="ý" u2="." k="139" /> +<hkern u1="ý" u2="," k="139" /> +<hkern u1="ý" u2="&" k="93" /> +<hkern u1="þ" u2="™" k="98" /> +<hkern u1="þ" u2="”" k="98" /> +<hkern u1="þ" u2="“" k="98" /> +<hkern u1="þ" u2="’" k="98" /> +<hkern u1="þ" u2="‘" k="98" /> +<hkern u1="þ" u2="ÿ" k="34" /> +<hkern u1="þ" u2="ý" k="34" /> +<hkern u1="þ" u2="º" k="98" /> +<hkern u1="þ" u2="°" k="98" /> +<hkern u1="þ" u2="ª" k="98" /> +<hkern u1="þ" u2="}" k="37" /> +<hkern u1="þ" u2="y" k="34" /> +<hkern u1="þ" u2="x" k="61" /> +<hkern u1="þ" u2="v" k="34" /> +<hkern u1="þ" u2="]" k="37" /> +<hkern u1="þ" u2="\" k="126" /> +<hkern u1="þ" u2="W" k="42" /> +<hkern u1="þ" u2="V" k="126" /> +<hkern u1="þ" u2="*" k="98" /> +<hkern u1="þ" u2=")" k="37" /> +<hkern u1="þ" u2="'" k="98" /> +<hkern u1="þ" u2=""" k="98" /> +<hkern u1="ÿ" u2="„" k="139" /> +<hkern u1="ÿ" u2="‚" k="139" /> +<hkern u1="ÿ" u2="œ" k="34" /> +<hkern u1="ÿ" u2="ø" k="34" /> +<hkern u1="ÿ" u2="ö" k="34" /> +<hkern u1="ÿ" u2="õ" k="34" /> +<hkern u1="ÿ" u2="ô" k="34" /> +<hkern u1="ÿ" u2="ó" k="34" /> +<hkern u1="ÿ" u2="ò" k="34" /> +<hkern u1="ÿ" u2="ð" k="34" /> +<hkern u1="ÿ" u2="ë" k="34" /> +<hkern u1="ÿ" u2="ê" k="34" /> +<hkern u1="ÿ" u2="é" k="34" /> +<hkern u1="ÿ" u2="è" k="34" /> +<hkern u1="ÿ" u2="ç" k="34" /> +<hkern u1="ÿ" u2="Æ" k="93" /> +<hkern u1="ÿ" u2="Å" k="93" /> +<hkern u1="ÿ" u2="Ä" k="93" /> +<hkern u1="ÿ" u2="Ã" k="93" /> +<hkern u1="ÿ" u2="Â" k="93" /> +<hkern u1="ÿ" u2="Á" k="93" /> +<hkern u1="ÿ" u2="À" k="93" /> +<hkern u1="ÿ" u2="q" k="34" /> +<hkern u1="ÿ" u2="o" k="34" /> +<hkern u1="ÿ" u2="e" k="34" /> +<hkern u1="ÿ" u2="d" k="34" /> +<hkern u1="ÿ" u2="c" k="34" /> +<hkern u1="ÿ" u2="A" k="93" /> +<hkern u1="ÿ" u2="/" k="93" /> +<hkern u1="ÿ" u2="." k="139" /> +<hkern u1="ÿ" u2="," k="139" /> +<hkern u1="ÿ" u2="&" k="93" /> +<hkern u1="œ" u2="™" k="98" /> +<hkern u1="œ" u2="”" k="98" /> +<hkern u1="œ" u2="“" k="98" /> +<hkern u1="œ" u2="’" k="98" /> +<hkern u1="œ" u2="‘" k="98" /> +<hkern u1="œ" u2="ÿ" k="34" /> +<hkern u1="œ" u2="ý" k="34" /> +<hkern u1="œ" u2="º" k="98" /> +<hkern u1="œ" u2="°" k="98" /> +<hkern u1="œ" u2="ª" k="98" /> +<hkern u1="œ" u2="}" k="37" /> +<hkern u1="œ" u2="y" k="34" /> +<hkern u1="œ" u2="x" k="61" /> +<hkern u1="œ" u2="v" k="34" /> +<hkern u1="œ" u2="]" k="37" /> +<hkern u1="œ" u2="\" k="126" /> +<hkern u1="œ" u2="W" k="42" /> +<hkern u1="œ" u2="V" k="126" /> +<hkern u1="œ" u2="*" k="98" /> +<hkern u1="œ" u2=")" k="37" /> +<hkern u1="œ" u2="'" k="98" /> +<hkern u1="œ" u2=""" k="98" /> +<hkern u1="Ÿ" u2="™" k="-37" /> +<hkern u1="Ÿ" u2="›" k="164" /> +<hkern u1="Ÿ" u2="‹" k="164" /> +<hkern u1="Ÿ" u2="•" k="164" /> +<hkern u1="Ÿ" u2="„" k="171" /> +<hkern u1="Ÿ" u2="”" k="-37" /> +<hkern u1="Ÿ" u2="“" k="-37" /> +<hkern u1="Ÿ" u2="‚" k="171" /> +<hkern u1="Ÿ" u2="’" k="-37" /> +<hkern u1="Ÿ" u2="‘" k="-37" /> +<hkern u1="Ÿ" u2="—" k="164" /> +<hkern u1="Ÿ" u2="–" k="164" /> +<hkern u1="Ÿ" u2="œ" k="164" /> +<hkern u1="Ÿ" u2="Œ" k="82" /> +<hkern u1="Ÿ" u2="ı" k="134" /> +<hkern u1="Ÿ" u2="ÿ" k="102" /> +<hkern u1="Ÿ" u2="ý" k="102" /> +<hkern u1="Ÿ" u2="ü" k="134" /> +<hkern u1="Ÿ" u2="û" k="134" /> +<hkern u1="Ÿ" u2="ú" k="134" /> +<hkern u1="Ÿ" u2="ù" k="134" /> +<hkern u1="Ÿ" u2="ø" k="164" /> +<hkern u1="Ÿ" u2="ö" k="164" /> +<hkern u1="Ÿ" u2="õ" k="164" /> +<hkern u1="Ÿ" u2="ô" k="164" /> +<hkern u1="Ÿ" u2="ó" k="164" /> +<hkern u1="Ÿ" u2="ò" k="164" /> +<hkern u1="Ÿ" u2="ñ" k="134" /> +<hkern u1="Ÿ" u2="ð" k="164" /> +<hkern u1="Ÿ" u2="ë" k="164" /> +<hkern u1="Ÿ" u2="ê" k="164" /> +<hkern u1="Ÿ" u2="é" k="164" /> +<hkern u1="Ÿ" u2="è" k="164" /> +<hkern u1="Ÿ" u2="ç" k="164" /> +<hkern u1="Ÿ" u2="æ" k="148" /> +<hkern u1="Ÿ" u2="å" k="148" /> +<hkern u1="Ÿ" u2="ä" k="148" /> +<hkern u1="Ÿ" u2="ã" k="148" /> +<hkern u1="Ÿ" u2="â" k="148" /> +<hkern u1="Ÿ" u2="á" k="148" /> +<hkern u1="Ÿ" u2="à" k="148" /> +<hkern u1="Ÿ" u2="Ø" k="82" /> +<hkern u1="Ÿ" u2="Ö" k="82" /> +<hkern u1="Ÿ" u2="Õ" k="82" /> +<hkern u1="Ÿ" u2="Ô" k="82" /> +<hkern u1="Ÿ" u2="Ó" k="82" /> +<hkern u1="Ÿ" u2="Ò" k="82" /> +<hkern u1="Ÿ" u2="Ç" k="82" /> +<hkern u1="Ÿ" u2="Æ" k="186" /> +<hkern u1="Ÿ" u2="Å" k="186" /> +<hkern u1="Ÿ" u2="Ä" k="186" /> +<hkern u1="Ÿ" u2="Ã" k="186" /> +<hkern u1="Ÿ" u2="Â" k="186" /> +<hkern u1="Ÿ" u2="Á" k="186" /> +<hkern u1="Ÿ" u2="À" k="186" /> +<hkern u1="Ÿ" u2="»" k="164" /> +<hkern u1="Ÿ" u2="º" k="-37" /> +<hkern u1="Ÿ" u2="¹" k="-57" /> +<hkern u1="Ÿ" u2="·" k="164" /> +<hkern u1="Ÿ" u2="µ" k="134" /> +<hkern u1="Ÿ" u2="³" k="-57" /> +<hkern u1="Ÿ" u2="²" k="-57" /> +<hkern u1="Ÿ" u2="°" k="-37" /> +<hkern u1="Ÿ" u2="®" k="82" /> +<hkern u1="Ÿ" u2="­" k="164" /> +<hkern u1="Ÿ" u2="«" k="164" /> +<hkern u1="Ÿ" u2="ª" k="-37" /> +<hkern u1="Ÿ" u2="©" k="82" /> +<hkern u1="Ÿ" u2="y" k="102" /> +<hkern u1="Ÿ" u2="x" k="139" /> +<hkern u1="Ÿ" u2="w" k="98" /> +<hkern u1="Ÿ" u2="v" k="102" /> +<hkern u1="Ÿ" u2="u" k="134" /> +<hkern u1="Ÿ" u2="s" k="142" /> +<hkern u1="Ÿ" u2="r" k="134" /> +<hkern u1="Ÿ" u2="q" k="164" /> +<hkern u1="Ÿ" u2="p" k="134" /> +<hkern u1="Ÿ" u2="o" k="164" /> +<hkern u1="Ÿ" u2="n" k="134" /> +<hkern u1="Ÿ" u2="m" k="134" /> +<hkern u1="Ÿ" u2="g" k="180" /> +<hkern u1="Ÿ" u2="e" k="164" /> +<hkern u1="Ÿ" u2="d" k="164" /> +<hkern u1="Ÿ" u2="c" k="164" /> +<hkern u1="Ÿ" u2="a" k="148" /> +<hkern u1="Ÿ" u2="Q" k="82" /> +<hkern u1="Ÿ" u2="O" k="82" /> +<hkern u1="Ÿ" u2="J" k="205" /> +<hkern u1="Ÿ" u2="G" k="82" /> +<hkern u1="Ÿ" u2="C" k="82" /> +<hkern u1="Ÿ" u2="A" k="186" /> +<hkern u1="Ÿ" u2="@" k="82" /> +<hkern u1="Ÿ" u2="?" k="-33" /> +<hkern u1="Ÿ" u2=";" k="134" /> +<hkern u1="Ÿ" u2=":" k="134" /> +<hkern u1="Ÿ" u2="/" k="186" /> +<hkern u1="Ÿ" u2="." k="171" /> +<hkern u1="Ÿ" u2="-" k="164" /> +<hkern u1="Ÿ" u2="," k="171" /> +<hkern u1="Ÿ" u2="*" k="-37" /> +<hkern u1="Ÿ" u2="'" k="-37" /> +<hkern u1="Ÿ" u2="&" k="186" /> +<hkern u1="Ÿ" u2=""" k="-37" /> +<hkern u1="–" u2="™" k="173" /> +<hkern u1="–" u2="„" k="135" /> +<hkern u1="–" u2="”" k="173" /> +<hkern u1="–" u2="“" k="173" /> +<hkern u1="–" u2="‚" k="135" /> +<hkern u1="–" u2="’" k="173" /> +<hkern u1="–" u2="‘" k="173" /> +<hkern u1="–" u2="Ÿ" k="164" /> +<hkern u1="–" u2="Ý" k="164" /> +<hkern u1="–" u2="Æ" k="69" /> +<hkern u1="–" u2="Å" k="69" /> +<hkern u1="–" u2="Ä" k="69" /> +<hkern u1="–" u2="Ã" k="69" /> +<hkern u1="–" u2="Â" k="69" /> +<hkern u1="–" u2="Á" k="69" /> +<hkern u1="–" u2="À" k="69" /> +<hkern u1="–" u2="º" k="173" /> +<hkern u1="–" u2="°" k="173" /> +<hkern u1="–" u2="ª" k="173" /> +<hkern u1="–" u2="\" k="119" /> +<hkern u1="–" u2="Z" k="49" /> +<hkern u1="–" u2="Y" k="164" /> +<hkern u1="–" u2="X" k="68" /> +<hkern u1="–" u2="W" k="37" /> +<hkern u1="–" u2="V" k="119" /> +<hkern u1="–" u2="T" k="184" /> +<hkern u1="–" u2="A" k="69" /> +<hkern u1="–" u2="/" k="69" /> +<hkern u1="–" u2="." k="135" /> +<hkern u1="–" u2="," k="135" /> +<hkern u1="–" u2="*" k="173" /> +<hkern u1="–" u2="'" k="173" /> +<hkern u1="–" u2="&" k="69" /> +<hkern u1="–" u2=""" k="173" /> +<hkern u1="—" u2="™" k="173" /> +<hkern u1="—" u2="„" k="135" /> +<hkern u1="—" u2="”" k="173" /> +<hkern u1="—" u2="“" k="173" /> +<hkern u1="—" u2="‚" k="135" /> +<hkern u1="—" u2="’" k="173" /> +<hkern u1="—" u2="‘" k="173" /> +<hkern u1="—" u2="Ÿ" k="164" /> +<hkern u1="—" u2="Ý" k="164" /> +<hkern u1="—" u2="Æ" k="69" /> +<hkern u1="—" u2="Å" k="69" /> +<hkern u1="—" u2="Ä" k="69" /> +<hkern u1="—" u2="Ã" k="69" /> +<hkern u1="—" u2="Â" k="69" /> +<hkern u1="—" u2="Á" k="69" /> +<hkern u1="—" u2="À" k="69" /> +<hkern u1="—" u2="º" k="173" /> +<hkern u1="—" u2="°" k="173" /> +<hkern u1="—" u2="ª" k="173" /> +<hkern u1="—" u2="\" k="119" /> +<hkern u1="—" u2="Z" k="49" /> +<hkern u1="—" u2="Y" k="164" /> +<hkern u1="—" u2="X" k="68" /> +<hkern u1="—" u2="W" k="37" /> +<hkern u1="—" u2="V" k="119" /> +<hkern u1="—" u2="T" k="184" /> +<hkern u1="—" u2="A" k="69" /> +<hkern u1="—" u2="/" k="69" /> +<hkern u1="—" u2="." k="135" /> +<hkern u1="—" u2="," k="135" /> +<hkern u1="—" u2="*" k="173" /> +<hkern u1="—" u2="'" k="173" /> +<hkern u1="—" u2="&" k="69" /> +<hkern u1="—" u2=""" k="173" /> +<hkern u1="‘" u2="›" k="173" /> +<hkern u1="‘" u2="‹" k="173" /> +<hkern u1="‘" u2="•" k="173" /> +<hkern u1="‘" u2="„" k="218" /> +<hkern u1="‘" u2="‚" k="218" /> +<hkern u1="‘" u2="—" k="173" /> +<hkern u1="‘" u2="–" k="173" /> +<hkern u1="‘" u2="Ÿ" k="-37" /> +<hkern u1="‘" u2="œ" k="98" /> +<hkern u1="‘" u2="Œ" k="43" /> +<hkern u1="‘" u2="ø" k="98" /> +<hkern u1="‘" u2="ö" k="98" /> +<hkern u1="‘" u2="õ" k="98" /> +<hkern u1="‘" u2="ô" k="98" /> +<hkern u1="‘" u2="ó" k="98" /> +<hkern u1="‘" u2="ò" k="98" /> +<hkern u1="‘" u2="ð" k="98" /> +<hkern u1="‘" u2="ë" k="98" /> +<hkern u1="‘" u2="ê" k="98" /> +<hkern u1="‘" u2="é" k="98" /> +<hkern u1="‘" u2="è" k="98" /> +<hkern u1="‘" u2="ç" k="98" /> +<hkern u1="‘" u2="æ" k="68" /> +<hkern u1="‘" u2="å" k="68" /> +<hkern u1="‘" u2="ä" k="68" /> +<hkern u1="‘" u2="ã" k="68" /> +<hkern u1="‘" u2="â" k="68" /> +<hkern u1="‘" u2="á" k="68" /> +<hkern u1="‘" u2="à" k="68" /> +<hkern u1="‘" u2="Ý" k="-37" /> +<hkern u1="‘" u2="Ø" k="43" /> +<hkern u1="‘" u2="Ö" k="43" /> +<hkern u1="‘" u2="Õ" k="43" /> +<hkern u1="‘" u2="Ô" k="43" /> +<hkern u1="‘" u2="Ó" k="43" /> +<hkern u1="‘" u2="Ò" k="43" /> +<hkern u1="‘" u2="Ç" k="43" /> +<hkern u1="‘" u2="Æ" k="196" /> +<hkern u1="‘" u2="Å" k="196" /> +<hkern u1="‘" u2="Ä" k="196" /> +<hkern u1="‘" u2="Ã" k="196" /> +<hkern u1="‘" u2="Â" k="196" /> +<hkern u1="‘" u2="Á" k="196" /> +<hkern u1="‘" u2="À" k="196" /> +<hkern u1="‘" u2="»" k="173" /> +<hkern u1="‘" u2="·" k="173" /> +<hkern u1="‘" u2="®" k="43" /> +<hkern u1="‘" u2="­" k="173" /> +<hkern u1="‘" u2="«" k="173" /> +<hkern u1="‘" u2="©" k="43" /> +<hkern u1="‘" u2="q" k="98" /> +<hkern u1="‘" u2="o" k="98" /> +<hkern u1="‘" u2="e" k="98" /> +<hkern u1="‘" u2="d" k="98" /> +<hkern u1="‘" u2="c" k="98" /> +<hkern u1="‘" u2="a" k="68" /> +<hkern u1="‘" u2="\" k="-45" /> +<hkern u1="‘" u2="Y" k="-37" /> +<hkern u1="‘" u2="W" k="-45" /> +<hkern u1="‘" u2="V" k="-45" /> +<hkern u1="‘" u2="Q" k="43" /> +<hkern u1="‘" u2="O" k="43" /> +<hkern u1="‘" u2="G" k="43" /> +<hkern u1="‘" u2="C" k="43" /> +<hkern u1="‘" u2="A" k="196" /> +<hkern u1="‘" u2="@" k="43" /> +<hkern u1="‘" u2="/" k="196" /> +<hkern u1="‘" u2="." k="218" /> +<hkern u1="‘" u2="-" k="173" /> +<hkern u1="‘" u2="," k="218" /> +<hkern u1="‘" u2="&" k="196" /> +<hkern u1="’" u2="›" k="173" /> +<hkern u1="’" u2="‹" k="173" /> +<hkern u1="’" u2="•" k="173" /> +<hkern u1="’" u2="„" k="218" /> +<hkern u1="’" u2="‚" k="218" /> +<hkern u1="’" u2="—" k="173" /> +<hkern u1="’" u2="–" k="173" /> +<hkern u1="’" u2="Ÿ" k="-37" /> +<hkern u1="’" u2="œ" k="98" /> +<hkern u1="’" u2="Œ" k="43" /> +<hkern u1="’" u2="ø" k="98" /> +<hkern u1="’" u2="ö" k="98" /> +<hkern u1="’" u2="õ" k="98" /> +<hkern u1="’" u2="ô" k="98" /> +<hkern u1="’" u2="ó" k="98" /> +<hkern u1="’" u2="ò" k="98" /> +<hkern u1="’" u2="ð" k="98" /> +<hkern u1="’" u2="ë" k="98" /> +<hkern u1="’" u2="ê" k="98" /> +<hkern u1="’" u2="é" k="98" /> +<hkern u1="’" u2="è" k="98" /> +<hkern u1="’" u2="ç" k="98" /> +<hkern u1="’" u2="æ" k="68" /> +<hkern u1="’" u2="å" k="68" /> +<hkern u1="’" u2="ä" k="68" /> +<hkern u1="’" u2="ã" k="68" /> +<hkern u1="’" u2="â" k="68" /> +<hkern u1="’" u2="á" k="68" /> +<hkern u1="’" u2="à" k="68" /> +<hkern u1="’" u2="Ý" k="-37" /> +<hkern u1="’" u2="Ø" k="43" /> +<hkern u1="’" u2="Ö" k="43" /> +<hkern u1="’" u2="Õ" k="43" /> +<hkern u1="’" u2="Ô" k="43" /> +<hkern u1="’" u2="Ó" k="43" /> +<hkern u1="’" u2="Ò" k="43" /> +<hkern u1="’" u2="Ç" k="43" /> +<hkern u1="’" u2="Æ" k="196" /> +<hkern u1="’" u2="Å" k="196" /> +<hkern u1="’" u2="Ä" k="196" /> +<hkern u1="’" u2="Ã" k="196" /> +<hkern u1="’" u2="Â" k="196" /> +<hkern u1="’" u2="Á" k="196" /> +<hkern u1="’" u2="À" k="196" /> +<hkern u1="’" u2="»" k="173" /> +<hkern u1="’" u2="·" k="173" /> +<hkern u1="’" u2="®" k="43" /> +<hkern u1="’" u2="­" k="173" /> +<hkern u1="’" u2="«" k="173" /> +<hkern u1="’" u2="©" k="43" /> +<hkern u1="’" u2="q" k="98" /> +<hkern u1="’" u2="o" k="98" /> +<hkern u1="’" u2="e" k="98" /> +<hkern u1="’" u2="d" k="98" /> +<hkern u1="’" u2="c" k="98" /> +<hkern u1="’" u2="a" k="68" /> +<hkern u1="’" u2="\" k="-45" /> +<hkern u1="’" u2="Y" k="-37" /> +<hkern u1="’" u2="W" k="-45" /> +<hkern u1="’" u2="V" k="-45" /> +<hkern u1="’" u2="Q" k="43" /> +<hkern u1="’" u2="O" k="43" /> +<hkern u1="’" u2="G" k="43" /> +<hkern u1="’" u2="C" k="43" /> +<hkern u1="’" u2="A" k="196" /> +<hkern u1="’" u2="@" k="43" /> +<hkern u1="’" u2="/" k="196" /> +<hkern u1="’" u2="." k="218" /> +<hkern u1="’" u2="-" k="173" /> +<hkern u1="’" u2="," k="218" /> +<hkern u1="’" u2="&" k="196" /> +<hkern u1="‚" u2="™" k="218" /> +<hkern u1="‚" u2="›" k="135" /> +<hkern u1="‚" u2="‹" k="135" /> +<hkern u1="‚" u2="•" k="135" /> +<hkern u1="‚" u2="”" k="218" /> +<hkern u1="‚" u2="“" k="218" /> +<hkern u1="‚" u2="’" k="218" /> +<hkern u1="‚" u2="‘" k="218" /> +<hkern u1="‚" u2="—" k="135" /> +<hkern u1="‚" u2="–" k="135" /> +<hkern u1="‚" u2="Ÿ" k="171" /> +<hkern u1="‚" u2="Œ" k="53" /> +<hkern u1="‚" u2="ÿ" k="139" /> +<hkern u1="‚" u2="ý" k="139" /> +<hkern u1="‚" u2="Ý" k="171" /> +<hkern u1="‚" u2="Ø" k="53" /> +<hkern u1="‚" u2="Ö" k="53" /> +<hkern u1="‚" u2="Õ" k="53" /> +<hkern u1="‚" u2="Ô" k="53" /> +<hkern u1="‚" u2="Ó" k="53" /> +<hkern u1="‚" u2="Ò" k="53" /> +<hkern u1="‚" u2="Ç" k="53" /> +<hkern u1="‚" u2="»" k="135" /> +<hkern u1="‚" u2="º" k="218" /> +<hkern u1="‚" u2="·" k="135" /> +<hkern u1="‚" u2="°" k="218" /> +<hkern u1="‚" u2="®" k="53" /> +<hkern u1="‚" u2="­" k="135" /> +<hkern u1="‚" u2="«" k="135" /> +<hkern u1="‚" u2="ª" k="218" /> +<hkern u1="‚" u2="©" k="53" /> +<hkern u1="‚" u2="y" k="139" /> +<hkern u1="‚" u2="w" k="73" /> +<hkern u1="‚" u2="v" k="139" /> +<hkern u1="‚" u2="\" k="184" /> +<hkern u1="‚" u2="Y" k="171" /> +<hkern u1="‚" u2="W" k="134" /> +<hkern u1="‚" u2="V" k="184" /> +<hkern u1="‚" u2="T" k="184" /> +<hkern u1="‚" u2="Q" k="53" /> +<hkern u1="‚" u2="O" k="53" /> +<hkern u1="‚" u2="G" k="53" /> +<hkern u1="‚" u2="C" k="53" /> +<hkern u1="‚" u2="@" k="53" /> +<hkern u1="‚" u2="-" k="135" /> +<hkern u1="‚" u2="*" k="218" /> +<hkern u1="‚" u2="'" k="218" /> +<hkern u1="‚" u2=""" k="218" /> +<hkern u1="“" u2="›" k="173" /> +<hkern u1="“" u2="‹" k="173" /> +<hkern u1="“" u2="•" k="173" /> +<hkern u1="“" u2="„" k="218" /> +<hkern u1="“" u2="‚" k="218" /> +<hkern u1="“" u2="—" k="173" /> +<hkern u1="“" u2="–" k="173" /> +<hkern u1="“" u2="Ÿ" k="-37" /> +<hkern u1="“" u2="œ" k="98" /> +<hkern u1="“" u2="Œ" k="43" /> +<hkern u1="“" u2="ø" k="98" /> +<hkern u1="“" u2="ö" k="98" /> +<hkern u1="“" u2="õ" k="98" /> +<hkern u1="“" u2="ô" k="98" /> +<hkern u1="“" u2="ó" k="98" /> +<hkern u1="“" u2="ò" k="98" /> +<hkern u1="“" u2="ð" k="98" /> +<hkern u1="“" u2="ë" k="98" /> +<hkern u1="“" u2="ê" k="98" /> +<hkern u1="“" u2="é" k="98" /> +<hkern u1="“" u2="è" k="98" /> +<hkern u1="“" u2="ç" k="98" /> +<hkern u1="“" u2="æ" k="68" /> +<hkern u1="“" u2="å" k="68" /> +<hkern u1="“" u2="ä" k="68" /> +<hkern u1="“" u2="ã" k="68" /> +<hkern u1="“" u2="â" k="68" /> +<hkern u1="“" u2="á" k="68" /> +<hkern u1="“" u2="à" k="68" /> +<hkern u1="“" u2="Ý" k="-37" /> +<hkern u1="“" u2="Ø" k="43" /> +<hkern u1="“" u2="Ö" k="43" /> +<hkern u1="“" u2="Õ" k="43" /> +<hkern u1="“" u2="Ô" k="43" /> +<hkern u1="“" u2="Ó" k="43" /> +<hkern u1="“" u2="Ò" k="43" /> +<hkern u1="“" u2="Ç" k="43" /> +<hkern u1="“" u2="Æ" k="196" /> +<hkern u1="“" u2="Å" k="196" /> +<hkern u1="“" u2="Ä" k="196" /> +<hkern u1="“" u2="Ã" k="196" /> +<hkern u1="“" u2="Â" k="196" /> +<hkern u1="“" u2="Á" k="196" /> +<hkern u1="“" u2="À" k="196" /> +<hkern u1="“" u2="»" k="173" /> +<hkern u1="“" u2="·" k="173" /> +<hkern u1="“" u2="®" k="43" /> +<hkern u1="“" u2="­" k="173" /> +<hkern u1="“" u2="«" k="173" /> +<hkern u1="“" u2="©" k="43" /> +<hkern u1="“" u2="q" k="98" /> +<hkern u1="“" u2="o" k="98" /> +<hkern u1="“" u2="e" k="98" /> +<hkern u1="“" u2="d" k="98" /> +<hkern u1="“" u2="c" k="98" /> +<hkern u1="“" u2="a" k="68" /> +<hkern u1="“" u2="\" k="-45" /> +<hkern u1="“" u2="Y" k="-37" /> +<hkern u1="“" u2="W" k="-45" /> +<hkern u1="“" u2="V" k="-45" /> +<hkern u1="“" u2="Q" k="43" /> +<hkern u1="“" u2="O" k="43" /> +<hkern u1="“" u2="G" k="43" /> +<hkern u1="“" u2="C" k="43" /> +<hkern u1="“" u2="A" k="196" /> +<hkern u1="“" u2="@" k="43" /> +<hkern u1="“" u2="/" k="196" /> +<hkern u1="“" u2="." k="218" /> +<hkern u1="“" u2="-" k="173" /> +<hkern u1="“" u2="," k="218" /> +<hkern u1="“" u2="&" k="196" /> +<hkern u1="”" u2="›" k="173" /> +<hkern u1="”" u2="‹" k="173" /> +<hkern u1="”" u2="•" k="173" /> +<hkern u1="”" u2="„" k="218" /> +<hkern u1="”" u2="‚" k="218" /> +<hkern u1="”" u2="—" k="173" /> +<hkern u1="”" u2="–" k="173" /> +<hkern u1="”" u2="Ÿ" k="-37" /> +<hkern u1="”" u2="œ" k="98" /> +<hkern u1="”" u2="Œ" k="43" /> +<hkern u1="”" u2="ø" k="98" /> +<hkern u1="”" u2="ö" k="98" /> +<hkern u1="”" u2="õ" k="98" /> +<hkern u1="”" u2="ô" k="98" /> +<hkern u1="”" u2="ó" k="98" /> +<hkern u1="”" u2="ò" k="98" /> +<hkern u1="”" u2="ð" k="98" /> +<hkern u1="”" u2="ë" k="98" /> +<hkern u1="”" u2="ê" k="98" /> +<hkern u1="”" u2="é" k="98" /> +<hkern u1="”" u2="è" k="98" /> +<hkern u1="”" u2="ç" k="98" /> +<hkern u1="”" u2="æ" k="68" /> +<hkern u1="”" u2="å" k="68" /> +<hkern u1="”" u2="ä" k="68" /> +<hkern u1="”" u2="ã" k="68" /> +<hkern u1="”" u2="â" k="68" /> +<hkern u1="”" u2="á" k="68" /> +<hkern u1="”" u2="à" k="68" /> +<hkern u1="”" u2="Ý" k="-37" /> +<hkern u1="”" u2="Ø" k="43" /> +<hkern u1="”" u2="Ö" k="43" /> +<hkern u1="”" u2="Õ" k="43" /> +<hkern u1="”" u2="Ô" k="43" /> +<hkern u1="”" u2="Ó" k="43" /> +<hkern u1="”" u2="Ò" k="43" /> +<hkern u1="”" u2="Ç" k="43" /> +<hkern u1="”" u2="Æ" k="196" /> +<hkern u1="”" u2="Å" k="196" /> +<hkern u1="”" u2="Ä" k="196" /> +<hkern u1="”" u2="Ã" k="196" /> +<hkern u1="”" u2="Â" k="196" /> +<hkern u1="”" u2="Á" k="196" /> +<hkern u1="”" u2="À" k="196" /> +<hkern u1="”" u2="»" k="173" /> +<hkern u1="”" u2="·" k="173" /> +<hkern u1="”" u2="®" k="43" /> +<hkern u1="”" u2="­" k="173" /> +<hkern u1="”" u2="«" k="173" /> +<hkern u1="”" u2="©" k="43" /> +<hkern u1="”" u2="q" k="98" /> +<hkern u1="”" u2="o" k="98" /> +<hkern u1="”" u2="e" k="98" /> +<hkern u1="”" u2="d" k="98" /> +<hkern u1="”" u2="c" k="98" /> +<hkern u1="”" u2="a" k="68" /> +<hkern u1="”" u2="\" k="-45" /> +<hkern u1="”" u2="Y" k="-37" /> +<hkern u1="”" u2="W" k="-45" /> +<hkern u1="”" u2="V" k="-45" /> +<hkern u1="”" u2="Q" k="43" /> +<hkern u1="”" u2="O" k="43" /> +<hkern u1="”" u2="G" k="43" /> +<hkern u1="”" u2="C" k="43" /> +<hkern u1="”" u2="A" k="196" /> +<hkern u1="”" u2="@" k="43" /> +<hkern u1="”" u2="/" k="196" /> +<hkern u1="”" u2="." k="218" /> +<hkern u1="”" u2="-" k="173" /> +<hkern u1="”" u2="," k="218" /> +<hkern u1="”" u2="&" k="196" /> +<hkern u1="„" u2="™" k="218" /> +<hkern u1="„" u2="›" k="135" /> +<hkern u1="„" u2="‹" k="135" /> +<hkern u1="„" u2="•" k="135" /> +<hkern u1="„" u2="”" k="218" /> +<hkern u1="„" u2="“" k="218" /> +<hkern u1="„" u2="’" k="218" /> +<hkern u1="„" u2="‘" k="218" /> +<hkern u1="„" u2="—" k="135" /> +<hkern u1="„" u2="–" k="135" /> +<hkern u1="„" u2="Ÿ" k="171" /> +<hkern u1="„" u2="Œ" k="53" /> +<hkern u1="„" u2="ÿ" k="139" /> +<hkern u1="„" u2="ý" k="139" /> +<hkern u1="„" u2="Ý" k="171" /> +<hkern u1="„" u2="Ø" k="53" /> +<hkern u1="„" u2="Ö" k="53" /> +<hkern u1="„" u2="Õ" k="53" /> +<hkern u1="„" u2="Ô" k="53" /> +<hkern u1="„" u2="Ó" k="53" /> +<hkern u1="„" u2="Ò" k="53" /> +<hkern u1="„" u2="Ç" k="53" /> +<hkern u1="„" u2="»" k="135" /> +<hkern u1="„" u2="º" k="218" /> +<hkern u1="„" u2="·" k="135" /> +<hkern u1="„" u2="°" k="218" /> +<hkern u1="„" u2="®" k="53" /> +<hkern u1="„" u2="­" k="135" /> +<hkern u1="„" u2="«" k="135" /> +<hkern u1="„" u2="ª" k="218" /> +<hkern u1="„" u2="©" k="53" /> +<hkern u1="„" u2="y" k="139" /> +<hkern u1="„" u2="w" k="73" /> +<hkern u1="„" u2="v" k="139" /> +<hkern u1="„" u2="\" k="184" /> +<hkern u1="„" u2="Y" k="171" /> +<hkern u1="„" u2="W" k="134" /> +<hkern u1="„" u2="V" k="184" /> +<hkern u1="„" u2="T" k="184" /> +<hkern u1="„" u2="Q" k="53" /> +<hkern u1="„" u2="O" k="53" /> +<hkern u1="„" u2="G" k="53" /> +<hkern u1="„" u2="C" k="53" /> +<hkern u1="„" u2="@" k="53" /> +<hkern u1="„" u2="-" k="135" /> +<hkern u1="„" u2="*" k="218" /> +<hkern u1="„" u2="'" k="218" /> +<hkern u1="„" u2=""" k="218" /> +<hkern u1="•" u2="™" k="173" /> +<hkern u1="•" u2="„" k="135" /> +<hkern u1="•" u2="”" k="173" /> +<hkern u1="•" u2="“" k="173" /> +<hkern u1="•" u2="‚" k="135" /> +<hkern u1="•" u2="’" k="173" /> +<hkern u1="•" u2="‘" k="173" /> +<hkern u1="•" u2="Ÿ" k="164" /> +<hkern u1="•" u2="Ý" k="164" /> +<hkern u1="•" u2="Æ" k="69" /> +<hkern u1="•" u2="Å" k="69" /> +<hkern u1="•" u2="Ä" k="69" /> +<hkern u1="•" u2="Ã" k="69" /> +<hkern u1="•" u2="Â" k="69" /> +<hkern u1="•" u2="Á" k="69" /> +<hkern u1="•" u2="À" k="69" /> +<hkern u1="•" u2="º" k="173" /> +<hkern u1="•" u2="°" k="173" /> +<hkern u1="•" u2="ª" k="173" /> +<hkern u1="•" u2="\" k="119" /> +<hkern u1="•" u2="Z" k="49" /> +<hkern u1="•" u2="Y" k="164" /> +<hkern u1="•" u2="X" k="68" /> +<hkern u1="•" u2="W" k="37" /> +<hkern u1="•" u2="V" k="119" /> +<hkern u1="•" u2="T" k="184" /> +<hkern u1="•" u2="A" k="69" /> +<hkern u1="•" u2="/" k="69" /> +<hkern u1="•" u2="." k="135" /> +<hkern u1="•" u2="," k="135" /> +<hkern u1="•" u2="*" k="173" /> +<hkern u1="•" u2="'" k="173" /> +<hkern u1="•" u2="&" k="69" /> +<hkern u1="•" u2=""" k="173" /> +<hkern u1="‹" u2="™" k="173" /> +<hkern u1="‹" u2="„" k="135" /> +<hkern u1="‹" u2="”" k="173" /> +<hkern u1="‹" u2="“" k="173" /> +<hkern u1="‹" u2="‚" k="135" /> +<hkern u1="‹" u2="’" k="173" /> +<hkern u1="‹" u2="‘" k="173" /> +<hkern u1="‹" u2="Ÿ" k="164" /> +<hkern u1="‹" u2="Ý" k="164" /> +<hkern u1="‹" u2="Æ" k="69" /> +<hkern u1="‹" u2="Å" k="69" /> +<hkern u1="‹" u2="Ä" k="69" /> +<hkern u1="‹" u2="Ã" k="69" /> +<hkern u1="‹" u2="Â" k="69" /> +<hkern u1="‹" u2="Á" k="69" /> +<hkern u1="‹" u2="À" k="69" /> +<hkern u1="‹" u2="º" k="173" /> +<hkern u1="‹" u2="°" k="173" /> +<hkern u1="‹" u2="ª" k="173" /> +<hkern u1="‹" u2="\" k="119" /> +<hkern u1="‹" u2="Z" k="49" /> +<hkern u1="‹" u2="Y" k="164" /> +<hkern u1="‹" u2="X" k="68" /> +<hkern u1="‹" u2="W" k="37" /> +<hkern u1="‹" u2="V" k="119" /> +<hkern u1="‹" u2="T" k="184" /> +<hkern u1="‹" u2="A" k="69" /> +<hkern u1="‹" u2="/" k="69" /> +<hkern u1="‹" u2="." k="135" /> +<hkern u1="‹" u2="," k="135" /> +<hkern u1="‹" u2="*" k="173" /> +<hkern u1="‹" u2="'" k="173" /> +<hkern u1="‹" u2="&" k="69" /> +<hkern u1="‹" u2=""" k="173" /> +<hkern u1="›" u2="™" k="173" /> +<hkern u1="›" u2="„" k="135" /> +<hkern u1="›" u2="”" k="173" /> +<hkern u1="›" u2="“" k="173" /> +<hkern u1="›" u2="‚" k="135" /> +<hkern u1="›" u2="’" k="173" /> +<hkern u1="›" u2="‘" k="173" /> +<hkern u1="›" u2="Ÿ" k="164" /> +<hkern u1="›" u2="Ý" k="164" /> +<hkern u1="›" u2="Æ" k="69" /> +<hkern u1="›" u2="Å" k="69" /> +<hkern u1="›" u2="Ä" k="69" /> +<hkern u1="›" u2="Ã" k="69" /> +<hkern u1="›" u2="Â" k="69" /> +<hkern u1="›" u2="Á" k="69" /> +<hkern u1="›" u2="À" k="69" /> +<hkern u1="›" u2="º" k="173" /> +<hkern u1="›" u2="°" k="173" /> +<hkern u1="›" u2="ª" k="173" /> +<hkern u1="›" u2="\" k="119" /> +<hkern u1="›" u2="Z" k="49" /> +<hkern u1="›" u2="Y" k="164" /> +<hkern u1="›" u2="X" k="68" /> +<hkern u1="›" u2="W" k="37" /> +<hkern u1="›" u2="V" k="119" /> +<hkern u1="›" u2="T" k="184" /> +<hkern u1="›" u2="A" k="69" /> +<hkern u1="›" u2="/" k="69" /> +<hkern u1="›" u2="." k="135" /> +<hkern u1="›" u2="," k="135" /> +<hkern u1="›" u2="*" k="173" /> +<hkern u1="›" u2="'" k="173" /> +<hkern u1="›" u2="&" k="69" /> +<hkern u1="›" u2=""" k="173" /> +<hkern u1="™" u2="›" k="173" /> +<hkern u1="™" u2="‹" k="173" /> +<hkern u1="™" u2="•" k="173" /> +<hkern u1="™" u2="„" k="218" /> +<hkern u1="™" u2="‚" k="218" /> +<hkern u1="™" u2="—" k="173" /> +<hkern u1="™" u2="–" k="173" /> +<hkern u1="™" u2="Ÿ" k="-37" /> +<hkern u1="™" u2="œ" k="98" /> +<hkern u1="™" u2="Œ" k="43" /> +<hkern u1="™" u2="ø" k="98" /> +<hkern u1="™" u2="ö" k="98" /> +<hkern u1="™" u2="õ" k="98" /> +<hkern u1="™" u2="ô" k="98" /> +<hkern u1="™" u2="ó" k="98" /> +<hkern u1="™" u2="ò" k="98" /> +<hkern u1="™" u2="ð" k="98" /> +<hkern u1="™" u2="ë" k="98" /> +<hkern u1="™" u2="ê" k="98" /> +<hkern u1="™" u2="é" k="98" /> +<hkern u1="™" u2="è" k="98" /> +<hkern u1="™" u2="ç" k="98" /> +<hkern u1="™" u2="æ" k="68" /> +<hkern u1="™" u2="å" k="68" /> +<hkern u1="™" u2="ä" k="68" /> +<hkern u1="™" u2="ã" k="68" /> +<hkern u1="™" u2="â" k="68" /> +<hkern u1="™" u2="á" k="68" /> +<hkern u1="™" u2="à" k="68" /> +<hkern u1="™" u2="Ý" k="-37" /> +<hkern u1="™" u2="Ø" k="43" /> +<hkern u1="™" u2="Ö" k="43" /> +<hkern u1="™" u2="Õ" k="43" /> +<hkern u1="™" u2="Ô" k="43" /> +<hkern u1="™" u2="Ó" k="43" /> +<hkern u1="™" u2="Ò" k="43" /> +<hkern u1="™" u2="Ç" k="43" /> +<hkern u1="™" u2="Æ" k="196" /> +<hkern u1="™" u2="Å" k="196" /> +<hkern u1="™" u2="Ä" k="196" /> +<hkern u1="™" u2="Ã" k="196" /> +<hkern u1="™" u2="Â" k="196" /> +<hkern u1="™" u2="Á" k="196" /> +<hkern u1="™" u2="À" k="196" /> +<hkern u1="™" u2="»" k="173" /> +<hkern u1="™" u2="·" k="173" /> +<hkern u1="™" u2="®" k="43" /> +<hkern u1="™" u2="­" k="173" /> +<hkern u1="™" u2="«" k="173" /> +<hkern u1="™" u2="©" k="43" /> +<hkern u1="™" u2="q" k="98" /> +<hkern u1="™" u2="o" k="98" /> +<hkern u1="™" u2="e" k="98" /> +<hkern u1="™" u2="d" k="98" /> +<hkern u1="™" u2="c" k="98" /> +<hkern u1="™" u2="a" k="68" /> +<hkern u1="™" u2="\" k="-45" /> +<hkern u1="™" u2="Y" k="-37" /> +<hkern u1="™" u2="W" k="-45" /> +<hkern u1="™" u2="V" k="-45" /> +<hkern u1="™" u2="Q" k="43" /> +<hkern u1="™" u2="O" k="43" /> +<hkern u1="™" u2="G" k="43" /> +<hkern u1="™" u2="C" k="43" /> +<hkern u1="™" u2="A" k="196" /> +<hkern u1="™" u2="@" k="43" /> +<hkern u1="™" u2="/" k="196" /> +<hkern u1="™" u2="." k="218" /> +<hkern u1="™" u2="-" k="173" /> +<hkern u1="™" u2="," k="218" /> +<hkern u1="™" u2="&" k="196" /> +</font> +</defs></svg>
@@ -0,0 +1,4249 @@
+<?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="latolight" horiz-adv-x="1187" > +<font-face units-per-em="2048" ascent="1649" descent="-399" /> +<missing-glyph horiz-adv-x="395" /> +<glyph unicode="fi" horiz-adv-x="1091" d="M204 0v912l-144 10q-30 2 -29 25v40h173v87q0 94 27.5 169.5t80.5 128t128.5 81t172.5 28.5q34 0 70.5 -6t60.5 -16l-4 -49q-1 -10 -14 -10q-11 0 -33 3.5t-56 3.5q-162 0 -250 -83t-88 -253v-84h597v-987h-98v914h-497v-914h-97z" /> +<glyph unicode="fl" horiz-adv-x="1159" d="M204 0v912l-144 10q-30 2 -29 25v40h173v67q0 90 26.5 167t77.5 133.5t127.5 88.5t174.5 32q35 0 72.5 -2.5t73 -5.5t66 -5t51.5 -2h74v-1460h-97v1392q-55 2 -116 6t-110 4q-77 0 -137.5 -24t-102 -69.5t-63.5 -110t-22 -144.5v-67h295v-73h-293v-914h-97z" /> +<glyph horiz-adv-x="0" /> +<glyph unicode="
" horiz-adv-x="0" /> +<glyph horiz-adv-x="0" /> +<glyph horiz-adv-x="0" /> +<glyph unicode=" " horiz-adv-x="395" /> +<glyph unicode="	" horiz-adv-x="395" /> +<glyph unicode=" " horiz-adv-x="395" /> +<glyph unicode="!" horiz-adv-x="660" d="M381 1449v-586q0 -46 -1 -87t-2.5 -83.5t-4.5 -89.5t-6 -104h-67q-3 57 -6 104t-4.5 89.5t-2.5 83.5t-1 87v586h95zM236 79q0 19 7 36.5t19.5 30.5t29.5 20.5t38 7.5q19 0 36.5 -7.5t30.5 -20.5t20.5 -30.5t7.5 -36.5q0 -20 -7.5 -37t-20.5 -30t-30.5 -20t-36.5 -7 q-40 0 -67 27t-27 67z" /> +<glyph unicode=""" horiz-adv-x="751" d="M269 1449v-299l-9 -157q-2 -17 -9 -27t-25 -10q-14 0 -22 10t-10 27l-10 157v299h85zM566 1449v-299l-9 -157q-2 -17 -9 -27t-25 -10q-14 0 -22 10t-11 27l-9 157v299h85z" /> +<glyph unicode="#" d="M775 454l-96 -454h-42q-14 0 -23.5 8.5t-9.5 25.5q0 7 1 11l88 409h-305l-88 -413q-5 -23 -17.5 -32t-29.5 -9h-43l96 454h-187q-14 0 -22.5 6.5t-8.5 23.5v10t2 15l3 16h223l84 399h-259l6 39q4 34 46 33h218l89 414q4 19 16.5 29t30.5 10h43l-97 -453h305l97 453h43 q32 0 32 -31q0 -8 -1 -12l-89 -410h230l-6 -39q-5 -34 -46 -33h-189l-84 -399h231q31 0 31 -26l-5 -45h-267zM398 525h305l84 399h-305z" /> +<glyph unicode="$" d="M555 -15q-131 6 -228.5 56t-170.5 132l27 40q12 15 29 15q9 0 23 -11t33.5 -28t46 -37t62 -38t80.5 -31t102 -16l33 651q-70 22 -136 48.5t-117.5 68t-83.5 102t-32 153.5q0 71 26.5 136.5t78.5 117.5t127.5 83.5t173.5 34.5l9 172q1 14 8.5 23.5t22.5 9.5h37l-12 -206 q103 -7 181 -45.5t143 -102.5l-23 -35q-10 -17 -26 -17q-12 0 -32.5 16.5t-52.5 37t-79.5 39.5t-114.5 24l-30 -585q48 -15 97 -32t93.5 -37.5t82.5 -47t66 -62.5t44 -83t16 -108q0 -88 -30 -166t-85.5 -137t-137 -94.5t-185.5 -40.5l-12 -216q-1 -13 -8.5 -22.5t-20.5 -9.5 h-37zM967 408q0 68 -26 114.5t-69 79.5t-98.5 55t-117.5 41l-31 -631q82 5 146 33t107.5 73.5t66 105.5t22.5 129zM314 1098q0 -63 22.5 -108.5t61.5 -77.5t90 -55t108 -43l29 565q-78 -4 -136 -28.5t-97 -63t-58.5 -87.5t-19.5 -102z" /> +<glyph unicode="%" horiz-adv-x="1570" d="M698 1101q0 -89 -24.5 -157t-66.5 -113.5t-97 -68.5t-117 -23q-63 0 -119 23t-97 68.5t-64.5 113.5t-23.5 157q0 90 23.5 158.5t64.5 114t97 68.5t119 23t118.5 -23t97 -68.5t65.5 -114t24 -158.5zM621 1101q0 79 -18 135t-49.5 92.5t-73 53.5t-87.5 17t-87 -17 t-71.5 -53.5t-48.5 -92.5t-18 -135t18 -135t48.5 -91.5t71.5 -52.5t87 -17t87.5 17t73 52.5t49.5 91.5t18 135zM1248 1431q6 8 15 13t23 5h69l-1041 -1431q-13 -18 -35 -18h-70zM1481 344q0 -89 -24.5 -157t-66 -113t-97 -68t-116.5 -23q-63 0 -119.5 23t-97 68t-64.5 113 t-24 157q0 90 24 158.5t64.5 114.5t96.5 69t120 23q63 0 118.5 -23t97 -69t65 -114.5t23.5 -158.5zM1403 344q0 79 -18 136t-48.5 93t-72 53t-87.5 17t-87.5 -17t-72.5 -53t-49 -93t-18 -136t18 -134.5t49 -91.5t72 -52.5t88 -16.5q46 0 87.5 16.5t72 52.5t48.5 91.5 t18 134.5z" /> +<glyph unicode="&" horiz-adv-x="1416" d="M675 1465q69 0 130 -23.5t106.5 -63.5t73 -92.5t29.5 -109.5q-14 -3 -26 -7q-24 -5 -37 -5q-8 0 -15 6.5t-10 17.5q-7 27 -24.5 61.5t-47.5 65.5t-74.5 52.5t-104.5 21.5q-61 0 -111.5 -19t-86.5 -53.5t-56 -81.5t-20 -103q0 -84 43 -161t134 -165l456 -451 q46 74 73.5 154t35.5 155q2 13 8 20.5t18 7.5h57q-2 -96 -36.5 -198t-97.5 -195l305 -299h-91q-18 0 -30 4t-28 19l-210 205q-46 -53 -101 -98t-119.5 -77.5t-138 -50.5t-154.5 -18q-77 0 -151.5 25.5t-133.5 75t-95 122t-36 164.5q0 74 26.5 141t72.5 122.5t109.5 99.5 t137.5 72q-73 82 -109.5 159t-36.5 165q0 72 26 133t74.5 106t115.5 70.5t150 25.5zM208 377q0 -79 30 -137.5t78.5 -98t107 -59t116.5 -19.5q72 0 135.5 16.5t119.5 46t102.5 69t85.5 88.5l-470 461q-6 5 -11 12q-68 -29 -122.5 -69t-92.5 -88.5t-58.5 -105t-20.5 -116.5z " /> +<glyph unicode="'" horiz-adv-x="453" d="M269 1449v-299l-9 -157q-2 -17 -9 -27t-25 -10q-14 0 -22 10t-10 27l-10 157v299h85z" /> +<glyph unicode="(" horiz-adv-x="614" d="M259 645q0 -229 62 -439.5t185 -406.5q7 -11 7 -21q0 -15 -14 -23l-43 -26q-79 121 -133 234t-86.5 225t-47.5 224.5t-15 232.5t15 233t47.5 225t86.5 225.5t133 234.5l43 -27q13 -7 13 -22q0 -10 -7 -21q-122 -197 -184 -407.5t-62 -440.5z" /> +<glyph unicode=")" horiz-adv-x="614" d="M354 645q0 230 -62 440.5t-183 407.5q-7 11 -8 21q0 14 14 22l43 27q78 -121 132 -234.5t87 -225.5t47.5 -225t14.5 -233t-14.5 -232.5t-47.5 -224.5t-87 -225.5t-132 -233.5l-43 26q-14 7 -15 23q0 10 8 21q123 196 184.5 406.5t61.5 439.5z" /> +<glyph unicode="*" horiz-adv-x="819" d="M381 919v218q0 17 2.5 30.5t10.5 30.5q-11 -15 -22 -23.5t-26 -17.5l-192 -111l-26 45l193 112q14 8 27 12.5t32 7.5q-19 3 -32 8t-27 13l-195 113l27 46l193 -113q16 -10 26 -19.5t24 -27.5q-8 19 -11.5 34t-3.5 33v219h53v-218q0 -18 -2.5 -33t-10.5 -34q12 17 22.5 27 t26.5 19l193 112l26 -46l-192 -112q-15 -9 -28.5 -14t-31.5 -7q18 -3 31 -7.5t29 -12.5l193 -112l-25 -47l-195 113q-15 9 -25.5 17.5t-23.5 25.5q6 -18 9.5 -31.5t3.5 -30.5v-219h-53z" /> +<glyph unicode="+" d="M632 1186v-462h441v-75h-441v-464h-80v464h-440v75h440v462h80z" /> +<glyph unicode="," horiz-adv-x="404" d="M113 87q0 36 24.5 61.5t64.5 25.5q44 0 68 -30t24 -79q0 -42 -11 -86t-31.5 -85.5t-49 -80.5t-63.5 -72l-15 15q-8 8 -8 18q0 5 3 10t7 9q10 10 26 30t32 47.5t28.5 60t16.5 69.5q-6 -2 -13.5 -3t-16.5 -1q-38 0 -62 25.5t-24 65.5z" /> +<glyph unicode="-" horiz-adv-x="680" d="M102 649h477v-83h-477v83z" /> +<glyph unicode="." horiz-adv-x="404" d="M108 79q0 19 7 36.5t19.5 30.5t29.5 20.5t38 7.5q19 0 36.5 -7.5t30.5 -20.5t20.5 -30.5t7.5 -36.5q0 -20 -7.5 -37t-20.5 -30t-30.5 -20t-36.5 -7q-40 0 -67 27t-27 67z" /> +<glyph unicode="/" horiz-adv-x="730" d="M93 -46q-8 -20 -24.5 -30t-33.5 -10h-40l637 1538q15 38 55 38h42z" /> +<glyph unicode="0" d="M1113 725q0 -190 -41 -329.5t-111.5 -230.5t-165.5 -135.5t-202 -44.5q-108 0 -202 44.5t-164.5 135.5t-111 230.5t-40.5 329.5t40.5 329.5t111 230.5t164.5 135.5t202 44.5t202.5 -44.5t165 -135.5t111.5 -230.5t41 -329.5zM1011 725q0 176 -34 301t-91 204.5t-133 116 t-160 36.5t-160 -36.5t-133 -116t-91 -204.5t-34 -301q0 -177 34 -301.5t91 -204t133 -115.5t160 -36t160 36t133 115.5t91 204t34 301.5z" /> +<glyph unicode="1" d="M316 76h333v1175q0 35 3 74l-319 -284q-10 -9 -25 -9q-17 0 -26 12l-30 41l419 370h75v-1379h317v-76h-747v76z" /> +<glyph unicode="2" d="M616 1465q83 0 158.5 -24t133 -72.5t91 -121.5t33.5 -172q0 -82 -25 -152t-68 -134.5t-100 -125.5t-119 -124l-454 -463q33 8 68.5 12t71.5 4h625q16 0 26 -9.5t10 -25.5v-57h-935v35q0 11 5.5 23t14.5 20l494 501q61 62 113.5 120.5t91 118t60.5 121.5t22 133 q0 80 -26.5 139t-71 97t-102.5 56t-122 18q-69 0 -126.5 -21t-102 -58t-73.5 -89t-41 -113q-10 -36 -41 -36q-2 0 -5 0.5t-5 0.5l-49 8q12 93 50.5 166t97 123t135 76t165.5 26z" /> +<glyph unicode="3" d="M628 1465q83 0 156.5 -23t129.5 -69t88 -114.5t32 -158.5q0 -71 -22 -128t-60.5 -100t-90.5 -72t-113 -44q160 -30 241.5 -123.5t81.5 -234.5q0 -89 -36 -165t-98.5 -131.5t-147 -86.5t-184.5 -31q-124 0 -206.5 33t-135.5 86.5t-82.5 119.5t-48.5 131l39 17q12 5 24 5 q11 0 21 -5t15 -20l8 -20q6 -18 17 -45.5t29 -56.5t44.5 -58.5t65 -52.5t90.5 -37t119 -14q92 0 161.5 30.5t116 78t69.5 106.5t23 114q0 67 -21 124.5t-70 98.5t-129.5 65.5t-198.5 24.5v70q94 2 166 25t120 63t72.5 95.5t24.5 121.5q0 77 -25.5 133.5t-68.5 93.5 t-100.5 54t-119.5 17q-69 0 -126.5 -20.5t-101.5 -57t-73.5 -88.5t-43.5 -115q-8 -36 -38 -36q-7 0 -12 1l-50 8q13 93 51 166t96.5 123t135.5 76t166 26z" /> +<glyph unicode="4" d="M880 494h265v-54q0 -11 -6.5 -17.5t-21.5 -6.5h-237v-416h-88v416h-683q-15 0 -23.5 6.5t-11.5 17.5l-9 48l728 963h87v-957zM792 1252q0 17 1 37t4 40l-626 -835h621v758z" /> +<glyph unicode="5" d="M989 1407q0 -20 -13.5 -34t-43.5 -14h-524l-87 -483q69 17 130 24.5t117 7.5q113 0 199 -32t144 -90t87.5 -138t29.5 -174q0 -115 -40 -205.5t-108 -154t-159 -97t-194 -33.5q-60 0 -114.5 10.5t-102.5 28.5t-88 41.5t-70 48.5l28 40q10 15 30 15q13 0 38 -15.5t64.5 -34 t93.5 -33.5t125 -15q84 0 157 27t126.5 78t84 126.5t30.5 170.5q0 78 -23 143.5t-69.5 112t-118 72.5t-167.5 26q-58 0 -124 -9t-139 -30l-64 20l114 642h651v-42z" /> +<glyph unicode="6" d="M643 866q93 0 172 -30.5t136 -86.5t89 -135t32 -178q0 -98 -35.5 -181t-98 -143.5t-151 -94t-193.5 -33.5q-101 0 -185 32.5t-144 94t-93 150t-33 200.5q0 85 43 192t142 240l395 532q17 24 52 24h86l-432 -564q-32 -42 -58.5 -79t-48.5 -73q60 62 143.5 97.5t181.5 35.5 zM234 437q0 -81 25.5 -149.5t71.5 -118t112.5 -77t149.5 -27.5q88 0 158.5 27.5t120.5 76t76.5 115.5t26.5 146q0 83 -26 150t-74 113.5t-113.5 72t-145.5 25.5q-90 0 -161 -31.5t-120 -81t-75 -113t-26 -128.5z" /> +<glyph unicode="7" d="M1097 1449v-44q0 -17 -3.5 -30t-9.5 -22l-664 -1316q-8 -16 -22 -26.5t-37 -10.5h-66l669 1311q13 27 31 48h-835q-11 0 -19 8t-8 19v63h964z" /> +<glyph unicode="8" d="M594 -16q-104 0 -191 27.5t-148.5 79.5t-96.5 126t-35 166q0 80 23 142.5t65 108.5t100 76.5t127 46.5q-63 18 -112.5 50t-82.5 76t-50.5 97.5t-17.5 115.5q0 77 29 144.5t83.5 117.5t132 78.5t174.5 28.5q96 0 173.5 -28.5t132 -78.5t84 -118t29.5 -144 q0 -61 -17.5 -115t-51.5 -98t-83 -76t-112 -50q70 -15 127.5 -46t99.5 -77t65.5 -108.5t23.5 -142.5q0 -92 -35 -166t-97 -126t-148.5 -79.5t-190.5 -27.5zM594 61q83 0 151 23.5t117 66t76 101.5t27 132q0 95 -35 158.5t-89.5 101.5t-120 54t-126.5 16t-127 -16t-120 -54 t-89 -101.5t-35 -158.5q0 -73 26.5 -132t75.5 -101.5t117.5 -66t151.5 -23.5zM594 793q83 0 144 25t101 67.5t58.5 96.5t18.5 113q0 62 -21.5 116t-62.5 94t-101 62.5t-137 22.5t-137.5 -22.5t-102 -62.5t-63 -94t-21.5 -116q0 -58 19 -112.5t59 -97t101 -67.5t145 -25z" /> +<glyph unicode="9" d="M587 616q-89 0 -164.5 29.5t-130 83.5t-85.5 130.5t-31 170.5q0 93 34.5 172.5t96 138t146 91.5t184.5 33q96 0 176.5 -32.5t138.5 -92.5t90 -143.5t32 -185.5q0 -56 -11.5 -107.5t-34.5 -102.5t-56 -105t-75 -115l-380 -557q-15 -24 -50 -24h-88l428 598q31 43 57 81.5 t47 74.5q-59 -66 -143.5 -102t-180.5 -36zM980 1029q0 79 -25.5 144.5t-71.5 112t-109 72.5t-138 26q-80 0 -147 -25.5t-114.5 -71.5t-74.5 -110t-27 -141q0 -80 25 -144t69.5 -108.5t107.5 -68t139 -23.5q87 0 155.5 30t115.5 78t71 108t24 121z" /> +<glyph unicode=":" horiz-adv-x="486" d="M148 79q0 19 7.5 36.5t20 30.5t29.5 20.5t38 7.5q19 0 36.5 -7.5t30.5 -20.5t20.5 -30.5t7.5 -36.5q0 -20 -7.5 -37t-20.5 -30t-30.5 -20t-36.5 -7q-40 0 -67.5 27t-27.5 67zM148 895q0 19 7.5 36.5t20 30.5t29.5 20.5t38 7.5q19 0 36.5 -7.5t30.5 -20.5t20.5 -30.5 t7.5 -36.5q0 -20 -7.5 -37t-20.5 -30t-30.5 -20t-36.5 -7q-40 0 -67.5 27t-27.5 67z" /> +<glyph unicode=";" horiz-adv-x="486" d="M148 895q0 19 7.5 36.5t20 30.5t29.5 20.5t38 7.5q19 0 36.5 -7.5t30.5 -20.5t20.5 -30.5t7.5 -36.5q0 -20 -7.5 -37t-20.5 -30t-30.5 -20t-36.5 -7q-40 0 -67.5 27t-27.5 67zM154 87q0 36 24.5 61.5t64.5 25.5q44 0 68 -30t24 -79q0 -42 -11 -86t-31.5 -85.5t-49 -80.5 t-63.5 -72l-15 15q-8 8 -8 18q0 5 3 10t7 9q10 10 26 30t32 47.5t28.5 60t16.5 69.5q-6 -2 -13.5 -3t-16.5 -1q-38 0 -62 25.5t-24 65.5z" /> +<glyph unicode="<" d="M164 709l768 394v-67q0 -11 -6 -19t-22 -17l-566 -286q-34 -17 -74 -27q43 -9 74 -25l566 -288q15 -8 21.5 -16.5t6.5 -19.5v-67l-768 396v42z" /> +<glyph unicode="=" d="M170 569h847v-75h-847v75zM170 890h847v-76h-847v76z" /> +<glyph unicode=">" d="M257 271v67q0 11 6 20t21 16l567 288q32 16 73 25q-20 5 -38 12t-35 15l-567 286q-27 14 -27 36v67l768 -394v-42z" /> +<glyph unicode="?" horiz-adv-x="758" d="M34 1323q28 28 62.5 53.5t76 45.5t90.5 31.5t107 11.5q72 0 135 -21.5t111 -61.5t76 -97.5t28 -129.5q0 -78 -24 -134t-61 -98.5t-80 -75t-80.5 -60.5t-63.5 -57t-28 -63l-12 -168h-67l-5 175v5q0 42 24.5 73.5t61 61.5t79 60.5t79 69t61 88.5t24.5 119q0 55 -21.5 98.5 t-58.5 74t-85 46t-101 15.5q-68 0 -117 -17.5t-83 -39.5t-53.5 -40t-26.5 -18q-15 0 -23 12zM241 79q0 19 7 36.5t20 30.5t29.5 20.5t37.5 7.5q19 0 36.5 -7.5t30.5 -20.5t20.5 -30.5t7.5 -36.5q0 -20 -7.5 -37t-20.5 -30t-30.5 -20t-36.5 -7q-40 0 -67 27t-27 67z" /> +<glyph unicode="@" horiz-adv-x="1682" d="M1195 193q-90 0 -135.5 47.5t-47.5 136.5q-57 -95 -129.5 -137.5t-156.5 -42.5q-57 0 -99 20t-70 54.5t-41.5 81.5t-13.5 102q0 87 33 174.5t97 157.5t157.5 114t211.5 44q54 0 102 -9t86 -27l-93 -355q-12 -47 -18 -84.5t-6 -67.5q0 -45 11.5 -73t30.5 -44.5t43.5 -22 t50.5 -5.5q58 0 111.5 30.5t94.5 87.5t65 138t24 181q0 152 -49.5 265t-135 188t-199 111.5t-241.5 36.5q-140 0 -266 -54t-220.5 -151.5t-150.5 -232t-56 -295.5q0 -181 58 -319t157.5 -230.5t232 -140t281.5 -47.5q152 0 277.5 35t227.5 101q7 5 18 5q14 0 20 -14l16 -38 q-115 -76 -253 -117t-306 -41q-169 0 -315 54t-254.5 157t-171 253t-62.5 342q0 171 60 317.5t164.5 254t244 168.5t298.5 61q137 0 263 -42.5t222.5 -127t154.5 -209.5t58 -290q0 -112 -29.5 -204t-81.5 -158t-121.5 -102.5t-148.5 -36.5zM744 264q37 0 76.5 12.5t76 44.5 t68 87t53.5 140l82 317q-25 7 -51 11t-61 4q-92 0 -167.5 -37.5t-128 -98t-81.5 -135.5t-29 -152q0 -41 10 -76.5t30.5 -61t50.5 -40.5t71 -15z" /> +<glyph unicode="A" horiz-adv-x="1319" d="M1306 0h-81q-14 0 -23.5 7.5t-14.5 20.5l-171 421h-712l-170 -421q-4 -11 -14 -19.5t-25 -8.5h-80l593 1449h105zM336 526h649l-296 732q-7 17 -14 39.5t-15 47.5q-7 -25 -14 -47t-14 -41z" /> +<glyph unicode="B" horiz-adv-x="1312" d="M215 0v1449h417q124 0 214.5 -24.5t150 -72t88.5 -116.5t29 -156q0 -57 -20 -110.5t-58 -98.5t-92.5 -78t-125.5 -51q171 -26 263.5 -113.5t92.5 -232.5q0 -92 -33 -165.5t-95.5 -125t-153.5 -78.5t-207 -27h-470zM319 694v-610h364q191 0 288.5 82.5t97.5 231.5 q0 69 -26 124t-75 93t-121 58.5t-163 20.5h-365zM319 771h315q100 0 171.5 25.5t117 67.5t67 95.5t21.5 109.5q0 146 -93 221.5t-286 75.5h-313v-595z" /> +<glyph unicode="C" horiz-adv-x="1440" d="M1268 244q10 0 17 -7l41 -44q-45 -48 -98 -86.5t-116 -66t-138.5 -42t-165.5 -14.5q-151 0 -276 52.5t-215 149.5t-140 234t-50 305q0 165 51.5 301t145.5 234t224.5 151.5t288.5 53.5q79 0 144.5 -11.5t122 -33.5t107 -55t98.5 -76l-32 -46q-8 -12 -26 -12 q-9 0 -23.5 10.5t-36.5 26.5t-53 35t-74 35t-99.5 26.5t-127.5 10.5q-132 0 -243 -45.5t-190.5 -130t-124.5 -205t-45 -269.5q0 -154 44.5 -274.5t122 -204t183.5 -128t230 -44.5q78 0 139 10t112 30.5t95 50.5t87 69q5 4 10 7t11 3z" /> +<glyph unicode="D" horiz-adv-x="1556" d="M1435 725q0 -168 -50.5 -302t-141.5 -228.5t-218 -144.5t-282 -50h-528v1449h528q155 0 282 -50t218 -144.5t141.5 -228.5t50.5 -301zM1326 725q0 152 -42 270.5t-118 200.5t-184 125t-239 43h-422v-1279h422q131 0 239 43t184 125t118 200.5t42 271.5z" /> +<glyph unicode="E" horiz-adv-x="1210" d="M1083 1449v-87h-762v-586h634v-85h-634v-604h762v-87h-868v1449h868z" /> +<glyph unicode="F" horiz-adv-x="1171" d="M1083 1449v-87h-762v-609h660v-87h-660v-666h-106v1449h868z" /> +<glyph unicode="G" horiz-adv-x="1532" d="M838 69q75 0 136 7.5t114 23t100.5 37.5t95.5 49v391h-278q-11 0 -19 7t-8 16v57h400v-515q-54 -38 -112.5 -67.5t-125 -49.5t-143 -30.5t-168.5 -10.5q-157 0 -286 52.5t-222 149.5t-144 234t-51 305t51 304.5t145.5 233.5t229 149.5t301.5 52.5q83 0 153 -11t130.5 -33 t113 -54.5t100.5 -74.5l-28 -45q-9 -15 -26 -15q-9 0 -17 4q-15 6 -44.5 28.5t-79 47t-124.5 44t-181 19.5q-141 0 -255 -45t-194 -129t-124 -204.5t-44 -271.5q0 -154 44.5 -275.5t123.5 -206t190.5 -129.5t245.5 -45z" /> +<glyph unicode="H" horiz-adv-x="1548" d="M1333 0h-105v694h-907v-694h-106v1449h106v-676h907v676h105v-1449z" /> +<glyph unicode="I" horiz-adv-x="612" d="M358 0h-105v1449h105v-1449z" /> +<glyph unicode="J" horiz-adv-x="929" d="M715 483q0 -122 -30.5 -215t-86 -156.5t-136 -95.5t-180.5 -32q-46 0 -93.5 7t-97.5 22q2 14 3.5 28.5t2.5 29.5q2 9 8 16t20 7q9 0 22 -3.5t31 -7.5t41 -7.5t53 -3.5q78 0 140.5 24.5t106.5 75t67 128t23 181.5v968h106v-966z" /> +<glyph unicode="K" horiz-adv-x="1351" d="M350 780h86q19 0 33.5 1.5t26.5 6.5t22 12t22 18l584 601q16 16 30 23t35 7h85l-633 -650q-19 -20 -34 -31.5t-34 -18.5q22 -6 39 -19t34 -34l668 -696h-85q-27 0 -38 7.5t-24 20.5l-613 626q-11 11 -20.5 19.5t-21 14t-28 8t-41.5 2.5h-93v-698h-104v1451h104v-671z" /> +<glyph unicode="L" horiz-adv-x="1047" d="M319 89h688v-89h-792v1449h104v-1360z" /> +<glyph unicode="M" horiz-adv-x="1861" d="M911 422q15 -29 27 -62q6 16 12.5 32.5t15.5 30.5l569 1007q8 13 16.5 16t22.5 3h73v-1449h-93v1235q0 27 4 56l-571 -1012q-14 -27 -41 -27h-16q-26 0 -41 27l-586 1013q3 -30 3 -57v-1235h-91v1449h72q14 0 22.5 -3t17.5 -16l584 -1008v0z" /> +<glyph unicode="N" horiz-adv-x="1548" d="M266 1449q14 0 22.5 -3.5t17.5 -15.5l938 -1256q-3 31 -3 59v1216h92v-1449h-50q-24 0 -38 20l-942 1258q3 -31 3 -58v-1220h-91v1449h51v0z" /> +<glyph unicode="O" horiz-adv-x="1633" d="M1507 725q0 -168 -50 -304.5t-141 -233.5t-218 -149.5t-282 -52.5q-153 0 -279.5 52.5t-218 149.5t-142 233.5t-50.5 304.5q0 167 50.5 303.5t142 233.5t218.5 150t279 53q155 0 282 -52.5t218 -150t141 -234t50 -303.5zM1399 725q0 152 -42 272.5t-118.5 204.5 t-184 128.5t-238.5 44.5q-129 0 -236 -44.5t-184.5 -128.5t-120 -204.5t-42.5 -272.5q0 -153 42.5 -273t120 -204t184.5 -128t236 -44q131 0 238.5 44t184 128t118.5 204t42 273z" /> +<glyph unicode="P" horiz-adv-x="1215" d="M350 584v-584h-104v1449h374q255 0 384.5 -111.5t129.5 -318.5q0 -95 -35.5 -175t-102 -138t-162 -90t-214.5 -32h-270zM350 668h270q96 0 171.5 26.5t128.5 73.5t81 111t28 140q0 167 -103 257t-306 90h-270v-698z" /> +<glyph unicode="Q" horiz-adv-x="1633" d="M1507 725q0 -110 -22 -206.5t-63 -178t-99.5 -146t-132.5 -110.5l377 -403h-88q-20 0 -37 5.5t-29 19.5l-309 334q-65 -27 -136.5 -41t-151.5 -14q-153 0 -279.5 52.5t-218 149.5t-142 233.5t-50.5 304.5q0 167 50.5 303.5t142 233.5t218.5 150t279 53q155 0 282 -52.5 t218 -150t141 -234t50 -303.5zM1399 725q0 152 -42 272.5t-118.5 204.5t-184 128.5t-238.5 44.5q-129 0 -236 -44.5t-184.5 -128.5t-120 -204.5t-42.5 -272.5q0 -153 42.5 -273t120 -204t184.5 -128t236 -44q131 0 238.5 44t184 128t118.5 204t42 273z" /> +<glyph unicode="R" horiz-adv-x="1292" d="M350 655v-655h-104v1449h369q251 0 375 -97t124 -284q0 -83 -28.5 -151.5t-82.5 -120.5t-129.5 -85t-171.5 -43q25 -15 44 -41l499 -627h-91q-16 0 -28 6t-23 21l-464 587q-17 23 -37 32t-62 9h-190zM350 733h252q96 0 172.5 23t129 66t80.5 103.5t28 136.5 q0 155 -101.5 229.5t-295.5 74.5h-265v-633z" /> +<glyph unicode="S" horiz-adv-x="1070" d="M915 1273q-9 -17 -26 -18q-13 0 -34 19t-57 42t-90 42.5t-133 19.5t-138.5 -22.5t-100 -61.5t-61.5 -90t-21 -107q0 -74 31 -122t82.5 -82t116.5 -57t133.5 -45.5t133.5 -49.5t116.5 -68t82.5 -101t31 -149q0 -91 -31 -171.5t-90.5 -140t-145.5 -93.5t-197 -34 q-143 0 -246.5 50.5t-181.5 138.5l29 45q12 15 28 15q9 0 23.5 -12t35 -30t49.5 -39t66.5 -39t87 -30t111.5 -12q86 0 153.5 26t114.5 71t71.5 107t24.5 133q0 77 -31.5 126.5t-82.5 82.5t-116 55.5t-133.5 44t-133.5 48.5t-116.5 68t-82.5 103t-31 156q0 73 27.5 140 t80.5 119t131.5 83t178.5 31q113 0 202.5 -35.5t163.5 -109.5z" /> +<glyph unicode="T" horiz-adv-x="1197" d="M1161 1449v-89h-509v-1360h-104v1360h-512v89h1125z" /> +<glyph unicode="U" horiz-adv-x="1502" d="M751 75q104 0 186.5 36t140 100.5t87.5 152.5t30 189v896h104v-896q0 -120 -37.5 -224t-109 -181t-173 -121t-228.5 -44t-229 44t-173 121t-109 181t-38 224v896h105v-895q0 -101 30.5 -188.5t87 -152.5t139.5 -101.5t187 -36.5z" /> +<glyph unicode="V" horiz-adv-x="1319" d="M15 1449h83q14 0 23.5 -7.5t14.5 -20.5l494 -1202q19 -47 32 -100q11 55 29 100l493 1202q5 11 14.5 19.5t24.5 8.5h82l-598 -1449h-94z" /> +<glyph unicode="W" horiz-adv-x="2021" d="M17 1449h87q30 0 38 -28l366 -1191q6 -20 10.5 -43.5t9.5 -49.5q5 26 10.5 49.5t12.5 43.5l410 1191q4 11 14 19.5t24 8.5h29q14 0 23.5 -7.5t14.5 -20.5l410 -1191q7 -20 12.5 -42.5t10.5 -48.5q5 25 9 48t11 43l365 1191q3 11 14 19.5t25 8.5h80l-456 -1449h-94 l-428 1257q-8 25 -14 53q-6 -28 -15 -53l-429 -1257h-93z" /> +<glyph unicode="X" horiz-adv-x="1227" d="M541 743l-500 706h103q14 0 21 -6t12 -15l440 -634q3 8 7 15.5t9 15.5l425 602q6 8 13 15t18 7h100l-501 -700l521 -749h-103q-14 0 -22.5 8.5t-13.5 17.5l-457 667q-4 -15 -14 -29l-448 -638q-7 -9 -16.5 -17.5t-21.5 -8.5h-96z" /> +<glyph unicode="Y" horiz-adv-x="1227" d="M667 598v-598h-106v598l-535 851h91q14 0 22.5 -6.5t17.5 -19.5l414 -665q14 -24 24.5 -46t18.5 -44q8 23 18.5 44.5t24.5 45.5l414 665q6 11 15.5 18.5t23.5 7.5h92z" /> +<glyph unicode="Z" horiz-adv-x="1296" d="M1191 1449v-36q0 -22 -14 -42l-920 -1284h926v-87h-1065v38q0 19 12 37l922 1287h-908v87h1047z" /> +<glyph unicode="[" horiz-adv-x="614" d="M179 -270v1823h326v-36q0 -13 -9 -21.5t-23 -8.5h-211v-1691h211q14 0 23 -8t9 -21v-37h-326z" /> +<glyph unicode="\" horiz-adv-x="732" d="M-8 1490h42q40 0 55 -38l637 -1538h-40q-17 0 -33.5 9.5t-24.5 30.5z" /> +<glyph unicode="]" horiz-adv-x="614" d="M110 -233q0 13 8 21t22 8h211v1691h-211q-14 0 -22 8t-8 22v36h324v-1823h-324v37z" /> +<glyph unicode="^" d="M557 1449h61l350 -630h-70q-11 0 -20 7t-14 17l-247 446q-9 17 -16 32.5t-12 32.5q-5 -16 -12 -32t-16 -33l-246 -446q-5 -8 -13 -16t-21 -8h-73z" /> +<glyph unicode="_" horiz-adv-x="806" d="M807 -210v-70h-807v70h807z" /> +<glyph unicode="`" horiz-adv-x="599" d="M182 1465q25 0 37 -7t24 -25l160 -244h-55q-12 0 -21 3.5t-17 13.5l-222 259h94z" /> +<glyph unicode="a" horiz-adv-x="996" d="M816 0q-31 0 -38 29l-14 130q-42 -41 -83.5 -74t-86.5 -55.5t-97.5 -34t-114.5 -11.5q-52 0 -101.5 15t-87 47t-60.5 81.5t-23 119.5q0 65 36.5 120t115 96t202 65.5t296.5 28.5v107q0 141 -61 217t-181 76q-74 0 -125.5 -20.5t-87.5 -45t-58.5 -45t-37.5 -20.5 q-20 0 -31 19l-17 29q80 80 168 121t199 41q82 0 143.5 -26t102 -74.5t61 -117.5t20.5 -154v-664h-39zM407 54q59 0 108.5 13t92 36t79.5 54.5t73 68.5v266q-145 -4 -250.5 -22t-173.5 -49t-100 -73.5t-32 -96.5q0 -51 17 -88.5t44.5 -61.5t64.5 -35.5t77 -11.5z" /> +<glyph unicode="b" horiz-adv-x="1118" d="M176 0v1490h98v-649q68 90 157 142t201 52q187 0 292 -129.5t105 -389.5q0 -112 -29 -208.5t-86 -167.5t-139.5 -112t-189.5 -41q-106 0 -183 41.5t-133 122.5l-6 -125q-3 -26 -27 -26h-60zM604 957q-101 0 -183 -52t-147 -145v-538q58 -88 129 -123.5t163 -35.5 q90 0 158 33t113.5 93t68.5 143.5t23 183.5q0 227 -84 334t-241 107z" /> +<glyph unicode="c" horiz-adv-x="931" d="M837 883q-5 -5 -10 -9t-13 -4q-10 0 -28 14t-47.5 30.5t-74 30t-108.5 13.5q-88 0 -156 -31t-114.5 -89.5t-71.5 -141.5t-25 -186q0 -108 25.5 -190.5t71.5 -139.5t111.5 -87t145.5 -30q74 0 123.5 17.5t81.5 38t51 38t30 17.5q13 0 21 -10l27 -33q-24 -31 -60 -57.5 t-81 -46t-97.5 -30t-110.5 -10.5q-97 0 -177.5 35t-138 102t-90 164.5t-32.5 221.5q0 117 31 213t89.5 165.5t144 108t196.5 38.5q99 0 176.5 -31.5t134.5 -85.5z" /> +<glyph unicode="d" horiz-adv-x="1118" d="M888 0q-26 0 -30 27l-10 160q-68 -92 -158.5 -146t-203.5 -54q-187 0 -292 130t-105 390q0 112 29 208.5t86 167.5t139.5 112t190.5 41q103 0 178.5 -38.5t131.5 -111.5v604h98v-1490h-54zM514 66q101 0 183 52t147 145v538q-59 87 -130.5 122.5t-161.5 35.5 t-157.5 -32.5t-113 -92.5t-69 -143.5t-23.5 -183.5q0 -227 84 -334t241 -107z" /> +<glyph unicode="e" horiz-adv-x="1046" d="M550 1035q86 0 159 -29.5t127 -86.5t84 -140t30 -190q0 -23 -6.5 -31t-20.5 -8h-737v-20q0 -115 27 -201.5t76 -145.5t118.5 -88.5t155.5 -29.5q77 0 133.5 16.5t94.5 37.5t60.5 38t33.5 17q13 0 20 -10l27 -33q-25 -31 -65.5 -57.5t-90 -45.5t-106.5 -30t-114 -11 q-104 0 -190 36t-147.5 106t-95 170.5t-33.5 230.5q0 110 31.5 202.5t90 159.5t144 105t194.5 38zM551 963q-79 0 -141.5 -25t-108 -71t-73.5 -110.5t-38 -144.5h672q0 82 -22.5 147t-63.5 110t-98 69.5t-127 24.5z" /> +<glyph unicode="f" horiz-adv-x="659" d="M204 0v912l-144 10q-30 2 -29 25v40h173v129q0 87 22.5 153t63.5 110t98.5 66t127.5 22q32 0 64 -5.5t57 -15.5l-3 -47q-1 -14 -20 -15q-12 0 -33 3.5t-52 3.5q-50 0 -92.5 -15t-73 -48t-47.5 -85.5t-17 -129.5v-126h331v-73h-329v-914h-97z" /> +<glyph unicode="g" horiz-adv-x="1033" d="M502 1036q67 0 123.5 -16t101.5 -46h261v-34q0 -26 -29 -28l-154 -11q29 -39 44 -87.5t15 -103.5q0 -74 -26.5 -134t-74 -102.5t-114 -66t-147.5 -23.5q-88 0 -160 27q-43 -25 -67.5 -59t-24.5 -65q0 -44 30.5 -67.5t81.5 -34.5t116 -14t132 -6.5t132 -13t115.5 -32.5 t81.5 -64.5t31 -109.5q0 -63 -32 -122t-92 -104t-145 -72t-190 -27q-108 0 -188.5 22t-135.5 59.5t-82.5 86.5t-27.5 104q0 81 53 139.5t146 90.5q-51 17 -81 50t-30 91q0 22 8 45.5t24.5 46.5t39.5 43.5t54 36.5q-73 42 -113.5 111.5t-40.5 163.5q0 74 26 133.5t74 102.5 t115.5 66.5t149.5 23.5zM880 -69q0 48 -25.5 77.5t-67.5 46t-96.5 23t-114.5 9.5t-120.5 6t-112.5 12q-39 -15 -72 -35t-57 -45t-37 -55t-13 -66q0 -45 23 -83.5t67.5 -66.5t109 -44.5t148.5 -16.5q78 0 145 17.5t116.5 49t78 75.5t28.5 96zM502 451q66 0 117 18.5 t85.5 52.5t52.5 81t18 105q0 57 -18.5 104.5t-53.5 81.5t-86 52.5t-115 18.5q-65 0 -116 -18.5t-86.5 -52.5t-54 -81.5t-18.5 -104.5t18.5 -104.5t54 -81.5t86.5 -52.5t116 -18.5z" /> +<glyph unicode="h" horiz-adv-x="1107" d="M166 0v1490h97v-645q71 87 161.5 138.5t203.5 51.5q84 0 148 -26.5t106 -76.5t63.5 -121t21.5 -160v-651h-98v651q0 143 -65.5 224.5t-200.5 81.5q-100 0 -186 -51.5t-154 -141.5v-764h-97z" /> +<glyph unicode="i" horiz-adv-x="486" d="M292 1019v-1019h-97v1019h97zM335 1370q0 -18 -8 -34t-20 -28.5t-28.5 -19.5t-34.5 -7t-34.5 7t-29 19.5t-19.5 28.5t-7 34t7 35t19.5 29.5t28.5 19.5t35 7q18 0 34.5 -7t28.5 -19.5t20 -29.5t8 -35z" /> +<glyph unicode="j" horiz-adv-x="482" d="M292 1019v-1149q0 -53 -15.5 -98t-45.5 -78.5t-75.5 -52.5t-107.5 -19q-30 0 -53.5 5t-45.5 17l5 49q1 12 14 12q8 0 23 -4t41 -4q83 0 123 45t40 128v1149h97zM335 1370q0 -18 -8 -34t-20 -28.5t-28.5 -19.5t-34.5 -7t-34.5 7t-29 19.5t-19.5 28.5t-7 34t7 35t19.5 29.5 t28.5 19.5t35 7q18 0 34.5 -7t28.5 -19.5t20 -29.5t8 -35z" /> +<glyph unicode="k" horiz-adv-x="1007" d="M274 1490v-908h48q14 0 26.5 4t28.5 19l408 388q11 11 23 18.5t31 7.5h86l-450 -427q-10 -10 -19.5 -19t-20.5 -15q16 -8 27.5 -19.5t23.5 -24.5l472 -514h-85q-14 0 -25 5.5t-23 18.5l-428 458q-17 18 -31.5 25t-44.5 7h-47v-514h-98v1490h98z" /> +<glyph unicode="l" horiz-adv-x="486" d="M292 1490v-1490h-97v1490h97z" /> +<glyph unicode="m" horiz-adv-x="1629" d="M166 0v1019h53q27 0 31 -26l9 -147q30 42 63.5 76.5t72 60t82 39t91.5 13.5q112 0 178.5 -65t90.5 -180q18 63 51.5 109t76.5 76.5t93.5 45t103.5 14.5q76 0 136.5 -25t103 -74t65 -121t22.5 -164v-651h-98v651q0 150 -64.5 228t-184.5 78q-53 0 -102 -19t-86.5 -57.5 t-59.5 -96t-22 -133.5v-651h-97v651q0 148 -59.5 227t-172.5 79q-83 0 -154 -49.5t-126 -137.5v-770h-97z" /> +<glyph unicode="n" horiz-adv-x="1107" d="M166 0v1019h53q27 0 31 -26l9 -153q70 88 162.5 141.5t206.5 53.5q84 0 148 -26.5t106 -76.5t63.5 -121t21.5 -160v-651h-98v651q0 143 -65.5 224.5t-200.5 81.5q-100 0 -186 -51.5t-154 -141.5v-764h-97z" /> +<glyph unicode="o" horiz-adv-x="1107" d="M554 1035q110 0 196.5 -37t145.5 -106t90.5 -165.5t31.5 -216.5t-31.5 -216t-90.5 -165t-145.5 -105.5t-196.5 -36.5t-196.5 36.5t-146 105.5t-91 165t-31.5 216t31.5 216.5t91 165.5t146 106t196.5 37zM554 63q91 0 159 31.5t113.5 90t68.5 141t23 184.5q0 101 -23 184 t-68.5 142t-113.5 90.5t-159 31.5t-159 -31.5t-113.5 -90.5t-69 -142t-23.5 -184q0 -102 23.5 -184.5t69 -141t113.5 -90t159 -31.5z" /> +<glyph unicode="p" horiz-adv-x="1095" d="M166 -360v1379h53q13 0 21.5 -5.5t9.5 -20.5l9 -157q68 92 158.5 146t203.5 54q188 0 292.5 -130t104.5 -390q0 -112 -29.5 -208.5t-85.5 -167.5t-138.5 -112t-190.5 -41q-104 0 -180 37.5t-131 112.5v-497h-97zM593 957q-101 0 -183.5 -52.5t-146.5 -146.5v-535 q58 -88 129.5 -124t162.5 -36q90 0 157.5 33t113 93t69 143.5t23.5 183.5q0 227 -83.5 334t-241.5 107z" /> +<glyph unicode="q" horiz-adv-x="1118" d="M942 1019v-1379h-98v541q-68 -90 -157.5 -142t-200.5 -52q-187 0 -292 130t-105 390q0 112 29 208.5t86 167.5t139.5 112t190.5 41q105 0 182.5 -40t132.5 -117l9 114q1 26 30 26h54zM514 66q101 0 183 52t147 145v539q-55 84 -128 120.5t-164 36.5q-90 0 -157.5 -32.5 t-113 -92.5t-69 -143.5t-23.5 -183.5q0 -227 84 -334t241 -107z" /> +<glyph unicode="r" horiz-adv-x="813" d="M166 0v1019h51q17 0 25 -7t9 -25l8 -215q49 124 131 194t202 70q46 0 85 -9.5t74 -28.5l-14 -67q-3 -16 -20 -17q-6 0 -17.5 4.5t-28.5 9.5t-41.5 9t-56.5 4q-116 0 -190 -71.5t-120 -206.5v-663h-97z" /> +<glyph unicode="s" horiz-adv-x="880" d="M727 893q-7 -14 -22 -14q-11 0 -29.5 12.5t-47.5 28.5t-71.5 29t-103.5 13q-55 0 -101 -16t-78 -42.5t-50 -62t-18 -74.5q0 -48 24.5 -80t64.5 -54.5t90.5 -38.5t104 -32.5t104 -36.5t90.5 -50t64.5 -73t24.5 -104q0 -67 -24 -124t-69.5 -99t-112 -66.5t-151.5 -24.5 q-108 0 -185.5 34t-139.5 90l24 34q5 8 11 12.5t17 4.5q13 0 33 -16.5t51 -35.5t77.5 -35.5t115.5 -16.5q65 0 114 18t81.5 49t49.5 72.5t17 87.5q0 51 -24.5 84.5t-64.5 57t-90.5 40t-104.5 33t-104.5 36t-90.5 49t-64.5 72t-24.5 106.5q0 54 23.5 104t67 88t106 60.5 t140.5 22.5q93 0 165 -26.5t133 -81.5z" /> +<glyph unicode="t" horiz-adv-x="730" d="M444 -16q-103 0 -161 57t-58 177v696h-146q-11 0 -18.5 6.5t-7.5 17.5v38l174 12l25 365q1 9 7.5 16t18.5 7h46v-389h320v-73h-320v-691q0 -42 10.5 -72t29.5 -49.5t44.5 -29t55.5 -9.5q37 0 63.5 11t46 24t31.5 23.5t20 10.5t16 -10l27 -43q-39 -43 -99 -69t-125 -26z " /> +<glyph unicode="u" horiz-adv-x="1107" d="M239 1019v-651q0 -143 65.5 -225t199.5 -82q99 0 185 51t155 141v766h98v-1019h-54q-29 0 -30 27l-9 151q-71 -88 -163.5 -141t-206.5 -53q-85 0 -148.5 26.5t-105.5 76.5t-63.5 121t-21.5 160v651h99z" /> +<glyph unicode="v" horiz-adv-x="997" d="M542 0h-86l-430 1019h76q14 0 23 -7.5t13 -17.5l336 -804q10 -24 15.5 -45t10.5 -43q5 22 10.5 44t14.5 44l338 804q5 11 14 18t21 7h74z" /> +<glyph unicode="w" horiz-adv-x="1509" d="M23 1019h74q14 0 23.5 -7.5t12.5 -17.5l257 -804q7 -24 11.5 -45t8.5 -43q5 22 11 43.5t14 44.5l274 811q7 23 28 23h40q23 0 30 -23l269 -811q15 -46 25 -89q4 22 8.5 44t12.5 45l258 804q8 25 35 25h72l-341 -1019h-72q-16 0 -23 22l-280 827q-5 15 -9 30.5t-7 30.5 q-3 -15 -7 -30.5t-9 -30.5l-282 -827q-6 -22 -25 -22h-68z" /> +<glyph unicode="x" horiz-adv-x="943" d="M404 521l-354 498h93q14 0 21 -6t12 -15l299 -432q4 17 18 37l279 394q5 9 13 15.5t18 6.5h90l-356 -493l370 -526h-93q-14 0 -22.5 8.5t-13.5 17.5l-309 450q-5 -20 -15 -35l-297 -417q-7 -9 -15 -16.5t-19 -7.5h-87z" /> +<glyph unicode="y" horiz-adv-x="997" d="M388 -328q-6 -14 -16 -23t-28 -9h-70l180 398l-431 981h80q15 0 24 -7.5t13 -17.5l343 -792q6 -15 11 -31t9 -33q5 16 10.5 32t11.5 32l339 792q5 11 14.5 18t20.5 7h75z" /> +<glyph unicode="z" horiz-adv-x="925" d="M846 978q0 -22 -15 -39l-637 -862h626v-77h-744v39q0 17 15 38l640 865h-621v77h736v-41z" /> +<glyph unicode="{" horiz-adv-x="614" d="M224 456q0 34 -11 62t-32 49t-51 32t-65 11v63q36 0 65.5 11t50.5 32t32 49.5t11 61.5q0 56 -9.5 109.5t-21 107t-21 107t-9.5 111.5q0 62 19.5 115.5t56 92.5t90.5 61t122 22h56v-43q0 -11 -9 -17t-17 -6h-34q-44 0 -80 -15.5t-62 -44t-41 -69.5t-15 -91q0 -58 9 -113.5 t20.5 -109.5t20.5 -107.5t9 -108.5q0 -38 -12.5 -69.5t-33.5 -55t-48.5 -39.5t-56.5 -23q30 -6 57 -22t48 -40t33.5 -55t12.5 -69q0 -54 -9 -108t-20.5 -108.5t-20.5 -109.5t-9 -113q0 -50 15 -91t41 -69.5t62 -44t80 -15.5h34q8 0 17 -6t9 -17v-43h-56q-68 0 -122 22 t-90.5 61.5t-56 92.5t-19.5 116q0 57 9.5 110.5t21 107t21 107t9.5 109.5z" /> +<glyph unicode="|" horiz-adv-x="614" d="M268 1553h77v-1913h-77v1913z" /> +<glyph unicode="}" horiz-adv-x="614" d="M390 456q0 -56 10 -109.5t21 -107t21 -107t10 -110.5q0 -62 -19.5 -115.5t-56.5 -93t-91 -61.5t-121 -22h-56v43q0 11 8 17t17 6h34q44 0 80.5 15.5t62.5 44t41 69.5t15 91q0 57 -9.5 112.5t-20.5 110t-20.5 108t-9.5 108.5q0 38 12.5 69t33.5 55t48 40t57 22 q-30 7 -57 23t-48 39.5t-33.5 55.5t-12.5 69q0 54 9.5 108t20.5 108t20.5 109t9.5 114q0 50 -15 91t-41 69.5t-62.5 44t-80.5 15.5h-34q-9 0 -17 6t-8 17v43h56q68 0 121.5 -22t90.5 -61t56.5 -92.5t19.5 -115.5q0 -57 -10 -111t-21 -107.5t-21 -106.5t-10 -110 q0 -34 11.5 -62t32.5 -49t50 -32t65 -11v-63q-36 0 -65 -11t-50 -32t-32.5 -49t-11.5 -62z" /> +<glyph unicode="~" d="M798 581q38 0 69 13.5t52.5 38t33.5 58.5t12 74h79q0 -56 -16 -104.5t-47 -84t-76 -56t-102 -20.5q-52 0 -107 20t-108.5 44.5t-104 44.5t-94.5 20q-39 0 -69 -14t-51.5 -38.5t-33.5 -58.5t-13 -74h-79q0 56 16.5 104.5t47.5 84.5t75.5 56.5t101.5 20.5q53 0 108 -20 t108 -44.5t103.5 -44.5t94.5 -20z" /> +<glyph unicode="¡" horiz-adv-x="660" d="M286 -360v563q0 46 1 87t2.5 83.5t4.5 89.5t6 104h67q3 -57 6 -104t4.5 -89.5t2.5 -83.5t1 -87v-563h-95zM236 941q0 40 27 67t67 27q19 0 36.5 -7t30.5 -20t20.5 -30t7.5 -37t-7.5 -37.5t-20.5 -30.5t-30.5 -20.5t-36.5 -7.5q-40 0 -67 28t-27 68z" /> +<glyph unicode="¢" d="M603 -11q-98 6 -179 44t-139.5 104.5t-90 160t-31.5 212.5q0 115 32.5 210.5t95.5 164.5t155 108.5t209 41.5l11 210q1 13 8.5 23t21.5 10h37l-12 -246q89 -8 158 -37.5t123 -76.5l-24 -34q-5 -5 -9.5 -9t-13.5 -4t-26 12t-45 27t-69 28.5t-98 18.5l-44 -895 q77 2 129 19.5t86.5 37.5t54.5 36.5t31 16.5q8 0 12 -2t8 -7l25 -32q-24 -30 -59 -55t-80 -44t-98.5 -30.5t-112.5 -13.5l-11 -215q-1 -13 -8.5 -22.5t-21.5 -9.5h-37zM259 510q0 -100 24 -179.5t69.5 -136.5t109.5 -89.5t144 -39.5l45 893q-94 -3 -167 -35t-123 -90 t-76 -140t-26 -183z" /> +<glyph unicode="£" d="M69 680q0 15 9.5 25.5t26.5 10.5h169v301q0 95 27 177t79.5 142t132 94t183.5 34q78 0 137.5 -19t104 -51.5t76.5 -76.5t54 -93l-39 -23q-9 -5 -22 -5q-17 0 -31 17q-20 32 -43.5 62.5t-55 54t-75.5 37t-106 13.5q-80 0 -139.5 -26.5t-100.5 -74t-61.5 -114.5t-20.5 -148 v-301h490v-40q0 -11 -8.5 -20t-21.5 -9h-460v-311q0 -91 -37 -153t-101 -106q23 4 44.5 6t45.5 2h806v-41q0 -15 -12.5 -29.5t-33.5 -14.5h-993v67q35 13 68 33.5t58.5 50t40 69.5t14.5 93v334h-205v33z" /> +<glyph unicode="¤" d="M243 687q0 63 20.5 119t57.5 102l-158 158l50 51l158 -158q46 37 102 58.5t121 21.5q63 0 119 -21t102 -57l158 157l50 -51l-157 -157q37 -46 58.5 -102t21.5 -121q0 -63 -21 -119t-58 -102l158 -158l-51 -51l-158 158q-46 -37 -102.5 -58t-119.5 -21t-119 20.5 t-102 57.5l-159 -158l-50 51l158 157q-37 46 -58 102t-21 121zM316 687q0 -57 22 -107.5t59.5 -87.5t88.5 -59t108 -22t108 22t88.5 59t59.5 87.5t22 107.5t-22 108t-59.5 89t-88.5 60t-108 22t-108 -22t-88.5 -60t-59.5 -89t-22 -108z" /> +<glyph unicode="¥" d="M165 631h354l-432 818h81q27 0 40 -26l354 -681q8 -20 15 -38t12 -35q9 34 26 73l354 681q5 11 14.5 18.5t24.5 7.5h82l-434 -818h356v-60h-375v-120h375v-60h-375v-391h-97v391h-375v60h375v120h-375v60z" /> +<glyph unicode="¦" horiz-adv-x="614" d="M268 1553h77v-796h-77v796zM268 435h77v-795h-77v795z" /> +<glyph unicode="§" horiz-adv-x="1026" d="M827 1322q-7 -13 -22 -13q-11 0 -29 12.5t-47.5 28t-72 28.5t-103.5 13q-57 0 -104 -16t-79.5 -43t-50.5 -63t-18 -76q0 -47 25.5 -82t67.5 -63t95.5 -51.5t109 -48t109 -53t95.5 -64t67.5 -83.5t25.5 -111q0 -85 -43 -148t-127 -99q55 -39 89.5 -89t34.5 -121 q0 -67 -24 -124t-69.5 -99t-112 -66.5t-151.5 -24.5q-108 0 -186 34t-139 90l23 35q5 8 11.5 12t17.5 4q13 0 32.5 -16.5t51.5 -35.5t79 -35t117 -16q63 0 112.5 17t83 48t51 72.5t17.5 89.5q0 52 -26.5 91t-70.5 69t-100 54.5t-114 49.5t-113.5 51.5t-99.5 62t-71 81 t-27 107.5q0 79 47 142t152 101q-56 38 -91.5 88.5t-35.5 126.5q0 55 23.5 104.5t67 88t106 61t140.5 22.5q93 0 165 -27t133 -81zM229 744q0 -42 20 -75t54.5 -60t79.5 -50t94 -44.5t100 -43.5t97 -48q73 33 104.5 82t31.5 111q0 46 -18.5 82t-49.5 64.5t-72.5 51 t-87.5 43.5t-94 41t-92 43q-91 -39 -129 -87.5t-38 -109.5z" /> +<glyph unicode="¨" horiz-adv-x="599" d="M208 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5t-31 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t26.5 18.5t31.5 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5zM559 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5q-17 0 -32 6.5t-27 18t-18.5 26 t-6.5 31.5t6.5 32.5t18.5 27t27 18.5t32 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5z" /> +<glyph unicode="©" horiz-adv-x="1651" d="M1106 424q12 10 23 10q5 0 9.5 -2t6.5 -4l32 -32q-60 -60 -142.5 -96t-200.5 -36q-98 0 -181 33.5t-141.5 94t-91.5 145.5t-33 189q0 102 34.5 187t96 146t146.5 95t186 34q53 0 97.5 -8t82.5 -22.5t71 -35.5t64 -49l-24 -34q-7 -11 -21 -11q-10 0 -27 13.5t-46.5 29 t-76 29t-116.5 13.5q-85 0 -154.5 -27t-119.5 -77.5t-77 -122t-27 -160.5q0 -92 27 -164t75.5 -121.5t114.5 -75.5t145 -26q87 0 150 21t118 64zM87 725q0 101 26.5 196t74.5 177t115.5 149.5t149.5 115.5t176 74.5t196 26.5t196.5 -26.5t177 -74.5t150 -115.5t115 -149.5 t74.5 -177t27 -196q0 -102 -27 -196.5t-74.5 -176.5t-115 -149.5t-150 -115.5t-176.5 -74.5t-197 -26.5q-101 0 -195.5 26.5t-176.5 74.5t-149.5 115.5t-115.5 149.5t-74.5 176.5t-26.5 196.5zM147 725q0 -142 53 -266.5t145 -217.5t215.5 -146t264.5 -53t265.5 53t217 146 t145.5 217.5t53 266.5t-53 266.5t-145.5 218t-216.5 147t-266 53.5q-141 0 -264.5 -53.5t-215.5 -147t-145 -218t-53 -266.5z" /> +<glyph unicode="ª" horiz-adv-x="687" d="M579 859h-33q-11 0 -16.5 4t-10.5 16l-10 69q-26 -24 -51 -42t-52 -30.5t-58.5 -19t-67.5 -6.5q-34 0 -65 9t-54.5 28t-37.5 48.5t-14 69.5q0 37 21.5 70t69 58t123 41t183.5 18v52q0 78 -35 118.5t-110 40.5q-44 0 -74 -11.5t-50.5 -24t-34.5 -24t-25 -11.5 q-15 0 -22 14l-13 23q49 49 103.5 72t123.5 23q103 0 156.5 -59.5t53.5 -160.5v-385zM299 904q34 0 62.5 7.5t53.5 20t47 30t44 37.5v142q-172 -5 -249.5 -40t-77.5 -92q0 -28 10 -48t26.5 -33t38 -18.5t45.5 -5.5z" /> +<glyph unicode="«" horiz-adv-x="894" d="M159 525v14l247 387l30 -16q16 -10 17 -25q0 -12 -8 -24l-187 -300q-13 -20 -22 -30q10 -8 22 -28l187 -301q7 -11 8 -24q0 -15 -17 -25l-30 -16zM420 525v14l247 387l30 -16q16 -10 17 -25q0 -12 -7 -24l-188 -300q-13 -20 -22 -30q10 -8 22 -28l188 -301q7 -11 7 -24 q0 -15 -17 -25l-30 -16z" /> +<glyph unicode="¬" d="M168 724h849v-377h-84v302h-765v75z" /> +<glyph unicode="­" horiz-adv-x="680" d="M102 649h477v-83h-477v83z" /> +<glyph unicode="®" horiz-adv-x="1651" d="M87 725q0 101 26.5 196t74.5 177t115.5 149.5t149.5 115.5t176 74.5t196 26.5t196.5 -26.5t177 -74.5t150 -115.5t115 -149.5t74.5 -177t27 -196q0 -102 -27 -196.5t-74.5 -176.5t-115 -149.5t-150 -115.5t-176.5 -74.5t-197 -26.5q-101 0 -195.5 26.5t-176.5 74.5 t-149.5 115.5t-115.5 149.5t-74.5 176.5t-26.5 196.5zM147 725q0 -142 53 -266.5t145 -217.5t215.5 -146t264.5 -53t265.5 53t217 146t145.5 217.5t53 266.5t-53 266.5t-145.5 218t-216.5 147t-266 53.5q-141 0 -264.5 -53.5t-215.5 -147t-145 -218t-53 -266.5zM639 673 v-401h-87v907h253q157 0 237 -59t80 -180q0 -102 -66 -167.5t-186 -82.5q12 -7 22 -16.5t19 -24.5l292 -377h-82q-10 0 -17.5 3.5t-13.5 13.5l-277 359q-8 11 -21 18t-40 7h-113zM639 738h152q124 0 184.5 50t60.5 143q0 94 -55 137t-176 43h-166v-373z" /> +<glyph unicode="¯" horiz-adv-x="599" d="M20 1349h559v-67h-559v67z" /> +<glyph unicode="°" horiz-adv-x="804" d="M93 1161q0 63 24 119t65.5 97.5t98 65t120.5 23.5q65 0 121.5 -23.5t98 -65t65.5 -97t24 -119.5q0 -63 -24 -118.5t-65.5 -97t-98 -65.5t-121.5 -24t-121 24t-97.5 65.5t-65.5 97t-24 118.5zM166 1161q0 -49 18.5 -92t50 -74.5t74.5 -50t92 -18.5t92.5 18.5t74.5 50 t49.5 74.5t18.5 92t-18.5 92t-49.5 75.5t-74 51t-93 18.5q-49 0 -92 -18.5t-74.5 -51t-50 -75.5t-18.5 -92z" /> +<glyph unicode="±" d="M632 1181v-416h441v-75h-441v-411h-80v411h-440v75h440v416h80zM112 157h961v-75h-961v75z" /> +<glyph unicode="²" horiz-adv-x="677" d="M350 1662q45 0 85 -13.5t69.5 -38.5t46 -62.5t16.5 -86.5q0 -41 -12.5 -76t-34 -67.5t-50.5 -62.5t-59 -61l-212 -215q19 5 39 7.5t41 2.5h281q25 0 25 -24v-43h-486v24q0 8 3 16.5t12 15.5l240 243q29 29 54 57.5t44 57.5t30 59.5t11 63.5q0 36 -12 62.5t-32 44 t-46.5 26.5t-55.5 9q-63 0 -100 -36.5t-58 -93.5q-7 -19 -27 -19q-2 0 -8.5 0.5t-9.5 1.5l-30 5q14 98 77.5 150.5t158.5 52.5z" /> +<glyph unicode="³" horiz-adv-x="677" d="M356 1662q45 0 84 -13t67.5 -37t44.5 -58t16 -78q0 -68 -36.5 -112.5t-98.5 -64.5q75 -17 114.5 -60t39.5 -111q0 -49 -19 -88.5t-52 -67.5t-77 -43.5t-93 -15.5q-61 0 -102.5 15.5t-70 41.5t-45 60.5t-28.5 71.5l31 13q4 2 7.5 3t8.5 1q8 0 15.5 -4t10.5 -12l3 -8 q4 -12 14 -33t28.5 -39.5t48.5 -33t76 -14.5q42 0 74 13.5t52.5 35.5t31.5 48.5t11 51.5q0 34 -11 60.5t-34.5 45.5t-61 29.5t-92.5 10.5v50q93 2 139 40.5t46 102.5q0 35 -11.5 60.5t-31.5 42.5t-46 25t-56 8q-65 0 -102 -33t-55 -93q-6 -20 -25 -21q-7 0 -23 3l-25 4 q14 98 77 150.5t156 52.5z" /> +<glyph unicode="´" horiz-adv-x="599" d="M529 1465l-221 -259q-8 -10 -16.5 -13.5t-21.5 -3.5h-58l161 244q11 18 23.5 25t36.5 7h96z" /> +<glyph unicode="µ" horiz-adv-x="1107" d="M239 1019v-651q0 -143 65.5 -225t199.5 -82q99 0 185 51t155 141v766h98v-1019h-54q-29 0 -30 27l-9 151q-72 -90 -159 -137t-191 -47q-100 0 -168 39.5t-106 112.5q5 -44 6.5 -89t1.5 -82v-335h-49q-20 0 -32 11t-12 32v1336h99z" /> +<glyph unicode="¶" horiz-adv-x="1294" d="M1249 1449v-84h-230v-1560h-87v1560h-336v-1560h-88v911q-105 0 -189.5 28.5t-142.5 78.5t-89.5 118.5t-31.5 147.5q0 82 31.5 148.5t89.5 113.5t142 72.5t190 25.5h741z" /> +<glyph unicode="·" horiz-adv-x="544" d="M169 606q0 22 8 41.5t22 33.5t32.5 22.5t38.5 8.5q22 0 41.5 -8.5t33.5 -22.5t22.5 -33.5t8.5 -41.5q0 -20 -8.5 -39t-22.5 -33t-33.5 -22t-41.5 -8q-20 0 -38.5 8t-32.5 22t-22 33t-8 39z" /> +<glyph unicode="¸" horiz-adv-x="599" d="M162 -280q5 0 13.5 -5.5t22.5 -12t34.5 -12t50.5 -5.5q52 0 81 22.5t29 61.5q0 26 -13 42.5t-38 27.5t-58 17.5t-73 11.5l43 137h62l-30 -98q91 -16 138.5 -47t47.5 -91q0 -31 -14 -55.5t-39 -41.5t-59.5 -26.5t-75.5 -9.5q-42 0 -82 12t-67 31l10 29q7 12 17 12z" /> +<glyph unicode="¹" horiz-adv-x="677" d="M191 972h162v553l4 38l-147 -129q-8 -6 -16 -7q-11 0 -19 10l-22 31l216 189h59v-685h151v-50h-388v50z" /> +<glyph unicode="º" horiz-adv-x="764" d="M384 1463q68 0 122 -21.5t92 -62t58 -97t20 -127.5t-20 -127.5t-58 -97t-92 -62t-122 -21.5q-70 0 -124 21.5t-92.5 62t-58.5 97t-20 127.5t20 127.5t58.5 97t92.5 62t124 21.5zM384 906q106 0 160 66t54 183q0 116 -54 182.5t-160 66.5q-110 0 -163.5 -66.5 t-53.5 -182.5q0 -117 53.5 -183t163.5 -66z" /> +<glyph unicode="»" horiz-adv-x="894" d="M228 137l-30 16q-17 9 -18 26q0 11 7 23l188 301q6 11 11.5 17.5t10.5 10.5q-5 5 -10.5 12t-11.5 18l-188 300q-7 11 -7 24q0 16 18 25l30 16l247 -387v-14zM489 137l-30 16q-17 9 -18 26q0 11 8 23l187 301q6 11 11.5 17.5t10.5 10.5q-5 5 -10.5 12t-11.5 18l-187 300 q-7 11 -8 24q0 16 18 25l30 16l247 -387v-14z" /> +<glyph unicode="¼" horiz-adv-x="1458" d="M1297 253h129v-37q0 -16 -17 -16h-112v-200h-64v200h-333q-24 0 -26 16l-6 33l361 483h68v-479zM176 768h162v553l4 38l-147 -129q-8 -6 -17 -6q-11 0 -18 9l-23 32l216 188h60v-685h150v-50h-387v50zM1233 596q0 24 3 53l-296 -396h293v343zM418 32q-11 -18 -25 -25 t-32 -7h-40l819 1413q10 17 23 26.5t33 9.5h43z" /> +<glyph unicode="½" horiz-adv-x="1458" d="M1153 740q45 0 85 -13t69 -38t46 -62.5t17 -86.5q0 -41 -12.5 -76.5t-34 -67.5t-50.5 -62.5t-60 -61.5l-212 -215q19 5 39.5 8t40.5 3h282q25 0 25 -25v-43h-486v25q0 8 3 16t11 15l241 243q29 29 54 57.5t44 57.5t29.5 60t10.5 64q0 36 -11.5 62.5t-31.5 44t-46.5 26 t-55.5 8.5q-63 0 -100.5 -33t-57.5 -96q-6 -19 -27 -20q-2 0 -12.5 1t-12.5 3l-24 4q14 98 78 150t159 52zM176 768h162v553l4 38l-147 -129q-8 -6 -17 -6q-11 0 -18 9l-23 32l216 188h60v-685h150v-50h-387v50zM370 32q-11 -18 -25 -25t-32 -7h-41l820 1413 q10 17 22.5 26.5t33.5 9.5h43z" /> +<glyph unicode="¾" horiz-adv-x="1462" d="M1297 253h129v-37q0 -16 -17 -16h-112v-200h-64v200h-333q-24 0 -26 16l-6 33l361 483h68v-479zM341 1458q45 0 84 -12.5t67 -37t44.5 -58.5t16.5 -78q0 -68 -37 -112.5t-98 -63.5q75 -17 114 -60.5t39 -110.5q0 -49 -18.5 -88.5t-51.5 -68t-77 -43.5t-93 -15 q-61 0 -103 15t-70 41.5t-45 60.5t-28 71l31 13q4 2 7.5 3t8.5 1q8 0 15.5 -4t10.5 -12l3 -8q4 -12 13.5 -32.5t28 -39.5t49 -33.5t76.5 -14.5q42 0 73.5 14t52.5 35.5t32 48t11 52.5q0 34 -11 60.5t-34.5 45.5t-61.5 29t-92 10v50q93 2 138.5 40.5t45.5 103.5 q0 35 -11 60.5t-31 42t-46 25t-56 8.5q-63 0 -101 -36.5t-57 -90.5q-7 -20 -24 -21h-3t-7 1t-14 2t-24 4q14 98 77 150.5t156 52.5zM1233 596q0 24 3 53l-296 -396h293v343zM426 32q-11 -18 -25 -25t-31 -7h-41l819 1413q10 17 23 26.5t33 9.5h43z" /> +<glyph unicode="¿" horiz-adv-x="758" d="M729 -229q-28 -28 -62.5 -53.5t-76 -45.5t-90.5 -32t-107 -12q-71 0 -134.5 21t-111.5 60.5t-76 96.5t-28 129q0 78 24.5 133t61 94.5t79.5 68.5t81 54.5t64 52.5t28 62l11 167h67l6 -174v-5q0 -43 -24.5 -73.5t-61 -57.5t-79.5 -54t-79.5 -62.5t-61 -83t-24.5 -114.5 q0 -55 21.5 -99t58.5 -74t85 -46t100 -16q71 0 119.5 18t81.5 40t51.5 40t28.5 18q9 0 13.5 -3.5t8.5 -9.5zM333 940q0 19 7 36.5t20 30.5t30 20.5t37 7.5q19 0 36.5 -7.5t30.5 -20.5t20.5 -30.5t7.5 -36.5q0 -20 -7.5 -37t-20.5 -30t-30.5 -20t-36.5 -7q-40 0 -67 27 t-27 67z" /> +<glyph unicode="À" horiz-adv-x="1319" d="M1306 0h-81q-14 0 -23.5 7.5t-14.5 20.5l-171 421h-712l-170 -421q-4 -11 -14 -19.5t-25 -8.5h-80l593 1449h105zM336 526h649l-296 732q-7 17 -14 39.5t-15 47.5q-7 -25 -14 -47t-14 -41zM474 1812q25 0 36.5 -4.5t25.5 -17.5l234 -211h-73q-12 0 -20.5 2t-18.5 10 l-300 221h116z" /> +<glyph unicode="Á" horiz-adv-x="1319" d="M1306 0h-81q-14 0 -23.5 7.5t-14.5 20.5l-171 421h-712l-170 -421q-4 -11 -14 -19.5t-25 -8.5h-80l593 1449h105zM336 526h649l-296 732q-7 17 -14 39.5t-15 47.5q-7 -25 -14 -47t-14 -41zM955 1812l-299 -221q-10 -7 -19 -9.5t-21 -2.5h-72l233 211q14 13 26.5 17.5 t36.5 4.5h115z" /> +<glyph unicode="Â" horiz-adv-x="1319" d="M1306 0h-81q-14 0 -23.5 7.5t-14.5 20.5l-171 421h-712l-170 -421q-4 -11 -14 -19.5t-25 -8.5h-80l593 1449h105zM336 526h649l-296 732q-7 17 -14 39.5t-15 47.5q-7 -25 -14 -47t-14 -41zM946 1579h-75q-8 0 -18 2.5t-17 7.5l-160 126q-8 6 -11 9t-5 6l-5.5 -5.5 t-11.5 -9.5l-161 -126q-7 -5 -16.5 -7.5t-17.5 -2.5h-76l241 204h92z" /> +<glyph unicode="Ã" horiz-adv-x="1319" d="M1306 0h-81q-14 0 -23.5 7.5t-14.5 20.5l-171 421h-712l-170 -421q-4 -11 -14 -19.5t-25 -8.5h-80l593 1449h105zM336 526h649l-296 732q-7 17 -14 39.5t-15 47.5q-7 -25 -14 -47t-14 -41zM782 1655q43 0 65.5 28t23.5 72h55q0 -36 -9 -66t-26.5 -53t-44.5 -36t-62 -13 q-34 0 -64.5 16.5t-59.5 35.5t-56 35.5t-55 16.5q-43 0 -65 -29t-24 -72h-57q0 35 9.5 66t28 54t45.5 35.5t61 12.5q35 0 66 -16.5t59.5 -35t55 -35t54.5 -16.5z" /> +<glyph unicode="Ä" horiz-adv-x="1319" d="M1306 0h-81q-14 0 -23.5 7.5t-14.5 20.5l-171 421h-712l-170 -421q-4 -11 -14 -19.5t-25 -8.5h-80l593 1449h105zM336 526h649l-296 732q-7 17 -14 39.5t-15 47.5q-7 -25 -14 -47t-14 -41zM529 1705q0 -16 -7 -31t-18.5 -26t-27 -17.5t-31.5 -6.5t-31 6.5t-26.5 17.5 t-18 26t-6.5 31t6.5 31.5t18 27.5t26.5 18.5t31 6.5t31.5 -6.5t27 -18.5t18.5 -27.5t7 -31.5zM955 1705q0 -16 -6.5 -31t-18.5 -26t-27 -17.5t-31 -6.5q-17 0 -32 6.5t-26.5 17.5t-18 26t-6.5 31q0 34 24.5 59t58.5 25q16 0 31 -6.5t27 -18.5t18.5 -27.5t6.5 -31.5z" /> +<glyph unicode="Å" horiz-adv-x="1319" d="M1306 0h-81q-14 0 -23.5 7.5t-14.5 20.5l-171 421h-712l-170 -421q-4 -11 -14 -19.5t-25 -8.5h-80l593 1449h105zM336 526h649l-296 732q-7 17 -14 39.5t-15 47.5q-7 -25 -14 -47t-14 -41zM488 1669q0 35 14 65t37 51.5t54 34t66 12.5t66.5 -12.5t54.5 -34t37 -51.5 t14 -65q0 -36 -14 -65.5t-37 -51t-54.5 -33.5t-66.5 -12t-66 12t-54 33.5t-37 51t-14 65.5zM542 1669q0 -51 33 -84t85 -33q51 0 84 33t33 84t-33 84t-84 33q-52 0 -85 -33t-33 -84z" /> +<glyph unicode="Æ" horiz-adv-x="1891" d="M781 1449h983v-87h-834l74 -586h632v-85h-621l77 -604h672v-87h-759l-58 449h-610l-233 -423q-13 -26 -43 -26h-80zM380 526h557l-108 843q-8 -27 -18 -50.5t-21 -46.5z" /> +<glyph unicode="Ç" horiz-adv-x="1440" d="M672 -280q5 0 13.5 -5.5t22.5 -12t34.5 -12t50.5 -5.5q52 0 81 22.5t29 61.5q0 26 -13 42.5t-38 27.5t-58 17.5t-73 11.5l37 118q-140 8 -256.5 64t-199.5 152.5t-129 228.5t-46 294q0 165 51.5 301t145.5 234t224.5 151.5t288.5 53.5q79 0 144.5 -11.5t122 -33.5 t107 -55t98.5 -76l-32 -46q-8 -12 -26 -12q-9 0 -23.5 10.5t-36.5 26.5t-53 35t-74 35t-99.5 26.5t-127.5 10.5q-132 0 -243 -45.5t-190.5 -130t-124.5 -205t-45 -269.5q0 -154 44.5 -274.5t122 -204t183.5 -128t230 -44.5q78 0 139 10t112 30.5t95 50.5t87 69q5 4 10 7 t11 3q10 0 17 -7l41 -44q-45 -47 -96.5 -85t-113.5 -65.5t-136 -42.5t-161 -16l-23 -77q91 -16 138.5 -47t47.5 -91q0 -31 -14 -55.5t-39 -41.5t-59.5 -26.5t-75.5 -9.5q-42 0 -82 12t-67 31l10 29q7 12 17 12z" /> +<glyph unicode="È" horiz-adv-x="1210" d="M1083 1449v-87h-762v-586h634v-85h-634v-604h762v-87h-868v1449h868zM473 1812q25 0 36.5 -4.5t25.5 -17.5l234 -211h-73q-12 0 -20.5 2t-18.5 10l-300 221h116z" /> +<glyph unicode="É" horiz-adv-x="1210" d="M1083 1449v-87h-762v-586h634v-85h-634v-604h762v-87h-868v1449h868zM954 1812l-299 -221q-10 -7 -19 -9.5t-21 -2.5h-72l233 211q14 13 26.5 17.5t36.5 4.5h115z" /> +<glyph unicode="Ê" horiz-adv-x="1210" d="M1083 1449v-87h-762v-586h634v-85h-634v-604h762v-87h-868v1449h868zM945 1579h-75q-8 0 -18 2.5t-17 7.5l-160 126q-8 6 -11 9t-5 6l-5.5 -5.5t-11.5 -9.5l-161 -126q-7 -5 -16.5 -7.5t-17.5 -2.5h-76l241 204h92z" /> +<glyph unicode="Ë" horiz-adv-x="1210" d="M1083 1449v-87h-762v-586h634v-85h-634v-604h762v-87h-868v1449h868zM528 1705q0 -16 -7 -31t-18.5 -26t-27 -17.5t-31.5 -6.5t-31 6.5t-26.5 17.5t-18 26t-6.5 31t6.5 31.5t18 27.5t26.5 18.5t31 6.5t31.5 -6.5t27 -18.5t18.5 -27.5t7 -31.5zM954 1705q0 -16 -6.5 -31 t-18.5 -26t-27 -17.5t-31 -6.5q-17 0 -32 6.5t-26.5 17.5t-18 26t-6.5 31q0 34 24.5 59t58.5 25q16 0 31 -6.5t27 -18.5t18.5 -27.5t6.5 -31.5z" /> +<glyph unicode="Ì" horiz-adv-x="612" d="M358 0h-105v1449h105v-1449zM123 1812q25 0 36.5 -4.5t25.5 -17.5l234 -211h-73q-12 0 -20.5 2t-18.5 10l-300 221h116z" /> +<glyph unicode="Í" horiz-adv-x="612" d="M358 0h-105v1449h105v-1449zM604 1812l-299 -221q-10 -7 -19 -9.5t-21 -2.5h-72l233 211q14 13 26.5 17.5t36.5 4.5h115z" /> +<glyph unicode="Î" horiz-adv-x="612" d="M358 0h-105v1449h105v-1449zM595 1579h-75q-8 0 -18 2.5t-17 7.5l-160 126q-8 6 -11 9t-5 6l-5.5 -5.5t-11.5 -9.5l-161 -126q-7 -5 -16.5 -7.5t-17.5 -2.5h-76l241 204h92z" /> +<glyph unicode="Ï" horiz-adv-x="612" d="M358 0h-105v1449h105v-1449zM178 1705q0 -16 -7 -31t-18.5 -26t-27 -17.5t-31.5 -6.5t-31 6.5t-26.5 17.5t-18 26t-6.5 31t6.5 31.5t18 27.5t26.5 18.5t31 6.5t31.5 -6.5t27 -18.5t18.5 -27.5t7 -31.5zM604 1705q0 -16 -6.5 -31t-18.5 -26t-27 -17.5t-31 -6.5 q-17 0 -32 6.5t-26.5 17.5t-18 26t-6.5 31q0 34 24.5 59t58.5 25q16 0 31 -6.5t27 -18.5t18.5 -27.5t6.5 -31.5z" /> +<glyph unicode="Ð" horiz-adv-x="1612" d="M50 767h221v682h529q155 0 281.5 -50t218 -144.5t141.5 -228.5t50 -301q0 -168 -50 -302t-141.5 -228.5t-218.5 -144.5t-281 -50h-529v701h-221v66zM1382 725q0 152 -42 270.5t-118 200.5t-183.5 125t-238.5 43h-423v-597h414v-66h-414v-616h423q131 0 238.5 43 t183.5 125t118 200.5t42 271.5z" /> +<glyph unicode="Ñ" horiz-adv-x="1548" d="M266 1449q14 0 22.5 -3.5t17.5 -15.5l938 -1256q-3 31 -3 59v1216h92v-1449h-50q-24 0 -38 20l-942 1258q3 -31 3 -58v-1220h-91v1449h51v0zM934 1655q43 0 65.5 28t23.5 72h55q0 -36 -9 -66t-26.5 -53t-44.5 -36t-62 -13q-34 0 -64.5 16.5t-59.5 35.5t-56 35.5t-55 16.5 q-43 0 -65 -29t-24 -72h-57q0 35 9.5 66t28 54t45.5 35.5t61 12.5q35 0 66 -16.5t59.5 -35t55 -35t54.5 -16.5z" /> +<glyph unicode="Ò" horiz-adv-x="1633" d="M1507 725q0 -168 -50 -304.5t-141 -233.5t-218 -149.5t-282 -52.5q-153 0 -279.5 52.5t-218 149.5t-142 233.5t-50.5 304.5q0 167 50.5 303.5t142 233.5t218.5 150t279 53q155 0 282 -52.5t218 -150t141 -234t50 -303.5zM1399 725q0 152 -42 272.5t-118.5 204.5 t-184 128.5t-238.5 44.5q-129 0 -236 -44.5t-184.5 -128.5t-120 -204.5t-42.5 -272.5q0 -153 42.5 -273t120 -204t184.5 -128t236 -44q131 0 238.5 44t184 128t118.5 204t42 273zM633 1812q25 0 36.5 -4.5t25.5 -17.5l234 -211h-73q-12 0 -20.5 2t-18.5 10l-300 221h116z " /> +<glyph unicode="Ó" horiz-adv-x="1633" d="M1507 725q0 -168 -50 -304.5t-141 -233.5t-218 -149.5t-282 -52.5q-153 0 -279.5 52.5t-218 149.5t-142 233.5t-50.5 304.5q0 167 50.5 303.5t142 233.5t218.5 150t279 53q155 0 282 -52.5t218 -150t141 -234t50 -303.5zM1399 725q0 152 -42 272.5t-118.5 204.5 t-184 128.5t-238.5 44.5q-129 0 -236 -44.5t-184.5 -128.5t-120 -204.5t-42.5 -272.5q0 -153 42.5 -273t120 -204t184.5 -128t236 -44q131 0 238.5 44t184 128t118.5 204t42 273zM1114 1812l-299 -221q-10 -7 -19 -9.5t-21 -2.5h-72l233 211q14 13 26.5 17.5t36.5 4.5h115z " /> +<glyph unicode="Ô" horiz-adv-x="1633" d="M1507 725q0 -168 -50 -304.5t-141 -233.5t-218 -149.5t-282 -52.5q-153 0 -279.5 52.5t-218 149.5t-142 233.5t-50.5 304.5q0 167 50.5 303.5t142 233.5t218.5 150t279 53q155 0 282 -52.5t218 -150t141 -234t50 -303.5zM1399 725q0 152 -42 272.5t-118.5 204.5 t-184 128.5t-238.5 44.5q-129 0 -236 -44.5t-184.5 -128.5t-120 -204.5t-42.5 -272.5q0 -153 42.5 -273t120 -204t184.5 -128t236 -44q131 0 238.5 44t184 128t118.5 204t42 273zM1105 1579h-75q-8 0 -18 2.5t-17 7.5l-160 126q-8 6 -11 9t-5 6l-5.5 -5.5t-11.5 -9.5 l-161 -126q-7 -5 -16.5 -7.5t-17.5 -2.5h-76l241 204h92z" /> +<glyph unicode="Õ" horiz-adv-x="1633" d="M1507 725q0 -168 -50 -304.5t-141 -233.5t-218 -149.5t-282 -52.5q-153 0 -279.5 52.5t-218 149.5t-142 233.5t-50.5 304.5q0 167 50.5 303.5t142 233.5t218.5 150t279 53q155 0 282 -52.5t218 -150t141 -234t50 -303.5zM1399 725q0 152 -42 272.5t-118.5 204.5 t-184 128.5t-238.5 44.5q-129 0 -236 -44.5t-184.5 -128.5t-120 -204.5t-42.5 -272.5q0 -153 42.5 -273t120 -204t184.5 -128t236 -44q131 0 238.5 44t184 128t118.5 204t42 273zM941 1655q43 0 65.5 28t23.5 72h55q0 -36 -9 -66t-26.5 -53t-44.5 -36t-62 -13 q-34 0 -64.5 16.5t-59.5 35.5t-56 35.5t-55 16.5q-43 0 -65 -29t-24 -72h-57q0 35 9.5 66t28 54t45.5 35.5t61 12.5q35 0 66 -16.5t59.5 -35t55 -35t54.5 -16.5z" /> +<glyph unicode="Ö" horiz-adv-x="1633" d="M1507 725q0 -168 -50 -304.5t-141 -233.5t-218 -149.5t-282 -52.5q-153 0 -279.5 52.5t-218 149.5t-142 233.5t-50.5 304.5q0 167 50.5 303.5t142 233.5t218.5 150t279 53q155 0 282 -52.5t218 -150t141 -234t50 -303.5zM1399 725q0 152 -42 272.5t-118.5 204.5 t-184 128.5t-238.5 44.5q-129 0 -236 -44.5t-184.5 -128.5t-120 -204.5t-42.5 -272.5q0 -153 42.5 -273t120 -204t184.5 -128t236 -44q131 0 238.5 44t184 128t118.5 204t42 273zM688 1705q0 -16 -7 -31t-18.5 -26t-27 -17.5t-31.5 -6.5t-31 6.5t-26.5 17.5t-18 26t-6.5 31 t6.5 31.5t18 27.5t26.5 18.5t31 6.5t31.5 -6.5t27 -18.5t18.5 -27.5t7 -31.5zM1114 1705q0 -16 -6.5 -31t-18.5 -26t-27 -17.5t-31 -6.5q-17 0 -32 6.5t-26.5 17.5t-18 26t-6.5 31q0 34 24.5 59t58.5 25q16 0 31 -6.5t27 -18.5t18.5 -27.5t6.5 -31.5z" /> +<glyph unicode="×" d="M1022 1061l-376 -375l381 -381l-52 -53l-382 381l-383 -383l-53 53l382 383l-377 377l54 55l377 -378l375 376z" /> +<glyph unicode="Ø" horiz-adv-x="1633" d="M1507 725q0 -168 -50 -304.5t-141 -233.5t-218 -149.5t-282 -52.5q-118 0 -219.5 31t-184.5 89l-134 -180q-13 -17 -30 -25t-34 -8h-45l189 255q-111 98 -171.5 244.5t-60.5 333.5q0 167 50.5 303.5t142 233.5t218.5 150t279 53q124 0 230.5 -34t191.5 -99l114 153 q12 16 21 23.5t30 7.5h56l-169 -228q103 -98 160 -240.5t57 -322.5zM233 725q0 -164 48.5 -289.5t135.5 -209.5l764 1029q-73 58 -164.5 89t-200.5 31q-129 0 -236 -44.5t-184.5 -128.5t-120 -204.5t-42.5 -272.5zM1399 725q0 156 -44 277.5t-124 205.5l-763 -1026 q71 -52 158.5 -79t189.5 -27q131 0 238.5 44t184 128t118.5 204t42 273z" /> +<glyph unicode="Ù" horiz-adv-x="1502" d="M751 75q104 0 186.5 36t140 100.5t87.5 152.5t30 189v896h104v-896q0 -120 -37.5 -224t-109 -181t-173 -121t-228.5 -44t-229 44t-173 121t-109 181t-38 224v896h105v-895q0 -101 30.5 -188.5t87 -152.5t139.5 -101.5t187 -36.5zM565 1812q25 0 36.5 -4.5t25.5 -17.5 l234 -211h-73q-12 0 -20.5 2t-18.5 10l-300 221h116z" /> +<glyph unicode="Ú" horiz-adv-x="1502" d="M751 75q104 0 186.5 36t140 100.5t87.5 152.5t30 189v896h104v-896q0 -120 -37.5 -224t-109 -181t-173 -121t-228.5 -44t-229 44t-173 121t-109 181t-38 224v896h105v-895q0 -101 30.5 -188.5t87 -152.5t139.5 -101.5t187 -36.5zM1046 1812l-299 -221q-10 -7 -19 -9.5 t-21 -2.5h-72l233 211q14 13 26.5 17.5t36.5 4.5h115z" /> +<glyph unicode="Û" horiz-adv-x="1502" d="M751 75q104 0 186.5 36t140 100.5t87.5 152.5t30 189v896h104v-896q0 -120 -37.5 -224t-109 -181t-173 -121t-228.5 -44t-229 44t-173 121t-109 181t-38 224v896h105v-895q0 -101 30.5 -188.5t87 -152.5t139.5 -101.5t187 -36.5zM1038 1579h-75q-8 0 -18 2.5t-17 7.5 l-160 126q-8 6 -11 9t-5 6l-5.5 -5.5t-11.5 -9.5l-161 -126q-7 -5 -16.5 -7.5t-17.5 -2.5h-76l241 204h92z" /> +<glyph unicode="Ü" horiz-adv-x="1502" d="M751 75q104 0 186.5 36t140 100.5t87.5 152.5t30 189v896h104v-896q0 -120 -37.5 -224t-109 -181t-173 -121t-228.5 -44t-229 44t-173 121t-109 181t-38 224v896h105v-895q0 -101 30.5 -188.5t87 -152.5t139.5 -101.5t187 -36.5zM621 1705q0 -16 -7 -31t-18.5 -26 t-27 -17.5t-31.5 -6.5t-31 6.5t-26.5 17.5t-18 26t-6.5 31t6.5 31.5t18 27.5t26.5 18.5t31 6.5t31.5 -6.5t27 -18.5t18.5 -27.5t7 -31.5zM1047 1705q0 -16 -6.5 -31t-18.5 -26t-27 -17.5t-31 -6.5q-17 0 -32 6.5t-26.5 17.5t-18 26t-6.5 31q0 34 24.5 59t58.5 25 q16 0 31 -6.5t27 -18.5t18.5 -27.5t6.5 -31.5z" /> +<glyph unicode="Ý" horiz-adv-x="1227" d="M667 598v-598h-106v598l-535 851h91q14 0 22.5 -6.5t17.5 -19.5l414 -665q14 -24 24.5 -46t18.5 -44q8 23 18.5 44.5t24.5 45.5l414 665q6 11 15.5 18.5t23.5 7.5h92zM910 1812l-299 -221q-10 -7 -19 -9.5t-21 -2.5h-72l233 211q14 13 26.5 17.5t36.5 4.5h115z" /> +<glyph unicode="Þ" horiz-adv-x="1215" d="M350 293v-293h-104v1449h104v-291h270q255 0 384.5 -111.5t129.5 -318.5q0 -95 -35.5 -175t-102 -138t-162 -90t-214.5 -32h-270zM350 377h270q96 0 171.5 26.5t128.5 73.5t81 111t28 140q0 167 -103 256.5t-306 89.5h-270v-697z" /> +<glyph unicode="ß" horiz-adv-x="1185" d="M656 1467q87 0 155 -26t114 -67.5t69.5 -92.5t23.5 -102q0 -63 -24 -110.5t-60.5 -84t-78.5 -65t-78.5 -56.5t-60.5 -58t-24 -68q0 -37 17 -62t45 -43.5t63.5 -33.5t73 -32t72.5 -38t63.5 -52t45.5 -73.5t17 -102.5q0 -70 -26 -128t-72 -100t-110.5 -65t-143.5 -23 q-103 0 -177.5 34t-135.5 90l22 34q5 8 12 12.5t18 4.5q13 0 32 -16.5t50 -35.5t76.5 -35.5t109.5 -16.5q60 0 107.5 18t80 49.5t49 73.5t16.5 90q0 69 -30 110t-75 67.5t-97.5 46t-97.5 45t-75 63.5t-30 103q0 50 24.5 87t62 68.5t80.5 61.5t80.5 64.5t62 77t24.5 100.5 q0 32 -14.5 69t-46.5 69.5t-84.5 54t-127.5 21.5q-73 0 -136.5 -22t-112 -67t-76 -115.5t-27.5 -166.5v-1023h-97v1025q0 103 33.5 185.5t93.5 139.5t143.5 87t181.5 30z" /> +<glyph unicode="à" horiz-adv-x="996" d="M816 0q-31 0 -38 29l-14 130q-42 -41 -83.5 -74t-86.5 -55.5t-97.5 -34t-114.5 -11.5q-52 0 -101.5 15t-87 47t-60.5 81.5t-23 119.5q0 65 36.5 120t115 96t202 65.5t296.5 28.5v107q0 141 -61 217t-181 76q-74 0 -125.5 -20.5t-87.5 -45t-58.5 -45t-37.5 -20.5 q-20 0 -31 19l-17 29q80 80 168 121t199 41q82 0 143.5 -26t102 -74.5t61 -117.5t20.5 -154v-664h-39zM407 54q59 0 108.5 13t92 36t79.5 54.5t73 68.5v266q-145 -4 -250.5 -22t-173.5 -49t-100 -73.5t-32 -96.5q0 -51 17 -88.5t44.5 -61.5t64.5 -35.5t77 -11.5zM401 1465 q25 0 37 -7t24 -25l160 -244h-55q-12 0 -21 3.5t-17 13.5l-222 259h94z" /> +<glyph unicode="á" horiz-adv-x="996" d="M816 0q-31 0 -38 29l-14 130q-42 -41 -83.5 -74t-86.5 -55.5t-97.5 -34t-114.5 -11.5q-52 0 -101.5 15t-87 47t-60.5 81.5t-23 119.5q0 65 36.5 120t115 96t202 65.5t296.5 28.5v107q0 141 -61 217t-181 76q-74 0 -125.5 -20.5t-87.5 -45t-58.5 -45t-37.5 -20.5 q-20 0 -31 19l-17 29q80 80 168 121t199 41q82 0 143.5 -26t102 -74.5t61 -117.5t20.5 -154v-664h-39zM407 54q59 0 108.5 13t92 36t79.5 54.5t73 68.5v266q-145 -4 -250.5 -22t-173.5 -49t-100 -73.5t-32 -96.5q0 -51 17 -88.5t44.5 -61.5t64.5 -35.5t77 -11.5zM748 1465 l-221 -259q-8 -10 -16.5 -13.5t-21.5 -3.5h-58l161 244q11 18 23.5 25t36.5 7h96z" /> +<glyph unicode="â" horiz-adv-x="996" d="M816 0q-31 0 -38 29l-14 130q-42 -41 -83.5 -74t-86.5 -55.5t-97.5 -34t-114.5 -11.5q-52 0 -101.5 15t-87 47t-60.5 81.5t-23 119.5q0 65 36.5 120t115 96t202 65.5t296.5 28.5v107q0 141 -61 217t-181 76q-74 0 -125.5 -20.5t-87.5 -45t-58.5 -45t-37.5 -20.5 q-20 0 -31 19l-17 29q80 80 168 121t199 41q82 0 143.5 -26t102 -74.5t61 -117.5t20.5 -154v-664h-39zM407 54q59 0 108.5 13t92 36t79.5 54.5t73 68.5v266q-145 -4 -250.5 -22t-173.5 -49t-100 -73.5t-32 -96.5q0 -51 17 -88.5t44.5 -61.5t64.5 -35.5t77 -11.5zM784 1197 h-66q-16 0 -28 12l-160 167q-6 4 -11 12q-2 -4 -5 -7l-5 -5l-161 -167q-5 -5 -12 -8.5t-16 -3.5h-68l223 252h87z" /> +<glyph unicode="ã" horiz-adv-x="996" d="M816 0q-31 0 -38 29l-14 130q-42 -41 -83.5 -74t-86.5 -55.5t-97.5 -34t-114.5 -11.5q-52 0 -101.5 15t-87 47t-60.5 81.5t-23 119.5q0 65 36.5 120t115 96t202 65.5t296.5 28.5v107q0 141 -61 217t-181 76q-74 0 -125.5 -20.5t-87.5 -45t-58.5 -45t-37.5 -20.5 q-20 0 -31 19l-17 29q80 80 168 121t199 41q82 0 143.5 -26t102 -74.5t61 -117.5t20.5 -154v-664h-39zM407 54q59 0 108.5 13t92 36t79.5 54.5t73 68.5v266q-145 -4 -250.5 -22t-173.5 -49t-100 -73.5t-32 -96.5q0 -51 17 -88.5t44.5 -61.5t64.5 -35.5t77 -11.5zM636 1311 q44 0 66.5 28t23.5 76h60q0 -37 -9.5 -69t-28.5 -55.5t-46.5 -37t-62.5 -13.5q-34 0 -64 17t-58 37t-54 37t-53 17q-43 0 -65.5 -29.5t-24.5 -75.5h-62q0 37 10 69.5t29.5 56t47.5 36.5t62 13q35 0 65.5 -17t57.5 -36.5t53 -36.5t53 -17z" /> +<glyph unicode="ä" horiz-adv-x="996" d="M816 0q-31 0 -38 29l-14 130q-42 -41 -83.5 -74t-86.5 -55.5t-97.5 -34t-114.5 -11.5q-52 0 -101.5 15t-87 47t-60.5 81.5t-23 119.5q0 65 36.5 120t115 96t202 65.5t296.5 28.5v107q0 141 -61 217t-181 76q-74 0 -125.5 -20.5t-87.5 -45t-58.5 -45t-37.5 -20.5 q-20 0 -31 19l-17 29q80 80 168 121t199 41q82 0 143.5 -26t102 -74.5t61 -117.5t20.5 -154v-664h-39zM407 54q59 0 108.5 13t92 36t79.5 54.5t73 68.5v266q-145 -4 -250.5 -22t-173.5 -49t-100 -73.5t-32 -96.5q0 -51 17 -88.5t44.5 -61.5t64.5 -35.5t77 -11.5zM427 1315 q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5t-31 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t26.5 18.5t31.5 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5zM778 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5q-17 0 -32 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5 t18.5 27t27 18.5t32 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5z" /> +<glyph unicode="å" horiz-adv-x="996" d="M816 0q-31 0 -38 29l-14 130q-42 -41 -83.5 -74t-86.5 -55.5t-97.5 -34t-114.5 -11.5q-52 0 -101.5 15t-87 47t-60.5 81.5t-23 119.5q0 65 36.5 120t115 96t202 65.5t296.5 28.5v107q0 141 -61 217t-181 76q-74 0 -125.5 -20.5t-87.5 -45t-58.5 -45t-37.5 -20.5 q-20 0 -31 19l-17 29q80 80 168 121t199 41q82 0 143.5 -26t102 -74.5t61 -117.5t20.5 -154v-664h-39zM407 54q59 0 108.5 13t92 36t79.5 54.5t73 68.5v266q-145 -4 -250.5 -22t-173.5 -49t-100 -73.5t-32 -96.5q0 -51 17 -88.5t44.5 -61.5t64.5 -35.5t77 -11.5zM342 1333 q0 37 14 68t38 53t56 34.5t68 12.5t68 -12.5t56 -34.5t38.5 -53t14.5 -68t-14.5 -67t-38.5 -52.5t-56 -35t-68 -12.5t-68 12.5t-56 35t-38 52.5t-14 67zM401 1333q0 -51 33 -83.5t85 -32.5q51 0 84 32.5t33 83.5t-33 84t-84 33q-52 0 -85 -33t-33 -84z" /> +<glyph unicode="æ" horiz-adv-x="1647" d="M1187 1035q77 0 143.5 -30.5t115.5 -89.5t77 -146t28 -201q0 -23 -5 -31t-19 -8h-676q0 -115 24.5 -201.5t69.5 -145t108.5 -88t141.5 -29.5q73 0 124 16.5t86 36.5t54.5 37t29.5 17q14 0 22 -10l25 -31q-24 -31 -61.5 -57.5t-83.5 -45.5t-98 -30t-105 -11 q-134 0 -231 70.5t-145 210.5q-20 -79 -63.5 -133t-99 -88t-117.5 -48.5t-118 -14.5q-65 0 -120 15.5t-96 49.5t-64.5 87t-23.5 128q0 66 36.5 123.5t115 102t202 72t296.5 31.5v71q0 141 -61 218t-181 77q-74 0 -125.5 -20.5t-87.5 -45.5t-58.5 -46t-37.5 -21 q-11 0 -18.5 5.5t-12.5 13.5l-17 29q79 80 164.5 121t194.5 41q129 0 203 -66t97 -180q48 114 140.5 179.5t226.5 65.5zM760 527q-145 -5 -250.5 -25.5t-173.5 -54t-100 -79t-32 -100.5q0 -57 17 -97.5t47.5 -66t72.5 -38t92 -12.5q68 0 127.5 22.5t104 66t70 107 t25.5 144.5v133zM1185 963q-74 0 -133 -27t-101 -75t-67 -116.5t-31 -152.5h612q0 87 -20.5 156t-57 116.5t-88.5 73t-114 25.5z" /> +<glyph unicode="ç" horiz-adv-x="931" d="M402 -280q5 0 14 -5.5t23 -12t34.5 -12t49.5 -5.5q52 0 81.5 22.5t29.5 61.5q0 26 -13.5 42.5t-38 27.5t-57.5 17.5t-73 11.5l37 121q-89 6 -162.5 44.5t-126.5 105t-81.5 160t-28.5 211.5q0 117 31 213t89.5 165.5t144 108t196.5 38.5q99 0 176.5 -31.5t134.5 -85.5 l-25 -35q-5 -5 -10 -9t-13 -4q-10 0 -28 14t-47.5 30.5t-74 30t-108.5 13.5q-88 0 -156 -31t-114.5 -89.5t-71.5 -141.5t-25 -186q0 -108 25.5 -190.5t71.5 -139.5t111.5 -87t145.5 -30q74 0 123.5 17.5t81.5 38t51 38t30 17.5q13 0 21 -10l27 -33q-46 -59 -132 -99 t-194 -44l-25 -81q91 -16 139 -47t48 -91q0 -31 -14 -55.5t-39 -41.5t-60 -26.5t-76 -9.5q-42 0 -82 12t-66 31l10 29q6 12 16 12z" /> +<glyph unicode="è" horiz-adv-x="1046" d="M550 1035q86 0 159 -29.5t127 -86.5t84 -140t30 -190q0 -23 -6.5 -31t-20.5 -8h-737v-20q0 -115 27 -201.5t76 -145.5t118.5 -88.5t155.5 -29.5q77 0 133.5 16.5t94.5 37.5t60.5 38t33.5 17q13 0 20 -10l27 -33q-25 -31 -65.5 -57.5t-90 -45.5t-106.5 -30t-114 -11 q-104 0 -190 36t-147.5 106t-95 170.5t-33.5 230.5q0 110 31.5 202.5t90 159.5t144 105t194.5 38zM551 963q-79 0 -141.5 -25t-108 -71t-73.5 -110.5t-38 -144.5h672q0 82 -22.5 147t-63.5 110t-98 69.5t-127 24.5zM433 1465q25 0 37 -7t24 -25l160 -244h-55q-12 0 -21 3.5 t-17 13.5l-222 259h94z" /> +<glyph unicode="é" horiz-adv-x="1046" d="M550 1035q86 0 159 -29.5t127 -86.5t84 -140t30 -190q0 -23 -6.5 -31t-20.5 -8h-737v-20q0 -115 27 -201.5t76 -145.5t118.5 -88.5t155.5 -29.5q77 0 133.5 16.5t94.5 37.5t60.5 38t33.5 17q13 0 20 -10l27 -33q-25 -31 -65.5 -57.5t-90 -45.5t-106.5 -30t-114 -11 q-104 0 -190 36t-147.5 106t-95 170.5t-33.5 230.5q0 110 31.5 202.5t90 159.5t144 105t194.5 38zM551 963q-79 0 -141.5 -25t-108 -71t-73.5 -110.5t-38 -144.5h672q0 82 -22.5 147t-63.5 110t-98 69.5t-127 24.5zM780 1465l-221 -259q-8 -10 -16.5 -13.5t-21.5 -3.5h-58 l161 244q11 18 23.5 25t36.5 7h96z" /> +<glyph unicode="ê" horiz-adv-x="1046" d="M550 1035q86 0 159 -29.5t127 -86.5t84 -140t30 -190q0 -23 -6.5 -31t-20.5 -8h-737v-20q0 -115 27 -201.5t76 -145.5t118.5 -88.5t155.5 -29.5q77 0 133.5 16.5t94.5 37.5t60.5 38t33.5 17q13 0 20 -10l27 -33q-25 -31 -65.5 -57.5t-90 -45.5t-106.5 -30t-114 -11 q-104 0 -190 36t-147.5 106t-95 170.5t-33.5 230.5q0 110 31.5 202.5t90 159.5t144 105t194.5 38zM551 963q-79 0 -141.5 -25t-108 -71t-73.5 -110.5t-38 -144.5h672q0 82 -22.5 147t-63.5 110t-98 69.5t-127 24.5zM816 1197h-66q-16 0 -28 12l-160 167q-6 4 -11 12 q-2 -4 -5 -7l-5 -5l-161 -167q-5 -5 -12 -8.5t-16 -3.5h-68l223 252h87z" /> +<glyph unicode="ë" horiz-adv-x="1046" d="M550 1035q86 0 159 -29.5t127 -86.5t84 -140t30 -190q0 -23 -6.5 -31t-20.5 -8h-737v-20q0 -115 27 -201.5t76 -145.5t118.5 -88.5t155.5 -29.5q77 0 133.5 16.5t94.5 37.5t60.5 38t33.5 17q13 0 20 -10l27 -33q-25 -31 -65.5 -57.5t-90 -45.5t-106.5 -30t-114 -11 q-104 0 -190 36t-147.5 106t-95 170.5t-33.5 230.5q0 110 31.5 202.5t90 159.5t144 105t194.5 38zM551 963q-79 0 -141.5 -25t-108 -71t-73.5 -110.5t-38 -144.5h672q0 82 -22.5 147t-63.5 110t-98 69.5t-127 24.5zM459 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5 t-31 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t26.5 18.5t31.5 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5zM810 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5q-17 0 -32 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t27 18.5t32 7q16 0 32 -7t27.5 -18.5 t18.5 -27t7 -32.5z" /> +<glyph unicode="ì" horiz-adv-x="486" d="M292 1019v-1019h-97v1019h97zM129 1465q25 0 37 -7t24 -25l160 -244h-55q-12 0 -21 3.5t-17 13.5l-222 259h94z" /> +<glyph unicode="í" horiz-adv-x="486" d="M292 1019v-1019h-97v1019h97zM476 1465l-221 -259q-8 -10 -16.5 -13.5t-21.5 -3.5h-58l161 244q11 18 23.5 25t36.5 7h96z" /> +<glyph unicode="î" horiz-adv-x="486" d="M292 1019v-1019h-97v1019h97zM512 1197h-66q-16 0 -28 12l-160 167q-6 4 -11 12q-2 -4 -5 -7l-5 -5l-161 -167q-5 -5 -12 -8.5t-16 -3.5h-68l223 252h87z" /> +<glyph unicode="ï" horiz-adv-x="486" d="M292 1019v-1019h-97v1019h97zM155 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5t-31 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t26.5 18.5t31.5 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5zM506 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5 q-17 0 -32 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t27 18.5t32 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5z" /> +<glyph unicode="ð" horiz-adv-x="1097" d="M465 1096q-7 8 -7 18t12 22l129 111q-61 34 -129.5 58t-143.5 40q-10 2 -18.5 9.5t-8.5 21.5q0 3 2.5 14t4.5 15l6 20q92 -14 182 -44.5t170 -80.5l156 139l19 -30q5 -8 5 -16q0 -11 -14 -24l-116 -102q65 -48 118.5 -110.5t93 -143.5t61 -180.5t21.5 -219.5 q0 -141 -29.5 -256t-87.5 -197.5t-146.5 -127t-205.5 -44.5q-93 0 -174.5 33t-142.5 95t-96 150.5t-35 199.5q0 98 30 185t86.5 152t139.5 102.5t189 37.5q54 0 108.5 -14t105.5 -43t95 -74t77 -106q-15 185 -87 309t-185 200l-168 -148zM541 65q90 0 158.5 35t115.5 101 t72.5 161.5t28.5 214.5q-15 52 -45 104t-75 93t-105.5 66.5t-138.5 25.5q-90 0 -158 -30.5t-114 -85t-69 -127.5t-23 -157q0 -95 28.5 -170t77 -126t112.5 -78t135 -27z" /> +<glyph unicode="ñ" horiz-adv-x="1107" d="M166 0v1019h53q27 0 31 -26l9 -153q70 88 162.5 141.5t206.5 53.5q84 0 148 -26.5t106 -76.5t63.5 -121t21.5 -160v-651h-98v651q0 143 -65.5 224.5t-200.5 81.5q-100 0 -186 -51.5t-154 -141.5v-764h-97zM680 1311q44 0 66.5 28t23.5 76h60q0 -37 -9.5 -69t-28.5 -55.5 t-46.5 -37t-62.5 -13.5q-34 0 -64 17t-58 37t-54 37t-53 17q-43 0 -65.5 -29.5t-24.5 -75.5h-62q0 37 10 69.5t29.5 56t47.5 36.5t62 13q35 0 65.5 -17t57.5 -36.5t53 -36.5t53 -17z" /> +<glyph unicode="ò" horiz-adv-x="1107" d="M554 1035q110 0 196.5 -37t145.5 -106t90.5 -165.5t31.5 -216.5t-31.5 -216t-90.5 -165t-145.5 -105.5t-196.5 -36.5t-196.5 36.5t-146 105.5t-91 165t-31.5 216t31.5 216.5t91 165.5t146 106t196.5 37zM554 63q91 0 159 31.5t113.5 90t68.5 141t23 184.5q0 101 -23 184 t-68.5 142t-113.5 90.5t-159 31.5t-159 -31.5t-113.5 -90.5t-69 -142t-23.5 -184q0 -102 23.5 -184.5t69 -141t113.5 -90t159 -31.5zM438 1465q25 0 37 -7t24 -25l160 -244h-55q-12 0 -21 3.5t-17 13.5l-222 259h94z" /> +<glyph unicode="ó" horiz-adv-x="1107" d="M554 1035q110 0 196.5 -37t145.5 -106t90.5 -165.5t31.5 -216.5t-31.5 -216t-90.5 -165t-145.5 -105.5t-196.5 -36.5t-196.5 36.5t-146 105.5t-91 165t-31.5 216t31.5 216.5t91 165.5t146 106t196.5 37zM554 63q91 0 159 31.5t113.5 90t68.5 141t23 184.5q0 101 -23 184 t-68.5 142t-113.5 90.5t-159 31.5t-159 -31.5t-113.5 -90.5t-69 -142t-23.5 -184q0 -102 23.5 -184.5t69 -141t113.5 -90t159 -31.5zM785 1465l-221 -259q-8 -10 -16.5 -13.5t-21.5 -3.5h-58l161 244q11 18 23.5 25t36.5 7h96z" /> +<glyph unicode="ô" horiz-adv-x="1107" d="M554 1035q110 0 196.5 -37t145.5 -106t90.5 -165.5t31.5 -216.5t-31.5 -216t-90.5 -165t-145.5 -105.5t-196.5 -36.5t-196.5 36.5t-146 105.5t-91 165t-31.5 216t31.5 216.5t91 165.5t146 106t196.5 37zM554 63q91 0 159 31.5t113.5 90t68.5 141t23 184.5q0 101 -23 184 t-68.5 142t-113.5 90.5t-159 31.5t-159 -31.5t-113.5 -90.5t-69 -142t-23.5 -184q0 -102 23.5 -184.5t69 -141t113.5 -90t159 -31.5zM821 1197h-66q-16 0 -28 12l-160 167q-6 4 -11 12q-2 -4 -5 -7l-5 -5l-161 -167q-5 -5 -12 -8.5t-16 -3.5h-68l223 252h87z" /> +<glyph unicode="õ" horiz-adv-x="1107" d="M554 1035q110 0 196.5 -37t145.5 -106t90.5 -165.5t31.5 -216.5t-31.5 -216t-90.5 -165t-145.5 -105.5t-196.5 -36.5t-196.5 36.5t-146 105.5t-91 165t-31.5 216t31.5 216.5t91 165.5t146 106t196.5 37zM554 63q91 0 159 31.5t113.5 90t68.5 141t23 184.5q0 101 -23 184 t-68.5 142t-113.5 90.5t-159 31.5t-159 -31.5t-113.5 -90.5t-69 -142t-23.5 -184q0 -102 23.5 -184.5t69 -141t113.5 -90t159 -31.5zM673 1311q44 0 66.5 28t23.5 76h60q0 -37 -9.5 -69t-28.5 -55.5t-46.5 -37t-62.5 -13.5q-34 0 -64 17t-58 37t-54 37t-53 17 q-43 0 -65.5 -29.5t-24.5 -75.5h-62q0 37 10 69.5t29.5 56t47.5 36.5t62 13q35 0 65.5 -17t57.5 -36.5t53 -36.5t53 -17z" /> +<glyph unicode="ö" horiz-adv-x="1107" d="M554 1035q110 0 196.5 -37t145.5 -106t90.5 -165.5t31.5 -216.5t-31.5 -216t-90.5 -165t-145.5 -105.5t-196.5 -36.5t-196.5 36.5t-146 105.5t-91 165t-31.5 216t31.5 216.5t91 165.5t146 106t196.5 37zM554 63q91 0 159 31.5t113.5 90t68.5 141t23 184.5q0 101 -23 184 t-68.5 142t-113.5 90.5t-159 31.5t-159 -31.5t-113.5 -90.5t-69 -142t-23.5 -184q0 -102 23.5 -184.5t69 -141t113.5 -90t159 -31.5zM464 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5t-31 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t26.5 18.5t31.5 7 q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5zM815 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5q-17 0 -32 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t27 18.5t32 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5z" /> +<glyph unicode="÷" d="M112 724h961v-75h-961v75zM498 1050q0 40 27 68t67 28q19 0 36.5 -8t30.5 -20.5t20.5 -30.5t7.5 -37q0 -20 -7.5 -37.5t-20.5 -30t-30.5 -20t-36.5 -7.5q-40 0 -67 27.5t-27 67.5zM498 321q0 40 27 68t67 28q19 0 36.5 -8t30.5 -20.5t20.5 -30.5t7.5 -37 q0 -20 -7.5 -37.5t-20.5 -30t-30.5 -20t-36.5 -7.5q-40 0 -67 27.5t-27 67.5z" /> +<glyph unicode="ø" horiz-adv-x="1107" d="M893 894q61 -69 93 -166t32 -218q0 -120 -31.5 -216t-90.5 -165t-145.5 -105.5t-196.5 -36.5q-165 0 -275 81l-83 -112q-13 -17 -30.5 -25t-34.5 -8h-39l138 186q-70 69 -105.5 170t-35.5 231q0 120 31.5 216.5t91 165.5t146 106t196.5 37q90 0 163.5 -25t129.5 -71 l89 119q11 15 21 22t29 7h51zM184 510q0 -106 24 -190t74 -143l516 695q-46 43 -106.5 66t-137.5 23q-91 0 -160 -32.5t-116 -91.5t-70.5 -142.5t-23.5 -184.5zM554 61q91 0 160 32t115.5 90.5t70 141.5t23.5 185q0 196 -82 313l-514 -691q89 -71 227 -71z" /> +<glyph unicode="ù" horiz-adv-x="1107" d="M239 1019v-651q0 -143 65.5 -225t199.5 -82q99 0 185 51t155 141v766h98v-1019h-54q-29 0 -30 27l-9 151q-71 -88 -163.5 -141t-206.5 -53q-85 0 -148.5 26.5t-105.5 76.5t-63.5 121t-21.5 160v651h99zM431 1465q25 0 37 -7t24 -25l160 -244h-55q-12 0 -21 3.5t-17 13.5 l-222 259h94z" /> +<glyph unicode="ú" horiz-adv-x="1107" d="M239 1019v-651q0 -143 65.5 -225t199.5 -82q99 0 185 51t155 141v766h98v-1019h-54q-29 0 -30 27l-9 151q-71 -88 -163.5 -141t-206.5 -53q-85 0 -148.5 26.5t-105.5 76.5t-63.5 121t-21.5 160v651h99zM778 1465l-221 -259q-8 -10 -16.5 -13.5t-21.5 -3.5h-58l161 244 q11 18 23.5 25t36.5 7h96z" /> +<glyph unicode="û" horiz-adv-x="1107" d="M239 1019v-651q0 -143 65.5 -225t199.5 -82q99 0 185 51t155 141v766h98v-1019h-54q-29 0 -30 27l-9 151q-71 -88 -163.5 -141t-206.5 -53q-85 0 -148.5 26.5t-105.5 76.5t-63.5 121t-21.5 160v651h99zM814 1197h-66q-16 0 -28 12l-160 167q-6 4 -11 12q-2 -4 -5 -7 l-5 -5l-161 -167q-5 -5 -12 -8.5t-16 -3.5h-68l223 252h87z" /> +<glyph unicode="ü" horiz-adv-x="1107" d="M239 1019v-651q0 -143 65.5 -225t199.5 -82q99 0 185 51t155 141v766h98v-1019h-54q-29 0 -30 27l-9 151q-71 -88 -163.5 -141t-206.5 -53q-85 0 -148.5 26.5t-105.5 76.5t-63.5 121t-21.5 160v651h99zM457 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5t-31 6.5 t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t26.5 18.5t31.5 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5zM808 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5q-17 0 -32 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t27 18.5t32 7q16 0 32 -7t27.5 -18.5t18.5 -27 t7 -32.5z" /> +<glyph unicode="ý" horiz-adv-x="997" d="M388 -328q-6 -14 -16 -23t-28 -9h-70l180 398l-431 981h80q15 0 24 -7.5t13 -17.5l343 -792q6 -15 11 -31t9 -33q5 16 10.5 32t11.5 32l339 792q5 11 14.5 18t20.5 7h75zM754 1465l-221 -259q-8 -10 -16.5 -13.5t-21.5 -3.5h-58l161 244q11 18 23.5 25t36.5 7h96z" /> +<glyph unicode="þ" horiz-adv-x="1095" d="M166 -360v1850h97v-650q68 90 157 142.5t201 52.5q188 0 292.5 -129.5t104.5 -389.5q0 -112 -29.5 -208.5t-85.5 -167.5t-138.5 -112t-190.5 -41q-104 0 -180 40t-131 117v-504h-97zM593 957q-101 0 -183.5 -52.5t-146.5 -146.5v-535q58 -88 129.5 -124t162.5 -36 q90 0 157.5 33t113 93t69 143.5t23.5 183.5q0 227 -83.5 334t-241.5 107z" /> +<glyph unicode="ÿ" horiz-adv-x="997" d="M388 -328q-6 -14 -16 -23t-28 -9h-70l180 398l-431 981h80q15 0 24 -7.5t13 -17.5l343 -792q6 -15 11 -31t9 -33q5 16 10.5 32t11.5 32l339 792q5 11 14.5 18t20.5 7h75zM433 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5t-31 6.5t-27 18t-18.5 26t-6.5 31.5 t6.5 32.5t18.5 27t26.5 18.5t31.5 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5zM784 1315q0 -16 -7 -31t-18.5 -26.5t-27.5 -18t-32 -6.5q-17 0 -32 6.5t-27 18t-18.5 26t-6.5 31.5t6.5 32.5t18.5 27t27 18.5t32 7q16 0 32 -7t27.5 -18.5t18.5 -27t7 -32.5z" /> +<glyph unicode="ı" horiz-adv-x="486" d="M292 1019v-1019h-97v1019h97z" /> +<glyph unicode="Œ" horiz-adv-x="2280" d="M2153 1362h-762v-586h634v-85h-634v-604h762v-87h-857v342q-38 -84 -92.5 -150t-124 -111.5t-153 -69.5t-178.5 -24q-138 0 -252.5 52t-196.5 149t-127.5 233t-45.5 304q0 167 45.5 303.5t127.5 233.5t196 150t253 53q95 0 178.5 -24.5t153 -70.5t124 -112t92.5 -150v341 h857v-87zM1285 725q0 152 -38 272.5t-107 205t-165.5 129.5t-214.5 45q-117 0 -214 -45t-166.5 -129.5t-108 -205t-38.5 -272.5q0 -153 38.5 -273.5t108 -204t166.5 -128t214 -44.5q118 0 214.5 44.5t165.5 128t107 204t38 273.5z" /> +<glyph unicode="œ" horiz-adv-x="1758" d="M1296 1035q77 0 144 -30.5t116.5 -89.5t77.5 -146t28 -201q0 -23 -5.5 -31t-20.5 -8h-675q0 -115 24.5 -201.5t70 -145t109 -88t141.5 -29.5q69 0 119.5 16.5t85.5 37.5t56 38t32 17q12 0 20 -10l27 -33q-24 -31 -62 -57.5t-84 -45.5t-97.5 -30t-105.5 -11 q-138 0 -237 76t-145 226q-43 -142 -143 -222t-252 -80q-100 0 -180 36.5t-136 105.5t-85.5 165t-29.5 216t29.5 216.5t85.5 165.5t137 106t182 37q147 0 246.5 -78.5t142.5 -217.5q20 68 56 122t84 93t109 60t135 21zM528 63q84 0 147 31.5t105 90t63 141t21 184.5 q0 101 -21 184t-63 142t-105 90.5t-147 31.5q-85 0 -148.5 -31.5t-106 -90.5t-63.5 -142t-21 -184q0 -102 21 -184.5t63.5 -141t106 -90t148.5 -31.5zM1294 963q-74 0 -132.5 -27t-100.5 -75t-67 -116.5t-31 -152.5h613q0 87 -20.5 156t-58 116.5t-89.5 73t-114 25.5z" /> +<glyph unicode="Ÿ" horiz-adv-x="1227" d="M667 598v-598h-106v598l-535 851h91q14 0 22.5 -6.5t17.5 -19.5l414 -665q14 -24 24.5 -46t18.5 -44q8 23 18.5 44.5t24.5 45.5l414 665q6 11 15.5 18.5t23.5 7.5h92zM484 1705q0 -16 -7 -31t-18.5 -26t-27 -17.5t-31.5 -6.5t-31 6.5t-26.5 17.5t-18 26t-6.5 31t6.5 31.5 t18 27.5t26.5 18.5t31 6.5t31.5 -6.5t27 -18.5t18.5 -27.5t7 -31.5zM910 1705q0 -16 -6.5 -31t-18.5 -26t-27 -17.5t-31 -6.5q-17 0 -32 6.5t-26.5 17.5t-18 26t-6.5 31q0 34 24.5 59t58.5 25q16 0 31 -6.5t27 -18.5t18.5 -27.5t6.5 -31.5z" /> +<glyph unicode="ˆ" horiz-adv-x="599" d="M565 1197h-66q-16 0 -28 12l-160 167q-6 4 -11 12q-2 -4 -5 -7l-5 -5l-161 -167q-5 -5 -12 -8.5t-16 -3.5h-68l223 252h87z" /> +<glyph unicode="˚" horiz-adv-x="599" d="M123 1333q0 37 14 68t38 53t56 34.5t68 12.5t68 -12.5t56 -34.5t38.5 -53t14.5 -68t-14.5 -67t-38.5 -52.5t-56 -35t-68 -12.5t-68 12.5t-56 35t-38 52.5t-14 67zM182 1333q0 -51 33 -83.5t85 -32.5q51 0 84 32.5t33 83.5t-33 84t-84 33q-52 0 -85 -33t-33 -84z" /> +<glyph unicode="˜" horiz-adv-x="599" d="M417 1311q44 0 66.5 28t23.5 76h60q0 -37 -9.5 -69t-28.5 -55.5t-46.5 -37t-62.5 -13.5q-34 0 -64 17t-58 37t-54 37t-53 17q-43 0 -65.5 -29.5t-24.5 -75.5h-62q0 37 10 69.5t29.5 56t47.5 36.5t62 13q35 0 65.5 -17t57.5 -36.5t53 -36.5t53 -17z" /> +<glyph unicode=" " horiz-adv-x="916" /> +<glyph unicode=" " horiz-adv-x="1832" /> +<glyph unicode=" " horiz-adv-x="916" /> +<glyph unicode=" " horiz-adv-x="1832" /> +<glyph unicode=" " horiz-adv-x="610" /> +<glyph unicode=" " horiz-adv-x="458" /> +<glyph unicode=" " horiz-adv-x="305" /> +<glyph unicode=" " horiz-adv-x="305" /> +<glyph unicode=" " horiz-adv-x="229" /> +<glyph unicode=" " horiz-adv-x="366" /> +<glyph unicode=" " horiz-adv-x="101" /> +<glyph unicode="‐" horiz-adv-x="680" d="M102 649h477v-83h-477v83z" /> +<glyph unicode="‑" horiz-adv-x="680" d="M102 649h477v-83h-477v83z" /> +<glyph unicode="‒" horiz-adv-x="680" d="M102 649h477v-83h-477v83z" /> +<glyph unicode="–" horiz-adv-x="1107" d="M151 629h805v-73h-805v73z" /> +<glyph unicode="—" horiz-adv-x="1629" d="M151 629h1328v-73h-1328v73z" /> +<glyph unicode="‘" horiz-adv-x="404" d="M175 1082q-22 39 -32 77.5t-10 77.5q0 80 39 153.5t101 134.5l28 -19q8 -6 8 -14q0 -7 -6 -13q-39 -52 -64.5 -103.5t-25.5 -106.5q0 -60 36 -123q5 -8 5 -17q0 -14 -15 -20z" /> +<glyph unicode="’" horiz-adv-x="404" d="M246 1512q23 -39 33 -77t10 -77q0 -80 -39 -154t-102 -134l-28 19q-7 6 -7 14t6 14q39 51 64.5 103t25.5 107q0 59 -36 122q-5 8 -5 16q0 14 15 21z" /> +<glyph unicode="‚" horiz-adv-x="404" d="M246 180q23 -39 33 -77t10 -77q0 -80 -39 -154t-102 -134l-28 18q-7 6 -7 15q0 8 6 14q39 51 64.5 103t25.5 107q0 59 -36 122q-5 8 -5 16q0 14 15 21z" /> +<glyph unicode="“" horiz-adv-x="680" d="M175 1082q-22 39 -32 77.5t-10 77.5q0 80 39 153.5t101 134.5l28 -19q8 -6 8 -14q0 -7 -6 -13q-39 -52 -64.5 -103.5t-25.5 -106.5q0 -60 36 -123q5 -8 5 -17q0 -14 -15 -20zM451 1082q-22 39 -32 77.5t-10 77.5q0 80 38.5 153.5t101.5 134.5l28 -19q8 -6 8 -14 q0 -7 -6 -13q-39 -52 -65 -103.5t-26 -106.5q0 -60 36 -123q5 -8 5 -17q0 -14 -15 -20z" /> +<glyph unicode="”" horiz-adv-x="680" d="M246 1512q23 -39 33 -77t10 -77q0 -80 -39 -154t-102 -134l-28 19q-7 6 -7 14t6 14q39 51 64.5 103t25.5 107q0 59 -36 122q-5 8 -5 16q0 14 15 21zM521 1512q23 -39 33 -77t10 -77q0 -80 -39 -154t-101 -134l-29 19q-7 6 -7 14t6 14q39 51 64.5 103t25.5 107 q0 59 -35 122q-5 8 -6 16q0 14 16 21z" /> +<glyph unicode="„" horiz-adv-x="680" d="M246 180q23 -39 33 -77t10 -77q0 -80 -39 -154t-102 -134l-28 18q-7 6 -7 15q0 8 6 14q39 51 64.5 103t25.5 107q0 59 -36 122q-5 8 -5 16q0 14 15 21zM521 180q23 -39 33 -77t10 -77q0 -80 -39 -154t-101 -134l-29 18q-7 6 -7 15q0 8 6 14q39 51 64.5 103t25.5 107 q0 59 -35 122q-5 8 -6 16q0 14 16 21z" /> +<glyph unicode="•" d="M293 610q0 62 23.5 117.5t64.5 97t95 65t116 23.5t117.5 -23.5t96.5 -65t64.5 -96.5t23.5 -118q0 -61 -23.5 -115t-64.5 -95t-96.5 -64.5t-117.5 -23.5q-61 0 -115.5 23.5t-95.5 64.5t-64.5 95t-23.5 115z" /> +<glyph unicode="…" horiz-adv-x="1409" d="M108 79q0 19 7 36.5t19.5 30.5t29.5 20.5t38 7.5q19 0 36.5 -7.5t30.5 -20.5t20.5 -30.5t7.5 -36.5q0 -20 -7.5 -37t-20.5 -30t-30.5 -20t-36.5 -7q-40 0 -67 27t-27 67zM1112 79q0 19 7 36.5t20 30.5t30 20.5t37 7.5q19 0 37 -7.5t30.5 -20.5t20.5 -30.5t8 -36.5 q0 -20 -8 -37t-20.5 -30t-30 -20t-37.5 -7q-40 0 -67 27t-27 67zM609 79q0 19 7.5 36.5t20 30.5t29.5 20.5t37 7.5q19 0 37 -7.5t30.5 -20.5t20.5 -30.5t8 -36.5q0 -20 -8 -37t-20.5 -30t-30 -20t-37.5 -7q-40 0 -67 27t-27 67z" /> +<glyph unicode=" " horiz-adv-x="366" /> +<glyph unicode="‹" horiz-adv-x="633" d="M159 525v14l247 387l30 -16q16 -10 17 -25q0 -12 -8 -24l-187 -300q-13 -20 -22 -30q10 -8 22 -28l187 -301q7 -11 8 -24q0 -15 -17 -25l-30 -16z" /> +<glyph unicode="›" horiz-adv-x="633" d="M228 137l-30 16q-17 9 -18 26q0 11 7 23l188 301q6 11 11.5 17.5t10.5 10.5q-5 5 -10.5 12t-11.5 18l-188 300q-7 11 -7 24q0 16 18 25l30 16l247 -387v-14z" /> +<glyph unicode=" " horiz-adv-x="458" /> +<glyph unicode="€" d="M32 884h168q16 135 62 242.5t117 182t164 114.5t206 40q66 0 121.5 -11.5t103 -34t89 -56t79.5 -77.5l-32 -36q-4 -5 -9 -8.5t-14 -3.5q-8 0 -19 10.5t-28.5 26t-42.5 34.5t-59.5 34.5t-80 26t-104.5 10.5q-92 0 -169 -32t-135 -94.5t-96 -154.5t-53 -213h616v-31 q0 -11 -7.5 -20t-24.5 -9h-590q-3 -48 -3 -99q0 -22 0.5 -41.5t1.5 -40.5h529v-31q0 -12 -8 -20.5t-23 -8.5h-493q13 -127 50 -223.5t94.5 -161t134 -97t168.5 -32.5q63 0 112 12t86 31t63.5 41t45 41t31.5 31.5t22 12.5q10 0 19 -10l38 -35q-37 -47 -80 -85.5t-95 -66 t-113.5 -42t-133.5 -14.5q-116 0 -210 40t-163 116.5t-112 187.5t-57 254h-166v60h161l-2 40t-1 42q0 50 4 99h-162v60z" /> +<glyph unicode="™" horiz-adv-x="1461" d="M1002 1034q5 16 14 30l218 373q5 8 9.5 10t14.5 2h59v-589h-64v454l5 45l-224 -389q-8 -16 -25 -17h-12q-17 0 -25 17l-229 387l6 -43v-454h-65v589h58q10 0 15 -2t12 -10l222 -373zM556 1449v-60h-204v-529h-72v529h-206v60h482z" /> +<glyph unicode="◼" horiz-adv-x="1018" d="M0 1019h1019v-1019h-1019v1019z" /> +<glyph horiz-adv-x="599" d="M119 1812q25 0 36.5 -4.5t25.5 -17.5l234 -211h-73q-12 0 -20.5 2t-18.5 10l-300 221h116z" /> +<glyph horiz-adv-x="599" d="M169 1705q0 -16 -7 -31t-18.5 -26t-27 -17.5t-31.5 -6.5t-31 6.5t-26.5 17.5t-18 26t-6.5 31t6.5 31.5t18 27.5t26.5 18.5t31 6.5t31.5 -6.5t27 -18.5t18.5 -27.5t7 -31.5zM595 1705q0 -16 -6.5 -31t-18.5 -26t-27 -17.5t-31 -6.5q-17 0 -32 6.5t-26.5 17.5t-18 26 t-6.5 31q0 34 24.5 59t58.5 25q16 0 31 -6.5t27 -18.5t18.5 -27.5t6.5 -31.5z" /> +<glyph horiz-adv-x="599" d="M600 1812l-299 -221q-10 -7 -19 -9.5t-21 -2.5h-72l233 211q14 13 26.5 17.5t36.5 4.5h115z" /> +<glyph horiz-adv-x="599" d="M586 1579h-75q-8 0 -18 2.5t-17 7.5l-160 126q-8 6 -11 9t-5 6l-5.5 -5.5t-11.5 -9.5l-161 -126q-7 -5 -16.5 -7.5t-17.5 -2.5h-76l241 204h92z" /> +<glyph horiz-adv-x="599" d="M128 1669q0 35 14 65t37 51.5t54 34t66 12.5t66.5 -12.5t54.5 -34t37 -51.5t14 -65q0 -36 -14 -65.5t-37 -51t-54.5 -33.5t-66.5 -12t-66 12t-54 33.5t-37 51t-14 65.5zM182 1669q0 -51 33 -84t85 -33q51 0 84 33t33 84t-33 84t-84 33q-52 0 -85 -33t-33 -84z" /> +<glyph horiz-adv-x="599" d="M422 1655q43 0 65.5 28t23.5 72h55q0 -36 -9 -66t-26.5 -53t-44.5 -36t-62 -13q-34 0 -64.5 16.5t-59.5 35.5t-56 35.5t-55 16.5q-43 0 -65 -29t-24 -72h-57q0 35 9.5 66t28 54t45.5 35.5t61 12.5q35 0 66 -16.5t59.5 -35t55 -35t54.5 -16.5z" /> +<hkern u1=""" u2="›" k="195" /> +<hkern u1=""" u2="‹" k="195" /> +<hkern u1=""" u2="•" k="195" /> +<hkern u1=""" u2="„" k="251" /> +<hkern u1=""" u2="‚" k="251" /> +<hkern u1=""" u2="—" k="195" /> +<hkern u1=""" u2="–" k="195" /> +<hkern u1=""" u2="Ÿ" k="-26" /> +<hkern u1=""" u2="œ" k="87" /> +<hkern u1=""" u2="Œ" k="49" /> +<hkern u1=""" u2="ø" k="87" /> +<hkern u1=""" u2="ö" k="87" /> +<hkern u1=""" u2="õ" k="87" /> +<hkern u1=""" u2="ô" k="87" /> +<hkern u1=""" u2="ó" k="87" /> +<hkern u1=""" u2="ò" k="87" /> +<hkern u1=""" u2="ð" k="87" /> +<hkern u1=""" u2="ë" k="87" /> +<hkern u1=""" u2="ê" k="87" /> +<hkern u1=""" u2="é" k="87" /> +<hkern u1=""" u2="è" k="87" /> +<hkern u1=""" u2="ç" k="87" /> +<hkern u1=""" u2="æ" k="63" /> +<hkern u1=""" u2="å" k="63" /> +<hkern u1=""" u2="ä" k="63" /> +<hkern u1=""" u2="ã" k="63" /> +<hkern u1=""" u2="â" k="63" /> +<hkern u1=""" u2="á" k="63" /> +<hkern u1=""" u2="à" k="63" /> +<hkern u1=""" u2="Ý" k="-26" /> +<hkern u1=""" u2="Ø" k="49" /> +<hkern u1=""" u2="Ö" k="49" /> +<hkern u1=""" u2="Õ" k="49" /> +<hkern u1=""" u2="Ô" k="49" /> +<hkern u1=""" u2="Ó" k="49" /> +<hkern u1=""" u2="Ò" k="49" /> +<hkern u1=""" u2="Ç" k="49" /> +<hkern u1=""" u2="Æ" k="174" /> +<hkern u1=""" u2="Å" k="174" /> +<hkern u1=""" u2="Ä" k="174" /> +<hkern u1=""" u2="Ã" k="174" /> +<hkern u1=""" u2="Â" k="174" /> +<hkern u1=""" u2="Á" k="174" /> +<hkern u1=""" u2="À" k="174" /> +<hkern u1=""" u2="»" k="195" /> +<hkern u1=""" u2="·" k="195" /> +<hkern u1=""" u2="­" k="195" /> +<hkern u1=""" u2="«" k="195" /> +<hkern u1=""" u2="q" k="87" /> +<hkern u1=""" u2="o" k="87" /> +<hkern u1=""" u2="e" k="87" /> +<hkern u1=""" u2="d" k="87" /> +<hkern u1=""" u2="c" k="87" /> +<hkern u1=""" u2="a" k="63" /> +<hkern u1=""" u2="\" k="-56" /> +<hkern u1=""" u2="Y" k="-26" /> +<hkern u1=""" u2="W" k="-56" /> +<hkern u1=""" u2="V" k="-56" /> +<hkern u1=""" u2="Q" k="49" /> +<hkern u1=""" u2="O" k="49" /> +<hkern u1=""" u2="G" k="49" /> +<hkern u1=""" u2="C" k="49" /> +<hkern u1=""" u2="A" k="174" /> +<hkern u1=""" u2="@" k="49" /> +<hkern u1=""" u2="/" k="174" /> +<hkern u1=""" u2="." k="251" /> +<hkern u1=""" u2="-" k="195" /> +<hkern u1=""" u2="," k="251" /> +<hkern u1=""" u2="&" k="174" /> +<hkern u1="'" u2="›" k="195" /> +<hkern u1="'" u2="‹" k="195" /> +<hkern u1="'" u2="•" k="195" /> +<hkern u1="'" u2="„" k="251" /> +<hkern u1="'" u2="‚" k="251" /> +<hkern u1="'" u2="—" k="195" /> +<hkern u1="'" u2="–" k="195" /> +<hkern u1="'" u2="Ÿ" k="-26" /> +<hkern u1="'" u2="œ" k="87" /> +<hkern u1="'" u2="Œ" k="49" /> +<hkern u1="'" u2="ø" k="87" /> +<hkern u1="'" u2="ö" k="87" /> +<hkern u1="'" u2="õ" k="87" /> +<hkern u1="'" u2="ô" k="87" /> +<hkern u1="'" u2="ó" k="87" /> +<hkern u1="'" u2="ò" k="87" /> +<hkern u1="'" u2="ð" k="87" /> +<hkern u1="'" u2="ë" k="87" /> +<hkern u1="'" u2="ê" k="87" /> +<hkern u1="'" u2="é" k="87" /> +<hkern u1="'" u2="è" k="87" /> +<hkern u1="'" u2="ç" k="87" /> +<hkern u1="'" u2="æ" k="63" /> +<hkern u1="'" u2="å" k="63" /> +<hkern u1="'" u2="ä" k="63" /> +<hkern u1="'" u2="ã" k="63" /> +<hkern u1="'" u2="â" k="63" /> +<hkern u1="'" u2="á" k="63" /> +<hkern u1="'" u2="à" k="63" /> +<hkern u1="'" u2="Ý" k="-26" /> +<hkern u1="'" u2="Ø" k="49" /> +<hkern u1="'" u2="Ö" k="49" /> +<hkern u1="'" u2="Õ" k="49" /> +<hkern u1="'" u2="Ô" k="49" /> +<hkern u1="'" u2="Ó" k="49" /> +<hkern u1="'" u2="Ò" k="49" /> +<hkern u1="'" u2="Ç" k="49" /> +<hkern u1="'" u2="Æ" k="174" /> +<hkern u1="'" u2="Å" k="174" /> +<hkern u1="'" u2="Ä" k="174" /> +<hkern u1="'" u2="Ã" k="174" /> +<hkern u1="'" u2="Â" k="174" /> +<hkern u1="'" u2="Á" k="174" /> +<hkern u1="'" u2="À" k="174" /> +<hkern u1="'" u2="»" k="195" /> +<hkern u1="'" u2="·" k="195" /> +<hkern u1="'" u2="­" k="195" /> +<hkern u1="'" u2="«" k="195" /> +<hkern u1="'" u2="q" k="87" /> +<hkern u1="'" u2="o" k="87" /> +<hkern u1="'" u2="e" k="87" /> +<hkern u1="'" u2="d" k="87" /> +<hkern u1="'" u2="c" k="87" /> +<hkern u1="'" u2="a" k="63" /> +<hkern u1="'" u2="\" k="-56" /> +<hkern u1="'" u2="Y" k="-26" /> +<hkern u1="'" u2="W" k="-56" /> +<hkern u1="'" u2="V" k="-56" /> +<hkern u1="'" u2="Q" k="49" /> +<hkern u1="'" u2="O" k="49" /> +<hkern u1="'" u2="G" k="49" /> +<hkern u1="'" u2="C" k="49" /> +<hkern u1="'" u2="A" k="174" /> +<hkern u1="'" u2="@" k="49" /> +<hkern u1="'" u2="/" k="174" /> +<hkern u1="'" u2="." k="251" /> +<hkern u1="'" u2="-" k="195" /> +<hkern u1="'" u2="," k="251" /> +<hkern u1="'" u2="&" k="174" /> +<hkern u1="(" u2="œ" k="26" /> +<hkern u1="(" u2="Œ" k="41" /> +<hkern u1="(" u2="ø" k="26" /> +<hkern u1="(" u2="ö" k="26" /> +<hkern u1="(" u2="õ" k="26" /> +<hkern u1="(" u2="ô" k="26" /> +<hkern u1="(" u2="ó" k="26" /> +<hkern u1="(" u2="ò" k="26" /> +<hkern u1="(" u2="ð" k="26" /> +<hkern u1="(" u2="ë" k="26" /> +<hkern u1="(" u2="ê" k="26" /> +<hkern u1="(" u2="é" k="26" /> +<hkern u1="(" u2="è" k="26" /> +<hkern u1="(" u2="ç" k="26" /> +<hkern u1="(" u2="Ø" k="41" /> +<hkern u1="(" u2="Ö" k="41" /> +<hkern u1="(" u2="Õ" k="41" /> +<hkern u1="(" u2="Ô" k="41" /> +<hkern u1="(" u2="Ó" k="41" /> +<hkern u1="(" u2="Ò" k="41" /> +<hkern u1="(" u2="Ç" k="41" /> +<hkern u1="(" u2="q" k="26" /> +<hkern u1="(" u2="o" k="26" /> +<hkern u1="(" u2="e" k="26" /> +<hkern u1="(" u2="d" k="26" /> +<hkern u1="(" u2="c" k="26" /> +<hkern u1="(" u2="Q" k="41" /> +<hkern u1="(" u2="O" k="41" /> +<hkern u1="(" u2="G" k="41" /> +<hkern u1="(" u2="C" k="41" /> +<hkern u1="(" u2="@" k="41" /> +<hkern u1="*" u2="›" k="195" /> +<hkern u1="*" u2="‹" k="195" /> +<hkern u1="*" u2="•" k="195" /> +<hkern u1="*" u2="„" k="251" /> +<hkern u1="*" u2="‚" k="251" /> +<hkern u1="*" u2="—" k="195" /> +<hkern u1="*" u2="–" k="195" /> +<hkern u1="*" u2="Ÿ" k="-26" /> +<hkern u1="*" u2="œ" k="87" /> +<hkern u1="*" u2="Œ" k="49" /> +<hkern u1="*" u2="ø" k="87" /> +<hkern u1="*" u2="ö" k="87" /> +<hkern u1="*" u2="õ" k="87" /> +<hkern u1="*" u2="ô" k="87" /> +<hkern u1="*" u2="ó" k="87" /> +<hkern u1="*" u2="ò" k="87" /> +<hkern u1="*" u2="ð" k="87" /> +<hkern u1="*" u2="ë" k="87" /> +<hkern u1="*" u2="ê" k="87" /> +<hkern u1="*" u2="é" k="87" /> +<hkern u1="*" u2="è" k="87" /> +<hkern u1="*" u2="ç" k="87" /> +<hkern u1="*" u2="æ" k="63" /> +<hkern u1="*" u2="å" k="63" /> +<hkern u1="*" u2="ä" k="63" /> +<hkern u1="*" u2="ã" k="63" /> +<hkern u1="*" u2="â" k="63" /> +<hkern u1="*" u2="á" k="63" /> +<hkern u1="*" u2="à" k="63" /> +<hkern u1="*" u2="Ý" k="-26" /> +<hkern u1="*" u2="Ø" k="49" /> +<hkern u1="*" u2="Ö" k="49" /> +<hkern u1="*" u2="Õ" k="49" /> +<hkern u1="*" u2="Ô" k="49" /> +<hkern u1="*" u2="Ó" k="49" /> +<hkern u1="*" u2="Ò" k="49" /> +<hkern u1="*" u2="Ç" k="49" /> +<hkern u1="*" u2="Æ" k="174" /> +<hkern u1="*" u2="Å" k="174" /> +<hkern u1="*" u2="Ä" k="174" /> +<hkern u1="*" u2="Ã" k="174" /> +<hkern u1="*" u2="Â" k="174" /> +<hkern u1="*" u2="Á" k="174" /> +<hkern u1="*" u2="À" k="174" /> +<hkern u1="*" u2="»" k="195" /> +<hkern u1="*" u2="·" k="195" /> +<hkern u1="*" u2="­" k="195" /> +<hkern u1="*" u2="«" k="195" /> +<hkern u1="*" u2="q" k="87" /> +<hkern u1="*" u2="o" k="87" /> +<hkern u1="*" u2="e" k="87" /> +<hkern u1="*" u2="d" k="87" /> +<hkern u1="*" u2="c" k="87" /> +<hkern u1="*" u2="a" k="63" /> +<hkern u1="*" u2="\" k="-56" /> +<hkern u1="*" u2="Y" k="-26" /> +<hkern u1="*" u2="W" k="-56" /> +<hkern u1="*" u2="V" k="-56" /> +<hkern u1="*" u2="Q" k="49" /> +<hkern u1="*" u2="O" k="49" /> +<hkern u1="*" u2="G" k="49" /> +<hkern u1="*" u2="C" k="49" /> +<hkern u1="*" u2="A" k="174" /> +<hkern u1="*" u2="@" k="49" /> +<hkern u1="*" u2="/" k="174" /> +<hkern u1="*" u2="." k="251" /> +<hkern u1="*" u2="-" k="195" /> +<hkern u1="*" u2="," k="251" /> +<hkern u1="*" u2="&" k="174" /> +<hkern u1="," u2="™" k="251" /> +<hkern u1="," u2="›" k="141" /> +<hkern u1="," u2="‹" k="141" /> +<hkern u1="," u2="•" k="141" /> +<hkern u1="," u2="”" k="251" /> +<hkern u1="," u2="“" k="251" /> +<hkern u1="," u2="’" k="251" /> +<hkern u1="," u2="‘" k="251" /> +<hkern u1="," u2="—" k="141" /> +<hkern u1="," u2="–" k="141" /> +<hkern u1="," u2="Ÿ" k="138" /> +<hkern u1="," u2="Œ" k="59" /> +<hkern u1="," u2="Ý" k="138" /> +<hkern u1="," u2="Ø" k="59" /> +<hkern u1="," u2="Ö" k="59" /> +<hkern u1="," u2="Õ" k="59" /> +<hkern u1="," u2="Ô" k="59" /> +<hkern u1="," u2="Ó" k="59" /> +<hkern u1="," u2="Ò" k="59" /> +<hkern u1="," u2="Ç" k="59" /> +<hkern u1="," u2="»" k="141" /> +<hkern u1="," u2="º" k="251" /> +<hkern u1="," u2="·" k="141" /> +<hkern u1="," u2="°" k="251" /> +<hkern u1="," u2="­" k="141" /> +<hkern u1="," u2="«" k="141" /> +<hkern u1="," u2="ª" k="251" /> +<hkern u1="," u2="y" k="128" /> +<hkern u1="," u2="w" k="51" /> +<hkern u1="," u2="v" k="128" /> +<hkern u1="," u2="\" k="184" /> +<hkern u1="," u2="Y" k="138" /> +<hkern u1="," u2="W" k="113" /> +<hkern u1="," u2="V" k="184" /> +<hkern u1="," u2="T" k="184" /> +<hkern u1="," u2="Q" k="59" /> +<hkern u1="," u2="O" k="59" /> +<hkern u1="," u2="G" k="59" /> +<hkern u1="," u2="C" k="59" /> +<hkern u1="," u2="@" k="59" /> +<hkern u1="," u2="-" k="141" /> +<hkern u1="," u2="*" k="251" /> +<hkern u1="," u2="'" k="251" /> +<hkern u1="," u2=""" k="251" /> +<hkern u1="-" u2="™" k="195" /> +<hkern u1="-" u2="„" k="141" /> +<hkern u1="-" u2="”" k="195" /> +<hkern u1="-" u2="“" k="195" /> +<hkern u1="-" u2="‚" k="141" /> +<hkern u1="-" u2="’" k="195" /> +<hkern u1="-" u2="‘" k="195" /> +<hkern u1="-" u2="Ÿ" k="164" /> +<hkern u1="-" u2="Ý" k="164" /> +<hkern u1="-" u2="Æ" k="36" /> +<hkern u1="-" u2="Å" k="36" /> +<hkern u1="-" u2="Ä" k="36" /> +<hkern u1="-" u2="Ã" k="36" /> +<hkern u1="-" u2="Â" k="36" /> +<hkern u1="-" u2="Á" k="36" /> +<hkern u1="-" u2="À" k="36" /> +<hkern u1="-" u2="º" k="195" /> +<hkern u1="-" u2="°" k="195" /> +<hkern u1="-" u2="ª" k="195" /> +<hkern u1="-" u2="\" k="108" /> +<hkern u1="-" u2="Z" k="44" /> +<hkern u1="-" u2="Y" k="164" /> +<hkern u1="-" u2="X" k="56" /> +<hkern u1="-" u2="W" k="26" /> +<hkern u1="-" u2="V" k="108" /> +<hkern u1="-" u2="T" k="184" /> +<hkern u1="-" u2="A" k="36" /> +<hkern u1="-" u2="/" k="36" /> +<hkern u1="-" u2="." k="141" /> +<hkern u1="-" u2="," k="141" /> +<hkern u1="-" u2="*" k="195" /> +<hkern u1="-" u2="'" k="195" /> +<hkern u1="-" u2="&" k="36" /> +<hkern u1="-" u2=""" k="195" /> +<hkern u1="." u2="™" k="251" /> +<hkern u1="." u2="›" k="141" /> +<hkern u1="." u2="‹" k="141" /> +<hkern u1="." u2="•" k="141" /> +<hkern u1="." u2="”" k="251" /> +<hkern u1="." u2="“" k="251" /> +<hkern u1="." u2="’" k="251" /> +<hkern u1="." u2="‘" k="251" /> +<hkern u1="." u2="—" k="141" /> +<hkern u1="." u2="–" k="141" /> +<hkern u1="." u2="Ÿ" k="138" /> +<hkern u1="." u2="Œ" k="59" /> +<hkern u1="." u2="Ý" k="138" /> +<hkern u1="." u2="Ø" k="59" /> +<hkern u1="." u2="Ö" k="59" /> +<hkern u1="." u2="Õ" k="59" /> +<hkern u1="." u2="Ô" k="59" /> +<hkern u1="." u2="Ó" k="59" /> +<hkern u1="." u2="Ò" k="59" /> +<hkern u1="." u2="Ç" k="59" /> +<hkern u1="." u2="»" k="141" /> +<hkern u1="." u2="º" k="251" /> +<hkern u1="." u2="·" k="141" /> +<hkern u1="." u2="°" k="251" /> +<hkern u1="." u2="­" k="141" /> +<hkern u1="." u2="«" k="141" /> +<hkern u1="." u2="ª" k="251" /> +<hkern u1="." u2="y" k="128" /> +<hkern u1="." u2="w" k="51" /> +<hkern u1="." u2="v" k="128" /> +<hkern u1="." u2="\" k="184" /> +<hkern u1="." u2="Y" k="138" /> +<hkern u1="." u2="W" k="113" /> +<hkern u1="." u2="V" k="184" /> +<hkern u1="." u2="T" k="184" /> +<hkern u1="." u2="Q" k="59" /> +<hkern u1="." u2="O" k="59" /> +<hkern u1="." u2="G" k="59" /> +<hkern u1="." u2="C" k="59" /> +<hkern u1="." u2="@" k="59" /> +<hkern u1="." u2="-" k="141" /> +<hkern u1="." u2="*" k="251" /> +<hkern u1="." u2="'" k="251" /> +<hkern u1="." u2=""" k="251" /> +<hkern u1="/" u2="™" k="-56" /> +<hkern u1="/" u2="›" k="108" /> +<hkern u1="/" u2="‹" k="108" /> +<hkern u1="/" u2="•" k="108" /> +<hkern u1="/" u2="„" k="189" /> +<hkern u1="/" u2="”" k="-56" /> +<hkern u1="/" u2="“" k="-56" /> +<hkern u1="/" u2="‚" k="189" /> +<hkern u1="/" u2="’" k="-56" /> +<hkern u1="/" u2="‘" k="-56" /> +<hkern u1="/" u2="—" k="108" /> +<hkern u1="/" u2="–" k="108" /> +<hkern u1="/" u2="œ" k="111" /> +<hkern u1="/" u2="Œ" k="46" /> +<hkern u1="/" u2="ü" k="75" /> +<hkern u1="/" u2="û" k="75" /> +<hkern u1="/" u2="ú" k="75" /> +<hkern u1="/" u2="ù" k="75" /> +<hkern u1="/" u2="ø" k="111" /> +<hkern u1="/" u2="ö" k="111" /> +<hkern u1="/" u2="õ" k="111" /> +<hkern u1="/" u2="ô" k="111" /> +<hkern u1="/" u2="ó" k="111" /> +<hkern u1="/" u2="ò" k="111" /> +<hkern u1="/" u2="ñ" k="75" /> +<hkern u1="/" u2="ð" k="111" /> +<hkern u1="/" u2="ë" k="111" /> +<hkern u1="/" u2="ê" k="111" /> +<hkern u1="/" u2="é" k="111" /> +<hkern u1="/" u2="è" k="111" /> +<hkern u1="/" u2="ç" k="111" /> +<hkern u1="/" u2="æ" k="111" /> +<hkern u1="/" u2="å" k="111" /> +<hkern u1="/" u2="ä" k="111" /> +<hkern u1="/" u2="ã" k="111" /> +<hkern u1="/" u2="â" k="111" /> +<hkern u1="/" u2="á" k="111" /> +<hkern u1="/" u2="à" k="111" /> +<hkern u1="/" u2="Ø" k="46" /> +<hkern u1="/" u2="Ö" k="46" /> +<hkern u1="/" u2="Õ" k="46" /> +<hkern u1="/" u2="Ô" k="46" /> +<hkern u1="/" u2="Ó" k="46" /> +<hkern u1="/" u2="Ò" k="46" /> +<hkern u1="/" u2="Ç" k="46" /> +<hkern u1="/" u2="Æ" k="97" /> +<hkern u1="/" u2="Å" k="97" /> +<hkern u1="/" u2="Ä" k="97" /> +<hkern u1="/" u2="Ã" k="97" /> +<hkern u1="/" u2="Â" k="97" /> +<hkern u1="/" u2="Á" k="97" /> +<hkern u1="/" u2="À" k="97" /> +<hkern u1="/" u2="»" k="108" /> +<hkern u1="/" u2="º" k="-56" /> +<hkern u1="/" u2="¹" k="-72" /> +<hkern u1="/" u2="·" k="108" /> +<hkern u1="/" u2="µ" k="75" /> +<hkern u1="/" u2="³" k="-72" /> +<hkern u1="/" u2="²" k="-72" /> +<hkern u1="/" u2="°" k="-56" /> +<hkern u1="/" u2="­" k="108" /> +<hkern u1="/" u2="«" k="108" /> +<hkern u1="/" u2="ª" k="-56" /> +<hkern u1="/" u2="z" k="72" /> +<hkern u1="/" u2="y" k="34" /> +<hkern u1="/" u2="x" k="36" /> +<hkern u1="/" u2="v" k="34" /> +<hkern u1="/" u2="u" k="75" /> +<hkern u1="/" u2="t" k="36" /> +<hkern u1="/" u2="s" k="105" /> +<hkern u1="/" u2="r" k="75" /> +<hkern u1="/" u2="q" k="111" /> +<hkern u1="/" u2="p" k="75" /> +<hkern u1="/" u2="o" k="111" /> +<hkern u1="/" u2="n" k="75" /> +<hkern u1="/" u2="m" k="75" /> +<hkern u1="/" u2="g" k="136" /> +<hkern u1="/" u2="f" k="31" /> +<hkern u1="/" u2="e" k="111" /> +<hkern u1="/" u2="d" k="111" /> +<hkern u1="/" u2="c" k="111" /> +<hkern u1="/" u2="a" k="111" /> +<hkern u1="/" u2="Q" k="46" /> +<hkern u1="/" u2="O" k="46" /> +<hkern u1="/" u2="J" k="148" /> +<hkern u1="/" u2="G" k="46" /> +<hkern u1="/" u2="C" k="46" /> +<hkern u1="/" u2="A" k="97" /> +<hkern u1="/" u2="@" k="46" /> +<hkern u1="/" u2="?" k="-61" /> +<hkern u1="/" u2=";" k="75" /> +<hkern u1="/" u2=":" k="75" /> +<hkern u1="/" u2="/" k="97" /> +<hkern u1="/" u2="." k="189" /> +<hkern u1="/" u2="-" k="108" /> +<hkern u1="/" u2="," k="189" /> +<hkern u1="/" u2="*" k="-56" /> +<hkern u1="/" u2="'" k="-56" /> +<hkern u1="/" u2="&" k="97" /> +<hkern u1="/" u2=""" k="-56" /> +<hkern u1="@" u2="™" k="49" /> +<hkern u1="@" u2="„" k="59" /> +<hkern u1="@" u2="”" k="49" /> +<hkern u1="@" u2="“" k="49" /> +<hkern u1="@" u2="‚" k="59" /> +<hkern u1="@" u2="’" k="49" /> +<hkern u1="@" u2="‘" k="49" /> +<hkern u1="@" u2="Ÿ" k="82" /> +<hkern u1="@" u2="Ý" k="82" /> +<hkern u1="@" u2="Æ" k="31" /> +<hkern u1="@" u2="Å" k="31" /> +<hkern u1="@" u2="Ä" k="31" /> +<hkern u1="@" u2="Ã" k="31" /> +<hkern u1="@" u2="Â" k="31" /> +<hkern u1="@" u2="Á" k="31" /> +<hkern u1="@" u2="À" k="31" /> +<hkern u1="@" u2="º" k="49" /> +<hkern u1="@" u2="°" k="49" /> +<hkern u1="@" u2="ª" k="49" /> +<hkern u1="@" u2="}" k="41" /> +<hkern u1="@" u2="]" k="41" /> +<hkern u1="@" u2="\" k="46" /> +<hkern u1="@" u2="Z" k="77" /> +<hkern u1="@" u2="Y" k="82" /> +<hkern u1="@" u2="X" k="31" /> +<hkern u1="@" u2="V" k="46" /> +<hkern u1="@" u2="T" k="123" /> +<hkern u1="@" u2="A" k="31" /> +<hkern u1="@" u2="/" k="31" /> +<hkern u1="@" u2="." k="59" /> +<hkern u1="@" u2="," k="59" /> +<hkern u1="@" u2="*" k="49" /> +<hkern u1="@" u2=")" k="41" /> +<hkern u1="@" u2="'" k="49" /> +<hkern u1="@" u2="&" k="31" /> +<hkern u1="@" u2=""" k="49" /> +<hkern u1="A" u2="™" k="174" /> +<hkern u1="A" u2="›" k="36" /> +<hkern u1="A" u2="‹" k="36" /> +<hkern u1="A" u2="•" k="36" /> +<hkern u1="A" u2="”" k="174" /> +<hkern u1="A" u2="“" k="174" /> +<hkern u1="A" u2="’" k="174" /> +<hkern u1="A" u2="‘" k="174" /> +<hkern u1="A" u2="—" k="36" /> +<hkern u1="A" u2="–" k="36" /> +<hkern u1="A" u2="Ÿ" k="143" /> +<hkern u1="A" u2="Œ" k="31" /> +<hkern u1="A" u2="Ý" k="143" /> +<hkern u1="A" u2="Ü" k="59" /> +<hkern u1="A" u2="Û" k="59" /> +<hkern u1="A" u2="Ú" k="59" /> +<hkern u1="A" u2="Ù" k="59" /> +<hkern u1="A" u2="Ø" k="31" /> +<hkern u1="A" u2="Ö" k="31" /> +<hkern u1="A" u2="Õ" k="31" /> +<hkern u1="A" u2="Ô" k="31" /> +<hkern u1="A" u2="Ó" k="31" /> +<hkern u1="A" u2="Ò" k="31" /> +<hkern u1="A" u2="Ç" k="31" /> +<hkern u1="A" u2="»" k="36" /> +<hkern u1="A" u2="º" k="174" /> +<hkern u1="A" u2="¹" k="164" /> +<hkern u1="A" u2="·" k="36" /> +<hkern u1="A" u2="³" k="164" /> +<hkern u1="A" u2="²" k="164" /> +<hkern u1="A" u2="°" k="174" /> +<hkern u1="A" u2="­" k="36" /> +<hkern u1="A" u2="«" k="36" /> +<hkern u1="A" u2="ª" k="174" /> +<hkern u1="A" u2="y" k="72" /> +<hkern u1="A" u2="v" k="72" /> +<hkern u1="A" u2="\" k="97" /> +<hkern u1="A" u2="Y" k="143" /> +<hkern u1="A" u2="W" k="61" /> +<hkern u1="A" u2="V" k="97" /> +<hkern u1="A" u2="U" k="59" /> +<hkern u1="A" u2="T" k="118" /> +<hkern u1="A" u2="Q" k="31" /> +<hkern u1="A" u2="O" k="31" /> +<hkern u1="A" u2="J" k="-46" /> +<hkern u1="A" u2="G" k="31" /> +<hkern u1="A" u2="C" k="31" /> +<hkern u1="A" u2="@" k="31" /> +<hkern u1="A" u2="?" k="49" /> +<hkern u1="A" u2="-" k="36" /> +<hkern u1="A" u2="*" k="174" /> +<hkern u1="A" u2="'" k="174" /> +<hkern u1="A" u2=""" k="174" /> +<hkern u1="C" u2="›" k="159" /> +<hkern u1="C" u2="‹" k="159" /> +<hkern u1="C" u2="•" k="159" /> +<hkern u1="C" u2="—" k="159" /> +<hkern u1="C" u2="–" k="159" /> +<hkern u1="C" u2="»" k="159" /> +<hkern u1="C" u2="·" k="159" /> +<hkern u1="C" u2="­" k="159" /> +<hkern u1="C" u2="«" k="159" /> +<hkern u1="C" u2="-" k="159" /> +<hkern u1="D" u2="™" k="49" /> +<hkern u1="D" u2="„" k="59" /> +<hkern u1="D" u2="”" k="49" /> +<hkern u1="D" u2="“" k="49" /> +<hkern u1="D" u2="‚" k="59" /> +<hkern u1="D" u2="’" k="49" /> +<hkern u1="D" u2="‘" k="49" /> +<hkern u1="D" u2="Ÿ" k="82" /> +<hkern u1="D" u2="Ý" k="82" /> +<hkern u1="D" u2="Æ" k="31" /> +<hkern u1="D" u2="Å" k="31" /> +<hkern u1="D" u2="Ä" k="31" /> +<hkern u1="D" u2="Ã" k="31" /> +<hkern u1="D" u2="Â" k="31" /> +<hkern u1="D" u2="Á" k="31" /> +<hkern u1="D" u2="À" k="31" /> +<hkern u1="D" u2="º" k="49" /> +<hkern u1="D" u2="°" k="49" /> +<hkern u1="D" u2="ª" k="49" /> +<hkern u1="D" u2="}" k="41" /> +<hkern u1="D" u2="]" k="41" /> +<hkern u1="D" u2="\" k="46" /> +<hkern u1="D" u2="Z" k="77" /> +<hkern u1="D" u2="Y" k="82" /> +<hkern u1="D" u2="X" k="31" /> +<hkern u1="D" u2="V" k="46" /> +<hkern u1="D" u2="T" k="123" /> +<hkern u1="D" u2="A" k="31" /> +<hkern u1="D" u2="/" k="31" /> +<hkern u1="D" u2="." k="59" /> +<hkern u1="D" u2="," k="59" /> +<hkern u1="D" u2="*" k="49" /> +<hkern u1="D" u2=")" k="41" /> +<hkern u1="D" u2="'" k="49" /> +<hkern u1="D" u2="&" k="31" /> +<hkern u1="D" u2=""" k="49" /> +<hkern u1="F" u2="„" k="184" /> +<hkern u1="F" u2="‚" k="184" /> +<hkern u1="F" u2="œ" k="77" /> +<hkern u1="F" u2="ü" k="61" /> +<hkern u1="F" u2="û" k="61" /> +<hkern u1="F" u2="ú" k="61" /> +<hkern u1="F" u2="ù" k="61" /> +<hkern u1="F" u2="ø" k="77" /> +<hkern u1="F" u2="ö" k="77" /> +<hkern u1="F" u2="õ" k="77" /> +<hkern u1="F" u2="ô" k="77" /> +<hkern u1="F" u2="ó" k="77" /> +<hkern u1="F" u2="ò" k="77" /> +<hkern u1="F" u2="ñ" k="61" /> +<hkern u1="F" u2="ð" k="77" /> +<hkern u1="F" u2="ë" k="77" /> +<hkern u1="F" u2="ê" k="77" /> +<hkern u1="F" u2="é" k="77" /> +<hkern u1="F" u2="è" k="77" /> +<hkern u1="F" u2="ç" k="77" /> +<hkern u1="F" u2="Æ" k="118" /> +<hkern u1="F" u2="Å" k="118" /> +<hkern u1="F" u2="Ä" k="118" /> +<hkern u1="F" u2="Ã" k="118" /> +<hkern u1="F" u2="Â" k="118" /> +<hkern u1="F" u2="Á" k="118" /> +<hkern u1="F" u2="À" k="118" /> +<hkern u1="F" u2="µ" k="61" /> +<hkern u1="F" u2="u" k="61" /> +<hkern u1="F" u2="r" k="61" /> +<hkern u1="F" u2="q" k="77" /> +<hkern u1="F" u2="p" k="61" /> +<hkern u1="F" u2="o" k="77" /> +<hkern u1="F" u2="n" k="61" /> +<hkern u1="F" u2="m" k="61" /> +<hkern u1="F" u2="e" k="77" /> +<hkern u1="F" u2="d" k="77" /> +<hkern u1="F" u2="c" k="77" /> +<hkern u1="F" u2="J" k="215" /> +<hkern u1="F" u2="A" k="118" /> +<hkern u1="F" u2="?" k="-31" /> +<hkern u1="F" u2=";" k="61" /> +<hkern u1="F" u2=":" k="61" /> +<hkern u1="F" u2="/" k="118" /> +<hkern u1="F" u2="." k="184" /> +<hkern u1="F" u2="," k="184" /> +<hkern u1="F" u2="&" k="118" /> +<hkern u1="J" u2="„" k="51" /> +<hkern u1="J" u2="‚" k="51" /> +<hkern u1="J" u2="Æ" k="59" /> +<hkern u1="J" u2="Å" k="59" /> +<hkern u1="J" u2="Ä" k="59" /> +<hkern u1="J" u2="Ã" k="59" /> +<hkern u1="J" u2="Â" k="59" /> +<hkern u1="J" u2="Á" k="59" /> +<hkern u1="J" u2="À" k="59" /> +<hkern u1="J" u2="A" k="59" /> +<hkern u1="J" u2="/" k="59" /> +<hkern u1="J" u2="." k="51" /> +<hkern u1="J" u2="," k="51" /> +<hkern u1="J" u2="&" k="59" /> +<hkern u1="K" u2="›" k="56" /> +<hkern u1="K" u2="‹" k="56" /> +<hkern u1="K" u2="•" k="56" /> +<hkern u1="K" u2="—" k="56" /> +<hkern u1="K" u2="–" k="56" /> +<hkern u1="K" u2="œ" k="29" /> +<hkern u1="K" u2="Œ" k="31" /> +<hkern u1="K" u2="ø" k="29" /> +<hkern u1="K" u2="ö" k="29" /> +<hkern u1="K" u2="õ" k="29" /> +<hkern u1="K" u2="ô" k="29" /> +<hkern u1="K" u2="ó" k="29" /> +<hkern u1="K" u2="ò" k="29" /> +<hkern u1="K" u2="ð" k="29" /> +<hkern u1="K" u2="ë" k="29" /> +<hkern u1="K" u2="ê" k="29" /> +<hkern u1="K" u2="é" k="29" /> +<hkern u1="K" u2="è" k="29" /> +<hkern u1="K" u2="ç" k="29" /> +<hkern u1="K" u2="Ø" k="31" /> +<hkern u1="K" u2="Ö" k="31" /> +<hkern u1="K" u2="Õ" k="31" /> +<hkern u1="K" u2="Ô" k="31" /> +<hkern u1="K" u2="Ó" k="31" /> +<hkern u1="K" u2="Ò" k="31" /> +<hkern u1="K" u2="Ç" k="31" /> +<hkern u1="K" u2="»" k="56" /> +<hkern u1="K" u2="·" k="56" /> +<hkern u1="K" u2="­" k="56" /> +<hkern u1="K" u2="«" k="56" /> +<hkern u1="K" u2="y" k="59" /> +<hkern u1="K" u2="w" k="59" /> +<hkern u1="K" u2="v" k="59" /> +<hkern u1="K" u2="t" k="72" /> +<hkern u1="K" u2="q" k="29" /> +<hkern u1="K" u2="o" k="29" /> +<hkern u1="K" u2="f" k="46" /> +<hkern u1="K" u2="e" k="29" /> +<hkern u1="K" u2="d" k="29" /> +<hkern u1="K" u2="c" k="29" /> +<hkern u1="K" u2="Q" k="31" /> +<hkern u1="K" u2="O" k="31" /> +<hkern u1="K" u2="G" k="31" /> +<hkern u1="K" u2="C" k="31" /> +<hkern u1="K" u2="@" k="31" /> +<hkern u1="K" u2="-" k="56" /> +<hkern u1="L" u2="™" k="302" /> +<hkern u1="L" u2="›" k="225" /> +<hkern u1="L" u2="‹" k="225" /> +<hkern u1="L" u2="•" k="225" /> +<hkern u1="L" u2="„" k="-53" /> +<hkern u1="L" u2="”" k="302" /> +<hkern u1="L" u2="“" k="302" /> +<hkern u1="L" u2="‚" k="-53" /> +<hkern u1="L" u2="’" k="302" /> +<hkern u1="L" u2="‘" k="302" /> +<hkern u1="L" u2="—" k="225" /> +<hkern u1="L" u2="–" k="225" /> +<hkern u1="L" u2="Ÿ" k="200" /> +<hkern u1="L" u2="œ" k="34" /> +<hkern u1="L" u2="Œ" k="82" /> +<hkern u1="L" u2="ø" k="34" /> +<hkern u1="L" u2="ö" k="34" /> +<hkern u1="L" u2="õ" k="34" /> +<hkern u1="L" u2="ô" k="34" /> +<hkern u1="L" u2="ó" k="34" /> +<hkern u1="L" u2="ò" k="34" /> +<hkern u1="L" u2="ð" k="34" /> +<hkern u1="L" u2="ë" k="34" /> +<hkern u1="L" u2="ê" k="34" /> +<hkern u1="L" u2="é" k="34" /> +<hkern u1="L" u2="è" k="34" /> +<hkern u1="L" u2="ç" k="34" /> +<hkern u1="L" u2="Ý" k="200" /> +<hkern u1="L" u2="Ø" k="82" /> +<hkern u1="L" u2="Ö" k="82" /> +<hkern u1="L" u2="Õ" k="82" /> +<hkern u1="L" u2="Ô" k="82" /> +<hkern u1="L" u2="Ó" k="82" /> +<hkern u1="L" u2="Ò" k="82" /> +<hkern u1="L" u2="Ç" k="82" /> +<hkern u1="L" u2="»" k="225" /> +<hkern u1="L" u2="º" k="302" /> +<hkern u1="L" u2="¹" k="195" /> +<hkern u1="L" u2="·" k="225" /> +<hkern u1="L" u2="³" k="195" /> +<hkern u1="L" u2="²" k="195" /> +<hkern u1="L" u2="°" k="302" /> +<hkern u1="L" u2="­" k="225" /> +<hkern u1="L" u2="«" k="225" /> +<hkern u1="L" u2="ª" k="302" /> +<hkern u1="L" u2="y" k="95" /> +<hkern u1="L" u2="w" k="82" /> +<hkern u1="L" u2="v" k="95" /> +<hkern u1="L" u2="q" k="34" /> +<hkern u1="L" u2="o" k="34" /> +<hkern u1="L" u2="e" k="34" /> +<hkern u1="L" u2="d" k="34" /> +<hkern u1="L" u2="c" k="34" /> +<hkern u1="L" u2="\" k="174" /> +<hkern u1="L" u2="Y" k="200" /> +<hkern u1="L" u2="W" k="138" /> +<hkern u1="L" u2="V" k="174" /> +<hkern u1="L" u2="T" k="169" /> +<hkern u1="L" u2="Q" k="82" /> +<hkern u1="L" u2="O" k="82" /> +<hkern u1="L" u2="G" k="82" /> +<hkern u1="L" u2="C" k="82" /> +<hkern u1="L" u2="@" k="82" /> +<hkern u1="L" u2="?" k="51" /> +<hkern u1="L" u2="." k="-53" /> +<hkern u1="L" u2="-" k="225" /> +<hkern u1="L" u2="," k="-53" /> +<hkern u1="L" u2="*" k="302" /> +<hkern u1="L" u2="'" k="302" /> +<hkern u1="L" u2=""" k="302" /> +<hkern u1="O" u2="™" k="49" /> +<hkern u1="O" u2="„" k="59" /> +<hkern u1="O" u2="”" k="49" /> +<hkern u1="O" u2="“" k="49" /> +<hkern u1="O" u2="‚" k="59" /> +<hkern u1="O" u2="’" k="49" /> +<hkern u1="O" u2="‘" k="49" /> +<hkern u1="O" u2="Ÿ" k="82" /> +<hkern u1="O" u2="Ý" k="82" /> +<hkern u1="O" u2="Æ" k="31" /> +<hkern u1="O" u2="Å" k="31" /> +<hkern u1="O" u2="Ä" k="31" /> +<hkern u1="O" u2="Ã" k="31" /> +<hkern u1="O" u2="Â" k="31" /> +<hkern u1="O" u2="Á" k="31" /> +<hkern u1="O" u2="À" k="31" /> +<hkern u1="O" u2="º" k="49" /> +<hkern u1="O" u2="°" k="49" /> +<hkern u1="O" u2="ª" k="49" /> +<hkern u1="O" u2="}" k="41" /> +<hkern u1="O" u2="]" k="41" /> +<hkern u1="O" u2="\" k="46" /> +<hkern u1="O" u2="Z" k="77" /> +<hkern u1="O" u2="Y" k="82" /> +<hkern u1="O" u2="X" k="31" /> +<hkern u1="O" u2="V" k="46" /> +<hkern u1="O" u2="T" k="123" /> +<hkern u1="O" u2="A" k="31" /> +<hkern u1="O" u2="/" k="31" /> +<hkern u1="O" u2="." k="59" /> +<hkern u1="O" u2="," k="59" /> +<hkern u1="O" u2="*" k="49" /> +<hkern u1="O" u2=")" k="41" /> +<hkern u1="O" u2="'" k="49" /> +<hkern u1="O" u2="&" k="31" /> +<hkern u1="O" u2=""" k="49" /> +<hkern u1="P" u2="„" k="233" /> +<hkern u1="P" u2="‚" k="233" /> +<hkern u1="P" u2="œ" k="31" /> +<hkern u1="P" u2="ø" k="31" /> +<hkern u1="P" u2="ö" k="31" /> +<hkern u1="P" u2="õ" k="31" /> +<hkern u1="P" u2="ô" k="31" /> +<hkern u1="P" u2="ó" k="31" /> +<hkern u1="P" u2="ò" k="31" /> +<hkern u1="P" u2="ð" k="31" /> +<hkern u1="P" u2="ë" k="31" /> +<hkern u1="P" u2="ê" k="31" /> +<hkern u1="P" u2="é" k="31" /> +<hkern u1="P" u2="è" k="31" /> +<hkern u1="P" u2="ç" k="31" /> +<hkern u1="P" u2="æ" k="51" /> +<hkern u1="P" u2="å" k="51" /> +<hkern u1="P" u2="ä" k="51" /> +<hkern u1="P" u2="ã" k="51" /> +<hkern u1="P" u2="â" k="51" /> +<hkern u1="P" u2="á" k="51" /> +<hkern u1="P" u2="à" k="51" /> +<hkern u1="P" u2="Æ" k="121" /> +<hkern u1="P" u2="Å" k="121" /> +<hkern u1="P" u2="Ä" k="121" /> +<hkern u1="P" u2="Ã" k="121" /> +<hkern u1="P" u2="Â" k="121" /> +<hkern u1="P" u2="Á" k="121" /> +<hkern u1="P" u2="À" k="121" /> +<hkern u1="P" u2="q" k="31" /> +<hkern u1="P" u2="o" k="31" /> +<hkern u1="P" u2="e" k="31" /> +<hkern u1="P" u2="d" k="31" /> +<hkern u1="P" u2="c" k="31" /> +<hkern u1="P" u2="a" k="51" /> +<hkern u1="P" u2="J" k="174" /> +<hkern u1="P" u2="A" k="121" /> +<hkern u1="P" u2="/" k="121" /> +<hkern u1="P" u2="." k="233" /> +<hkern u1="P" u2="," k="233" /> +<hkern u1="P" u2="&" k="121" /> +<hkern u1="Q" u2="™" k="49" /> +<hkern u1="Q" u2="„" k="59" /> +<hkern u1="Q" u2="”" k="49" /> +<hkern u1="Q" u2="“" k="49" /> +<hkern u1="Q" u2="‚" k="59" /> +<hkern u1="Q" u2="’" k="49" /> +<hkern u1="Q" u2="‘" k="49" /> +<hkern u1="Q" u2="Ÿ" k="82" /> +<hkern u1="Q" u2="Ý" k="82" /> +<hkern u1="Q" u2="Æ" k="31" /> +<hkern u1="Q" u2="Å" k="31" /> +<hkern u1="Q" u2="Ä" k="31" /> +<hkern u1="Q" u2="Ã" k="31" /> +<hkern u1="Q" u2="Â" k="31" /> +<hkern u1="Q" u2="Á" k="31" /> +<hkern u1="Q" u2="À" k="31" /> +<hkern u1="Q" u2="º" k="49" /> +<hkern u1="Q" u2="°" k="49" /> +<hkern u1="Q" u2="ª" k="49" /> +<hkern u1="Q" u2="}" k="41" /> +<hkern u1="Q" u2="]" k="41" /> +<hkern u1="Q" u2="\" k="46" /> +<hkern u1="Q" u2="Z" k="77" /> +<hkern u1="Q" u2="Y" k="82" /> +<hkern u1="Q" u2="X" k="31" /> +<hkern u1="Q" u2="V" k="46" /> +<hkern u1="Q" u2="T" k="123" /> +<hkern u1="Q" u2="A" k="31" /> +<hkern u1="Q" u2="/" k="31" /> +<hkern u1="Q" u2="." k="59" /> +<hkern u1="Q" u2="," k="59" /> +<hkern u1="Q" u2="*" k="49" /> +<hkern u1="Q" u2=")" k="41" /> +<hkern u1="Q" u2="'" k="49" /> +<hkern u1="Q" u2="&" k="31" /> +<hkern u1="Q" u2=""" k="49" /> +<hkern u1="R" u2="Œ" k="44" /> +<hkern u1="R" u2="Ü" k="31" /> +<hkern u1="R" u2="Û" k="31" /> +<hkern u1="R" u2="Ú" k="31" /> +<hkern u1="R" u2="Ù" k="31" /> +<hkern u1="R" u2="Ø" k="44" /> +<hkern u1="R" u2="Ö" k="44" /> +<hkern u1="R" u2="Õ" k="44" /> +<hkern u1="R" u2="Ô" k="44" /> +<hkern u1="R" u2="Ó" k="44" /> +<hkern u1="R" u2="Ò" k="44" /> +<hkern u1="R" u2="Ç" k="44" /> +<hkern u1="R" u2="U" k="31" /> +<hkern u1="R" u2="T" k="46" /> +<hkern u1="R" u2="Q" k="44" /> +<hkern u1="R" u2="O" k="44" /> +<hkern u1="R" u2="G" k="44" /> +<hkern u1="R" u2="C" k="44" /> +<hkern u1="R" u2="@" k="44" /> +<hkern u1="T" u2="›" k="184" /> +<hkern u1="T" u2="‹" k="184" /> +<hkern u1="T" u2="•" k="184" /> +<hkern u1="T" u2="„" k="184" /> +<hkern u1="T" u2="‚" k="184" /> +<hkern u1="T" u2="—" k="184" /> +<hkern u1="T" u2="–" k="184" /> +<hkern u1="T" u2="œ" k="220" /> +<hkern u1="T" u2="Œ" k="123" /> +<hkern u1="T" u2="ü" k="164" /> +<hkern u1="T" u2="û" k="164" /> +<hkern u1="T" u2="ú" k="164" /> +<hkern u1="T" u2="ù" k="164" /> +<hkern u1="T" u2="ø" k="220" /> +<hkern u1="T" u2="ö" k="220" /> +<hkern u1="T" u2="õ" k="220" /> +<hkern u1="T" u2="ô" k="220" /> +<hkern u1="T" u2="ó" k="220" /> +<hkern u1="T" u2="ò" k="220" /> +<hkern u1="T" u2="ñ" k="164" /> +<hkern u1="T" u2="ð" k="220" /> +<hkern u1="T" u2="ë" k="220" /> +<hkern u1="T" u2="ê" k="220" /> +<hkern u1="T" u2="é" k="220" /> +<hkern u1="T" u2="è" k="220" /> +<hkern u1="T" u2="ç" k="220" /> +<hkern u1="T" u2="æ" k="261" /> +<hkern u1="T" u2="å" k="261" /> +<hkern u1="T" u2="ä" k="261" /> +<hkern u1="T" u2="ã" k="261" /> +<hkern u1="T" u2="â" k="261" /> +<hkern u1="T" u2="á" k="261" /> +<hkern u1="T" u2="à" k="261" /> +<hkern u1="T" u2="Ø" k="123" /> +<hkern u1="T" u2="Ö" k="123" /> +<hkern u1="T" u2="Õ" k="123" /> +<hkern u1="T" u2="Ô" k="123" /> +<hkern u1="T" u2="Ó" k="123" /> +<hkern u1="T" u2="Ò" k="123" /> +<hkern u1="T" u2="Ç" k="123" /> +<hkern u1="T" u2="Æ" k="118" /> +<hkern u1="T" u2="Å" k="118" /> +<hkern u1="T" u2="Ä" k="118" /> +<hkern u1="T" u2="Ã" k="118" /> +<hkern u1="T" u2="Â" k="118" /> +<hkern u1="T" u2="Á" k="118" /> +<hkern u1="T" u2="À" k="118" /> +<hkern u1="T" u2="»" k="184" /> +<hkern u1="T" u2="·" k="184" /> +<hkern u1="T" u2="µ" k="164" /> +<hkern u1="T" u2="­" k="184" /> +<hkern u1="T" u2="«" k="184" /> +<hkern u1="T" u2="z" k="123" /> +<hkern u1="T" u2="y" k="184" /> +<hkern u1="T" u2="x" k="157" /> +<hkern u1="T" u2="w" k="143" /> +<hkern u1="T" u2="v" k="184" /> +<hkern u1="T" u2="u" k="164" /> +<hkern u1="T" u2="s" k="193" /> +<hkern u1="T" u2="r" k="164" /> +<hkern u1="T" u2="q" k="220" /> +<hkern u1="T" u2="p" k="164" /> +<hkern u1="T" u2="o" k="220" /> +<hkern u1="T" u2="n" k="164" /> +<hkern u1="T" u2="m" k="164" /> +<hkern u1="T" u2="g" k="199" /> +<hkern u1="T" u2="e" k="220" /> +<hkern u1="T" u2="d" k="220" /> +<hkern u1="T" u2="c" k="220" /> +<hkern u1="T" u2="a" k="261" /> +<hkern u1="T" u2="Q" k="123" /> +<hkern u1="T" u2="O" k="123" /> +<hkern u1="T" u2="J" k="205" /> +<hkern u1="T" u2="G" k="123" /> +<hkern u1="T" u2="C" k="123" /> +<hkern u1="T" u2="A" k="118" /> +<hkern u1="T" u2="@" k="123" /> +<hkern u1="T" u2=";" k="164" /> +<hkern u1="T" u2=":" k="164" /> +<hkern u1="T" u2="/" k="118" /> +<hkern u1="T" u2="." k="184" /> +<hkern u1="T" u2="-" k="184" /> +<hkern u1="T" u2="," k="184" /> +<hkern u1="T" u2="&" k="118" /> +<hkern u1="U" u2="„" k="51" /> +<hkern u1="U" u2="‚" k="51" /> +<hkern u1="U" u2="Æ" k="59" /> +<hkern u1="U" u2="Å" k="59" /> +<hkern u1="U" u2="Ä" k="59" /> +<hkern u1="U" u2="Ã" k="59" /> +<hkern u1="U" u2="Â" k="59" /> +<hkern u1="U" u2="Á" k="59" /> +<hkern u1="U" u2="À" k="59" /> +<hkern u1="U" u2="A" k="59" /> +<hkern u1="U" u2="/" k="59" /> +<hkern u1="U" u2="." k="51" /> +<hkern u1="U" u2="," k="51" /> +<hkern u1="U" u2="&" k="59" /> +<hkern u1="V" u2="™" k="-56" /> +<hkern u1="V" u2="›" k="108" /> +<hkern u1="V" u2="‹" k="108" /> +<hkern u1="V" u2="•" k="108" /> +<hkern u1="V" u2="„" k="189" /> +<hkern u1="V" u2="”" k="-56" /> +<hkern u1="V" u2="“" k="-56" /> +<hkern u1="V" u2="‚" k="189" /> +<hkern u1="V" u2="’" k="-56" /> +<hkern u1="V" u2="‘" k="-56" /> +<hkern u1="V" u2="—" k="108" /> +<hkern u1="V" u2="–" k="108" /> +<hkern u1="V" u2="œ" k="111" /> +<hkern u1="V" u2="Œ" k="46" /> +<hkern u1="V" u2="ü" k="75" /> +<hkern u1="V" u2="û" k="75" /> +<hkern u1="V" u2="ú" k="75" /> +<hkern u1="V" u2="ù" k="75" /> +<hkern u1="V" u2="ø" k="111" /> +<hkern u1="V" u2="ö" k="111" /> +<hkern u1="V" u2="õ" k="111" /> +<hkern u1="V" u2="ô" k="111" /> +<hkern u1="V" u2="ó" k="111" /> +<hkern u1="V" u2="ò" k="111" /> +<hkern u1="V" u2="ñ" k="75" /> +<hkern u1="V" u2="ð" k="111" /> +<hkern u1="V" u2="ë" k="111" /> +<hkern u1="V" u2="ê" k="111" /> +<hkern u1="V" u2="é" k="111" /> +<hkern u1="V" u2="è" k="111" /> +<hkern u1="V" u2="ç" k="111" /> +<hkern u1="V" u2="æ" k="111" /> +<hkern u1="V" u2="å" k="111" /> +<hkern u1="V" u2="ä" k="111" /> +<hkern u1="V" u2="ã" k="111" /> +<hkern u1="V" u2="â" k="111" /> +<hkern u1="V" u2="á" k="111" /> +<hkern u1="V" u2="à" k="111" /> +<hkern u1="V" u2="Ø" k="46" /> +<hkern u1="V" u2="Ö" k="46" /> +<hkern u1="V" u2="Õ" k="46" /> +<hkern u1="V" u2="Ô" k="46" /> +<hkern u1="V" u2="Ó" k="46" /> +<hkern u1="V" u2="Ò" k="46" /> +<hkern u1="V" u2="Ç" k="46" /> +<hkern u1="V" u2="Æ" k="97" /> +<hkern u1="V" u2="Å" k="97" /> +<hkern u1="V" u2="Ä" k="97" /> +<hkern u1="V" u2="Ã" k="97" /> +<hkern u1="V" u2="Â" k="97" /> +<hkern u1="V" u2="Á" k="97" /> +<hkern u1="V" u2="À" k="97" /> +<hkern u1="V" u2="»" k="108" /> +<hkern u1="V" u2="º" k="-56" /> +<hkern u1="V" u2="¹" k="-72" /> +<hkern u1="V" u2="·" k="108" /> +<hkern u1="V" u2="µ" k="75" /> +<hkern u1="V" u2="³" k="-72" /> +<hkern u1="V" u2="²" k="-72" /> +<hkern u1="V" u2="°" k="-56" /> +<hkern u1="V" u2="­" k="108" /> +<hkern u1="V" u2="«" k="108" /> +<hkern u1="V" u2="ª" k="-56" /> +<hkern u1="V" u2="z" k="72" /> +<hkern u1="V" u2="y" k="34" /> +<hkern u1="V" u2="x" k="36" /> +<hkern u1="V" u2="v" k="34" /> +<hkern u1="V" u2="u" k="75" /> +<hkern u1="V" u2="t" k="36" /> +<hkern u1="V" u2="s" k="105" /> +<hkern u1="V" u2="r" k="75" /> +<hkern u1="V" u2="q" k="111" /> +<hkern u1="V" u2="p" k="75" /> +<hkern u1="V" u2="o" k="111" /> +<hkern u1="V" u2="n" k="75" /> +<hkern u1="V" u2="m" k="75" /> +<hkern u1="V" u2="g" k="136" /> +<hkern u1="V" u2="f" k="31" /> +<hkern u1="V" u2="e" k="111" /> +<hkern u1="V" u2="d" k="111" /> +<hkern u1="V" u2="c" k="111" /> +<hkern u1="V" u2="a" k="111" /> +<hkern u1="V" u2="Q" k="46" /> +<hkern u1="V" u2="O" k="46" /> +<hkern u1="V" u2="J" k="148" /> +<hkern u1="V" u2="G" k="46" /> +<hkern u1="V" u2="C" k="46" /> +<hkern u1="V" u2="A" k="97" /> +<hkern u1="V" u2="@" k="46" /> +<hkern u1="V" u2="?" k="-61" /> +<hkern u1="V" u2=";" k="75" /> +<hkern u1="V" u2=":" k="75" /> +<hkern u1="V" u2="/" k="97" /> +<hkern u1="V" u2="." k="189" /> +<hkern u1="V" u2="-" k="108" /> +<hkern u1="V" u2="," k="189" /> +<hkern u1="V" u2="*" k="-56" /> +<hkern u1="V" u2="'" k="-56" /> +<hkern u1="V" u2="&" k="97" /> +<hkern u1="V" u2=""" k="-56" /> +<hkern u1="W" u2="™" k="-56" /> +<hkern u1="W" u2="›" k="26" /> +<hkern u1="W" u2="‹" k="26" /> +<hkern u1="W" u2="•" k="26" /> +<hkern u1="W" u2="„" k="113" /> +<hkern u1="W" u2="”" k="-56" /> +<hkern u1="W" u2="“" k="-56" /> +<hkern u1="W" u2="‚" k="113" /> +<hkern u1="W" u2="’" k="-56" /> +<hkern u1="W" u2="‘" k="-56" /> +<hkern u1="W" u2="—" k="26" /> +<hkern u1="W" u2="–" k="26" /> +<hkern u1="W" u2="œ" k="20" /> +<hkern u1="W" u2="ø" k="20" /> +<hkern u1="W" u2="ö" k="20" /> +<hkern u1="W" u2="õ" k="20" /> +<hkern u1="W" u2="ô" k="20" /> +<hkern u1="W" u2="ó" k="20" /> +<hkern u1="W" u2="ò" k="20" /> +<hkern u1="W" u2="ð" k="20" /> +<hkern u1="W" u2="ë" k="20" /> +<hkern u1="W" u2="ê" k="20" /> +<hkern u1="W" u2="é" k="20" /> +<hkern u1="W" u2="è" k="20" /> +<hkern u1="W" u2="ç" k="20" /> +<hkern u1="W" u2="æ" k="75" /> +<hkern u1="W" u2="å" k="75" /> +<hkern u1="W" u2="ä" k="75" /> +<hkern u1="W" u2="ã" k="75" /> +<hkern u1="W" u2="â" k="75" /> +<hkern u1="W" u2="á" k="75" /> +<hkern u1="W" u2="à" k="75" /> +<hkern u1="W" u2="Æ" k="67" /> +<hkern u1="W" u2="Å" k="67" /> +<hkern u1="W" u2="Ä" k="67" /> +<hkern u1="W" u2="Ã" k="67" /> +<hkern u1="W" u2="Â" k="67" /> +<hkern u1="W" u2="Á" k="67" /> +<hkern u1="W" u2="À" k="67" /> +<hkern u1="W" u2="»" k="26" /> +<hkern u1="W" u2="º" k="-56" /> +<hkern u1="W" u2="¹" k="-56" /> +<hkern u1="W" u2="·" k="26" /> +<hkern u1="W" u2="³" k="-56" /> +<hkern u1="W" u2="²" k="-56" /> +<hkern u1="W" u2="°" k="-56" /> +<hkern u1="W" u2="­" k="26" /> +<hkern u1="W" u2="«" k="26" /> +<hkern u1="W" u2="ª" k="-56" /> +<hkern u1="W" u2="s" k="39" /> +<hkern u1="W" u2="q" k="20" /> +<hkern u1="W" u2="o" k="20" /> +<hkern u1="W" u2="g" k="101" /> +<hkern u1="W" u2="e" k="20" /> +<hkern u1="W" u2="d" k="20" /> +<hkern u1="W" u2="c" k="20" /> +<hkern u1="W" u2="a" k="75" /> +<hkern u1="W" u2="J" k="92" /> +<hkern u1="W" u2="A" k="67" /> +<hkern u1="W" u2="?" k="-38" /> +<hkern u1="W" u2="/" k="67" /> +<hkern u1="W" u2="." k="113" /> +<hkern u1="W" u2="-" k="26" /> +<hkern u1="W" u2="," k="113" /> +<hkern u1="W" u2="*" k="-56" /> +<hkern u1="W" u2="'" k="-56" /> +<hkern u1="W" u2="&" k="67" /> +<hkern u1="W" u2=""" k="-56" /> +<hkern u1="X" u2="›" k="56" /> +<hkern u1="X" u2="‹" k="56" /> +<hkern u1="X" u2="•" k="56" /> +<hkern u1="X" u2="—" k="56" /> +<hkern u1="X" u2="–" k="56" /> +<hkern u1="X" u2="œ" k="29" /> +<hkern u1="X" u2="Œ" k="31" /> +<hkern u1="X" u2="ø" k="29" /> +<hkern u1="X" u2="ö" k="29" /> +<hkern u1="X" u2="õ" k="29" /> +<hkern u1="X" u2="ô" k="29" /> +<hkern u1="X" u2="ó" k="29" /> +<hkern u1="X" u2="ò" k="29" /> +<hkern u1="X" u2="ð" k="29" /> +<hkern u1="X" u2="ë" k="29" /> +<hkern u1="X" u2="ê" k="29" /> +<hkern u1="X" u2="é" k="29" /> +<hkern u1="X" u2="è" k="29" /> +<hkern u1="X" u2="ç" k="29" /> +<hkern u1="X" u2="Ø" k="31" /> +<hkern u1="X" u2="Ö" k="31" /> +<hkern u1="X" u2="Õ" k="31" /> +<hkern u1="X" u2="Ô" k="31" /> +<hkern u1="X" u2="Ó" k="31" /> +<hkern u1="X" u2="Ò" k="31" /> +<hkern u1="X" u2="Ç" k="31" /> +<hkern u1="X" u2="»" k="56" /> +<hkern u1="X" u2="·" k="56" /> +<hkern u1="X" u2="­" k="56" /> +<hkern u1="X" u2="«" k="56" /> +<hkern u1="X" u2="y" k="59" /> +<hkern u1="X" u2="w" k="59" /> +<hkern u1="X" u2="v" k="59" /> +<hkern u1="X" u2="t" k="72" /> +<hkern u1="X" u2="q" k="29" /> +<hkern u1="X" u2="o" k="29" /> +<hkern u1="X" u2="f" k="46" /> +<hkern u1="X" u2="e" k="29" /> +<hkern u1="X" u2="d" k="29" /> +<hkern u1="X" u2="c" k="29" /> +<hkern u1="X" u2="Q" k="31" /> +<hkern u1="X" u2="O" k="31" /> +<hkern u1="X" u2="G" k="31" /> +<hkern u1="X" u2="C" k="31" /> +<hkern u1="X" u2="@" k="31" /> +<hkern u1="X" u2="-" k="56" /> +<hkern u1="Y" u2="™" k="-26" /> +<hkern u1="Y" u2="›" k="164" /> +<hkern u1="Y" u2="‹" k="164" /> +<hkern u1="Y" u2="•" k="164" /> +<hkern u1="Y" u2="„" k="138" /> +<hkern u1="Y" u2="”" k="-26" /> +<hkern u1="Y" u2="“" k="-26" /> +<hkern u1="Y" u2="‚" k="138" /> +<hkern u1="Y" u2="’" k="-26" /> +<hkern u1="Y" u2="‘" k="-26" /> +<hkern u1="Y" u2="—" k="164" /> +<hkern u1="Y" u2="–" k="164" /> +<hkern u1="Y" u2="œ" k="164" /> +<hkern u1="Y" u2="Œ" k="82" /> +<hkern u1="Y" u2="ü" k="113" /> +<hkern u1="Y" u2="û" k="113" /> +<hkern u1="Y" u2="ú" k="113" /> +<hkern u1="Y" u2="ù" k="113" /> +<hkern u1="Y" u2="ø" k="164" /> +<hkern u1="Y" u2="ö" k="164" /> +<hkern u1="Y" u2="õ" k="164" /> +<hkern u1="Y" u2="ô" k="164" /> +<hkern u1="Y" u2="ó" k="164" /> +<hkern u1="Y" u2="ò" k="164" /> +<hkern u1="Y" u2="ñ" k="113" /> +<hkern u1="Y" u2="ð" k="164" /> +<hkern u1="Y" u2="ë" k="164" /> +<hkern u1="Y" u2="ê" k="164" /> +<hkern u1="Y" u2="é" k="164" /> +<hkern u1="Y" u2="è" k="164" /> +<hkern u1="Y" u2="ç" k="164" /> +<hkern u1="Y" u2="æ" k="111" /> +<hkern u1="Y" u2="å" k="111" /> +<hkern u1="Y" u2="ä" k="111" /> +<hkern u1="Y" u2="ã" k="111" /> +<hkern u1="Y" u2="â" k="111" /> +<hkern u1="Y" u2="á" k="111" /> +<hkern u1="Y" u2="à" k="111" /> +<hkern u1="Y" u2="Ø" k="82" /> +<hkern u1="Y" u2="Ö" k="82" /> +<hkern u1="Y" u2="Õ" k="82" /> +<hkern u1="Y" u2="Ô" k="82" /> +<hkern u1="Y" u2="Ó" k="82" /> +<hkern u1="Y" u2="Ò" k="82" /> +<hkern u1="Y" u2="Ç" k="82" /> +<hkern u1="Y" u2="Æ" k="143" /> +<hkern u1="Y" u2="Å" k="143" /> +<hkern u1="Y" u2="Ä" k="143" /> +<hkern u1="Y" u2="Ã" k="143" /> +<hkern u1="Y" u2="Â" k="143" /> +<hkern u1="Y" u2="Á" k="143" /> +<hkern u1="Y" u2="À" k="143" /> +<hkern u1="Y" u2="»" k="164" /> +<hkern u1="Y" u2="º" k="-26" /> +<hkern u1="Y" u2="¹" k="-46" /> +<hkern u1="Y" u2="·" k="164" /> +<hkern u1="Y" u2="µ" k="113" /> +<hkern u1="Y" u2="³" k="-46" /> +<hkern u1="Y" u2="²" k="-46" /> +<hkern u1="Y" u2="°" k="-26" /> +<hkern u1="Y" u2="­" k="164" /> +<hkern u1="Y" u2="«" k="164" /> +<hkern u1="Y" u2="ª" k="-26" /> +<hkern u1="Y" u2="y" k="102" /> +<hkern u1="Y" u2="x" k="128" /> +<hkern u1="Y" u2="w" k="87" /> +<hkern u1="Y" u2="v" k="102" /> +<hkern u1="Y" u2="u" k="113" /> +<hkern u1="Y" u2="s" k="116" /> +<hkern u1="Y" u2="r" k="113" /> +<hkern u1="Y" u2="q" k="164" /> +<hkern u1="Y" u2="p" k="113" /> +<hkern u1="Y" u2="o" k="164" /> +<hkern u1="Y" u2="n" k="113" /> +<hkern u1="Y" u2="m" k="113" /> +<hkern u1="Y" u2="g" k="169" /> +<hkern u1="Y" u2="e" k="164" /> +<hkern u1="Y" u2="d" k="164" /> +<hkern u1="Y" u2="c" k="164" /> +<hkern u1="Y" u2="a" k="111" /> +<hkern u1="Y" u2="Q" k="82" /> +<hkern u1="Y" u2="O" k="82" /> +<hkern u1="Y" u2="J" k="205" /> +<hkern u1="Y" u2="G" k="82" /> +<hkern u1="Y" u2="C" k="82" /> +<hkern u1="Y" u2="A" k="143" /> +<hkern u1="Y" u2="@" k="82" /> +<hkern u1="Y" u2="?" k="-38" /> +<hkern u1="Y" u2=";" k="113" /> +<hkern u1="Y" u2=":" k="113" /> +<hkern u1="Y" u2="/" k="143" /> +<hkern u1="Y" u2="." k="138" /> +<hkern u1="Y" u2="-" k="164" /> +<hkern u1="Y" u2="," k="138" /> +<hkern u1="Y" u2="*" k="-26" /> +<hkern u1="Y" u2="'" k="-26" /> +<hkern u1="Y" u2="&" k="143" /> +<hkern u1="Y" u2=""" k="-26" /> +<hkern u1="Z" u2="›" k="77" /> +<hkern u1="Z" u2="‹" k="77" /> +<hkern u1="Z" u2="•" k="77" /> +<hkern u1="Z" u2="—" k="77" /> +<hkern u1="Z" u2="–" k="77" /> +<hkern u1="Z" u2="œ" k="51" /> +<hkern u1="Z" u2="Œ" k="72" /> +<hkern u1="Z" u2="ø" k="51" /> +<hkern u1="Z" u2="ö" k="51" /> +<hkern u1="Z" u2="õ" k="51" /> +<hkern u1="Z" u2="ô" k="51" /> +<hkern u1="Z" u2="ó" k="51" /> +<hkern u1="Z" u2="ò" k="51" /> +<hkern u1="Z" u2="ð" k="51" /> +<hkern u1="Z" u2="ë" k="51" /> +<hkern u1="Z" u2="ê" k="51" /> +<hkern u1="Z" u2="é" k="51" /> +<hkern u1="Z" u2="è" k="51" /> +<hkern u1="Z" u2="ç" k="51" /> +<hkern u1="Z" u2="Ø" k="72" /> +<hkern u1="Z" u2="Ö" k="72" /> +<hkern u1="Z" u2="Õ" k="72" /> +<hkern u1="Z" u2="Ô" k="72" /> +<hkern u1="Z" u2="Ó" k="72" /> +<hkern u1="Z" u2="Ò" k="72" /> +<hkern u1="Z" u2="Ç" k="72" /> +<hkern u1="Z" u2="»" k="77" /> +<hkern u1="Z" u2="·" k="77" /> +<hkern u1="Z" u2="­" k="77" /> +<hkern u1="Z" u2="«" k="77" /> +<hkern u1="Z" u2="y" k="46" /> +<hkern u1="Z" u2="v" k="46" /> +<hkern u1="Z" u2="s" k="41" /> +<hkern u1="Z" u2="q" k="51" /> +<hkern u1="Z" u2="o" k="51" /> +<hkern u1="Z" u2="e" k="51" /> +<hkern u1="Z" u2="d" k="51" /> +<hkern u1="Z" u2="c" k="51" /> +<hkern u1="Z" u2="Q" k="72" /> +<hkern u1="Z" u2="O" k="72" /> +<hkern u1="Z" u2="G" k="72" /> +<hkern u1="Z" u2="C" k="72" /> +<hkern u1="Z" u2="@" k="72" /> +<hkern u1="Z" u2="?" k="-38" /> +<hkern u1="Z" u2="-" k="77" /> +<hkern u1="[" u2="œ" k="26" /> +<hkern u1="[" u2="Œ" k="41" /> +<hkern u1="[" u2="ø" k="26" /> +<hkern u1="[" u2="ö" k="26" /> +<hkern u1="[" u2="õ" k="26" /> +<hkern u1="[" u2="ô" k="26" /> +<hkern u1="[" u2="ó" k="26" /> +<hkern u1="[" u2="ò" k="26" /> +<hkern u1="[" u2="ð" k="26" /> +<hkern u1="[" u2="ë" k="26" /> +<hkern u1="[" u2="ê" k="26" /> +<hkern u1="[" u2="é" k="26" /> +<hkern u1="[" u2="è" k="26" /> +<hkern u1="[" u2="ç" k="26" /> +<hkern u1="[" u2="Ø" k="41" /> +<hkern u1="[" u2="Ö" k="41" /> +<hkern u1="[" u2="Õ" k="41" /> +<hkern u1="[" u2="Ô" k="41" /> +<hkern u1="[" u2="Ó" k="41" /> +<hkern u1="[" u2="Ò" k="41" /> +<hkern u1="[" u2="Ç" k="41" /> +<hkern u1="[" u2="q" k="26" /> +<hkern u1="[" u2="o" k="26" /> +<hkern u1="[" u2="e" k="26" /> +<hkern u1="[" u2="d" k="26" /> +<hkern u1="[" u2="c" k="26" /> +<hkern u1="[" u2="Q" k="41" /> +<hkern u1="[" u2="O" k="41" /> +<hkern u1="[" u2="G" k="41" /> +<hkern u1="[" u2="C" k="41" /> +<hkern u1="[" u2="@" k="41" /> +<hkern u1="\" u2="™" k="174" /> +<hkern u1="\" u2="›" k="36" /> +<hkern u1="\" u2="‹" k="36" /> +<hkern u1="\" u2="•" k="36" /> +<hkern u1="\" u2="”" k="174" /> +<hkern u1="\" u2="“" k="174" /> +<hkern u1="\" u2="’" k="174" /> +<hkern u1="\" u2="‘" k="174" /> +<hkern u1="\" u2="—" k="36" /> +<hkern u1="\" u2="–" k="36" /> +<hkern u1="\" u2="Ÿ" k="143" /> +<hkern u1="\" u2="Œ" k="31" /> +<hkern u1="\" u2="Ý" k="143" /> +<hkern u1="\" u2="Ü" k="59" /> +<hkern u1="\" u2="Û" k="59" /> +<hkern u1="\" u2="Ú" k="59" /> +<hkern u1="\" u2="Ù" k="59" /> +<hkern u1="\" u2="Ø" k="31" /> +<hkern u1="\" u2="Ö" k="31" /> +<hkern u1="\" u2="Õ" k="31" /> +<hkern u1="\" u2="Ô" k="31" /> +<hkern u1="\" u2="Ó" k="31" /> +<hkern u1="\" u2="Ò" k="31" /> +<hkern u1="\" u2="Ç" k="31" /> +<hkern u1="\" u2="»" k="36" /> +<hkern u1="\" u2="º" k="174" /> +<hkern u1="\" u2="¹" k="164" /> +<hkern u1="\" u2="·" k="36" /> +<hkern u1="\" u2="³" k="164" /> +<hkern u1="\" u2="²" k="164" /> +<hkern u1="\" u2="°" k="174" /> +<hkern u1="\" u2="­" k="36" /> +<hkern u1="\" u2="«" k="36" /> +<hkern u1="\" u2="ª" k="174" /> +<hkern u1="\" u2="y" k="72" /> +<hkern u1="\" u2="v" k="72" /> +<hkern u1="\" u2="\" k="97" /> +<hkern u1="\" u2="Y" k="143" /> +<hkern u1="\" u2="W" k="61" /> +<hkern u1="\" u2="V" k="97" /> +<hkern u1="\" u2="U" k="59" /> +<hkern u1="\" u2="T" k="118" /> +<hkern u1="\" u2="Q" k="31" /> +<hkern u1="\" u2="O" k="31" /> +<hkern u1="\" u2="J" k="-46" /> +<hkern u1="\" u2="G" k="31" /> +<hkern u1="\" u2="C" k="31" /> +<hkern u1="\" u2="@" k="31" /> +<hkern u1="\" u2="?" k="49" /> +<hkern u1="\" u2="-" k="36" /> +<hkern u1="\" u2="*" k="174" /> +<hkern u1="\" u2="'" k="174" /> +<hkern u1="\" u2=""" k="174" /> +<hkern u1="a" u2="™" k="67" /> +<hkern u1="a" u2="”" k="67" /> +<hkern u1="a" u2="“" k="67" /> +<hkern u1="a" u2="’" k="67" /> +<hkern u1="a" u2="‘" k="67" /> +<hkern u1="a" u2="º" k="67" /> +<hkern u1="a" u2="¹" k="67" /> +<hkern u1="a" u2="³" k="67" /> +<hkern u1="a" u2="²" k="67" /> +<hkern u1="a" u2="°" k="67" /> +<hkern u1="a" u2="ª" k="67" /> +<hkern u1="a" u2="y" k="26" /> +<hkern u1="a" u2="w" k="13" /> +<hkern u1="a" u2="v" k="26" /> +<hkern u1="a" u2="*" k="67" /> +<hkern u1="a" u2="'" k="67" /> +<hkern u1="a" u2=""" k="67" /> +<hkern u1="b" u2="™" k="87" /> +<hkern u1="b" u2="”" k="87" /> +<hkern u1="b" u2="“" k="87" /> +<hkern u1="b" u2="’" k="87" /> +<hkern u1="b" u2="‘" k="87" /> +<hkern u1="b" u2="º" k="87" /> +<hkern u1="b" u2="°" k="87" /> +<hkern u1="b" u2="ª" k="87" /> +<hkern u1="b" u2="}" k="26" /> +<hkern u1="b" u2="y" k="18" /> +<hkern u1="b" u2="x" k="61" /> +<hkern u1="b" u2="v" k="18" /> +<hkern u1="b" u2="]" k="26" /> +<hkern u1="b" u2="\" k="111" /> +<hkern u1="b" u2="W" k="20" /> +<hkern u1="b" u2="V" k="111" /> +<hkern u1="b" u2="*" k="87" /> +<hkern u1="b" u2=")" k="26" /> +<hkern u1="b" u2="'" k="87" /> +<hkern u1="b" u2=""" k="87" /> +<hkern u1="e" u2="™" k="87" /> +<hkern u1="e" u2="”" k="87" /> +<hkern u1="e" u2="“" k="87" /> +<hkern u1="e" u2="’" k="87" /> +<hkern u1="e" u2="‘" k="87" /> +<hkern u1="e" u2="º" k="87" /> +<hkern u1="e" u2="°" k="87" /> +<hkern u1="e" u2="ª" k="87" /> +<hkern u1="e" u2="}" k="26" /> +<hkern u1="e" u2="y" k="18" /> +<hkern u1="e" u2="x" k="61" /> +<hkern u1="e" u2="v" k="18" /> +<hkern u1="e" u2="]" k="26" /> +<hkern u1="e" u2="\" k="111" /> +<hkern u1="e" u2="W" k="20" /> +<hkern u1="e" u2="V" k="111" /> +<hkern u1="e" u2="*" k="87" /> +<hkern u1="e" u2=")" k="26" /> +<hkern u1="e" u2="'" k="87" /> +<hkern u1="e" u2=""" k="87" /> +<hkern u1="f" u2="™" k="-77" /> +<hkern u1="f" u2="„" k="138" /> +<hkern u1="f" u2="”" k="-77" /> +<hkern u1="f" u2="“" k="-77" /> +<hkern u1="f" u2="‚" k="138" /> +<hkern u1="f" u2="’" k="-77" /> +<hkern u1="f" u2="‘" k="-77" /> +<hkern u1="f" u2="º" k="-77" /> +<hkern u1="f" u2="¹" k="-102" /> +<hkern u1="f" u2="³" k="-102" /> +<hkern u1="f" u2="²" k="-102" /> +<hkern u1="f" u2="°" k="-77" /> +<hkern u1="f" u2="ª" k="-77" /> +<hkern u1="f" u2="." k="138" /> +<hkern u1="f" u2="," k="138" /> +<hkern u1="f" u2="*" k="-77" /> +<hkern u1="f" u2="'" k="-77" /> +<hkern u1="f" u2=""" k="-77" /> +<hkern u1="h" u2="™" k="67" /> +<hkern u1="h" u2="”" k="67" /> +<hkern u1="h" u2="“" k="67" /> +<hkern u1="h" u2="’" k="67" /> +<hkern u1="h" u2="‘" k="67" /> +<hkern u1="h" u2="º" k="67" /> +<hkern u1="h" u2="¹" k="67" /> +<hkern u1="h" u2="³" k="67" /> +<hkern u1="h" u2="²" k="67" /> +<hkern u1="h" u2="°" k="67" /> +<hkern u1="h" u2="ª" k="67" /> +<hkern u1="h" u2="y" k="26" /> +<hkern u1="h" u2="w" k="13" /> +<hkern u1="h" u2="v" k="26" /> +<hkern u1="h" u2="*" k="67" /> +<hkern u1="h" u2="'" k="67" /> +<hkern u1="h" u2=""" k="67" /> +<hkern u1="k" u2="œ" k="61" /> +<hkern u1="k" u2="ø" k="61" /> +<hkern u1="k" u2="ö" k="61" /> +<hkern u1="k" u2="õ" k="61" /> +<hkern u1="k" u2="ô" k="61" /> +<hkern u1="k" u2="ó" k="61" /> +<hkern u1="k" u2="ò" k="61" /> +<hkern u1="k" u2="ð" k="61" /> +<hkern u1="k" u2="ë" k="61" /> +<hkern u1="k" u2="ê" k="61" /> +<hkern u1="k" u2="é" k="61" /> +<hkern u1="k" u2="è" k="61" /> +<hkern u1="k" u2="ç" k="61" /> +<hkern u1="k" u2="q" k="61" /> +<hkern u1="k" u2="o" k="61" /> +<hkern u1="k" u2="e" k="61" /> +<hkern u1="k" u2="d" k="61" /> +<hkern u1="k" u2="c" k="61" /> +<hkern u1="m" u2="™" k="67" /> +<hkern u1="m" u2="”" k="67" /> +<hkern u1="m" u2="“" k="67" /> +<hkern u1="m" u2="’" k="67" /> +<hkern u1="m" u2="‘" k="67" /> +<hkern u1="m" u2="º" k="67" /> +<hkern u1="m" u2="¹" k="67" /> +<hkern u1="m" u2="³" k="67" /> +<hkern u1="m" u2="²" k="67" /> +<hkern u1="m" u2="°" k="67" /> +<hkern u1="m" u2="ª" k="67" /> +<hkern u1="m" u2="y" k="26" /> +<hkern u1="m" u2="w" k="13" /> +<hkern u1="m" u2="v" k="26" /> +<hkern u1="m" u2="*" k="67" /> +<hkern u1="m" u2="'" k="67" /> +<hkern u1="m" u2=""" k="67" /> +<hkern u1="n" u2="™" k="67" /> +<hkern u1="n" u2="”" k="67" /> +<hkern u1="n" u2="“" k="67" /> +<hkern u1="n" u2="’" k="67" /> +<hkern u1="n" u2="‘" k="67" /> +<hkern u1="n" u2="º" k="67" /> +<hkern u1="n" u2="¹" k="67" /> +<hkern u1="n" u2="³" k="67" /> +<hkern u1="n" u2="²" k="67" /> +<hkern u1="n" u2="°" k="67" /> +<hkern u1="n" u2="ª" k="67" /> +<hkern u1="n" u2="y" k="26" /> +<hkern u1="n" u2="w" k="13" /> +<hkern u1="n" u2="v" k="26" /> +<hkern u1="n" u2="*" k="67" /> +<hkern u1="n" u2="'" k="67" /> +<hkern u1="n" u2=""" k="67" /> +<hkern u1="o" u2="™" k="87" /> +<hkern u1="o" u2="”" k="87" /> +<hkern u1="o" u2="“" k="87" /> +<hkern u1="o" u2="’" k="87" /> +<hkern u1="o" u2="‘" k="87" /> +<hkern u1="o" u2="º" k="87" /> +<hkern u1="o" u2="°" k="87" /> +<hkern u1="o" u2="ª" k="87" /> +<hkern u1="o" u2="}" k="26" /> +<hkern u1="o" u2="y" k="18" /> +<hkern u1="o" u2="x" k="61" /> +<hkern u1="o" u2="v" k="18" /> +<hkern u1="o" u2="]" k="26" /> +<hkern u1="o" u2="\" k="111" /> +<hkern u1="o" u2="W" k="20" /> +<hkern u1="o" u2="V" k="111" /> +<hkern u1="o" u2="*" k="87" /> +<hkern u1="o" u2=")" k="26" /> +<hkern u1="o" u2="'" k="87" /> +<hkern u1="o" u2=""" k="87" /> +<hkern u1="p" u2="™" k="87" /> +<hkern u1="p" u2="”" k="87" /> +<hkern u1="p" u2="“" k="87" /> +<hkern u1="p" u2="’" k="87" /> +<hkern u1="p" u2="‘" k="87" /> +<hkern u1="p" u2="º" k="87" /> +<hkern u1="p" u2="°" k="87" /> +<hkern u1="p" u2="ª" k="87" /> +<hkern u1="p" u2="}" k="26" /> +<hkern u1="p" u2="y" k="18" /> +<hkern u1="p" u2="x" k="61" /> +<hkern u1="p" u2="v" k="18" /> +<hkern u1="p" u2="]" k="26" /> +<hkern u1="p" u2="\" k="111" /> +<hkern u1="p" u2="W" k="20" /> +<hkern u1="p" u2="V" k="111" /> +<hkern u1="p" u2="*" k="87" /> +<hkern u1="p" u2=")" k="26" /> +<hkern u1="p" u2="'" k="87" /> +<hkern u1="p" u2=""" k="87" /> +<hkern u1="r" u2="„" k="128" /> +<hkern u1="r" u2="‚" k="128" /> +<hkern u1="r" u2="æ" k="51" /> +<hkern u1="r" u2="å" k="51" /> +<hkern u1="r" u2="ä" k="51" /> +<hkern u1="r" u2="ã" k="51" /> +<hkern u1="r" u2="â" k="51" /> +<hkern u1="r" u2="á" k="51" /> +<hkern u1="r" u2="à" k="51" /> +<hkern u1="r" u2="a" k="51" /> +<hkern u1="r" u2="." k="128" /> +<hkern u1="r" u2="," k="128" /> +<hkern u1="v" u2="„" k="128" /> +<hkern u1="v" u2="‚" k="128" /> +<hkern u1="v" u2="œ" k="18" /> +<hkern u1="v" u2="ø" k="18" /> +<hkern u1="v" u2="ö" k="18" /> +<hkern u1="v" u2="õ" k="18" /> +<hkern u1="v" u2="ô" k="18" /> +<hkern u1="v" u2="ó" k="18" /> +<hkern u1="v" u2="ò" k="18" /> +<hkern u1="v" u2="ð" k="18" /> +<hkern u1="v" u2="ë" k="18" /> +<hkern u1="v" u2="ê" k="18" /> +<hkern u1="v" u2="é" k="18" /> +<hkern u1="v" u2="è" k="18" /> +<hkern u1="v" u2="ç" k="18" /> +<hkern u1="v" u2="Æ" k="72" /> +<hkern u1="v" u2="Å" k="72" /> +<hkern u1="v" u2="Ä" k="72" /> +<hkern u1="v" u2="Ã" k="72" /> +<hkern u1="v" u2="Â" k="72" /> +<hkern u1="v" u2="Á" k="72" /> +<hkern u1="v" u2="À" k="72" /> +<hkern u1="v" u2="q" k="18" /> +<hkern u1="v" u2="o" k="18" /> +<hkern u1="v" u2="e" k="18" /> +<hkern u1="v" u2="d" k="18" /> +<hkern u1="v" u2="c" k="18" /> +<hkern u1="v" u2="A" k="72" /> +<hkern u1="v" u2="/" k="72" /> +<hkern u1="v" u2="." k="128" /> +<hkern u1="v" u2="," k="128" /> +<hkern u1="v" u2="&" k="72" /> +<hkern u1="w" u2="„" k="51" /> +<hkern u1="w" u2="‚" k="51" /> +<hkern u1="w" u2="." k="51" /> +<hkern u1="w" u2="," k="51" /> +<hkern u1="x" u2="œ" k="61" /> +<hkern u1="x" u2="ø" k="61" /> +<hkern u1="x" u2="ö" k="61" /> +<hkern u1="x" u2="õ" k="61" /> +<hkern u1="x" u2="ô" k="61" /> +<hkern u1="x" u2="ó" k="61" /> +<hkern u1="x" u2="ò" k="61" /> +<hkern u1="x" u2="ð" k="61" /> +<hkern u1="x" u2="ë" k="61" /> +<hkern u1="x" u2="ê" k="61" /> +<hkern u1="x" u2="é" k="61" /> +<hkern u1="x" u2="è" k="61" /> +<hkern u1="x" u2="ç" k="61" /> +<hkern u1="x" u2="q" k="61" /> +<hkern u1="x" u2="o" k="61" /> +<hkern u1="x" u2="e" k="61" /> +<hkern u1="x" u2="d" k="61" /> +<hkern u1="x" u2="c" k="61" /> +<hkern u1="y" u2="„" k="128" /> +<hkern u1="y" u2="‚" k="128" /> +<hkern u1="y" u2="œ" k="18" /> +<hkern u1="y" u2="ø" k="18" /> +<hkern u1="y" u2="ö" k="18" /> +<hkern u1="y" u2="õ" k="18" /> +<hkern u1="y" u2="ô" k="18" /> +<hkern u1="y" u2="ó" k="18" /> +<hkern u1="y" u2="ò" k="18" /> +<hkern u1="y" u2="ð" k="18" /> +<hkern u1="y" u2="ë" k="18" /> +<hkern u1="y" u2="ê" k="18" /> +<hkern u1="y" u2="é" k="18" /> +<hkern u1="y" u2="è" k="18" /> +<hkern u1="y" u2="ç" k="18" /> +<hkern u1="y" u2="Æ" k="72" /> +<hkern u1="y" u2="Å" k="72" /> +<hkern u1="y" u2="Ä" k="72" /> +<hkern u1="y" u2="Ã" k="72" /> +<hkern u1="y" u2="Â" k="72" /> +<hkern u1="y" u2="Á" k="72" /> +<hkern u1="y" u2="À" k="72" /> +<hkern u1="y" u2="q" k="18" /> +<hkern u1="y" u2="o" k="18" /> +<hkern u1="y" u2="e" k="18" /> +<hkern u1="y" u2="d" k="18" /> +<hkern u1="y" u2="c" k="18" /> +<hkern u1="y" u2="A" k="72" /> +<hkern u1="y" u2="/" k="72" /> +<hkern u1="y" u2="." k="128" /> +<hkern u1="y" u2="," k="128" /> +<hkern u1="y" u2="&" k="72" /> +<hkern u1="{" u2="œ" k="26" /> +<hkern u1="{" u2="Œ" k="41" /> +<hkern u1="{" u2="ø" k="26" /> +<hkern u1="{" u2="ö" k="26" /> +<hkern u1="{" u2="õ" k="26" /> +<hkern u1="{" u2="ô" k="26" /> +<hkern u1="{" u2="ó" k="26" /> +<hkern u1="{" u2="ò" k="26" /> +<hkern u1="{" u2="ð" k="26" /> +<hkern u1="{" u2="ë" k="26" /> +<hkern u1="{" u2="ê" k="26" /> +<hkern u1="{" u2="é" k="26" /> +<hkern u1="{" u2="è" k="26" /> +<hkern u1="{" u2="ç" k="26" /> +<hkern u1="{" u2="Ø" k="41" /> +<hkern u1="{" u2="Ö" k="41" /> +<hkern u1="{" u2="Õ" k="41" /> +<hkern u1="{" u2="Ô" k="41" /> +<hkern u1="{" u2="Ó" k="41" /> +<hkern u1="{" u2="Ò" k="41" /> +<hkern u1="{" u2="Ç" k="41" /> +<hkern u1="{" u2="q" k="26" /> +<hkern u1="{" u2="o" k="26" /> +<hkern u1="{" u2="e" k="26" /> +<hkern u1="{" u2="d" k="26" /> +<hkern u1="{" u2="c" k="26" /> +<hkern u1="{" u2="Q" k="41" /> +<hkern u1="{" u2="O" k="41" /> +<hkern u1="{" u2="G" k="41" /> +<hkern u1="{" u2="C" k="41" /> +<hkern u1="{" u2="@" k="41" /> +<hkern u1="ª" u2="›" k="195" /> +<hkern u1="ª" u2="‹" k="195" /> +<hkern u1="ª" u2="•" k="195" /> +<hkern u1="ª" u2="„" k="251" /> +<hkern u1="ª" u2="‚" k="251" /> +<hkern u1="ª" u2="—" k="195" /> +<hkern u1="ª" u2="–" k="195" /> +<hkern u1="ª" u2="Ÿ" k="-26" /> +<hkern u1="ª" u2="œ" k="87" /> +<hkern u1="ª" u2="Œ" k="49" /> +<hkern u1="ª" u2="ø" k="87" /> +<hkern u1="ª" u2="ö" k="87" /> +<hkern u1="ª" u2="õ" k="87" /> +<hkern u1="ª" u2="ô" k="87" /> +<hkern u1="ª" u2="ó" k="87" /> +<hkern u1="ª" u2="ò" k="87" /> +<hkern u1="ª" u2="ð" k="87" /> +<hkern u1="ª" u2="ë" k="87" /> +<hkern u1="ª" u2="ê" k="87" /> +<hkern u1="ª" u2="é" k="87" /> +<hkern u1="ª" u2="è" k="87" /> +<hkern u1="ª" u2="ç" k="87" /> +<hkern u1="ª" u2="æ" k="63" /> +<hkern u1="ª" u2="å" k="63" /> +<hkern u1="ª" u2="ä" k="63" /> +<hkern u1="ª" u2="ã" k="63" /> +<hkern u1="ª" u2="â" k="63" /> +<hkern u1="ª" u2="á" k="63" /> +<hkern u1="ª" u2="à" k="63" /> +<hkern u1="ª" u2="Ý" k="-26" /> +<hkern u1="ª" u2="Ø" k="49" /> +<hkern u1="ª" u2="Ö" k="49" /> +<hkern u1="ª" u2="Õ" k="49" /> +<hkern u1="ª" u2="Ô" k="49" /> +<hkern u1="ª" u2="Ó" k="49" /> +<hkern u1="ª" u2="Ò" k="49" /> +<hkern u1="ª" u2="Ç" k="49" /> +<hkern u1="ª" u2="Æ" k="174" /> +<hkern u1="ª" u2="Å" k="174" /> +<hkern u1="ª" u2="Ä" k="174" /> +<hkern u1="ª" u2="Ã" k="174" /> +<hkern u1="ª" u2="Â" k="174" /> +<hkern u1="ª" u2="Á" k="174" /> +<hkern u1="ª" u2="À" k="174" /> +<hkern u1="ª" u2="»" k="195" /> +<hkern u1="ª" u2="·" k="195" /> +<hkern u1="ª" u2="­" k="195" /> +<hkern u1="ª" u2="«" k="195" /> +<hkern u1="ª" u2="q" k="87" /> +<hkern u1="ª" u2="o" k="87" /> +<hkern u1="ª" u2="e" k="87" /> +<hkern u1="ª" u2="d" k="87" /> +<hkern u1="ª" u2="c" k="87" /> +<hkern u1="ª" u2="a" k="63" /> +<hkern u1="ª" u2="\" k="-56" /> +<hkern u1="ª" u2="Y" k="-26" /> +<hkern u1="ª" u2="W" k="-56" /> +<hkern u1="ª" u2="V" k="-56" /> +<hkern u1="ª" u2="Q" k="49" /> +<hkern u1="ª" u2="O" k="49" /> +<hkern u1="ª" u2="G" k="49" /> +<hkern u1="ª" u2="C" k="49" /> +<hkern u1="ª" u2="A" k="174" /> +<hkern u1="ª" u2="@" k="49" /> +<hkern u1="ª" u2="/" k="174" /> +<hkern u1="ª" u2="." k="251" /> +<hkern u1="ª" u2="-" k="195" /> +<hkern u1="ª" u2="," k="251" /> +<hkern u1="ª" u2="&" k="174" /> +<hkern u1="«" u2="™" k="195" /> +<hkern u1="«" u2="„" k="141" /> +<hkern u1="«" u2="”" k="195" /> +<hkern u1="«" u2="“" k="195" /> +<hkern u1="«" u2="‚" k="141" /> +<hkern u1="«" u2="’" k="195" /> +<hkern u1="«" u2="‘" k="195" /> +<hkern u1="«" u2="Ÿ" k="164" /> +<hkern u1="«" u2="Ý" k="164" /> +<hkern u1="«" u2="Æ" k="36" /> +<hkern u1="«" u2="Å" k="36" /> +<hkern u1="«" u2="Ä" k="36" /> +<hkern u1="«" u2="Ã" k="36" /> +<hkern u1="«" u2="Â" k="36" /> +<hkern u1="«" u2="Á" k="36" /> +<hkern u1="«" u2="À" k="36" /> +<hkern u1="«" u2="º" k="195" /> +<hkern u1="«" u2="°" k="195" /> +<hkern u1="«" u2="ª" k="195" /> +<hkern u1="«" u2="\" k="108" /> +<hkern u1="«" u2="Z" k="44" /> +<hkern u1="«" u2="Y" k="164" /> +<hkern u1="«" u2="X" k="56" /> +<hkern u1="«" u2="W" k="26" /> +<hkern u1="«" u2="V" k="108" /> +<hkern u1="«" u2="T" k="184" /> +<hkern u1="«" u2="A" k="36" /> +<hkern u1="«" u2="/" k="36" /> +<hkern u1="«" u2="." k="141" /> +<hkern u1="«" u2="," k="141" /> +<hkern u1="«" u2="*" k="195" /> +<hkern u1="«" u2="'" k="195" /> +<hkern u1="«" u2="&" k="36" /> +<hkern u1="«" u2=""" k="195" /> +<hkern u1="­" u2="™" k="195" /> +<hkern u1="­" u2="„" k="141" /> +<hkern u1="­" u2="”" k="195" /> +<hkern u1="­" u2="“" k="195" /> +<hkern u1="­" u2="‚" k="141" /> +<hkern u1="­" u2="’" k="195" /> +<hkern u1="­" u2="‘" k="195" /> +<hkern u1="­" u2="Ÿ" k="164" /> +<hkern u1="­" u2="Ý" k="164" /> +<hkern u1="­" u2="Æ" k="36" /> +<hkern u1="­" u2="Å" k="36" /> +<hkern u1="­" u2="Ä" k="36" /> +<hkern u1="­" u2="Ã" k="36" /> +<hkern u1="­" u2="Â" k="36" /> +<hkern u1="­" u2="Á" k="36" /> +<hkern u1="­" u2="À" k="36" /> +<hkern u1="­" u2="º" k="195" /> +<hkern u1="­" u2="°" k="195" /> +<hkern u1="­" u2="ª" k="195" /> +<hkern u1="­" u2="\" k="108" /> +<hkern u1="­" u2="Z" k="44" /> +<hkern u1="­" u2="Y" k="164" /> +<hkern u1="­" u2="X" k="56" /> +<hkern u1="­" u2="W" k="26" /> +<hkern u1="­" u2="V" k="108" /> +<hkern u1="­" u2="T" k="184" /> +<hkern u1="­" u2="A" k="36" /> +<hkern u1="­" u2="/" k="36" /> +<hkern u1="­" u2="." k="141" /> +<hkern u1="­" u2="," k="141" /> +<hkern u1="­" u2="*" k="195" /> +<hkern u1="­" u2="'" k="195" /> +<hkern u1="­" u2="&" k="36" /> +<hkern u1="­" u2=""" k="195" /> +<hkern u1="®" u2="™" k="49" /> +<hkern u1="®" u2="„" k="59" /> +<hkern u1="®" u2="”" k="49" /> +<hkern u1="®" u2="“" k="49" /> +<hkern u1="®" u2="‚" k="59" /> +<hkern u1="®" u2="’" k="49" /> +<hkern u1="®" u2="‘" k="49" /> +<hkern u1="®" u2="Ÿ" k="82" /> +<hkern u1="®" u2="Ý" k="82" /> +<hkern u1="®" u2="Æ" k="31" /> +<hkern u1="®" u2="Å" k="31" /> +<hkern u1="®" u2="Ä" k="31" /> +<hkern u1="®" u2="Ã" k="31" /> +<hkern u1="®" u2="Â" k="31" /> +<hkern u1="®" u2="Á" k="31" /> +<hkern u1="®" u2="À" k="31" /> +<hkern u1="®" u2="º" k="49" /> +<hkern u1="®" u2="°" k="49" /> +<hkern u1="®" u2="ª" k="49" /> +<hkern u1="®" u2="}" k="41" /> +<hkern u1="®" u2="]" k="41" /> +<hkern u1="®" u2="\" k="46" /> +<hkern u1="®" u2="Z" k="77" /> +<hkern u1="®" u2="Y" k="82" /> +<hkern u1="®" u2="X" k="31" /> +<hkern u1="®" u2="V" k="46" /> +<hkern u1="®" u2="T" k="123" /> +<hkern u1="®" u2="A" k="31" /> +<hkern u1="®" u2="/" k="31" /> +<hkern u1="®" u2="." k="59" /> +<hkern u1="®" u2="," k="59" /> +<hkern u1="®" u2="*" k="49" /> +<hkern u1="®" u2=")" k="41" /> +<hkern u1="®" u2="'" k="49" /> +<hkern u1="®" u2="&" k="31" /> +<hkern u1="®" u2=""" k="49" /> +<hkern u1="°" u2="›" k="195" /> +<hkern u1="°" u2="‹" k="195" /> +<hkern u1="°" u2="•" k="195" /> +<hkern u1="°" u2="„" k="251" /> +<hkern u1="°" u2="‚" k="251" /> +<hkern u1="°" u2="—" k="195" /> +<hkern u1="°" u2="–" k="195" /> +<hkern u1="°" u2="Ÿ" k="-26" /> +<hkern u1="°" u2="œ" k="87" /> +<hkern u1="°" u2="Œ" k="49" /> +<hkern u1="°" u2="ø" k="87" /> +<hkern u1="°" u2="ö" k="87" /> +<hkern u1="°" u2="õ" k="87" /> +<hkern u1="°" u2="ô" k="87" /> +<hkern u1="°" u2="ó" k="87" /> +<hkern u1="°" u2="ò" k="87" /> +<hkern u1="°" u2="ð" k="87" /> +<hkern u1="°" u2="ë" k="87" /> +<hkern u1="°" u2="ê" k="87" /> +<hkern u1="°" u2="é" k="87" /> +<hkern u1="°" u2="è" k="87" /> +<hkern u1="°" u2="ç" k="87" /> +<hkern u1="°" u2="æ" k="63" /> +<hkern u1="°" u2="å" k="63" /> +<hkern u1="°" u2="ä" k="63" /> +<hkern u1="°" u2="ã" k="63" /> +<hkern u1="°" u2="â" k="63" /> +<hkern u1="°" u2="á" k="63" /> +<hkern u1="°" u2="à" k="63" /> +<hkern u1="°" u2="Ý" k="-26" /> +<hkern u1="°" u2="Ø" k="49" /> +<hkern u1="°" u2="Ö" k="49" /> +<hkern u1="°" u2="Õ" k="49" /> +<hkern u1="°" u2="Ô" k="49" /> +<hkern u1="°" u2="Ó" k="49" /> +<hkern u1="°" u2="Ò" k="49" /> +<hkern u1="°" u2="Ç" k="49" /> +<hkern u1="°" u2="Æ" k="174" /> +<hkern u1="°" u2="Å" k="174" /> +<hkern u1="°" u2="Ä" k="174" /> +<hkern u1="°" u2="Ã" k="174" /> +<hkern u1="°" u2="Â" k="174" /> +<hkern u1="°" u2="Á" k="174" /> +<hkern u1="°" u2="À" k="174" /> +<hkern u1="°" u2="»" k="195" /> +<hkern u1="°" u2="·" k="195" /> +<hkern u1="°" u2="­" k="195" /> +<hkern u1="°" u2="«" k="195" /> +<hkern u1="°" u2="q" k="87" /> +<hkern u1="°" u2="o" k="87" /> +<hkern u1="°" u2="e" k="87" /> +<hkern u1="°" u2="d" k="87" /> +<hkern u1="°" u2="c" k="87" /> +<hkern u1="°" u2="a" k="63" /> +<hkern u1="°" u2="\" k="-56" /> +<hkern u1="°" u2="Y" k="-26" /> +<hkern u1="°" u2="W" k="-56" /> +<hkern u1="°" u2="V" k="-56" /> +<hkern u1="°" u2="Q" k="49" /> +<hkern u1="°" u2="O" k="49" /> +<hkern u1="°" u2="G" k="49" /> +<hkern u1="°" u2="C" k="49" /> +<hkern u1="°" u2="A" k="174" /> +<hkern u1="°" u2="@" k="49" /> +<hkern u1="°" u2="/" k="174" /> +<hkern u1="°" u2="." k="251" /> +<hkern u1="°" u2="-" k="195" /> +<hkern u1="°" u2="," k="251" /> +<hkern u1="°" u2="&" k="174" /> +<hkern u1="²" u2="Ÿ" k="-41" /> +<hkern u1="²" u2="Ý" k="-41" /> +<hkern u1="²" u2="Æ" k="164" /> +<hkern u1="²" u2="Å" k="164" /> +<hkern u1="²" u2="Ä" k="164" /> +<hkern u1="²" u2="Ã" k="164" /> +<hkern u1="²" u2="Â" k="164" /> +<hkern u1="²" u2="Á" k="164" /> +<hkern u1="²" u2="À" k="164" /> +<hkern u1="²" u2="\" k="-72" /> +<hkern u1="²" u2="Y" k="-41" /> +<hkern u1="²" u2="W" k="-72" /> +<hkern u1="²" u2="V" k="-72" /> +<hkern u1="²" u2="A" k="164" /> +<hkern u1="²" u2="/" k="164" /> +<hkern u1="²" u2="&" k="164" /> +<hkern u1="³" u2="Ÿ" k="-41" /> +<hkern u1="³" u2="Ý" k="-41" /> +<hkern u1="³" u2="Æ" k="164" /> +<hkern u1="³" u2="Å" k="164" /> +<hkern u1="³" u2="Ä" k="164" /> +<hkern u1="³" u2="Ã" k="164" /> +<hkern u1="³" u2="Â" k="164" /> +<hkern u1="³" u2="Á" k="164" /> +<hkern u1="³" u2="À" k="164" /> +<hkern u1="³" u2="\" k="-72" /> +<hkern u1="³" u2="Y" k="-41" /> +<hkern u1="³" u2="W" k="-72" /> +<hkern u1="³" u2="V" k="-72" /> +<hkern u1="³" u2="A" k="164" /> +<hkern u1="³" u2="/" k="164" /> +<hkern u1="³" u2="&" k="164" /> +<hkern u1="·" u2="™" k="195" /> +<hkern u1="·" u2="„" k="141" /> +<hkern u1="·" u2="”" k="195" /> +<hkern u1="·" u2="“" k="195" /> +<hkern u1="·" u2="‚" k="141" /> +<hkern u1="·" u2="’" k="195" /> +<hkern u1="·" u2="‘" k="195" /> +<hkern u1="·" u2="Ÿ" k="164" /> +<hkern u1="·" u2="Ý" k="164" /> +<hkern u1="·" u2="Æ" k="36" /> +<hkern u1="·" u2="Å" k="36" /> +<hkern u1="·" u2="Ä" k="36" /> +<hkern u1="·" u2="Ã" k="36" /> +<hkern u1="·" u2="Â" k="36" /> +<hkern u1="·" u2="Á" k="36" /> +<hkern u1="·" u2="À" k="36" /> +<hkern u1="·" u2="º" k="195" /> +<hkern u1="·" u2="°" k="195" /> +<hkern u1="·" u2="ª" k="195" /> +<hkern u1="·" u2="\" k="108" /> +<hkern u1="·" u2="Z" k="44" /> +<hkern u1="·" u2="Y" k="164" /> +<hkern u1="·" u2="X" k="56" /> +<hkern u1="·" u2="W" k="26" /> +<hkern u1="·" u2="V" k="108" /> +<hkern u1="·" u2="T" k="184" /> +<hkern u1="·" u2="A" k="36" /> +<hkern u1="·" u2="/" k="36" /> +<hkern u1="·" u2="." k="141" /> +<hkern u1="·" u2="," k="141" /> +<hkern u1="·" u2="*" k="195" /> +<hkern u1="·" u2="'" k="195" /> +<hkern u1="·" u2="&" k="36" /> +<hkern u1="·" u2=""" k="195" /> +<hkern u1="¹" u2="Ÿ" k="-41" /> +<hkern u1="¹" u2="Ý" k="-41" /> +<hkern u1="¹" u2="Æ" k="164" /> +<hkern u1="¹" u2="Å" k="164" /> +<hkern u1="¹" u2="Ä" k="164" /> +<hkern u1="¹" u2="Ã" k="164" /> +<hkern u1="¹" u2="Â" k="164" /> +<hkern u1="¹" u2="Á" k="164" /> +<hkern u1="¹" u2="À" k="164" /> +<hkern u1="¹" u2="\" k="-72" /> +<hkern u1="¹" u2="Y" k="-41" /> +<hkern u1="¹" u2="W" k="-72" /> +<hkern u1="¹" u2="V" k="-72" /> +<hkern u1="¹" u2="A" k="164" /> +<hkern u1="¹" u2="/" k="164" /> +<hkern u1="¹" u2="&" k="164" /> +<hkern u1="º" u2="›" k="195" /> +<hkern u1="º" u2="‹" k="195" /> +<hkern u1="º" u2="•" k="195" /> +<hkern u1="º" u2="„" k="251" /> +<hkern u1="º" u2="‚" k="251" /> +<hkern u1="º" u2="—" k="195" /> +<hkern u1="º" u2="–" k="195" /> +<hkern u1="º" u2="Ÿ" k="-26" /> +<hkern u1="º" u2="œ" k="87" /> +<hkern u1="º" u2="Œ" k="49" /> +<hkern u1="º" u2="ø" k="87" /> +<hkern u1="º" u2="ö" k="87" /> +<hkern u1="º" u2="õ" k="87" /> +<hkern u1="º" u2="ô" k="87" /> +<hkern u1="º" u2="ó" k="87" /> +<hkern u1="º" u2="ò" k="87" /> +<hkern u1="º" u2="ð" k="87" /> +<hkern u1="º" u2="ë" k="87" /> +<hkern u1="º" u2="ê" k="87" /> +<hkern u1="º" u2="é" k="87" /> +<hkern u1="º" u2="è" k="87" /> +<hkern u1="º" u2="ç" k="87" /> +<hkern u1="º" u2="æ" k="63" /> +<hkern u1="º" u2="å" k="63" /> +<hkern u1="º" u2="ä" k="63" /> +<hkern u1="º" u2="ã" k="63" /> +<hkern u1="º" u2="â" k="63" /> +<hkern u1="º" u2="á" k="63" /> +<hkern u1="º" u2="à" k="63" /> +<hkern u1="º" u2="Ý" k="-26" /> +<hkern u1="º" u2="Ø" k="49" /> +<hkern u1="º" u2="Ö" k="49" /> +<hkern u1="º" u2="Õ" k="49" /> +<hkern u1="º" u2="Ô" k="49" /> +<hkern u1="º" u2="Ó" k="49" /> +<hkern u1="º" u2="Ò" k="49" /> +<hkern u1="º" u2="Ç" k="49" /> +<hkern u1="º" u2="Æ" k="174" /> +<hkern u1="º" u2="Å" k="174" /> +<hkern u1="º" u2="Ä" k="174" /> +<hkern u1="º" u2="Ã" k="174" /> +<hkern u1="º" u2="Â" k="174" /> +<hkern u1="º" u2="Á" k="174" /> +<hkern u1="º" u2="À" k="174" /> +<hkern u1="º" u2="»" k="195" /> +<hkern u1="º" u2="·" k="195" /> +<hkern u1="º" u2="­" k="195" /> +<hkern u1="º" u2="«" k="195" /> +<hkern u1="º" u2="q" k="87" /> +<hkern u1="º" u2="o" k="87" /> +<hkern u1="º" u2="e" k="87" /> +<hkern u1="º" u2="d" k="87" /> +<hkern u1="º" u2="c" k="87" /> +<hkern u1="º" u2="a" k="63" /> +<hkern u1="º" u2="\" k="-56" /> +<hkern u1="º" u2="Y" k="-26" /> +<hkern u1="º" u2="W" k="-56" /> +<hkern u1="º" u2="V" k="-56" /> +<hkern u1="º" u2="Q" k="49" /> +<hkern u1="º" u2="O" k="49" /> +<hkern u1="º" u2="G" k="49" /> +<hkern u1="º" u2="C" k="49" /> +<hkern u1="º" u2="A" k="174" /> +<hkern u1="º" u2="@" k="49" /> +<hkern u1="º" u2="/" k="174" /> +<hkern u1="º" u2="." k="251" /> +<hkern u1="º" u2="-" k="195" /> +<hkern u1="º" u2="," k="251" /> +<hkern u1="º" u2="&" k="174" /> +<hkern u1="»" u2="™" k="195" /> +<hkern u1="»" u2="„" k="141" /> +<hkern u1="»" u2="”" k="195" /> +<hkern u1="»" u2="“" k="195" /> +<hkern u1="»" u2="‚" k="141" /> +<hkern u1="»" u2="’" k="195" /> +<hkern u1="»" u2="‘" k="195" /> +<hkern u1="»" u2="Ÿ" k="164" /> +<hkern u1="»" u2="Ý" k="164" /> +<hkern u1="»" u2="Æ" k="36" /> +<hkern u1="»" u2="Å" k="36" /> +<hkern u1="»" u2="Ä" k="36" /> +<hkern u1="»" u2="Ã" k="36" /> +<hkern u1="»" u2="Â" k="36" /> +<hkern u1="»" u2="Á" k="36" /> +<hkern u1="»" u2="À" k="36" /> +<hkern u1="»" u2="º" k="195" /> +<hkern u1="»" u2="°" k="195" /> +<hkern u1="»" u2="ª" k="195" /> +<hkern u1="»" u2="\" k="108" /> +<hkern u1="»" u2="Z" k="44" /> +<hkern u1="»" u2="Y" k="164" /> +<hkern u1="»" u2="X" k="56" /> +<hkern u1="»" u2="W" k="26" /> +<hkern u1="»" u2="V" k="108" /> +<hkern u1="»" u2="T" k="184" /> +<hkern u1="»" u2="A" k="36" /> +<hkern u1="»" u2="/" k="36" /> +<hkern u1="»" u2="." k="141" /> +<hkern u1="»" u2="," k="141" /> +<hkern u1="»" u2="*" k="195" /> +<hkern u1="»" u2="'" k="195" /> +<hkern u1="»" u2="&" k="36" /> +<hkern u1="»" u2=""" k="195" /> +<hkern u1="À" u2="™" k="174" /> +<hkern u1="À" u2="›" k="36" /> +<hkern u1="À" u2="‹" k="36" /> +<hkern u1="À" u2="•" k="36" /> +<hkern u1="À" u2="”" k="174" /> +<hkern u1="À" u2="“" k="174" /> +<hkern u1="À" u2="’" k="174" /> +<hkern u1="À" u2="‘" k="174" /> +<hkern u1="À" u2="—" k="36" /> +<hkern u1="À" u2="–" k="36" /> +<hkern u1="À" u2="Ÿ" k="143" /> +<hkern u1="À" u2="Œ" k="31" /> +<hkern u1="À" u2="Ý" k="143" /> +<hkern u1="À" u2="Ü" k="59" /> +<hkern u1="À" u2="Û" k="59" /> +<hkern u1="À" u2="Ú" k="59" /> +<hkern u1="À" u2="Ù" k="59" /> +<hkern u1="À" u2="Ø" k="31" /> +<hkern u1="À" u2="Ö" k="31" /> +<hkern u1="À" u2="Õ" k="31" /> +<hkern u1="À" u2="Ô" k="31" /> +<hkern u1="À" u2="Ó" k="31" /> +<hkern u1="À" u2="Ò" k="31" /> +<hkern u1="À" u2="Ç" k="31" /> +<hkern u1="À" u2="»" k="36" /> +<hkern u1="À" u2="º" k="174" /> +<hkern u1="À" u2="¹" k="164" /> +<hkern u1="À" u2="·" k="36" /> +<hkern u1="À" u2="³" k="164" /> +<hkern u1="À" u2="²" k="164" /> +<hkern u1="À" u2="°" k="174" /> +<hkern u1="À" u2="­" k="36" /> +<hkern u1="À" u2="«" k="36" /> +<hkern u1="À" u2="ª" k="174" /> +<hkern u1="À" u2="y" k="72" /> +<hkern u1="À" u2="v" k="72" /> +<hkern u1="À" u2="\" k="97" /> +<hkern u1="À" u2="Y" k="143" /> +<hkern u1="À" u2="W" k="61" /> +<hkern u1="À" u2="V" k="97" /> +<hkern u1="À" u2="U" k="59" /> +<hkern u1="À" u2="T" k="118" /> +<hkern u1="À" u2="Q" k="31" /> +<hkern u1="À" u2="O" k="31" /> +<hkern u1="À" u2="J" k="-46" /> +<hkern u1="À" u2="G" k="31" /> +<hkern u1="À" u2="C" k="31" /> +<hkern u1="À" u2="@" k="31" /> +<hkern u1="À" u2="?" k="49" /> +<hkern u1="À" u2="-" k="36" /> +<hkern u1="À" u2="*" k="174" /> +<hkern u1="À" u2="'" k="174" /> +<hkern u1="À" u2=""" k="174" /> +<hkern u1="Á" u2="™" k="174" /> +<hkern u1="Á" u2="›" k="36" /> +<hkern u1="Á" u2="‹" k="36" /> +<hkern u1="Á" u2="•" k="36" /> +<hkern u1="Á" u2="”" k="174" /> +<hkern u1="Á" u2="“" k="174" /> +<hkern u1="Á" u2="’" k="174" /> +<hkern u1="Á" u2="‘" k="174" /> +<hkern u1="Á" u2="—" k="36" /> +<hkern u1="Á" u2="–" k="36" /> +<hkern u1="Á" u2="Ÿ" k="143" /> +<hkern u1="Á" u2="Œ" k="31" /> +<hkern u1="Á" u2="Ý" k="143" /> +<hkern u1="Á" u2="Ü" k="59" /> +<hkern u1="Á" u2="Û" k="59" /> +<hkern u1="Á" u2="Ú" k="59" /> +<hkern u1="Á" u2="Ù" k="59" /> +<hkern u1="Á" u2="Ø" k="31" /> +<hkern u1="Á" u2="Ö" k="31" /> +<hkern u1="Á" u2="Õ" k="31" /> +<hkern u1="Á" u2="Ô" k="31" /> +<hkern u1="Á" u2="Ó" k="31" /> +<hkern u1="Á" u2="Ò" k="31" /> +<hkern u1="Á" u2="Ç" k="31" /> +<hkern u1="Á" u2="»" k="36" /> +<hkern u1="Á" u2="º" k="174" /> +<hkern u1="Á" u2="¹" k="164" /> +<hkern u1="Á" u2="·" k="36" /> +<hkern u1="Á" u2="³" k="164" /> +<hkern u1="Á" u2="²" k="164" /> +<hkern u1="Á" u2="°" k="174" /> +<hkern u1="Á" u2="­" k="36" /> +<hkern u1="Á" u2="«" k="36" /> +<hkern u1="Á" u2="ª" k="174" /> +<hkern u1="Á" u2="y" k="72" /> +<hkern u1="Á" u2="v" k="72" /> +<hkern u1="Á" u2="\" k="97" /> +<hkern u1="Á" u2="Y" k="143" /> +<hkern u1="Á" u2="W" k="61" /> +<hkern u1="Á" u2="V" k="97" /> +<hkern u1="Á" u2="U" k="59" /> +<hkern u1="Á" u2="T" k="118" /> +<hkern u1="Á" u2="Q" k="31" /> +<hkern u1="Á" u2="O" k="31" /> +<hkern u1="Á" u2="J" k="-46" /> +<hkern u1="Á" u2="G" k="31" /> +<hkern u1="Á" u2="C" k="31" /> +<hkern u1="Á" u2="@" k="31" /> +<hkern u1="Á" u2="?" k="49" /> +<hkern u1="Á" u2="-" k="36" /> +<hkern u1="Á" u2="*" k="174" /> +<hkern u1="Á" u2="'" k="174" /> +<hkern u1="Á" u2=""" k="174" /> +<hkern u1="Â" u2="™" k="174" /> +<hkern u1="Â" u2="›" k="36" /> +<hkern u1="Â" u2="‹" k="36" /> +<hkern u1="Â" u2="•" k="36" /> +<hkern u1="Â" u2="”" k="174" /> +<hkern u1="Â" u2="“" k="174" /> +<hkern u1="Â" u2="’" k="174" /> +<hkern u1="Â" u2="‘" k="174" /> +<hkern u1="Â" u2="—" k="36" /> +<hkern u1="Â" u2="–" k="36" /> +<hkern u1="Â" u2="Ÿ" k="143" /> +<hkern u1="Â" u2="Œ" k="31" /> +<hkern u1="Â" u2="Ý" k="143" /> +<hkern u1="Â" u2="Ü" k="59" /> +<hkern u1="Â" u2="Û" k="59" /> +<hkern u1="Â" u2="Ú" k="59" /> +<hkern u1="Â" u2="Ù" k="59" /> +<hkern u1="Â" u2="Ø" k="31" /> +<hkern u1="Â" u2="Ö" k="31" /> +<hkern u1="Â" u2="Õ" k="31" /> +<hkern u1="Â" u2="Ô" k="31" /> +<hkern u1="Â" u2="Ó" k="31" /> +<hkern u1="Â" u2="Ò" k="31" /> +<hkern u1="Â" u2="Ç" k="31" /> +<hkern u1="Â" u2="»" k="36" /> +<hkern u1="Â" u2="º" k="174" /> +<hkern u1="Â" u2="¹" k="164" /> +<hkern u1="Â" u2="·" k="36" /> +<hkern u1="Â" u2="³" k="164" /> +<hkern u1="Â" u2="²" k="164" /> +<hkern u1="Â" u2="°" k="174" /> +<hkern u1="Â" u2="­" k="36" /> +<hkern u1="Â" u2="«" k="36" /> +<hkern u1="Â" u2="ª" k="174" /> +<hkern u1="Â" u2="y" k="72" /> +<hkern u1="Â" u2="v" k="72" /> +<hkern u1="Â" u2="\" k="97" /> +<hkern u1="Â" u2="Y" k="143" /> +<hkern u1="Â" u2="W" k="61" /> +<hkern u1="Â" u2="V" k="97" /> +<hkern u1="Â" u2="U" k="59" /> +<hkern u1="Â" u2="T" k="118" /> +<hkern u1="Â" u2="Q" k="31" /> +<hkern u1="Â" u2="O" k="31" /> +<hkern u1="Â" u2="J" k="-46" /> +<hkern u1="Â" u2="G" k="31" /> +<hkern u1="Â" u2="C" k="31" /> +<hkern u1="Â" u2="@" k="31" /> +<hkern u1="Â" u2="?" k="49" /> +<hkern u1="Â" u2="-" k="36" /> +<hkern u1="Â" u2="*" k="174" /> +<hkern u1="Â" u2="'" k="174" /> +<hkern u1="Â" u2=""" k="174" /> +<hkern u1="Ã" u2="™" k="174" /> +<hkern u1="Ã" u2="›" k="36" /> +<hkern u1="Ã" u2="‹" k="36" /> +<hkern u1="Ã" u2="•" k="36" /> +<hkern u1="Ã" u2="”" k="174" /> +<hkern u1="Ã" u2="“" k="174" /> +<hkern u1="Ã" u2="’" k="174" /> +<hkern u1="Ã" u2="‘" k="174" /> +<hkern u1="Ã" u2="—" k="36" /> +<hkern u1="Ã" u2="–" k="36" /> +<hkern u1="Ã" u2="Ÿ" k="143" /> +<hkern u1="Ã" u2="Œ" k="31" /> +<hkern u1="Ã" u2="Ý" k="143" /> +<hkern u1="Ã" u2="Ü" k="59" /> +<hkern u1="Ã" u2="Û" k="59" /> +<hkern u1="Ã" u2="Ú" k="59" /> +<hkern u1="Ã" u2="Ù" k="59" /> +<hkern u1="Ã" u2="Ø" k="31" /> +<hkern u1="Ã" u2="Ö" k="31" /> +<hkern u1="Ã" u2="Õ" k="31" /> +<hkern u1="Ã" u2="Ô" k="31" /> +<hkern u1="Ã" u2="Ó" k="31" /> +<hkern u1="Ã" u2="Ò" k="31" /> +<hkern u1="Ã" u2="Ç" k="31" /> +<hkern u1="Ã" u2="»" k="36" /> +<hkern u1="Ã" u2="º" k="174" /> +<hkern u1="Ã" u2="¹" k="164" /> +<hkern u1="Ã" u2="·" k="36" /> +<hkern u1="Ã" u2="³" k="164" /> +<hkern u1="Ã" u2="²" k="164" /> +<hkern u1="Ã" u2="°" k="174" /> +<hkern u1="Ã" u2="­" k="36" /> +<hkern u1="Ã" u2="«" k="36" /> +<hkern u1="Ã" u2="ª" k="174" /> +<hkern u1="Ã" u2="y" k="72" /> +<hkern u1="Ã" u2="v" k="72" /> +<hkern u1="Ã" u2="\" k="97" /> +<hkern u1="Ã" u2="Y" k="143" /> +<hkern u1="Ã" u2="W" k="61" /> +<hkern u1="Ã" u2="V" k="97" /> +<hkern u1="Ã" u2="U" k="59" /> +<hkern u1="Ã" u2="T" k="118" /> +<hkern u1="Ã" u2="Q" k="31" /> +<hkern u1="Ã" u2="O" k="31" /> +<hkern u1="Ã" u2="J" k="-46" /> +<hkern u1="Ã" u2="G" k="31" /> +<hkern u1="Ã" u2="C" k="31" /> +<hkern u1="Ã" u2="@" k="31" /> +<hkern u1="Ã" u2="?" k="49" /> +<hkern u1="Ã" u2="-" k="36" /> +<hkern u1="Ã" u2="*" k="174" /> +<hkern u1="Ã" u2="'" k="174" /> +<hkern u1="Ã" u2=""" k="174" /> +<hkern u1="Ä" u2="™" k="174" /> +<hkern u1="Ä" u2="›" k="36" /> +<hkern u1="Ä" u2="‹" k="36" /> +<hkern u1="Ä" u2="•" k="36" /> +<hkern u1="Ä" u2="”" k="174" /> +<hkern u1="Ä" u2="“" k="174" /> +<hkern u1="Ä" u2="’" k="174" /> +<hkern u1="Ä" u2="‘" k="174" /> +<hkern u1="Ä" u2="—" k="36" /> +<hkern u1="Ä" u2="–" k="36" /> +<hkern u1="Ä" u2="Ÿ" k="143" /> +<hkern u1="Ä" u2="Œ" k="31" /> +<hkern u1="Ä" u2="Ý" k="143" /> +<hkern u1="Ä" u2="Ü" k="59" /> +<hkern u1="Ä" u2="Û" k="59" /> +<hkern u1="Ä" u2="Ú" k="59" /> +<hkern u1="Ä" u2="Ù" k="59" /> +<hkern u1="Ä" u2="Ø" k="31" /> +<hkern u1="Ä" u2="Ö" k="31" /> +<hkern u1="Ä" u2="Õ" k="31" /> +<hkern u1="Ä" u2="Ô" k="31" /> +<hkern u1="Ä" u2="Ó" k="31" /> +<hkern u1="Ä" u2="Ò" k="31" /> +<hkern u1="Ä" u2="Ç" k="31" /> +<hkern u1="Ä" u2="»" k="36" /> +<hkern u1="Ä" u2="º" k="174" /> +<hkern u1="Ä" u2="¹" k="164" /> +<hkern u1="Ä" u2="·" k="36" /> +<hkern u1="Ä" u2="³" k="164" /> +<hkern u1="Ä" u2="²" k="164" /> +<hkern u1="Ä" u2="°" k="174" /> +<hkern u1="Ä" u2="­" k="36" /> +<hkern u1="Ä" u2="«" k="36" /> +<hkern u1="Ä" u2="ª" k="174" /> +<hkern u1="Ä" u2="y" k="72" /> +<hkern u1="Ä" u2="v" k="72" /> +<hkern u1="Ä" u2="\" k="97" /> +<hkern u1="Ä" u2="Y" k="143" /> +<hkern u1="Ä" u2="W" k="61" /> +<hkern u1="Ä" u2="V" k="97" /> +<hkern u1="Ä" u2="U" k="59" /> +<hkern u1="Ä" u2="T" k="118" /> +<hkern u1="Ä" u2="Q" k="31" /> +<hkern u1="Ä" u2="O" k="31" /> +<hkern u1="Ä" u2="J" k="-46" /> +<hkern u1="Ä" u2="G" k="31" /> +<hkern u1="Ä" u2="C" k="31" /> +<hkern u1="Ä" u2="@" k="31" /> +<hkern u1="Ä" u2="?" k="49" /> +<hkern u1="Ä" u2="-" k="36" /> +<hkern u1="Ä" u2="*" k="174" /> +<hkern u1="Ä" u2="'" k="174" /> +<hkern u1="Ä" u2=""" k="174" /> +<hkern u1="Å" u2="™" k="174" /> +<hkern u1="Å" u2="›" k="36" /> +<hkern u1="Å" u2="‹" k="36" /> +<hkern u1="Å" u2="•" k="36" /> +<hkern u1="Å" u2="”" k="174" /> +<hkern u1="Å" u2="“" k="174" /> +<hkern u1="Å" u2="’" k="174" /> +<hkern u1="Å" u2="‘" k="174" /> +<hkern u1="Å" u2="—" k="36" /> +<hkern u1="Å" u2="–" k="36" /> +<hkern u1="Å" u2="Ÿ" k="143" /> +<hkern u1="Å" u2="Œ" k="31" /> +<hkern u1="Å" u2="Ý" k="143" /> +<hkern u1="Å" u2="Ü" k="59" /> +<hkern u1="Å" u2="Û" k="59" /> +<hkern u1="Å" u2="Ú" k="59" /> +<hkern u1="Å" u2="Ù" k="59" /> +<hkern u1="Å" u2="Ø" k="31" /> +<hkern u1="Å" u2="Ö" k="31" /> +<hkern u1="Å" u2="Õ" k="31" /> +<hkern u1="Å" u2="Ô" k="31" /> +<hkern u1="Å" u2="Ó" k="31" /> +<hkern u1="Å" u2="Ò" k="31" /> +<hkern u1="Å" u2="Ç" k="31" /> +<hkern u1="Å" u2="»" k="36" /> +<hkern u1="Å" u2="º" k="174" /> +<hkern u1="Å" u2="¹" k="164" /> +<hkern u1="Å" u2="·" k="36" /> +<hkern u1="Å" u2="³" k="164" /> +<hkern u1="Å" u2="²" k="164" /> +<hkern u1="Å" u2="°" k="174" /> +<hkern u1="Å" u2="­" k="36" /> +<hkern u1="Å" u2="«" k="36" /> +<hkern u1="Å" u2="ª" k="174" /> +<hkern u1="Å" u2="y" k="72" /> +<hkern u1="Å" u2="v" k="72" /> +<hkern u1="Å" u2="\" k="97" /> +<hkern u1="Å" u2="Y" k="143" /> +<hkern u1="Å" u2="W" k="61" /> +<hkern u1="Å" u2="V" k="97" /> +<hkern u1="Å" u2="U" k="59" /> +<hkern u1="Å" u2="T" k="118" /> +<hkern u1="Å" u2="Q" k="31" /> +<hkern u1="Å" u2="O" k="31" /> +<hkern u1="Å" u2="J" k="-46" /> +<hkern u1="Å" u2="G" k="31" /> +<hkern u1="Å" u2="C" k="31" /> +<hkern u1="Å" u2="@" k="31" /> +<hkern u1="Å" u2="?" k="49" /> +<hkern u1="Å" u2="-" k="36" /> +<hkern u1="Å" u2="*" k="174" /> +<hkern u1="Å" u2="'" k="174" /> +<hkern u1="Å" u2=""" k="174" /> +<hkern u1="Ç" u2="›" k="159" /> +<hkern u1="Ç" u2="‹" k="159" /> +<hkern u1="Ç" u2="•" k="159" /> +<hkern u1="Ç" u2="—" k="159" /> +<hkern u1="Ç" u2="–" k="159" /> +<hkern u1="Ç" u2="»" k="159" /> +<hkern u1="Ç" u2="·" k="159" /> +<hkern u1="Ç" u2="­" k="159" /> +<hkern u1="Ç" u2="«" k="159" /> +<hkern u1="Ç" u2="-" k="159" /> +<hkern u1="Ð" u2="™" k="49" /> +<hkern u1="Ð" u2="„" k="59" /> +<hkern u1="Ð" u2="”" k="49" /> +<hkern u1="Ð" u2="“" k="49" /> +<hkern u1="Ð" u2="‚" k="59" /> +<hkern u1="Ð" u2="’" k="49" /> +<hkern u1="Ð" u2="‘" k="49" /> +<hkern u1="Ð" u2="Ÿ" k="82" /> +<hkern u1="Ð" u2="Ý" k="82" /> +<hkern u1="Ð" u2="Æ" k="31" /> +<hkern u1="Ð" u2="Å" k="31" /> +<hkern u1="Ð" u2="Ä" k="31" /> +<hkern u1="Ð" u2="Ã" k="31" /> +<hkern u1="Ð" u2="Â" k="31" /> +<hkern u1="Ð" u2="Á" k="31" /> +<hkern u1="Ð" u2="À" k="31" /> +<hkern u1="Ð" u2="º" k="49" /> +<hkern u1="Ð" u2="°" k="49" /> +<hkern u1="Ð" u2="ª" k="49" /> +<hkern u1="Ð" u2="}" k="41" /> +<hkern u1="Ð" u2="]" k="41" /> +<hkern u1="Ð" u2="\" k="46" /> +<hkern u1="Ð" u2="Z" k="77" /> +<hkern u1="Ð" u2="Y" k="82" /> +<hkern u1="Ð" u2="X" k="31" /> +<hkern u1="Ð" u2="V" k="46" /> +<hkern u1="Ð" u2="T" k="123" /> +<hkern u1="Ð" u2="A" k="31" /> +<hkern u1="Ð" u2="/" k="31" /> +<hkern u1="Ð" u2="." k="59" /> +<hkern u1="Ð" u2="," k="59" /> +<hkern u1="Ð" u2="*" k="49" /> +<hkern u1="Ð" u2=")" k="41" /> +<hkern u1="Ð" u2="'" k="49" /> +<hkern u1="Ð" u2="&" k="31" /> +<hkern u1="Ð" u2=""" k="49" /> +<hkern u1="Ò" u2="™" k="49" /> +<hkern u1="Ò" u2="„" k="59" /> +<hkern u1="Ò" u2="”" k="49" /> +<hkern u1="Ò" u2="“" k="49" /> +<hkern u1="Ò" u2="‚" k="59" /> +<hkern u1="Ò" u2="’" k="49" /> +<hkern u1="Ò" u2="‘" k="49" /> +<hkern u1="Ò" u2="Ÿ" k="82" /> +<hkern u1="Ò" u2="Ý" k="82" /> +<hkern u1="Ò" u2="Æ" k="31" /> +<hkern u1="Ò" u2="Å" k="31" /> +<hkern u1="Ò" u2="Ä" k="31" /> +<hkern u1="Ò" u2="Ã" k="31" /> +<hkern u1="Ò" u2="Â" k="31" /> +<hkern u1="Ò" u2="Á" k="31" /> +<hkern u1="Ò" u2="À" k="31" /> +<hkern u1="Ò" u2="º" k="49" /> +<hkern u1="Ò" u2="°" k="49" /> +<hkern u1="Ò" u2="ª" k="49" /> +<hkern u1="Ò" u2="}" k="41" /> +<hkern u1="Ò" u2="]" k="41" /> +<hkern u1="Ò" u2="\" k="46" /> +<hkern u1="Ò" u2="Z" k="77" /> +<hkern u1="Ò" u2="Y" k="82" /> +<hkern u1="Ò" u2="X" k="31" /> +<hkern u1="Ò" u2="V" k="46" /> +<hkern u1="Ò" u2="T" k="123" /> +<hkern u1="Ò" u2="A" k="31" /> +<hkern u1="Ò" u2="/" k="31" /> +<hkern u1="Ò" u2="." k="59" /> +<hkern u1="Ò" u2="," k="59" /> +<hkern u1="Ò" u2="*" k="49" /> +<hkern u1="Ò" u2=")" k="41" /> +<hkern u1="Ò" u2="'" k="49" /> +<hkern u1="Ò" u2="&" k="31" /> +<hkern u1="Ò" u2=""" k="49" /> +<hkern u1="Ó" u2="™" k="49" /> +<hkern u1="Ó" u2="„" k="59" /> +<hkern u1="Ó" u2="”" k="49" /> +<hkern u1="Ó" u2="“" k="49" /> +<hkern u1="Ó" u2="‚" k="59" /> +<hkern u1="Ó" u2="’" k="49" /> +<hkern u1="Ó" u2="‘" k="49" /> +<hkern u1="Ó" u2="Ÿ" k="82" /> +<hkern u1="Ó" u2="Ý" k="82" /> +<hkern u1="Ó" u2="Æ" k="31" /> +<hkern u1="Ó" u2="Å" k="31" /> +<hkern u1="Ó" u2="Ä" k="31" /> +<hkern u1="Ó" u2="Ã" k="31" /> +<hkern u1="Ó" u2="Â" k="31" /> +<hkern u1="Ó" u2="Á" k="31" /> +<hkern u1="Ó" u2="À" k="31" /> +<hkern u1="Ó" u2="º" k="49" /> +<hkern u1="Ó" u2="°" k="49" /> +<hkern u1="Ó" u2="ª" k="49" /> +<hkern u1="Ó" u2="}" k="41" /> +<hkern u1="Ó" u2="]" k="41" /> +<hkern u1="Ó" u2="\" k="46" /> +<hkern u1="Ó" u2="Z" k="77" /> +<hkern u1="Ó" u2="Y" k="82" /> +<hkern u1="Ó" u2="X" k="31" /> +<hkern u1="Ó" u2="V" k="46" /> +<hkern u1="Ó" u2="T" k="123" /> +<hkern u1="Ó" u2="A" k="31" /> +<hkern u1="Ó" u2="/" k="31" /> +<hkern u1="Ó" u2="." k="59" /> +<hkern u1="Ó" u2="," k="59" /> +<hkern u1="Ó" u2="*" k="49" /> +<hkern u1="Ó" u2=")" k="41" /> +<hkern u1="Ó" u2="'" k="49" /> +<hkern u1="Ó" u2="&" k="31" /> +<hkern u1="Ó" u2=""" k="49" /> +<hkern u1="Ô" u2="™" k="49" /> +<hkern u1="Ô" u2="„" k="59" /> +<hkern u1="Ô" u2="”" k="49" /> +<hkern u1="Ô" u2="“" k="49" /> +<hkern u1="Ô" u2="‚" k="59" /> +<hkern u1="Ô" u2="’" k="49" /> +<hkern u1="Ô" u2="‘" k="49" /> +<hkern u1="Ô" u2="Ÿ" k="82" /> +<hkern u1="Ô" u2="Ý" k="82" /> +<hkern u1="Ô" u2="Æ" k="31" /> +<hkern u1="Ô" u2="Å" k="31" /> +<hkern u1="Ô" u2="Ä" k="31" /> +<hkern u1="Ô" u2="Ã" k="31" /> +<hkern u1="Ô" u2="Â" k="31" /> +<hkern u1="Ô" u2="Á" k="31" /> +<hkern u1="Ô" u2="À" k="31" /> +<hkern u1="Ô" u2="º" k="49" /> +<hkern u1="Ô" u2="°" k="49" /> +<hkern u1="Ô" u2="ª" k="49" /> +<hkern u1="Ô" u2="}" k="41" /> +<hkern u1="Ô" u2="]" k="41" /> +<hkern u1="Ô" u2="\" k="46" /> +<hkern u1="Ô" u2="Z" k="77" /> +<hkern u1="Ô" u2="Y" k="82" /> +<hkern u1="Ô" u2="X" k="31" /> +<hkern u1="Ô" u2="V" k="46" /> +<hkern u1="Ô" u2="T" k="123" /> +<hkern u1="Ô" u2="A" k="31" /> +<hkern u1="Ô" u2="/" k="31" /> +<hkern u1="Ô" u2="." k="59" /> +<hkern u1="Ô" u2="," k="59" /> +<hkern u1="Ô" u2="*" k="49" /> +<hkern u1="Ô" u2=")" k="41" /> +<hkern u1="Ô" u2="'" k="49" /> +<hkern u1="Ô" u2="&" k="31" /> +<hkern u1="Ô" u2=""" k="49" /> +<hkern u1="Õ" u2="™" k="49" /> +<hkern u1="Õ" u2="„" k="59" /> +<hkern u1="Õ" u2="”" k="49" /> +<hkern u1="Õ" u2="“" k="49" /> +<hkern u1="Õ" u2="‚" k="59" /> +<hkern u1="Õ" u2="’" k="49" /> +<hkern u1="Õ" u2="‘" k="49" /> +<hkern u1="Õ" u2="Ÿ" k="82" /> +<hkern u1="Õ" u2="Ý" k="82" /> +<hkern u1="Õ" u2="Æ" k="31" /> +<hkern u1="Õ" u2="Å" k="31" /> +<hkern u1="Õ" u2="Ä" k="31" /> +<hkern u1="Õ" u2="Ã" k="31" /> +<hkern u1="Õ" u2="Â" k="31" /> +<hkern u1="Õ" u2="Á" k="31" /> +<hkern u1="Õ" u2="À" k="31" /> +<hkern u1="Õ" u2="º" k="49" /> +<hkern u1="Õ" u2="°" k="49" /> +<hkern u1="Õ" u2="ª" k="49" /> +<hkern u1="Õ" u2="}" k="41" /> +<hkern u1="Õ" u2="]" k="41" /> +<hkern u1="Õ" u2="\" k="46" /> +<hkern u1="Õ" u2="Z" k="77" /> +<hkern u1="Õ" u2="Y" k="82" /> +<hkern u1="Õ" u2="X" k="31" /> +<hkern u1="Õ" u2="V" k="46" /> +<hkern u1="Õ" u2="T" k="123" /> +<hkern u1="Õ" u2="A" k="31" /> +<hkern u1="Õ" u2="/" k="31" /> +<hkern u1="Õ" u2="." k="59" /> +<hkern u1="Õ" u2="," k="59" /> +<hkern u1="Õ" u2="*" k="49" /> +<hkern u1="Õ" u2=")" k="41" /> +<hkern u1="Õ" u2="'" k="49" /> +<hkern u1="Õ" u2="&" k="31" /> +<hkern u1="Õ" u2=""" k="49" /> +<hkern u1="Ö" u2="™" k="49" /> +<hkern u1="Ö" u2="„" k="59" /> +<hkern u1="Ö" u2="”" k="49" /> +<hkern u1="Ö" u2="“" k="49" /> +<hkern u1="Ö" u2="‚" k="59" /> +<hkern u1="Ö" u2="’" k="49" /> +<hkern u1="Ö" u2="‘" k="49" /> +<hkern u1="Ö" u2="Ÿ" k="82" /> +<hkern u1="Ö" u2="Ý" k="82" /> +<hkern u1="Ö" u2="Æ" k="31" /> +<hkern u1="Ö" u2="Å" k="31" /> +<hkern u1="Ö" u2="Ä" k="31" /> +<hkern u1="Ö" u2="Ã" k="31" /> +<hkern u1="Ö" u2="Â" k="31" /> +<hkern u1="Ö" u2="Á" k="31" /> +<hkern u1="Ö" u2="À" k="31" /> +<hkern u1="Ö" u2="º" k="49" /> +<hkern u1="Ö" u2="°" k="49" /> +<hkern u1="Ö" u2="ª" k="49" /> +<hkern u1="Ö" u2="}" k="41" /> +<hkern u1="Ö" u2="]" k="41" /> +<hkern u1="Ö" u2="\" k="46" /> +<hkern u1="Ö" u2="Z" k="77" /> +<hkern u1="Ö" u2="Y" k="82" /> +<hkern u1="Ö" u2="X" k="31" /> +<hkern u1="Ö" u2="V" k="46" /> +<hkern u1="Ö" u2="T" k="123" /> +<hkern u1="Ö" u2="A" k="31" /> +<hkern u1="Ö" u2="/" k="31" /> +<hkern u1="Ö" u2="." k="59" /> +<hkern u1="Ö" u2="," k="59" /> +<hkern u1="Ö" u2="*" k="49" /> +<hkern u1="Ö" u2=")" k="41" /> +<hkern u1="Ö" u2="'" k="49" /> +<hkern u1="Ö" u2="&" k="31" /> +<hkern u1="Ö" u2=""" k="49" /> +<hkern u1="Ù" u2="„" k="51" /> +<hkern u1="Ù" u2="‚" k="51" /> +<hkern u1="Ù" u2="Æ" k="59" /> +<hkern u1="Ù" u2="Å" k="59" /> +<hkern u1="Ù" u2="Ä" k="59" /> +<hkern u1="Ù" u2="Ã" k="59" /> +<hkern u1="Ù" u2="Â" k="59" /> +<hkern u1="Ù" u2="Á" k="59" /> +<hkern u1="Ù" u2="À" k="59" /> +<hkern u1="Ù" u2="A" k="59" /> +<hkern u1="Ù" u2="/" k="59" /> +<hkern u1="Ù" u2="." k="51" /> +<hkern u1="Ù" u2="," k="51" /> +<hkern u1="Ù" u2="&" k="59" /> +<hkern u1="Ú" u2="„" k="51" /> +<hkern u1="Ú" u2="‚" k="51" /> +<hkern u1="Ú" u2="Æ" k="59" /> +<hkern u1="Ú" u2="Å" k="59" /> +<hkern u1="Ú" u2="Ä" k="59" /> +<hkern u1="Ú" u2="Ã" k="59" /> +<hkern u1="Ú" u2="Â" k="59" /> +<hkern u1="Ú" u2="Á" k="59" /> +<hkern u1="Ú" u2="À" k="59" /> +<hkern u1="Ú" u2="A" k="59" /> +<hkern u1="Ú" u2="/" k="59" /> +<hkern u1="Ú" u2="." k="51" /> +<hkern u1="Ú" u2="," k="51" /> +<hkern u1="Ú" u2="&" k="59" /> +<hkern u1="Û" u2="„" k="51" /> +<hkern u1="Û" u2="‚" k="51" /> +<hkern u1="Û" u2="Æ" k="59" /> +<hkern u1="Û" u2="Å" k="59" /> +<hkern u1="Û" u2="Ä" k="59" /> +<hkern u1="Û" u2="Ã" k="59" /> +<hkern u1="Û" u2="Â" k="59" /> +<hkern u1="Û" u2="Á" k="59" /> +<hkern u1="Û" u2="À" k="59" /> +<hkern u1="Û" u2="A" k="59" /> +<hkern u1="Û" u2="/" k="59" /> +<hkern u1="Û" u2="." k="51" /> +<hkern u1="Û" u2="," k="51" /> +<hkern u1="Û" u2="&" k="59" /> +<hkern u1="Ü" u2="„" k="51" /> +<hkern u1="Ü" u2="‚" k="51" /> +<hkern u1="Ü" u2="Æ" k="59" /> +<hkern u1="Ü" u2="Å" k="59" /> +<hkern u1="Ü" u2="Ä" k="59" /> +<hkern u1="Ü" u2="Ã" k="59" /> +<hkern u1="Ü" u2="Â" k="59" /> +<hkern u1="Ü" u2="Á" k="59" /> +<hkern u1="Ü" u2="À" k="59" /> +<hkern u1="Ü" u2="A" k="59" /> +<hkern u1="Ü" u2="/" k="59" /> +<hkern u1="Ü" u2="." k="51" /> +<hkern u1="Ü" u2="," k="51" /> +<hkern u1="Ü" u2="&" k="59" /> +<hkern u1="Ý" u2="™" k="-26" /> +<hkern u1="Ý" u2="›" k="164" /> +<hkern u1="Ý" u2="‹" k="164" /> +<hkern u1="Ý" u2="•" k="164" /> +<hkern u1="Ý" u2="„" k="138" /> +<hkern u1="Ý" u2="”" k="-26" /> +<hkern u1="Ý" u2="“" k="-26" /> +<hkern u1="Ý" u2="‚" k="138" /> +<hkern u1="Ý" u2="’" k="-26" /> +<hkern u1="Ý" u2="‘" k="-26" /> +<hkern u1="Ý" u2="—" k="164" /> +<hkern u1="Ý" u2="–" k="164" /> +<hkern u1="Ý" u2="œ" k="164" /> +<hkern u1="Ý" u2="Œ" k="82" /> +<hkern u1="Ý" u2="ü" k="113" /> +<hkern u1="Ý" u2="û" k="113" /> +<hkern u1="Ý" u2="ú" k="113" /> +<hkern u1="Ý" u2="ù" k="113" /> +<hkern u1="Ý" u2="ø" k="164" /> +<hkern u1="Ý" u2="ö" k="164" /> +<hkern u1="Ý" u2="õ" k="164" /> +<hkern u1="Ý" u2="ô" k="164" /> +<hkern u1="Ý" u2="ó" k="164" /> +<hkern u1="Ý" u2="ò" k="164" /> +<hkern u1="Ý" u2="ñ" k="113" /> +<hkern u1="Ý" u2="ð" k="164" /> +<hkern u1="Ý" u2="ë" k="164" /> +<hkern u1="Ý" u2="ê" k="164" /> +<hkern u1="Ý" u2="é" k="164" /> +<hkern u1="Ý" u2="è" k="164" /> +<hkern u1="Ý" u2="ç" k="164" /> +<hkern u1="Ý" u2="æ" k="111" /> +<hkern u1="Ý" u2="å" k="111" /> +<hkern u1="Ý" u2="ä" k="111" /> +<hkern u1="Ý" u2="ã" k="111" /> +<hkern u1="Ý" u2="â" k="111" /> +<hkern u1="Ý" u2="á" k="111" /> +<hkern u1="Ý" u2="à" k="111" /> +<hkern u1="Ý" u2="Ø" k="82" /> +<hkern u1="Ý" u2="Ö" k="82" /> +<hkern u1="Ý" u2="Õ" k="82" /> +<hkern u1="Ý" u2="Ô" k="82" /> +<hkern u1="Ý" u2="Ó" k="82" /> +<hkern u1="Ý" u2="Ò" k="82" /> +<hkern u1="Ý" u2="Ç" k="82" /> +<hkern u1="Ý" u2="Æ" k="143" /> +<hkern u1="Ý" u2="Å" k="143" /> +<hkern u1="Ý" u2="Ä" k="143" /> +<hkern u1="Ý" u2="Ã" k="143" /> +<hkern u1="Ý" u2="Â" k="143" /> +<hkern u1="Ý" u2="Á" k="143" /> +<hkern u1="Ý" u2="À" k="143" /> +<hkern u1="Ý" u2="»" k="164" /> +<hkern u1="Ý" u2="º" k="-26" /> +<hkern u1="Ý" u2="¹" k="-46" /> +<hkern u1="Ý" u2="·" k="164" /> +<hkern u1="Ý" u2="µ" k="113" /> +<hkern u1="Ý" u2="³" k="-46" /> +<hkern u1="Ý" u2="²" k="-46" /> +<hkern u1="Ý" u2="°" k="-26" /> +<hkern u1="Ý" u2="­" k="164" /> +<hkern u1="Ý" u2="«" k="164" /> +<hkern u1="Ý" u2="ª" k="-26" /> +<hkern u1="Ý" u2="y" k="102" /> +<hkern u1="Ý" u2="x" k="128" /> +<hkern u1="Ý" u2="w" k="87" /> +<hkern u1="Ý" u2="v" k="102" /> +<hkern u1="Ý" u2="u" k="113" /> +<hkern u1="Ý" u2="s" k="116" /> +<hkern u1="Ý" u2="r" k="113" /> +<hkern u1="Ý" u2="q" k="164" /> +<hkern u1="Ý" u2="p" k="113" /> +<hkern u1="Ý" u2="o" k="164" /> +<hkern u1="Ý" u2="n" k="113" /> +<hkern u1="Ý" u2="m" k="113" /> +<hkern u1="Ý" u2="g" k="169" /> +<hkern u1="Ý" u2="e" k="164" /> +<hkern u1="Ý" u2="d" k="164" /> +<hkern u1="Ý" u2="c" k="164" /> +<hkern u1="Ý" u2="a" k="111" /> +<hkern u1="Ý" u2="Q" k="82" /> +<hkern u1="Ý" u2="O" k="82" /> +<hkern u1="Ý" u2="J" k="205" /> +<hkern u1="Ý" u2="G" k="82" /> +<hkern u1="Ý" u2="C" k="82" /> +<hkern u1="Ý" u2="A" k="143" /> +<hkern u1="Ý" u2="@" k="82" /> +<hkern u1="Ý" u2="?" k="-38" /> +<hkern u1="Ý" u2=";" k="113" /> +<hkern u1="Ý" u2=":" k="113" /> +<hkern u1="Ý" u2="/" k="143" /> +<hkern u1="Ý" u2="." k="138" /> +<hkern u1="Ý" u2="-" k="164" /> +<hkern u1="Ý" u2="," k="138" /> +<hkern u1="Ý" u2="*" k="-26" /> +<hkern u1="Ý" u2="'" k="-26" /> +<hkern u1="Ý" u2="&" k="143" /> +<hkern u1="Ý" u2=""" k="-26" /> +<hkern u1="Þ" u2="™" k="49" /> +<hkern u1="Þ" u2="„" k="59" /> +<hkern u1="Þ" u2="”" k="49" /> +<hkern u1="Þ" u2="“" k="49" /> +<hkern u1="Þ" u2="‚" k="59" /> +<hkern u1="Þ" u2="’" k="49" /> +<hkern u1="Þ" u2="‘" k="49" /> +<hkern u1="Þ" u2="Ÿ" k="82" /> +<hkern u1="Þ" u2="Ý" k="82" /> +<hkern u1="Þ" u2="Æ" k="31" /> +<hkern u1="Þ" u2="Å" k="31" /> +<hkern u1="Þ" u2="Ä" k="31" /> +<hkern u1="Þ" u2="Ã" k="31" /> +<hkern u1="Þ" u2="Â" k="31" /> +<hkern u1="Þ" u2="Á" k="31" /> +<hkern u1="Þ" u2="À" k="31" /> +<hkern u1="Þ" u2="º" k="49" /> +<hkern u1="Þ" u2="°" k="49" /> +<hkern u1="Þ" u2="ª" k="49" /> +<hkern u1="Þ" u2="}" k="41" /> +<hkern u1="Þ" u2="]" k="41" /> +<hkern u1="Þ" u2="\" k="46" /> +<hkern u1="Þ" u2="Z" k="77" /> +<hkern u1="Þ" u2="Y" k="82" /> +<hkern u1="Þ" u2="X" k="31" /> +<hkern u1="Þ" u2="V" k="46" /> +<hkern u1="Þ" u2="T" k="123" /> +<hkern u1="Þ" u2="A" k="31" /> +<hkern u1="Þ" u2="/" k="31" /> +<hkern u1="Þ" u2="." k="59" /> +<hkern u1="Þ" u2="," k="59" /> +<hkern u1="Þ" u2="*" k="49" /> +<hkern u1="Þ" u2=")" k="41" /> +<hkern u1="Þ" u2="'" k="49" /> +<hkern u1="Þ" u2="&" k="31" /> +<hkern u1="Þ" u2=""" k="49" /> +<hkern u1="à" u2="™" k="67" /> +<hkern u1="à" u2="”" k="67" /> +<hkern u1="à" u2="“" k="67" /> +<hkern u1="à" u2="’" k="67" /> +<hkern u1="à" u2="‘" k="67" /> +<hkern u1="à" u2="º" k="67" /> +<hkern u1="à" u2="¹" k="67" /> +<hkern u1="à" u2="³" k="67" /> +<hkern u1="à" u2="²" k="67" /> +<hkern u1="à" u2="°" k="67" /> +<hkern u1="à" u2="ª" k="67" /> +<hkern u1="à" u2="y" k="26" /> +<hkern u1="à" u2="w" k="13" /> +<hkern u1="à" u2="v" k="26" /> +<hkern u1="à" u2="*" k="67" /> +<hkern u1="à" u2="'" k="67" /> +<hkern u1="à" u2=""" k="67" /> +<hkern u1="á" u2="™" k="67" /> +<hkern u1="á" u2="”" k="67" /> +<hkern u1="á" u2="“" k="67" /> +<hkern u1="á" u2="’" k="67" /> +<hkern u1="á" u2="‘" k="67" /> +<hkern u1="á" u2="º" k="67" /> +<hkern u1="á" u2="¹" k="67" /> +<hkern u1="á" u2="³" k="67" /> +<hkern u1="á" u2="²" k="67" /> +<hkern u1="á" u2="°" k="67" /> +<hkern u1="á" u2="ª" k="67" /> +<hkern u1="á" u2="y" k="26" /> +<hkern u1="á" u2="w" k="13" /> +<hkern u1="á" u2="v" k="26" /> +<hkern u1="á" u2="*" k="67" /> +<hkern u1="á" u2="'" k="67" /> +<hkern u1="á" u2=""" k="67" /> +<hkern u1="â" u2="™" k="67" /> +<hkern u1="â" u2="”" k="67" /> +<hkern u1="â" u2="“" k="67" /> +<hkern u1="â" u2="’" k="67" /> +<hkern u1="â" u2="‘" k="67" /> +<hkern u1="â" u2="º" k="67" /> +<hkern u1="â" u2="¹" k="67" /> +<hkern u1="â" u2="³" k="67" /> +<hkern u1="â" u2="²" k="67" /> +<hkern u1="â" u2="°" k="67" /> +<hkern u1="â" u2="ª" k="67" /> +<hkern u1="â" u2="y" k="26" /> +<hkern u1="â" u2="w" k="13" /> +<hkern u1="â" u2="v" k="26" /> +<hkern u1="â" u2="*" k="67" /> +<hkern u1="â" u2="'" k="67" /> +<hkern u1="â" u2=""" k="67" /> +<hkern u1="ã" u2="™" k="67" /> +<hkern u1="ã" u2="”" k="67" /> +<hkern u1="ã" u2="“" k="67" /> +<hkern u1="ã" u2="’" k="67" /> +<hkern u1="ã" u2="‘" k="67" /> +<hkern u1="ã" u2="º" k="67" /> +<hkern u1="ã" u2="¹" k="67" /> +<hkern u1="ã" u2="³" k="67" /> +<hkern u1="ã" u2="²" k="67" /> +<hkern u1="ã" u2="°" k="67" /> +<hkern u1="ã" u2="ª" k="67" /> +<hkern u1="ã" u2="y" k="26" /> +<hkern u1="ã" u2="w" k="13" /> +<hkern u1="ã" u2="v" k="26" /> +<hkern u1="ã" u2="*" k="67" /> +<hkern u1="ã" u2="'" k="67" /> +<hkern u1="ã" u2=""" k="67" /> +<hkern u1="ä" u2="™" k="67" /> +<hkern u1="ä" u2="”" k="67" /> +<hkern u1="ä" u2="“" k="67" /> +<hkern u1="ä" u2="’" k="67" /> +<hkern u1="ä" u2="‘" k="67" /> +<hkern u1="ä" u2="º" k="67" /> +<hkern u1="ä" u2="¹" k="67" /> +<hkern u1="ä" u2="³" k="67" /> +<hkern u1="ä" u2="²" k="67" /> +<hkern u1="ä" u2="°" k="67" /> +<hkern u1="ä" u2="ª" k="67" /> +<hkern u1="ä" u2="y" k="26" /> +<hkern u1="ä" u2="w" k="13" /> +<hkern u1="ä" u2="v" k="26" /> +<hkern u1="ä" u2="*" k="67" /> +<hkern u1="ä" u2="'" k="67" /> +<hkern u1="ä" u2=""" k="67" /> +<hkern u1="å" u2="™" k="67" /> +<hkern u1="å" u2="”" k="67" /> +<hkern u1="å" u2="“" k="67" /> +<hkern u1="å" u2="’" k="67" /> +<hkern u1="å" u2="‘" k="67" /> +<hkern u1="å" u2="º" k="67" /> +<hkern u1="å" u2="¹" k="67" /> +<hkern u1="å" u2="³" k="67" /> +<hkern u1="å" u2="²" k="67" /> +<hkern u1="å" u2="°" k="67" /> +<hkern u1="å" u2="ª" k="67" /> +<hkern u1="å" u2="y" k="26" /> +<hkern u1="å" u2="w" k="13" /> +<hkern u1="å" u2="v" k="26" /> +<hkern u1="å" u2="*" k="67" /> +<hkern u1="å" u2="'" k="67" /> +<hkern u1="å" u2=""" k="67" /> +<hkern u1="æ" u2="™" k="87" /> +<hkern u1="æ" u2="”" k="87" /> +<hkern u1="æ" u2="“" k="87" /> +<hkern u1="æ" u2="’" k="87" /> +<hkern u1="æ" u2="‘" k="87" /> +<hkern u1="æ" u2="º" k="87" /> +<hkern u1="æ" u2="°" k="87" /> +<hkern u1="æ" u2="ª" k="87" /> +<hkern u1="æ" u2="}" k="26" /> +<hkern u1="æ" u2="y" k="18" /> +<hkern u1="æ" u2="x" k="61" /> +<hkern u1="æ" u2="v" k="18" /> +<hkern u1="æ" u2="]" k="26" /> +<hkern u1="æ" u2="\" k="111" /> +<hkern u1="æ" u2="W" k="20" /> +<hkern u1="æ" u2="V" k="111" /> +<hkern u1="æ" u2="*" k="87" /> +<hkern u1="æ" u2=")" k="26" /> +<hkern u1="æ" u2="'" k="87" /> +<hkern u1="æ" u2=""" k="87" /> +<hkern u1="è" u2="™" k="87" /> +<hkern u1="è" u2="”" k="87" /> +<hkern u1="è" u2="“" k="87" /> +<hkern u1="è" u2="’" k="87" /> +<hkern u1="è" u2="‘" k="87" /> +<hkern u1="è" u2="º" k="87" /> +<hkern u1="è" u2="°" k="87" /> +<hkern u1="è" u2="ª" k="87" /> +<hkern u1="è" u2="}" k="26" /> +<hkern u1="è" u2="y" k="18" /> +<hkern u1="è" u2="x" k="61" /> +<hkern u1="è" u2="v" k="18" /> +<hkern u1="è" u2="]" k="26" /> +<hkern u1="è" u2="\" k="111" /> +<hkern u1="è" u2="W" k="20" /> +<hkern u1="è" u2="V" k="111" /> +<hkern u1="è" u2="*" k="87" /> +<hkern u1="è" u2=")" k="26" /> +<hkern u1="è" u2="'" k="87" /> +<hkern u1="è" u2=""" k="87" /> +<hkern u1="é" u2="™" k="87" /> +<hkern u1="é" u2="”" k="87" /> +<hkern u1="é" u2="“" k="87" /> +<hkern u1="é" u2="’" k="87" /> +<hkern u1="é" u2="‘" k="87" /> +<hkern u1="é" u2="º" k="87" /> +<hkern u1="é" u2="°" k="87" /> +<hkern u1="é" u2="ª" k="87" /> +<hkern u1="é" u2="}" k="26" /> +<hkern u1="é" u2="y" k="18" /> +<hkern u1="é" u2="x" k="61" /> +<hkern u1="é" u2="v" k="18" /> +<hkern u1="é" u2="]" k="26" /> +<hkern u1="é" u2="\" k="111" /> +<hkern u1="é" u2="W" k="20" /> +<hkern u1="é" u2="V" k="111" /> +<hkern u1="é" u2="*" k="87" /> +<hkern u1="é" u2=")" k="26" /> +<hkern u1="é" u2="'" k="87" /> +<hkern u1="é" u2=""" k="87" /> +<hkern u1="ê" u2="™" k="87" /> +<hkern u1="ê" u2="”" k="87" /> +<hkern u1="ê" u2="“" k="87" /> +<hkern u1="ê" u2="’" k="87" /> +<hkern u1="ê" u2="‘" k="87" /> +<hkern u1="ê" u2="º" k="87" /> +<hkern u1="ê" u2="°" k="87" /> +<hkern u1="ê" u2="ª" k="87" /> +<hkern u1="ê" u2="}" k="26" /> +<hkern u1="ê" u2="y" k="18" /> +<hkern u1="ê" u2="x" k="61" /> +<hkern u1="ê" u2="v" k="18" /> +<hkern u1="ê" u2="]" k="26" /> +<hkern u1="ê" u2="\" k="111" /> +<hkern u1="ê" u2="W" k="20" /> +<hkern u1="ê" u2="V" k="111" /> +<hkern u1="ê" u2="*" k="87" /> +<hkern u1="ê" u2=")" k="26" /> +<hkern u1="ê" u2="'" k="87" /> +<hkern u1="ê" u2=""" k="87" /> +<hkern u1="ë" u2="™" k="87" /> +<hkern u1="ë" u2="”" k="87" /> +<hkern u1="ë" u2="“" k="87" /> +<hkern u1="ë" u2="’" k="87" /> +<hkern u1="ë" u2="‘" k="87" /> +<hkern u1="ë" u2="º" k="87" /> +<hkern u1="ë" u2="°" k="87" /> +<hkern u1="ë" u2="ª" k="87" /> +<hkern u1="ë" u2="}" k="26" /> +<hkern u1="ë" u2="y" k="18" /> +<hkern u1="ë" u2="x" k="61" /> +<hkern u1="ë" u2="v" k="18" /> +<hkern u1="ë" u2="]" k="26" /> +<hkern u1="ë" u2="\" k="111" /> +<hkern u1="ë" u2="W" k="20" /> +<hkern u1="ë" u2="V" k="111" /> +<hkern u1="ë" u2="*" k="87" /> +<hkern u1="ë" u2=")" k="26" /> +<hkern u1="ë" u2="'" k="87" /> +<hkern u1="ë" u2=""" k="87" /> +<hkern u1="ñ" u2="™" k="67" /> +<hkern u1="ñ" u2="”" k="67" /> +<hkern u1="ñ" u2="“" k="67" /> +<hkern u1="ñ" u2="’" k="67" /> +<hkern u1="ñ" u2="‘" k="67" /> +<hkern u1="ñ" u2="º" k="67" /> +<hkern u1="ñ" u2="¹" k="67" /> +<hkern u1="ñ" u2="³" k="67" /> +<hkern u1="ñ" u2="²" k="67" /> +<hkern u1="ñ" u2="°" k="67" /> +<hkern u1="ñ" u2="ª" k="67" /> +<hkern u1="ñ" u2="y" k="26" /> +<hkern u1="ñ" u2="w" k="13" /> +<hkern u1="ñ" u2="v" k="26" /> +<hkern u1="ñ" u2="*" k="67" /> +<hkern u1="ñ" u2="'" k="67" /> +<hkern u1="ñ" u2=""" k="67" /> +<hkern u1="ò" u2="™" k="87" /> +<hkern u1="ò" u2="”" k="87" /> +<hkern u1="ò" u2="“" k="87" /> +<hkern u1="ò" u2="’" k="87" /> +<hkern u1="ò" u2="‘" k="87" /> +<hkern u1="ò" u2="º" k="87" /> +<hkern u1="ò" u2="°" k="87" /> +<hkern u1="ò" u2="ª" k="87" /> +<hkern u1="ò" u2="}" k="26" /> +<hkern u1="ò" u2="y" k="18" /> +<hkern u1="ò" u2="x" k="61" /> +<hkern u1="ò" u2="v" k="18" /> +<hkern u1="ò" u2="]" k="26" /> +<hkern u1="ò" u2="\" k="111" /> +<hkern u1="ò" u2="W" k="20" /> +<hkern u1="ò" u2="V" k="111" /> +<hkern u1="ò" u2="*" k="87" /> +<hkern u1="ò" u2=")" k="26" /> +<hkern u1="ò" u2="'" k="87" /> +<hkern u1="ò" u2=""" k="87" /> +<hkern u1="ó" u2="™" k="87" /> +<hkern u1="ó" u2="”" k="87" /> +<hkern u1="ó" u2="“" k="87" /> +<hkern u1="ó" u2="’" k="87" /> +<hkern u1="ó" u2="‘" k="87" /> +<hkern u1="ó" u2="º" k="87" /> +<hkern u1="ó" u2="°" k="87" /> +<hkern u1="ó" u2="ª" k="87" /> +<hkern u1="ó" u2="}" k="26" /> +<hkern u1="ó" u2="y" k="18" /> +<hkern u1="ó" u2="x" k="61" /> +<hkern u1="ó" u2="v" k="18" /> +<hkern u1="ó" u2="]" k="26" /> +<hkern u1="ó" u2="\" k="111" /> +<hkern u1="ó" u2="W" k="20" /> +<hkern u1="ó" u2="V" k="111" /> +<hkern u1="ó" u2="*" k="87" /> +<hkern u1="ó" u2=")" k="26" /> +<hkern u1="ó" u2="'" k="87" /> +<hkern u1="ó" u2=""" k="87" /> +<hkern u1="ô" u2="™" k="87" /> +<hkern u1="ô" u2="”" k="87" /> +<hkern u1="ô" u2="“" k="87" /> +<hkern u1="ô" u2="’" k="87" /> +<hkern u1="ô" u2="‘" k="87" /> +<hkern u1="ô" u2="º" k="87" /> +<hkern u1="ô" u2="°" k="87" /> +<hkern u1="ô" u2="ª" k="87" /> +<hkern u1="ô" u2="}" k="26" /> +<hkern u1="ô" u2="y" k="18" /> +<hkern u1="ô" u2="x" k="61" /> +<hkern u1="ô" u2="v" k="18" /> +<hkern u1="ô" u2="]" k="26" /> +<hkern u1="ô" u2="\" k="111" /> +<hkern u1="ô" u2="W" k="20" /> +<hkern u1="ô" u2="V" k="111" /> +<hkern u1="ô" u2="*" k="87" /> +<hkern u1="ô" u2=")" k="26" /> +<hkern u1="ô" u2="'" k="87" /> +<hkern u1="ô" u2=""" k="87" /> +<hkern u1="õ" u2="™" k="87" /> +<hkern u1="õ" u2="”" k="87" /> +<hkern u1="õ" u2="“" k="87" /> +<hkern u1="õ" u2="’" k="87" /> +<hkern u1="õ" u2="‘" k="87" /> +<hkern u1="õ" u2="º" k="87" /> +<hkern u1="õ" u2="°" k="87" /> +<hkern u1="õ" u2="ª" k="87" /> +<hkern u1="õ" u2="}" k="26" /> +<hkern u1="õ" u2="y" k="18" /> +<hkern u1="õ" u2="x" k="61" /> +<hkern u1="õ" u2="v" k="18" /> +<hkern u1="õ" u2="]" k="26" /> +<hkern u1="õ" u2="\" k="111" /> +<hkern u1="õ" u2="W" k="20" /> +<hkern u1="õ" u2="V" k="111" /> +<hkern u1="õ" u2="*" k="87" /> +<hkern u1="õ" u2=")" k="26" /> +<hkern u1="õ" u2="'" k="87" /> +<hkern u1="õ" u2=""" k="87" /> +<hkern u1="ö" u2="™" k="87" /> +<hkern u1="ö" u2="”" k="87" /> +<hkern u1="ö" u2="“" k="87" /> +<hkern u1="ö" u2="’" k="87" /> +<hkern u1="ö" u2="‘" k="87" /> +<hkern u1="ö" u2="º" k="87" /> +<hkern u1="ö" u2="°" k="87" /> +<hkern u1="ö" u2="ª" k="87" /> +<hkern u1="ö" u2="}" k="26" /> +<hkern u1="ö" u2="y" k="18" /> +<hkern u1="ö" u2="x" k="61" /> +<hkern u1="ö" u2="v" k="18" /> +<hkern u1="ö" u2="]" k="26" /> +<hkern u1="ö" u2="\" k="111" /> +<hkern u1="ö" u2="W" k="20" /> +<hkern u1="ö" u2="V" k="111" /> +<hkern u1="ö" u2="*" k="87" /> +<hkern u1="ö" u2=")" k="26" /> +<hkern u1="ö" u2="'" k="87" /> +<hkern u1="ö" u2=""" k="87" /> +<hkern u1="ø" u2="™" k="87" /> +<hkern u1="ø" u2="”" k="87" /> +<hkern u1="ø" u2="“" k="87" /> +<hkern u1="ø" u2="’" k="87" /> +<hkern u1="ø" u2="‘" k="87" /> +<hkern u1="ø" u2="º" k="87" /> +<hkern u1="ø" u2="°" k="87" /> +<hkern u1="ø" u2="ª" k="87" /> +<hkern u1="ø" u2="}" k="26" /> +<hkern u1="ø" u2="y" k="18" /> +<hkern u1="ø" u2="x" k="61" /> +<hkern u1="ø" u2="v" k="18" /> +<hkern u1="ø" u2="]" k="26" /> +<hkern u1="ø" u2="\" k="111" /> +<hkern u1="ø" u2="W" k="20" /> +<hkern u1="ø" u2="V" k="111" /> +<hkern u1="ø" u2="*" k="87" /> +<hkern u1="ø" u2=")" k="26" /> +<hkern u1="ø" u2="'" k="87" /> +<hkern u1="ø" u2=""" k="87" /> +<hkern u1="þ" u2="™" k="87" /> +<hkern u1="þ" u2="”" k="87" /> +<hkern u1="þ" u2="“" k="87" /> +<hkern u1="þ" u2="’" k="87" /> +<hkern u1="þ" u2="‘" k="87" /> +<hkern u1="þ" u2="º" k="87" /> +<hkern u1="þ" u2="°" k="87" /> +<hkern u1="þ" u2="ª" k="87" /> +<hkern u1="þ" u2="}" k="26" /> +<hkern u1="þ" u2="y" k="18" /> +<hkern u1="þ" u2="x" k="61" /> +<hkern u1="þ" u2="v" k="18" /> +<hkern u1="þ" u2="]" k="26" /> +<hkern u1="þ" u2="\" k="111" /> +<hkern u1="þ" u2="W" k="20" /> +<hkern u1="þ" u2="V" k="111" /> +<hkern u1="þ" u2="*" k="87" /> +<hkern u1="þ" u2=")" k="26" /> +<hkern u1="þ" u2="'" k="87" /> +<hkern u1="þ" u2=""" k="87" /> +<hkern u1="œ" u2="™" k="87" /> +<hkern u1="œ" u2="”" k="87" /> +<hkern u1="œ" u2="“" k="87" /> +<hkern u1="œ" u2="’" k="87" /> +<hkern u1="œ" u2="‘" k="87" /> +<hkern u1="œ" u2="º" k="87" /> +<hkern u1="œ" u2="°" k="87" /> +<hkern u1="œ" u2="ª" k="87" /> +<hkern u1="œ" u2="}" k="26" /> +<hkern u1="œ" u2="y" k="18" /> +<hkern u1="œ" u2="x" k="61" /> +<hkern u1="œ" u2="v" k="18" /> +<hkern u1="œ" u2="]" k="26" /> +<hkern u1="œ" u2="\" k="111" /> +<hkern u1="œ" u2="W" k="20" /> +<hkern u1="œ" u2="V" k="111" /> +<hkern u1="œ" u2="*" k="87" /> +<hkern u1="œ" u2=")" k="26" /> +<hkern u1="œ" u2="'" k="87" /> +<hkern u1="œ" u2=""" k="87" /> +<hkern u1="Ÿ" u2="™" k="-26" /> +<hkern u1="Ÿ" u2="›" k="164" /> +<hkern u1="Ÿ" u2="‹" k="164" /> +<hkern u1="Ÿ" u2="•" k="164" /> +<hkern u1="Ÿ" u2="„" k="138" /> +<hkern u1="Ÿ" u2="”" k="-26" /> +<hkern u1="Ÿ" u2="“" k="-26" /> +<hkern u1="Ÿ" u2="‚" k="138" /> +<hkern u1="Ÿ" u2="’" k="-26" /> +<hkern u1="Ÿ" u2="‘" k="-26" /> +<hkern u1="Ÿ" u2="—" k="164" /> +<hkern u1="Ÿ" u2="–" k="164" /> +<hkern u1="Ÿ" u2="œ" k="164" /> +<hkern u1="Ÿ" u2="Œ" k="82" /> +<hkern u1="Ÿ" u2="ü" k="113" /> +<hkern u1="Ÿ" u2="û" k="113" /> +<hkern u1="Ÿ" u2="ú" k="113" /> +<hkern u1="Ÿ" u2="ù" k="113" /> +<hkern u1="Ÿ" u2="ø" k="164" /> +<hkern u1="Ÿ" u2="ö" k="164" /> +<hkern u1="Ÿ" u2="õ" k="164" /> +<hkern u1="Ÿ" u2="ô" k="164" /> +<hkern u1="Ÿ" u2="ó" k="164" /> +<hkern u1="Ÿ" u2="ò" k="164" /> +<hkern u1="Ÿ" u2="ñ" k="113" /> +<hkern u1="Ÿ" u2="ð" k="164" /> +<hkern u1="Ÿ" u2="ë" k="164" /> +<hkern u1="Ÿ" u2="ê" k="164" /> +<hkern u1="Ÿ" u2="é" k="164" /> +<hkern u1="Ÿ" u2="è" k="164" /> +<hkern u1="Ÿ" u2="ç" k="164" /> +<hkern u1="Ÿ" u2="æ" k="111" /> +<hkern u1="Ÿ" u2="å" k="111" /> +<hkern u1="Ÿ" u2="ä" k="111" /> +<hkern u1="Ÿ" u2="ã" k="111" /> +<hkern u1="Ÿ" u2="â" k="111" /> +<hkern u1="Ÿ" u2="á" k="111" /> +<hkern u1="Ÿ" u2="à" k="111" /> +<hkern u1="Ÿ" u2="Ø" k="82" /> +<hkern u1="Ÿ" u2="Ö" k="82" /> +<hkern u1="Ÿ" u2="Õ" k="82" /> +<hkern u1="Ÿ" u2="Ô" k="82" /> +<hkern u1="Ÿ" u2="Ó" k="82" /> +<hkern u1="Ÿ" u2="Ò" k="82" /> +<hkern u1="Ÿ" u2="Ç" k="82" /> +<hkern u1="Ÿ" u2="Æ" k="143" /> +<hkern u1="Ÿ" u2="Å" k="143" /> +<hkern u1="Ÿ" u2="Ä" k="143" /> +<hkern u1="Ÿ" u2="Ã" k="143" /> +<hkern u1="Ÿ" u2="Â" k="143" /> +<hkern u1="Ÿ" u2="Á" k="143" /> +<hkern u1="Ÿ" u2="À" k="143" /> +<hkern u1="Ÿ" u2="»" k="164" /> +<hkern u1="Ÿ" u2="º" k="-26" /> +<hkern u1="Ÿ" u2="¹" k="-46" /> +<hkern u1="Ÿ" u2="·" k="164" /> +<hkern u1="Ÿ" u2="µ" k="113" /> +<hkern u1="Ÿ" u2="³" k="-46" /> +<hkern u1="Ÿ" u2="²" k="-46" /> +<hkern u1="Ÿ" u2="°" k="-26" /> +<hkern u1="Ÿ" u2="­" k="164" /> +<hkern u1="Ÿ" u2="«" k="164" /> +<hkern u1="Ÿ" u2="ª" k="-26" /> +<hkern u1="Ÿ" u2="y" k="102" /> +<hkern u1="Ÿ" u2="x" k="128" /> +<hkern u1="Ÿ" u2="w" k="87" /> +<hkern u1="Ÿ" u2="v" k="102" /> +<hkern u1="Ÿ" u2="u" k="113" /> +<hkern u1="Ÿ" u2="s" k="116" /> +<hkern u1="Ÿ" u2="r" k="113" /> +<hkern u1="Ÿ" u2="q" k="164" /> +<hkern u1="Ÿ" u2="p" k="113" /> +<hkern u1="Ÿ" u2="o" k="164" /> +<hkern u1="Ÿ" u2="n" k="113" /> +<hkern u1="Ÿ" u2="m" k="113" /> +<hkern u1="Ÿ" u2="g" k="169" /> +<hkern u1="Ÿ" u2="e" k="164" /> +<hkern u1="Ÿ" u2="d" k="164" /> +<hkern u1="Ÿ" u2="c" k="164" /> +<hkern u1="Ÿ" u2="a" k="111" /> +<hkern u1="Ÿ" u2="Q" k="82" /> +<hkern u1="Ÿ" u2="O" k="82" /> +<hkern u1="Ÿ" u2="J" k="205" /> +<hkern u1="Ÿ" u2="G" k="82" /> +<hkern u1="Ÿ" u2="C" k="82" /> +<hkern u1="Ÿ" u2="A" k="143" /> +<hkern u1="Ÿ" u2="@" k="82" /> +<hkern u1="Ÿ" u2="?" k="-38" /> +<hkern u1="Ÿ" u2=";" k="113" /> +<hkern u1="Ÿ" u2=":" k="113" /> +<hkern u1="Ÿ" u2="/" k="143" /> +<hkern u1="Ÿ" u2="." k="138" /> +<hkern u1="Ÿ" u2="-" k="164" /> +<hkern u1="Ÿ" u2="," k="138" /> +<hkern u1="Ÿ" u2="*" k="-26" /> +<hkern u1="Ÿ" u2="'" k="-26" /> +<hkern u1="Ÿ" u2="&" k="143" /> +<hkern u1="Ÿ" u2=""" k="-26" /> +<hkern u1="–" u2="™" k="195" /> +<hkern u1="–" u2="„" k="141" /> +<hkern u1="–" u2="”" k="195" /> +<hkern u1="–" u2="“" k="195" /> +<hkern u1="–" u2="‚" k="141" /> +<hkern u1="–" u2="’" k="195" /> +<hkern u1="–" u2="‘" k="195" /> +<hkern u1="–" u2="Ÿ" k="164" /> +<hkern u1="–" u2="Ý" k="164" /> +<hkern u1="–" u2="Æ" k="36" /> +<hkern u1="–" u2="Å" k="36" /> +<hkern u1="–" u2="Ä" k="36" /> +<hkern u1="–" u2="Ã" k="36" /> +<hkern u1="–" u2="Â" k="36" /> +<hkern u1="–" u2="Á" k="36" /> +<hkern u1="–" u2="À" k="36" /> +<hkern u1="–" u2="º" k="195" /> +<hkern u1="–" u2="°" k="195" /> +<hkern u1="–" u2="ª" k="195" /> +<hkern u1="–" u2="\" k="108" /> +<hkern u1="–" u2="Z" k="44" /> +<hkern u1="–" u2="Y" k="164" /> +<hkern u1="–" u2="X" k="56" /> +<hkern u1="–" u2="W" k="26" /> +<hkern u1="–" u2="V" k="108" /> +<hkern u1="–" u2="T" k="184" /> +<hkern u1="–" u2="A" k="36" /> +<hkern u1="–" u2="/" k="36" /> +<hkern u1="–" u2="." k="141" /> +<hkern u1="–" u2="," k="141" /> +<hkern u1="–" u2="*" k="195" /> +<hkern u1="–" u2="'" k="195" /> +<hkern u1="–" u2="&" k="36" /> +<hkern u1="–" u2=""" k="195" /> +<hkern u1="—" u2="™" k="195" /> +<hkern u1="—" u2="„" k="141" /> +<hkern u1="—" u2="”" k="195" /> +<hkern u1="—" u2="“" k="195" /> +<hkern u1="—" u2="‚" k="141" /> +<hkern u1="—" u2="’" k="195" /> +<hkern u1="—" u2="‘" k="195" /> +<hkern u1="—" u2="Ÿ" k="164" /> +<hkern u1="—" u2="Ý" k="164" /> +<hkern u1="—" u2="Æ" k="36" /> +<hkern u1="—" u2="Å" k="36" /> +<hkern u1="—" u2="Ä" k="36" /> +<hkern u1="—" u2="Ã" k="36" /> +<hkern u1="—" u2="Â" k="36" /> +<hkern u1="—" u2="Á" k="36" /> +<hkern u1="—" u2="À" k="36" /> +<hkern u1="—" u2="º" k="195" /> +<hkern u1="—" u2="°" k="195" /> +<hkern u1="—" u2="ª" k="195" /> +<hkern u1="—" u2="\" k="108" /> +<hkern u1="—" u2="Z" k="44" /> +<hkern u1="—" u2="Y" k="164" /> +<hkern u1="—" u2="X" k="56" /> +<hkern u1="—" u2="W" k="26" /> +<hkern u1="—" u2="V" k="108" /> +<hkern u1="—" u2="T" k="184" /> +<hkern u1="—" u2="A" k="36" /> +<hkern u1="—" u2="/" k="36" /> +<hkern u1="—" u2="." k="141" /> +<hkern u1="—" u2="," k="141" /> +<hkern u1="—" u2="*" k="195" /> +<hkern u1="—" u2="'" k="195" /> +<hkern u1="—" u2="&" k="36" /> +<hkern u1="—" u2=""" k="195" /> +<hkern u1="‘" u2="›" k="195" /> +<hkern u1="‘" u2="‹" k="195" /> +<hkern u1="‘" u2="•" k="195" /> +<hkern u1="‘" u2="„" k="251" /> +<hkern u1="‘" u2="‚" k="251" /> +<hkern u1="‘" u2="—" k="195" /> +<hkern u1="‘" u2="–" k="195" /> +<hkern u1="‘" u2="Ÿ" k="-26" /> +<hkern u1="‘" u2="œ" k="87" /> +<hkern u1="‘" u2="Œ" k="49" /> +<hkern u1="‘" u2="ø" k="87" /> +<hkern u1="‘" u2="ö" k="87" /> +<hkern u1="‘" u2="õ" k="87" /> +<hkern u1="‘" u2="ô" k="87" /> +<hkern u1="‘" u2="ó" k="87" /> +<hkern u1="‘" u2="ò" k="87" /> +<hkern u1="‘" u2="ð" k="87" /> +<hkern u1="‘" u2="ë" k="87" /> +<hkern u1="‘" u2="ê" k="87" /> +<hkern u1="‘" u2="é" k="87" /> +<hkern u1="‘" u2="è" k="87" /> +<hkern u1="‘" u2="ç" k="87" /> +<hkern u1="‘" u2="æ" k="63" /> +<hkern u1="‘" u2="å" k="63" /> +<hkern u1="‘" u2="ä" k="63" /> +<hkern u1="‘" u2="ã" k="63" /> +<hkern u1="‘" u2="â" k="63" /> +<hkern u1="‘" u2="á" k="63" /> +<hkern u1="‘" u2="à" k="63" /> +<hkern u1="‘" u2="Ý" k="-26" /> +<hkern u1="‘" u2="Ø" k="49" /> +<hkern u1="‘" u2="Ö" k="49" /> +<hkern u1="‘" u2="Õ" k="49" /> +<hkern u1="‘" u2="Ô" k="49" /> +<hkern u1="‘" u2="Ó" k="49" /> +<hkern u1="‘" u2="Ò" k="49" /> +<hkern u1="‘" u2="Ç" k="49" /> +<hkern u1="‘" u2="Æ" k="174" /> +<hkern u1="‘" u2="Å" k="174" /> +<hkern u1="‘" u2="Ä" k="174" /> +<hkern u1="‘" u2="Ã" k="174" /> +<hkern u1="‘" u2="Â" k="174" /> +<hkern u1="‘" u2="Á" k="174" /> +<hkern u1="‘" u2="À" k="174" /> +<hkern u1="‘" u2="»" k="195" /> +<hkern u1="‘" u2="·" k="195" /> +<hkern u1="‘" u2="­" k="195" /> +<hkern u1="‘" u2="«" k="195" /> +<hkern u1="‘" u2="q" k="87" /> +<hkern u1="‘" u2="o" k="87" /> +<hkern u1="‘" u2="e" k="87" /> +<hkern u1="‘" u2="d" k="87" /> +<hkern u1="‘" u2="c" k="87" /> +<hkern u1="‘" u2="a" k="63" /> +<hkern u1="‘" u2="\" k="-56" /> +<hkern u1="‘" u2="Y" k="-26" /> +<hkern u1="‘" u2="W" k="-56" /> +<hkern u1="‘" u2="V" k="-56" /> +<hkern u1="‘" u2="Q" k="49" /> +<hkern u1="‘" u2="O" k="49" /> +<hkern u1="‘" u2="G" k="49" /> +<hkern u1="‘" u2="C" k="49" /> +<hkern u1="‘" u2="A" k="174" /> +<hkern u1="‘" u2="@" k="49" /> +<hkern u1="‘" u2="/" k="174" /> +<hkern u1="‘" u2="." k="251" /> +<hkern u1="‘" u2="-" k="195" /> +<hkern u1="‘" u2="," k="251" /> +<hkern u1="‘" u2="&" k="174" /> +<hkern u1="’" u2="›" k="195" /> +<hkern u1="’" u2="‹" k="195" /> +<hkern u1="’" u2="•" k="195" /> +<hkern u1="’" u2="„" k="251" /> +<hkern u1="’" u2="‚" k="251" /> +<hkern u1="’" u2="—" k="195" /> +<hkern u1="’" u2="–" k="195" /> +<hkern u1="’" u2="Ÿ" k="-26" /> +<hkern u1="’" u2="œ" k="87" /> +<hkern u1="’" u2="Œ" k="49" /> +<hkern u1="’" u2="ø" k="87" /> +<hkern u1="’" u2="ö" k="87" /> +<hkern u1="’" u2="õ" k="87" /> +<hkern u1="’" u2="ô" k="87" /> +<hkern u1="’" u2="ó" k="87" /> +<hkern u1="’" u2="ò" k="87" /> +<hkern u1="’" u2="ð" k="87" /> +<hkern u1="’" u2="ë" k="87" /> +<hkern u1="’" u2="ê" k="87" /> +<hkern u1="’" u2="é" k="87" /> +<hkern u1="’" u2="è" k="87" /> +<hkern u1="’" u2="ç" k="87" /> +<hkern u1="’" u2="æ" k="63" /> +<hkern u1="’" u2="å" k="63" /> +<hkern u1="’" u2="ä" k="63" /> +<hkern u1="’" u2="ã" k="63" /> +<hkern u1="’" u2="â" k="63" /> +<hkern u1="’" u2="á" k="63" /> +<hkern u1="’" u2="à" k="63" /> +<hkern u1="’" u2="Ý" k="-26" /> +<hkern u1="’" u2="Ø" k="49" /> +<hkern u1="’" u2="Ö" k="49" /> +<hkern u1="’" u2="Õ" k="49" /> +<hkern u1="’" u2="Ô" k="49" /> +<hkern u1="’" u2="Ó" k="49" /> +<hkern u1="’" u2="Ò" k="49" /> +<hkern u1="’" u2="Ç" k="49" /> +<hkern u1="’" u2="Æ" k="174" /> +<hkern u1="’" u2="Å" k="174" /> +<hkern u1="’" u2="Ä" k="174" /> +<hkern u1="’" u2="Ã" k="174" /> +<hkern u1="’" u2="Â" k="174" /> +<hkern u1="’" u2="Á" k="174" /> +<hkern u1="’" u2="À" k="174" /> +<hkern u1="’" u2="»" k="195" /> +<hkern u1="’" u2="·" k="195" /> +<hkern u1="’" u2="­" k="195" /> +<hkern u1="’" u2="«" k="195" /> +<hkern u1="’" u2="q" k="87" /> +<hkern u1="’" u2="o" k="87" /> +<hkern u1="’" u2="e" k="87" /> +<hkern u1="’" u2="d" k="87" /> +<hkern u1="’" u2="c" k="87" /> +<hkern u1="’" u2="a" k="63" /> +<hkern u1="’" u2="\" k="-56" /> +<hkern u1="’" u2="Y" k="-26" /> +<hkern u1="’" u2="W" k="-56" /> +<hkern u1="’" u2="V" k="-56" /> +<hkern u1="’" u2="Q" k="49" /> +<hkern u1="’" u2="O" k="49" /> +<hkern u1="’" u2="G" k="49" /> +<hkern u1="’" u2="C" k="49" /> +<hkern u1="’" u2="A" k="174" /> +<hkern u1="’" u2="@" k="49" /> +<hkern u1="’" u2="/" k="174" /> +<hkern u1="’" u2="." k="251" /> +<hkern u1="’" u2="-" k="195" /> +<hkern u1="’" u2="," k="251" /> +<hkern u1="’" u2="&" k="174" /> +<hkern u1="‚" u2="™" k="251" /> +<hkern u1="‚" u2="›" k="141" /> +<hkern u1="‚" u2="‹" k="141" /> +<hkern u1="‚" u2="•" k="141" /> +<hkern u1="‚" u2="”" k="251" /> +<hkern u1="‚" u2="“" k="251" /> +<hkern u1="‚" u2="’" k="251" /> +<hkern u1="‚" u2="‘" k="251" /> +<hkern u1="‚" u2="—" k="141" /> +<hkern u1="‚" u2="–" k="141" /> +<hkern u1="‚" u2="Ÿ" k="138" /> +<hkern u1="‚" u2="Œ" k="59" /> +<hkern u1="‚" u2="Ý" k="138" /> +<hkern u1="‚" u2="Ø" k="59" /> +<hkern u1="‚" u2="Ö" k="59" /> +<hkern u1="‚" u2="Õ" k="59" /> +<hkern u1="‚" u2="Ô" k="59" /> +<hkern u1="‚" u2="Ó" k="59" /> +<hkern u1="‚" u2="Ò" k="59" /> +<hkern u1="‚" u2="Ç" k="59" /> +<hkern u1="‚" u2="»" k="141" /> +<hkern u1="‚" u2="º" k="251" /> +<hkern u1="‚" u2="·" k="141" /> +<hkern u1="‚" u2="°" k="251" /> +<hkern u1="‚" u2="­" k="141" /> +<hkern u1="‚" u2="«" k="141" /> +<hkern u1="‚" u2="ª" k="251" /> +<hkern u1="‚" u2="y" k="128" /> +<hkern u1="‚" u2="w" k="51" /> +<hkern u1="‚" u2="v" k="128" /> +<hkern u1="‚" u2="\" k="184" /> +<hkern u1="‚" u2="Y" k="138" /> +<hkern u1="‚" u2="W" k="113" /> +<hkern u1="‚" u2="V" k="184" /> +<hkern u1="‚" u2="T" k="184" /> +<hkern u1="‚" u2="Q" k="59" /> +<hkern u1="‚" u2="O" k="59" /> +<hkern u1="‚" u2="G" k="59" /> +<hkern u1="‚" u2="C" k="59" /> +<hkern u1="‚" u2="@" k="59" /> +<hkern u1="‚" u2="-" k="141" /> +<hkern u1="‚" u2="*" k="251" /> +<hkern u1="‚" u2="'" k="251" /> +<hkern u1="‚" u2=""" k="251" /> +<hkern u1="“" u2="›" k="195" /> +<hkern u1="“" u2="‹" k="195" /> +<hkern u1="“" u2="•" k="195" /> +<hkern u1="“" u2="„" k="251" /> +<hkern u1="“" u2="‚" k="251" /> +<hkern u1="“" u2="—" k="195" /> +<hkern u1="“" u2="–" k="195" /> +<hkern u1="“" u2="Ÿ" k="-26" /> +<hkern u1="“" u2="œ" k="87" /> +<hkern u1="“" u2="Œ" k="49" /> +<hkern u1="“" u2="ø" k="87" /> +<hkern u1="“" u2="ö" k="87" /> +<hkern u1="“" u2="õ" k="87" /> +<hkern u1="“" u2="ô" k="87" /> +<hkern u1="“" u2="ó" k="87" /> +<hkern u1="“" u2="ò" k="87" /> +<hkern u1="“" u2="ð" k="87" /> +<hkern u1="“" u2="ë" k="87" /> +<hkern u1="“" u2="ê" k="87" /> +<hkern u1="“" u2="é" k="87" /> +<hkern u1="“" u2="è" k="87" /> +<hkern u1="“" u2="ç" k="87" /> +<hkern u1="“" u2="æ" k="63" /> +<hkern u1="“" u2="å" k="63" /> +<hkern u1="“" u2="ä" k="63" /> +<hkern u1="“" u2="ã" k="63" /> +<hkern u1="“" u2="â" k="63" /> +<hkern u1="“" u2="á" k="63" /> +<hkern u1="“" u2="à" k="63" /> +<hkern u1="“" u2="Ý" k="-26" /> +<hkern u1="“" u2="Ø" k="49" /> +<hkern u1="“" u2="Ö" k="49" /> +<hkern u1="“" u2="Õ" k="49" /> +<hkern u1="“" u2="Ô" k="49" /> +<hkern u1="“" u2="Ó" k="49" /> +<hkern u1="“" u2="Ò" k="49" /> +<hkern u1="“" u2="Ç" k="49" /> +<hkern u1="“" u2="Æ" k="174" /> +<hkern u1="“" u2="Å" k="174" /> +<hkern u1="“" u2="Ä" k="174" /> +<hkern u1="“" u2="Ã" k="174" /> +<hkern u1="“" u2="Â" k="174" /> +<hkern u1="“" u2="Á" k="174" /> +<hkern u1="“" u2="À" k="174" /> +<hkern u1="“" u2="»" k="195" /> +<hkern u1="“" u2="·" k="195" /> +<hkern u1="“" u2="­" k="195" /> +<hkern u1="“" u2="«" k="195" /> +<hkern u1="“" u2="q" k="87" /> +<hkern u1="“" u2="o" k="87" /> +<hkern u1="“" u2="e" k="87" /> +<hkern u1="“" u2="d" k="87" /> +<hkern u1="“" u2="c" k="87" /> +<hkern u1="“" u2="a" k="63" /> +<hkern u1="“" u2="\" k="-56" /> +<hkern u1="“" u2="Y" k="-26" /> +<hkern u1="“" u2="W" k="-56" /> +<hkern u1="“" u2="V" k="-56" /> +<hkern u1="“" u2="Q" k="49" /> +<hkern u1="“" u2="O" k="49" /> +<hkern u1="“" u2="G" k="49" /> +<hkern u1="“" u2="C" k="49" /> +<hkern u1="“" u2="A" k="174" /> +<hkern u1="“" u2="@" k="49" /> +<hkern u1="“" u2="/" k="174" /> +<hkern u1="“" u2="." k="251" /> +<hkern u1="“" u2="-" k="195" /> +<hkern u1="“" u2="," k="251" /> +<hkern u1="“" u2="&" k="174" /> +<hkern u1="”" u2="›" k="195" /> +<hkern u1="”" u2="‹" k="195" /> +<hkern u1="”" u2="•" k="195" /> +<hkern u1="”" u2="„" k="251" /> +<hkern u1="”" u2="‚" k="251" /> +<hkern u1="”" u2="—" k="195" /> +<hkern u1="”" u2="–" k="195" /> +<hkern u1="”" u2="Ÿ" k="-26" /> +<hkern u1="”" u2="œ" k="87" /> +<hkern u1="”" u2="Œ" k="49" /> +<hkern u1="”" u2="ø" k="87" /> +<hkern u1="”" u2="ö" k="87" /> +<hkern u1="”" u2="õ" k="87" /> +<hkern u1="”" u2="ô" k="87" /> +<hkern u1="”" u2="ó" k="87" /> +<hkern u1="”" u2="ò" k="87" /> +<hkern u1="”" u2="ð" k="87" /> +<hkern u1="”" u2="ë" k="87" /> +<hkern u1="”" u2="ê" k="87" /> +<hkern u1="”" u2="é" k="87" /> +<hkern u1="”" u2="è" k="87" /> +<hkern u1="”" u2="ç" k="87" /> +<hkern u1="”" u2="æ" k="63" /> +<hkern u1="”" u2="å" k="63" /> +<hkern u1="”" u2="ä" k="63" /> +<hkern u1="”" u2="ã" k="63" /> +<hkern u1="”" u2="â" k="63" /> +<hkern u1="”" u2="á" k="63" /> +<hkern u1="”" u2="à" k="63" /> +<hkern u1="”" u2="Ý" k="-26" /> +<hkern u1="”" u2="Ø" k="49" /> +<hkern u1="”" u2="Ö" k="49" /> +<hkern u1="”" u2="Õ" k="49" /> +<hkern u1="”" u2="Ô" k="49" /> +<hkern u1="”" u2="Ó" k="49" /> +<hkern u1="”" u2="Ò" k="49" /> +<hkern u1="”" u2="Ç" k="49" /> +<hkern u1="”" u2="Æ" k="174" /> +<hkern u1="”" u2="Å" k="174" /> +<hkern u1="”" u2="Ä" k="174" /> +<hkern u1="”" u2="Ã" k="174" /> +<hkern u1="”" u2="Â" k="174" /> +<hkern u1="”" u2="Á" k="174" /> +<hkern u1="”" u2="À" k="174" /> +<hkern u1="”" u2="»" k="195" /> +<hkern u1="”" u2="·" k="195" /> +<hkern u1="”" u2="­" k="195" /> +<hkern u1="”" u2="«" k="195" /> +<hkern u1="”" u2="q" k="87" /> +<hkern u1="”" u2="o" k="87" /> +<hkern u1="”" u2="e" k="87" /> +<hkern u1="”" u2="d" k="87" /> +<hkern u1="”" u2="c" k="87" /> +<hkern u1="”" u2="a" k="63" /> +<hkern u1="”" u2="\" k="-56" /> +<hkern u1="”" u2="Y" k="-26" /> +<hkern u1="”" u2="W" k="-56" /> +<hkern u1="”" u2="V" k="-56" /> +<hkern u1="”" u2="Q" k="49" /> +<hkern u1="”" u2="O" k="49" /> +<hkern u1="”" u2="G" k="49" /> +<hkern u1="”" u2="C" k="49" /> +<hkern u1="”" u2="A" k="174" /> +<hkern u1="”" u2="@" k="49" /> +<hkern u1="”" u2="/" k="174" /> +<hkern u1="”" u2="." k="251" /> +<hkern u1="”" u2="-" k="195" /> +<hkern u1="”" u2="," k="251" /> +<hkern u1="”" u2="&" k="174" /> +<hkern u1="„" u2="™" k="251" /> +<hkern u1="„" u2="›" k="141" /> +<hkern u1="„" u2="‹" k="141" /> +<hkern u1="„" u2="•" k="141" /> +<hkern u1="„" u2="”" k="251" /> +<hkern u1="„" u2="“" k="251" /> +<hkern u1="„" u2="’" k="251" /> +<hkern u1="„" u2="‘" k="251" /> +<hkern u1="„" u2="—" k="141" /> +<hkern u1="„" u2="–" k="141" /> +<hkern u1="„" u2="Ÿ" k="138" /> +<hkern u1="„" u2="Œ" k="59" /> +<hkern u1="„" u2="Ý" k="138" /> +<hkern u1="„" u2="Ø" k="59" /> +<hkern u1="„" u2="Ö" k="59" /> +<hkern u1="„" u2="Õ" k="59" /> +<hkern u1="„" u2="Ô" k="59" /> +<hkern u1="„" u2="Ó" k="59" /> +<hkern u1="„" u2="Ò" k="59" /> +<hkern u1="„" u2="Ç" k="59" /> +<hkern u1="„" u2="»" k="141" /> +<hkern u1="„" u2="º" k="251" /> +<hkern u1="„" u2="·" k="141" /> +<hkern u1="„" u2="°" k="251" /> +<hkern u1="„" u2="­" k="141" /> +<hkern u1="„" u2="«" k="141" /> +<hkern u1="„" u2="ª" k="251" /> +<hkern u1="„" u2="y" k="128" /> +<hkern u1="„" u2="w" k="51" /> +<hkern u1="„" u2="v" k="128" /> +<hkern u1="„" u2="\" k="184" /> +<hkern u1="„" u2="Y" k="138" /> +<hkern u1="„" u2="W" k="113" /> +<hkern u1="„" u2="V" k="184" /> +<hkern u1="„" u2="T" k="184" /> +<hkern u1="„" u2="Q" k="59" /> +<hkern u1="„" u2="O" k="59" /> +<hkern u1="„" u2="G" k="59" /> +<hkern u1="„" u2="C" k="59" /> +<hkern u1="„" u2="@" k="59" /> +<hkern u1="„" u2="-" k="141" /> +<hkern u1="„" u2="*" k="251" /> +<hkern u1="„" u2="'" k="251" /> +<hkern u1="„" u2=""" k="251" /> +<hkern u1="•" u2="™" k="195" /> +<hkern u1="•" u2="„" k="141" /> +<hkern u1="•" u2="”" k="195" /> +<hkern u1="•" u2="“" k="195" /> +<hkern u1="•" u2="‚" k="141" /> +<hkern u1="•" u2="’" k="195" /> +<hkern u1="•" u2="‘" k="195" /> +<hkern u1="•" u2="Ÿ" k="164" /> +<hkern u1="•" u2="Ý" k="164" /> +<hkern u1="•" u2="Æ" k="36" /> +<hkern u1="•" u2="Å" k="36" /> +<hkern u1="•" u2="Ä" k="36" /> +<hkern u1="•" u2="Ã" k="36" /> +<hkern u1="•" u2="Â" k="36" /> +<hkern u1="•" u2="Á" k="36" /> +<hkern u1="•" u2="À" k="36" /> +<hkern u1="•" u2="º" k="195" /> +<hkern u1="•" u2="°" k="195" /> +<hkern u1="•" u2="ª" k="195" /> +<hkern u1="•" u2="\" k="108" /> +<hkern u1="•" u2="Z" k="44" /> +<hkern u1="•" u2="Y" k="164" /> +<hkern u1="•" u2="X" k="56" /> +<hkern u1="•" u2="W" k="26" /> +<hkern u1="•" u2="V" k="108" /> +<hkern u1="•" u2="T" k="184" /> +<hkern u1="•" u2="A" k="36" /> +<hkern u1="•" u2="/" k="36" /> +<hkern u1="•" u2="." k="141" /> +<hkern u1="•" u2="," k="141" /> +<hkern u1="•" u2="*" k="195" /> +<hkern u1="•" u2="'" k="195" /> +<hkern u1="•" u2="&" k="36" /> +<hkern u1="•" u2=""" k="195" /> +<hkern u1="‹" u2="™" k="195" /> +<hkern u1="‹" u2="„" k="141" /> +<hkern u1="‹" u2="”" k="195" /> +<hkern u1="‹" u2="“" k="195" /> +<hkern u1="‹" u2="‚" k="141" /> +<hkern u1="‹" u2="’" k="195" /> +<hkern u1="‹" u2="‘" k="195" /> +<hkern u1="‹" u2="Ÿ" k="164" /> +<hkern u1="‹" u2="Ý" k="164" /> +<hkern u1="‹" u2="Æ" k="36" /> +<hkern u1="‹" u2="Å" k="36" /> +<hkern u1="‹" u2="Ä" k="36" /> +<hkern u1="‹" u2="Ã" k="36" /> +<hkern u1="‹" u2="Â" k="36" /> +<hkern u1="‹" u2="Á" k="36" /> +<hkern u1="‹" u2="À" k="36" /> +<hkern u1="‹" u2="º" k="195" /> +<hkern u1="‹" u2="°" k="195" /> +<hkern u1="‹" u2="ª" k="195" /> +<hkern u1="‹" u2="\" k="108" /> +<hkern u1="‹" u2="Z" k="44" /> +<hkern u1="‹" u2="Y" k="164" /> +<hkern u1="‹" u2="X" k="56" /> +<hkern u1="‹" u2="W" k="26" /> +<hkern u1="‹" u2="V" k="108" /> +<hkern u1="‹" u2="T" k="184" /> +<hkern u1="‹" u2="A" k="36" /> +<hkern u1="‹" u2="/" k="36" /> +<hkern u1="‹" u2="." k="141" /> +<hkern u1="‹" u2="," k="141" /> +<hkern u1="‹" u2="*" k="195" /> +<hkern u1="‹" u2="'" k="195" /> +<hkern u1="‹" u2="&" k="36" /> +<hkern u1="‹" u2=""" k="195" /> +<hkern u1="›" u2="™" k="195" /> +<hkern u1="›" u2="„" k="141" /> +<hkern u1="›" u2="”" k="195" /> +<hkern u1="›" u2="“" k="195" /> +<hkern u1="›" u2="‚" k="141" /> +<hkern u1="›" u2="’" k="195" /> +<hkern u1="›" u2="‘" k="195" /> +<hkern u1="›" u2="Ÿ" k="164" /> +<hkern u1="›" u2="Ý" k="164" /> +<hkern u1="›" u2="Æ" k="36" /> +<hkern u1="›" u2="Å" k="36" /> +<hkern u1="›" u2="Ä" k="36" /> +<hkern u1="›" u2="Ã" k="36" /> +<hkern u1="›" u2="Â" k="36" /> +<hkern u1="›" u2="Á" k="36" /> +<hkern u1="›" u2="À" k="36" /> +<hkern u1="›" u2="º" k="195" /> +<hkern u1="›" u2="°" k="195" /> +<hkern u1="›" u2="ª" k="195" /> +<hkern u1="›" u2="\" k="108" /> +<hkern u1="›" u2="Z" k="44" /> +<hkern u1="›" u2="Y" k="164" /> +<hkern u1="›" u2="X" k="56" /> +<hkern u1="›" u2="W" k="26" /> +<hkern u1="›" u2="V" k="108" /> +<hkern u1="›" u2="T" k="184" /> +<hkern u1="›" u2="A" k="36" /> +<hkern u1="›" u2="/" k="36" /> +<hkern u1="›" u2="." k="141" /> +<hkern u1="›" u2="," k="141" /> +<hkern u1="›" u2="*" k="195" /> +<hkern u1="›" u2="'" k="195" /> +<hkern u1="›" u2="&" k="36" /> +<hkern u1="›" u2=""" k="195" /> +<hkern u1="™" u2="›" k="195" /> +<hkern u1="™" u2="‹" k="195" /> +<hkern u1="™" u2="•" k="195" /> +<hkern u1="™" u2="„" k="251" /> +<hkern u1="™" u2="‚" k="251" /> +<hkern u1="™" u2="—" k="195" /> +<hkern u1="™" u2="–" k="195" /> +<hkern u1="™" u2="Ÿ" k="-26" /> +<hkern u1="™" u2="œ" k="87" /> +<hkern u1="™" u2="Œ" k="49" /> +<hkern u1="™" u2="ø" k="87" /> +<hkern u1="™" u2="ö" k="87" /> +<hkern u1="™" u2="õ" k="87" /> +<hkern u1="™" u2="ô" k="87" /> +<hkern u1="™" u2="ó" k="87" /> +<hkern u1="™" u2="ò" k="87" /> +<hkern u1="™" u2="ð" k="87" /> +<hkern u1="™" u2="ë" k="87" /> +<hkern u1="™" u2="ê" k="87" /> +<hkern u1="™" u2="é" k="87" /> +<hkern u1="™" u2="è" k="87" /> +<hkern u1="™" u2="ç" k="87" /> +<hkern u1="™" u2="æ" k="63" /> +<hkern u1="™" u2="å" k="63" /> +<hkern u1="™" u2="ä" k="63" /> +<hkern u1="™" u2="ã" k="63" /> +<hkern u1="™" u2="â" k="63" /> +<hkern u1="™" u2="á" k="63" /> +<hkern u1="™" u2="à" k="63" /> +<hkern u1="™" u2="Ý" k="-26" /> +<hkern u1="™" u2="Ø" k="49" /> +<hkern u1="™" u2="Ö" k="49" /> +<hkern u1="™" u2="Õ" k="49" /> +<hkern u1="™" u2="Ô" k="49" /> +<hkern u1="™" u2="Ó" k="49" /> +<hkern u1="™" u2="Ò" k="49" /> +<hkern u1="™" u2="Ç" k="49" /> +<hkern u1="™" u2="Æ" k="174" /> +<hkern u1="™" u2="Å" k="174" /> +<hkern u1="™" u2="Ä" k="174" /> +<hkern u1="™" u2="Ã" k="174" /> +<hkern u1="™" u2="Â" k="174" /> +<hkern u1="™" u2="Á" k="174" /> +<hkern u1="™" u2="À" k="174" /> +<hkern u1="™" u2="»" k="195" /> +<hkern u1="™" u2="·" k="195" /> +<hkern u1="™" u2="­" k="195" /> +<hkern u1="™" u2="«" k="195" /> +<hkern u1="™" u2="q" k="87" /> +<hkern u1="™" u2="o" k="87" /> +<hkern u1="™" u2="e" k="87" /> +<hkern u1="™" u2="d" k="87" /> +<hkern u1="™" u2="c" k="87" /> +<hkern u1="™" u2="a" k="63" /> +<hkern u1="™" u2="\" k="-56" /> +<hkern u1="™" u2="Y" k="-26" /> +<hkern u1="™" u2="W" k="-56" /> +<hkern u1="™" u2="V" k="-56" /> +<hkern u1="™" u2="Q" k="49" /> +<hkern u1="™" u2="O" k="49" /> +<hkern u1="™" u2="G" k="49" /> +<hkern u1="™" u2="C" k="49" /> +<hkern u1="™" u2="A" k="174" /> +<hkern u1="™" u2="@" k="49" /> +<hkern u1="™" u2="/" k="174" /> +<hkern u1="™" u2="." k="251" /> +<hkern u1="™" u2="-" k="195" /> +<hkern u1="™" u2="," k="251" /> +<hkern u1="™" u2="&" k="174" /> +</font> +</defs></svg>
@@ -0,0 +1,4072 @@
+<?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="latolight_italic" horiz-adv-x="1187" > +<font-face units-per-em="2048" ascent="1649" descent="-399" /> +<missing-glyph horiz-adv-x="395" /> +<glyph unicode="fi" horiz-adv-x="1010" d="M319 987h553l-121 -987h-97l113 914h-453l-110 -894l-43 -235q-4 -22 -17 -32t-33 -10h-35l143 1169l-129 10q-25 1 -24 22l4 43h158l12 87q11 94 46 169t90 126.5t129.5 79.5t164.5 28q15 0 34 -1.5t37.5 -4.5t35 -7t27.5 -9l-9 -47q-3 -11 -18 -11q-13 0 -35.5 4 t-57.5 4q-150 0 -241 -81.5t-111 -251.5z" /> +<glyph unicode="fl" horiz-adv-x="1071" d="M314 915l-110 -895l-43 -235q-4 -22 -17 -32t-33 -10h-35l143 1169l-129 10q-25 1 -24 22l4 43h158l9 68q11 90 44.5 166.5t88 132.5t128.5 88t166 32q71 0 136 -7t124 -7h53l-179 -1460h-96l169 1389q-48 2 -101 7.5t-102 5.5q-71 0 -129 -24t-101.5 -69t-71.5 -109.5 t-37 -144.5l-8 -68h269l-8 -72h-268z" /> +<glyph horiz-adv-x="0" /> +<glyph unicode="
" horiz-adv-x="0" /> +<glyph horiz-adv-x="0" /> +<glyph horiz-adv-x="0" /> +<glyph unicode=" " horiz-adv-x="395" /> +<glyph unicode="	" horiz-adv-x="395" /> +<glyph unicode=" " horiz-adv-x="395" /> +<glyph unicode="!" horiz-adv-x="610" d="M471 1449l-72 -586q-6 -46 -12 -87t-13 -83.5t-16 -89.5t-19 -104h-64q4 57 7.5 104t7 89.5t7.5 83.5t9 87l72 586h93zM167 79q0 19 7 36.5t20 30.5t30 20.5t37 7.5q19 0 36.5 -7.5t30.5 -20.5t20.5 -30.5t7.5 -36.5q0 -20 -7.5 -37t-20.5 -30t-30 -20t-37 -7 q-40 0 -67 27t-27 67z" /> +<glyph unicode=""" horiz-adv-x="694" d="M366 1449l-37 -299l-27 -158q-4 -16 -11.5 -25.5t-25.5 -9.5q-14 0 -20 9.5t-8 25.5l10 158l39 299h80zM643 1449l-37 -299l-26 -158q-4 -16 -12 -25.5t-25 -9.5q-14 0 -20.5 9.5t-8.5 25.5l10 158l39 299h80z" /> +<glyph unicode="#" d="M762 454l-152 -454h-40q-12 0 -20 7t-8 21q0 7 3 16l137 410h-307l-137 -414q-7 -22 -21 -31t-31 -9h-42l152 454h-187q-27 0 -27 24q0 4 0.5 7.5t1.5 9.5l7 29h224l134 401h-260l11 38q7 32 49 31h219l140 416q6 19 20 29t31 10h41l-152 -455h306l154 455h42 q12 0 19.5 -6.5t7.5 -19.5q0 -7 -3 -16l-140 -413h231l-12 -37q-5 -16 -16 -24t-31 -8h-192l-133 -401h232q29 0 28 -26v-7t-2 -8l-9 -29h-268zM394 524h307l135 401h-308z" /> +<glyph unicode="$" d="M493 -15q-131 6 -222 56t-154 132l31 39q11 14 31 14q9 0 21 -11t29.5 -28t41.5 -37.5t57 -38.5t77 -30.5t101 -15.5l114 656q-61 20 -120 44.5t-104.5 61t-73 90t-27.5 131.5q0 80 31 153.5t89.5 131t142.5 92.5t190 38l29 171q2 14 11.5 23t22.5 9h36l-35 -204 q102 -7 175 -45t129 -103l-25 -34q-12 -16 -28 -16q-12 0 -30 16.5t-48.5 37.5t-75.5 40t-111 24l-102 -589q66 -22 129.5 -46.5t114 -61t82 -89.5t31.5 -133q0 -94 -35 -178.5t-99.5 -149.5t-156 -105t-206.5 -45l-37 -218q-2 -12 -11 -21.5t-23 -9.5h-35zM959 440 q0 59 -23 100.5t-61.5 70.5t-89 50t-105.5 39l-110 -635q91 5 163.5 36.5t122.5 82t76.5 116.5t26.5 140zM385 1068q0 -55 20 -94.5t55 -68.5t80 -50.5t96 -40.5l98 569q-86 -4 -151 -31.5t-109 -70.5t-66.5 -98.5t-22.5 -114.5z" /> +<glyph unicode="%" horiz-adv-x="1447" d="M723 1164q0 -105 -28 -185t-74.5 -133t-105.5 -80t-123 -27q-52 0 -96.5 19.5t-77 57t-50 93.5t-17.5 128q0 105 26.5 185.5t71.5 134t105.5 80.5t126.5 27q52 0 96.5 -19.5t76.5 -57t50.5 -93.5t18.5 -130zM647 1163q0 61 -13 106t-37 74t-55.5 43.5t-68.5 14.5 q-49 0 -94 -21t-79.5 -65.5t-54.5 -113t-20 -164.5q0 -61 13.5 -105t36.5 -73t55 -42.5t69 -13.5q49 0 94 20.5t79 64.5t54.5 112t20.5 163zM1262 1431q8 8 16.5 13t23.5 5h66l-1136 -1432q-15 -17 -36 -17h-68zM1352 408q0 -105 -28.5 -185t-74.5 -133t-105.5 -80 t-122.5 -27q-52 0 -96.5 19.5t-76.5 57t-50 93t-18 128.5q0 105 27 185.5t72 134t104.5 81t126.5 27.5q52 0 96 -19.5t76.5 -58t51 -94t18.5 -129.5zM1276 408q0 61 -13.5 105.5t-37 73.5t-54.5 43t-68 14q-49 0 -94 -21t-79.5 -65.5t-55 -113t-20.5 -163.5 q0 -60 13.5 -104.5t37 -73t55.5 -42.5t69 -14q49 0 93.5 20.5t78.5 64.5t54.5 112.5t20.5 163.5z" /> +<glyph unicode="&" horiz-adv-x="1304" d="M735 1465q63 0 116.5 -21t91.5 -59t59 -91.5t21 -117.5l-53 -10q-2 0 -4 -0.5t-4 -0.5q-19 0 -23 25q-4 33 -17 68t-37.5 65t-63 49t-93.5 19q-62 0 -114 -22.5t-89.5 -62t-58 -93.5t-20.5 -117q0 -71 32 -143.5t92 -147.5l362 -445q51 74 84.5 153t47.5 152q2 11 8 18 t20 7h61q-14 -96 -57 -198t-113 -195l243 -297h-79q-26 0 -39.5 5.5t-28.5 24.5l-157 193q-48 -52 -103.5 -96t-118 -76t-131 -49.5t-141.5 -17.5t-136.5 23t-110.5 66.5t-74.5 107t-27.5 143.5q0 84 29.5 158t80.5 136t119.5 109t147.5 78q-50 72 -75 140t-25 139 q0 82 28 152t78 121t119.5 79.5t153.5 28.5zM176 336q0 -68 23.5 -119.5t61.5 -86.5t86.5 -52.5t99.5 -17.5q63 0 122.5 17t113 47t102 71t88.5 89l-380 471q-73 -31 -131.5 -75t-99.5 -98t-63.5 -116t-22.5 -130z" /> +<glyph unicode="'" horiz-adv-x="418" d="M366 1449l-37 -299l-27 -158q-4 -16 -11.5 -25.5t-25.5 -9.5q-14 0 -20 9.5t-8 25.5l10 158l39 299h80z" /> +<glyph unicode="(" horiz-adv-x="565" d="M245 461q0 -81 8 -167t25 -171.5t42.5 -168t59.5 -156.5q4 -9 4 -17q0 -9 -4.5 -15.5t-11.5 -10.5l-44 -25q-44 90 -75 183t-51 184.5t-29 180.5t-9 171q0 88 5 172.5t20.5 169.5t42 172.5t70 181.5t105 197t145.5 220l39 -26q11 -7 11 -18q0 -9 -9 -25 q-85 -122 -149.5 -238.5t-107.5 -239.5t-65 -258.5t-22 -295.5z" /> +<glyph unicode=")" horiz-adv-x="565" d="M356 830q0 81 -8.5 167t-25.5 171.5t-42 168t-59 156.5q-4 9 -4 17q0 9 4.5 15.5t11.5 10.5l45 26q44 -91 74.5 -184t50.5 -184.5t29 -180t9 -170.5q0 -88 -5 -172.5t-20.5 -169.5t-42 -172.5t-70 -182t-105 -197.5t-145.5 -219l-39 25q-11 7 -11 19q0 9 9 24 q85 122 149.5 239t107.5 239.5t65 258t22 295.5z" /> +<glyph unicode="*" horiz-adv-x="753" d="M385 920l28 219q2 17 6 30.5t13 29.5q-11 -14 -24 -23t-26 -17l-189 -112l-21 44l190 112q14 9 28 13.5t34 7.5q-19 3 -31 7t-25 13l-164 113l30 45l164 -113q14 -9 22.5 -19t19.5 -29q-4 14 -6 25.5t-2 23.5v9.5t1 9.5l27 220h51l-27 -219q-2 -18 -6.5 -32.5 t-14.5 -33.5q13 17 25 26.5t28 18.5l190 113l18 -45l-189 -113q-15 -9 -29 -14t-33 -7q18 -2 30 -6.5t26 -13.5l164 -112l-29 -44l-164 112q-13 9 -22 16.5t-19 23.5q3 -13 4.5 -23t1.5 -21v-7.5t-1 -8.5l-28 -219h-51z" /> +<glyph unicode="+" d="M715 1185l-57 -462h443l-8 -73h-444l-56 -464h-78l57 464h-441l9 73h441l57 462h77z" /> +<glyph unicode="," horiz-adv-x="404" d="M65 87q0 36 24.5 61.5t64.5 25.5q44 0 68 -30t24 -79q0 -42 -11 -86t-31.5 -85.5t-49 -80.5t-63.5 -72l-16 15q-5 4 -6 9t-1 10q0 8 15.5 27t35.5 48t38.5 67t23.5 83q-6 -2 -13.5 -3t-16.5 -1q-38 0 -62 25.5t-24 65.5z" /> +<glyph unicode="-" horiz-adv-x="626" d="M113 647h438l-9 -80h-441z" /> +<glyph unicode="." horiz-adv-x="404" d="M59 79q0 19 7.5 36.5t20 30.5t29.5 20.5t38 7.5q19 0 37 -7.5t30.5 -20.5t20.5 -30.5t8 -36.5q0 -40 -28 -67t-68 -27t-67.5 27t-27.5 67z" /> +<glyph unicode="/" horiz-adv-x="675" d="M23 -48q-9 -19 -26 -28.5t-34 -9.5h-39l769 1529q17 37 58 37h40z" /> +<glyph unicode="0" d="M711 1465q94 0 174 -36.5t138 -110.5t91 -185t33 -260q0 -226 -50 -393t-135 -277t-197.5 -164t-236.5 -54q-94 0 -174 36.5t-138 110.5t-91 185t-33 260q0 225 50.5 392.5t136 277.5t197.5 164t235 54zM541 65q101 0 192.5 48.5t162 148t112 252t41.5 358.5 q0 133 -27.5 230.5t-74.5 160t-111 92.5t-137 30q-101 0 -193 -48.5t-162.5 -148t-112 -252t-41.5 -357.5q0 -134 27.5 -231t75 -160t111.5 -93t137 -30z" /> +<glyph unicode="1" d="M264 74h334l146 1189l16 70l-362 -291q-12 -9 -24 -9q-18 0 -26 13l-22 39l461 370h75l-169 -1381h317l-9 -74h-745z" /> +<glyph unicode="2" d="M732 1465q77 0 144 -21.5t117.5 -64t80 -106.5t29.5 -148q0 -93 -30.5 -170t-82 -146.5t-120.5 -135t-146 -134.5l-515 -467q33 8 69 12t72 4h631q31 0 31 -34l-7 -54h-933l4 34q1 11 7.5 22.5t15.5 19.5l558 502q77 69 141 131.5t110 126t72 131.5t26 148 q0 69 -23.5 119.5t-62.5 84t-91.5 49.5t-110.5 16q-70 0 -130 -19.5t-108.5 -57t-84.5 -90.5t-56 -117q-6 -18 -17.5 -26t-25.5 -8q-7 0 -11 1l-47 7q24 92 70.5 165t111 123t144 76.5t168.5 26.5z" /> +<glyph unicode="3" d="M746 1465q77 0 143 -21t115.5 -61.5t77.5 -100.5t28 -138q0 -82 -26 -146.5t-71 -112.5t-106 -80.5t-130 -48.5q71 -13 123.5 -41.5t88.5 -69t54 -92t18 -111.5q0 -98 -41.5 -182t-112 -145.5t-165 -96t-200.5 -34.5q-99 0 -173.5 23.5t-127 70.5t-83 116t-42.5 160 l42 15q9 3 19 3q11 0 21 -5.5t12 -16.5q14 -73 39.5 -126t66 -89t98 -53t137.5 -17q99 0 176.5 34t130 88t80.5 120.5t28 131.5q0 56 -18.5 106t-62.5 86.5t-118 57.5t-185 21l9 67q99 3 178 28.5t133.5 71t83.5 109t29 140.5q0 66 -22.5 114.5t-61 81t-89.5 47.5t-110 15 q-70 0 -130 -19.5t-109.5 -56.5t-85 -90t-56.5 -118q-5 -18 -15.5 -26t-25.5 -8q-7 0 -11 1l-47 7q24 92 70.5 165t111 123t144 76.5t168.5 26.5z" /> +<glyph unicode="4" d="M879 493h266l-7 -52q-1 -11 -8.5 -17.5t-21.5 -6.5h-239l-50 -417h-86l51 417h-681q-15 0 -24.5 6.5t-11.5 17.5l-4 46l847 964h86zM887 1256q3 33 14 73l-732 -836h625z" /> +<glyph unicode="5" d="M1100 1408q-3 -20 -17 -33t-44 -13h-526l-148 -488q133 32 242 32q105 0 184.5 -27.5t132.5 -77t79 -118.5t26 -151q0 -128 -46.5 -229.5t-125 -172.5t-180.5 -108.5t-213 -37.5q-59 0 -112.5 10t-98.5 28t-82.5 41t-65.5 49l33 40q12 14 30 14q13 0 36 -15.5t60 -34.5 t90 -34t124 -15q93 0 175.5 31t144.5 89.5t98 143t36 191.5q0 68 -20.5 123.5t-63.5 95.5t-109 62.5t-156 22.5q-113 0 -261 -38l-58 20l192 641h650z" /> +<glyph unicode="6" d="M686 865q86 0 156 -27t120.5 -76t78 -118.5t27.5 -153.5q0 -111 -41.5 -203.5t-113.5 -160t-170.5 -105t-212.5 -37.5q-91 0 -165 28t-126.5 81t-80.5 128.5t-28 169.5q0 59 14 117t43.5 119t75.5 126t110 139l463 533q9 10 22 17t30 7h83l-501 -565q-39 -43 -70.5 -81.5 t-58.5 -74.5q68 65 157 101t188 36zM220 387q0 -70 21.5 -129t62.5 -102.5t100 -68.5t135 -25q96 0 176 31.5t137 87t88.5 131.5t31.5 165q0 72 -22.5 130.5t-64 99.5t-101 63t-132.5 22q-97 0 -176.5 -35t-136 -92t-88 -129.5t-31.5 -148.5z" /> +<glyph unicode="7" d="M1213 1449l-4 -36q-1 -14 -5.5 -28t-9.5 -23l-837 -1332q-8 -13 -19.5 -21.5t-29.5 -8.5h-74l834 1315q8 13 17 24.5t19 22.5h-838q-11 0 -17.5 6.5t-6.5 16.5l8 64h963z" /> +<glyph unicode="8" d="M530 -16q-96 0 -174 25t-134 71t-87 111t-31 145q0 91 28 162t77 123.5t116.5 85.5t146.5 50q-112 34 -169 112t-57 185q0 86 33.5 161t95 130.5t147 87.5t190.5 32q89 0 158.5 -26t118 -70.5t73.5 -104.5t25 -128q0 -70 -20.5 -131t-60 -110t-97 -85t-131.5 -55 q61 -14 112 -41.5t87.5 -67.5t56.5 -93.5t20 -121.5q0 -104 -40 -187t-110 -141t-166 -88.5t-208 -30.5zM539 59q91 0 167.5 26.5t132 75t86.5 116.5t31 153q0 81 -31 136t-80 88t-109 47t-116 14q-45 0 -93 -8t-94 -25t-87.5 -46t-72.5 -70t-49.5 -95.5t-18.5 -125.5 q0 -65 23.5 -117t66.5 -90t105 -58.5t139 -20.5zM629 792q93 0 161.5 29t114 76.5t67.5 108t22 123.5q0 55 -19 103t-55.5 83.5t-91 55.5t-125.5 20q-85 0 -152.5 -26t-114.5 -71t-72.5 -106t-25.5 -131q0 -51 17 -99.5t52.5 -85t90.5 -58.5t131 -22z" /> +<glyph unicode="9" d="M603 616q-82 0 -149.5 26.5t-115.5 73.5t-74 113.5t-26 147.5q0 104 40 194t111 155t165 102t202 37q87 0 158 -28.5t121.5 -80.5t78 -125t27.5 -161q0 -70 -15.5 -128t-45 -115t-73.5 -116t-101 -129l-450 -559q-17 -23 -50 -23h-87l502 599q33 39 65 78t61 81 q-68 -68 -158 -105t-186 -37zM1050 1073q0 69 -22 126.5t-62 99t-96.5 64.5t-124.5 23q-88 0 -163 -29t-130.5 -81.5t-86.5 -126t-31 -161.5q0 -69 21 -124t60.5 -93.5t95.5 -59t126 -20.5q95 0 171.5 33.5t130 87t82.5 122t29 139.5z" /> +<glyph unicode=":" horiz-adv-x="404" d="M59 79q0 19 7.5 36.5t20 30.5t29.5 20.5t38 7.5q19 0 37 -7.5t30.5 -20.5t20.5 -30.5t8 -36.5q0 -40 -28 -67t-68 -27t-67.5 27t-27.5 67zM164 895q0 19 7 36.5t20 30.5t30 20.5t37 7.5q19 0 37 -7.5t31 -20.5t20.5 -30.5t7.5 -36.5q0 -40 -28 -67t-68 -27t-67 27t-27 67 z" /> +<glyph unicode=";" horiz-adv-x="404" d="M61 87q0 36 25 61.5t65 25.5q44 0 68 -30t24 -79q0 -42 -11 -86t-31.5 -85.5t-49 -80.5t-63.5 -72l-16 15q-5 4 -6 9t-1 10q0 8 15.5 27t35.5 48t38.5 67t23.5 83q-6 -2 -13.5 -3t-17.5 -1q-38 0 -62 25.5t-24 65.5zM175 895q0 19 7 36.5t20 30.5t30 20.5t37 7.5 q19 0 37.5 -7.5t31 -20.5t20.5 -30.5t8 -36.5q0 -40 -28.5 -67t-68.5 -27t-67 27t-27 67z" /> +<glyph unicode="<" horiz-adv-x="1092" d="M182 709l816 394l-8 -67q-3 -22 -32 -36l-602 -286q-17 -8 -36 -15t-39 -12q41 -10 69 -25l532 -288q23 -11 22 -31v-2.5t-1 -8t-2.5 -21t-4.5 -40.5l-719 396z" /> +<glyph unicode="=" d="M172 568h847l-9 -72h-846zM212 888h846l-8 -73h-847z" /> +<glyph unicode=">" horiz-adv-x="1092" d="M959 666l-816 -395l9 67q3 22 31 36l602 286q17 8 36.5 15t39.5 12q-41 10 -69 26l-532 287q-23 11 -22 31v2.5t1 8.5t2.5 21t4.5 40l719 -395z" /> +<glyph unicode="?" horiz-adv-x="701" d="M130 1321q30 28 65 54t76.5 46t89 32t100.5 12q62 0 115 -19.5t91.5 -55t60 -85.5t21.5 -110q0 -85 -25.5 -145.5t-64 -105.5t-84.5 -78t-87.5 -64t-72 -62.5t-38.5 -72.5l-33 -168h-65l17 174q4 45 33 80t69 67t86 64t85 73t64.5 94.5t25.5 127.5q0 48 -16 86.5 t-45.5 65.5t-69 41t-84.5 14q-63 0 -110 -17.5t-80 -39t-53.5 -39.5t-30.5 -18q-12 0 -19 12zM185 79q0 19 7.5 36.5t20 30.5t29.5 20.5t38 7.5q19 0 36.5 -7.5t30 -20.5t20.5 -30.5t8 -36.5q0 -20 -8 -37t-20.5 -30t-30 -20t-36.5 -7q-40 0 -67.5 27t-27.5 67z" /> +<glyph unicode="@" horiz-adv-x="1540" d="M1057 193q-75 0 -111.5 39.5t-36.5 113.5v14.5t1 15.5q-65 -94 -136.5 -136.5t-148.5 -42.5q-46 0 -80 16t-55.5 45.5t-32.5 68.5t-11 84q0 60 17 123.5t49 123t78 111.5t104 91t127.5 61.5t149.5 22.5q50 0 93 -8.5t77 -26.5l-130 -355q-24 -62 -33.5 -108.5t-9.5 -78.5 q0 -34 9 -55.5t24 -34t35 -17t41 -4.5q60 0 119 37.5t105.5 106.5t74.5 167t28 218q0 127 -39 223.5t-106.5 160t-159.5 95.5t-198 32q-94 0 -184.5 -28t-172 -80t-149.5 -127t-118 -169t-78 -205.5t-28 -235.5q0 -152 44 -268.5t122.5 -196.5t184.5 -121t231 -41 q140 0 259.5 35t216.5 98q11 7 20 7q18 0 22 -18l7 -32q-114 -76 -245.5 -117t-287.5 -41q-141 0 -259.5 46.5t-204 135.5t-134 216.5t-48.5 289.5q0 132 31 251.5t85 221.5t129.5 184.5t165.5 140t191 89t207 31.5q115 0 218 -37.5t180.5 -110.5t123 -180.5t45.5 -248.5 q0 -132 -35 -241t-93 -187t-133 -121t-157 -43zM652 262q34 0 71 12.5t74 44.5t72.5 87.5t66.5 141.5l115 318q-23 7 -46.5 11t-54.5 4q-60 0 -115.5 -19t-102.5 -52.5t-85.5 -78.5t-65.5 -95.5t-42 -105.5t-15 -108q0 -34 8 -63t23.5 -50.5t39.5 -34t57 -12.5z" /> +<glyph unicode="A" horiz-adv-x="1208" d="M1139 0h-78q-14 0 -23 7.5t-12 19.5l-103 424h-650l-206 -424q-5 -11 -16.5 -19t-25.5 -8h-78l724 1449h100zM310 525h595l-179 738q-5 17 -9.5 38.5t-7.5 45.5q-2 -6 -8 -19t-12 -26.5t-11 -24.5t-7 -15z" /> +<glyph unicode="B" horiz-adv-x="1207" d="M134 0l178 1449h386q104 0 180 -21.5t126.5 -62t74.5 -99t24 -131.5q0 -70 -22.5 -133.5t-64 -115t-101 -89t-134.5 -56.5q141 -24 216 -101t75 -201q0 -100 -34 -181.5t-99.5 -139t-158.5 -88t-211 -30.5h-435zM322 695l-76 -614h332q190 0 291.5 92.5t101.5 262.5 q0 59 -21 107t-61.5 81.5t-99.5 52t-135 18.5h-332zM331 769h285q99 0 172 29.5t120 78.5t69.5 111.5t22.5 128.5q0 122 -76 186.5t-235 64.5h-285z" /> +<glyph unicode="C" horiz-adv-x="1297" d="M695 71q75 0 134.5 12.5t105.5 31.5t79.5 41t57 41t38 32t23.5 13t13 -6l36 -43q-47 -48 -101 -86.5t-115.5 -66t-132.5 -42t-153 -14.5q-125 0 -226 45t-172 128t-109.5 198.5t-38.5 256.5q0 189 57.5 346.5t158.5 270t237.5 174.5t295.5 62q75 0 134 -11.5t109 -34 t91 -56.5t80 -77l-31 -41q-11 -12 -28 -12q-12 0 -33 22.5t-61 49.5t-104 49.5t-162 22.5q-135 0 -252 -53t-203 -151.5t-135.5 -238.5t-49.5 -314q0 -127 33.5 -229t94 -173.5t145 -109t184.5 -37.5z" /> +<glyph unicode="D" horiz-adv-x="1431" d="M1357 835q0 -128 -25 -240t-72 -204.5t-113 -165t-147.5 -123t-177 -76.5t-200.5 -26h-488l178 1449h488q128 0 231.5 -43.5t175.5 -123.5t111 -193.5t39 -253.5zM1251 833q0 124 -32 223t-92 167.5t-145.5 105.5t-191.5 37h-386l-158 -1283h385q135 0 248.5 50.5 t196.5 147t129 236t46 316.5z" /> +<glyph unicode="E" horiz-adv-x="1113" d="M1102 1365h-698l-72 -590h580l-11 -82h-579l-75 -609h700l-11 -84h-802l178 1449h801z" /> +<glyph unicode="F" horiz-adv-x="1077" d="M1102 1365h-698l-75 -613h605l-12 -85h-604l-81 -667h-103l178 1449h801z" /> +<glyph unicode="G" horiz-adv-x="1409" d="M716 67q69 0 125.5 7.5t106.5 23t96.5 37t92.5 48.5l49 395h-253q-23 0 -23 19v1q0 2 0.5 7.5t2 17.5t3.5 33h372l-64 -514q-54 -38 -111 -67.5t-121 -49.5t-136 -30.5t-156 -10.5q-130 0 -235 45.5t-178.5 128.5t-113 199t-39.5 257q0 191 56.5 348.5t158 269 t241.5 172.5t308 61q79 0 143.5 -11.5t117.5 -34t97 -55.5t83 -75l-31 -40q-12 -15 -27 -15q-8 0 -16 4q-9 4 -23 16.5t-34 27.5t-48 32t-66.5 31t-89 23t-114.5 9q-144 0 -264 -53t-206.5 -151.5t-134 -239t-47.5 -316.5q0 -127 33.5 -228.5t96 -173.5t150.5 -110t198 -38z " /> +<glyph unicode="H" horiz-adv-x="1425" d="M1166 0h-102l85 695h-827l-85 -695h-103l178 1449h103l-84 -677h827l84 677h103z" /> +<glyph unicode="I" horiz-adv-x="563" d="M271 0h-102l177 1449h103z" /> +<glyph unicode="J" horiz-adv-x="854" d="M652 452q-15 -120 -52 -208t-93 -146t-130.5 -86t-163.5 -28q-55 0 -100.5 7t-89.5 22l8 56q2 8 7 15t19 7q10 0 22.5 -3.5t30.5 -7.5t43 -7.5t61 -3.5q60 0 115.5 18.5t100 63.5t76 118t44.5 181l123 999h102z" /> +<glyph unicode="K" horiz-adv-x="1245" d="M358 778h79q35 0 55.5 8t44.5 31l606 602q17 17 31.5 23.5t33.5 6.5h83l-657 -652q-19 -18 -34 -30.5t-33 -18.5q18 -6 31.5 -19t28.5 -33l523 -696h-82q-27 0 -36.5 7t-18.5 20l-482 628q-9 11 -16.5 19.5t-18 14t-24.5 8t-37 2.5h-86l-86 -699h-101l177 1451h102z" /> +<glyph unicode="L" horiz-adv-x="963" d="M246 87h631l-12 -87h-731l178 1449h102z" /> +<glyph unicode="M" horiz-adv-x="1713" d="M833 410q4 -11 7.5 -23t5.5 -25q10 23 24 48l654 1020q8 13 16.5 16t23.5 3h70l-178 -1449h-89l153 1238q2 11 4 25t5 28l-645 -1012q-16 -26 -42 -26h-17q-27 0 -35 26l-412 1015q0 -31 -3 -55l-152 -1239h-89l178 1449h70q14 0 23 -2.5t14 -16.5l414 -1020v0z" /> +<glyph unicode="N" horiz-adv-x="1423" d="M362 1449q14 0 21 -3.5t14 -15.5l703 -1262q1 14 1.5 27t2.5 24l151 1230h90l-179 -1449h-47q-26 0 -38 23l-703 1261l-3 -46l-152 -1238h-89l178 1449h50v0z" /> +<glyph unicode="O" horiz-adv-x="1500" d="M1426 836q0 -191 -55.5 -348t-155 -268.5t-234.5 -173t-293 -61.5q-127 0 -229.5 45.5t-174.5 128.5t-111 198.5t-39 255.5q0 190 56.5 347.5t155 269.5t233.5 173.5t291 61.5q128 0 231 -45.5t175.5 -128.5t111 -199t38.5 -256zM1321 834q0 126 -32.5 226.5t-92.5 172 t-145.5 109.5t-191.5 38q-133 0 -246.5 -53t-197 -152.5t-130.5 -240.5t-47 -318q0 -126 32.5 -226.5t93 -171.5t145.5 -109t190 -38q135 0 249 52.5t197 152t129.5 240.5t46.5 318z" /> +<glyph unicode="P" horiz-adv-x="1120" d="M335 585l-72 -585h-101l177 1449h348q213 0 319.5 -96t106.5 -269q0 -111 -38 -202t-107.5 -157.5t-168 -103t-218.5 -36.5h-246zM431 1368l-86 -701h246q96 0 173.5 30.5t132 85t84.5 129t30 162.5q0 139 -83.5 216.5t-250.5 77.5h-246z" /> +<glyph unicode="Q" horiz-adv-x="1499" d="M1426 836q0 -132 -27 -248t-76.5 -212t-119.5 -171.5t-157 -125.5l297 -398h-79q-20 0 -35.5 5t-25.5 19l-244 331q-127 -51 -271 -51q-127 0 -229.5 45.5t-174.5 128.5t-111 198.5t-39 255.5q0 190 56.5 347.5t155 269.5t233.5 173.5t291 61.5q128 0 231 -45.5 t175.5 -128.5t111 -199t38.5 -256zM1321 834q0 126 -32.5 226.5t-92.5 172t-145.5 109.5t-191.5 38q-133 0 -246.5 -53t-197 -152.5t-130.5 -240.5t-47 -318q0 -126 32.5 -226.5t93 -171.5t145.5 -109t190 -38q135 0 249 52.5t197 152t129.5 240.5t46.5 318z" /> +<glyph unicode="R" horiz-adv-x="1189" d="M344 656l-81 -656h-101l177 1449h344q210 0 314 -83.5t104 -242.5q0 -94 -31 -172.5t-87 -137t-135.5 -95.5t-175.5 -49q22 -15 36 -40l377 -629h-87q-31 0 -46 26l-349 589q-14 23 -31 32t-55 9h-173zM432 1368l-79 -636h229q97 0 174.5 26.5t131.5 76t82.5 119 t28.5 154.5q0 131 -82.5 195.5t-242.5 64.5h-242z" /> +<glyph unicode="S" horiz-adv-x="985" d="M938 1274q-11 -17 -27 -18q-12 0 -29.5 19.5t-47.5 42.5t-77.5 42.5t-119.5 19.5q-78 0 -139 -25t-103.5 -68.5t-65 -101.5t-22.5 -123q0 -62 25.5 -105t67 -73t94.5 -52t108.5 -43t108.5 -46t94.5 -61t67 -87t25.5 -126q0 -98 -34 -186.5t-96.5 -155t-153 -105 t-201.5 -38.5q-131 0 -221.5 50.5t-151.5 138.5l34 44q14 14 28 14q9 0 21 -12t29 -30t40 -39t56 -39t76.5 -30t100.5 -12q86 0 155.5 29t119 80t75.5 120.5t26 148.5q0 63 -25.5 106t-67 72.5t-94.5 50t-108 41t-108.5 45t-95 61t-66.5 89.5t-25 129q0 83 29.5 160 t85.5 136t137 93.5t184 34.5q104 0 183 -38t137 -112z" /> +<glyph unicode="T" horiz-adv-x="1102" d="M1186 1449l-10 -86h-467l-167 -1363h-102l167 1363h-469l10 86h1038z" /> +<glyph unicode="U" horiz-adv-x="1381" d="M638 72q95 0 175 36.5t140 101t99 153t51 189.5l109 897h103l-111 -897q-15 -120 -62.5 -224t-123 -180.5t-175 -120.5t-216.5 -44q-105 0 -188 36t-139.5 99.5t-86.5 151t-30 191.5q0 45 6 91l110 897h102l-110 -896q-2 -20 -3.5 -40.5t-1.5 -41.5q0 -86 23 -159 t67.5 -126.5t110 -83.5t151.5 -30z" /> +<glyph unicode="V" horiz-adv-x="1219" d="M130 1449h81q14 0 22 -7.5t11 -19.5l301 -1209q5 -22 10 -46.5t8 -50.5q9 27 19 51t21 46l597 1209q5 11 16 19t25 8h80l-727 -1449h-91z" /> +<glyph unicode="W" horiz-adv-x="1862" d="M132 1449h80q30 0 33 -27l191 -1204q3 -19 4 -40t3 -44q7 23 15 44t16 40l523 1204q5 11 15.5 19t24.5 8h23q28 0 33 -27l227 -1204q3 -18 5 -39t4 -43q7 22 14 43t14 39l486 1204q4 11 16 19t26 8h79l-598 -1449h-91l-237 1263q-2 11 -3.5 24t-3.5 28q-5 -14 -9.5 -27.5 t-9.5 -24.5l-547 -1263h-91z" /> +<glyph unicode="X" horiz-adv-x="1134" d="M530 774l-358 675h91q14 0 21 -5t12 -17l308 -601q7 14 16 27l442 578q14 18 33 18h101l-524 -670l405 -779h-91q-14 0 -21 8t-11 17l-354 695q-3 -6 -6 -12.5t-8 -11.5l-512 -671q-9 -11 -19 -18t-22 -7h-101z" /> +<glyph unicode="Y" horiz-adv-x="1133" d="M630 597l-75 -597h-101l74 598l-390 851h90q14 0 22 -7t13 -19l306 -684q8 -17 12.5 -34t7.5 -33q8 17 17 33.5t21 33.5l475 684q7 11 16 18.5t24 7.5h85z" /> +<glyph unicode="Z" horiz-adv-x="1192" d="M1213 1449l-5 -34q-2 -9 -5.5 -16t-10.5 -16l-997 -1299h843l-11 -84h-982l4 34q1 8 5.5 14.5t10.5 14.5l999 1302h-826l11 84h964z" /> +<glyph unicode="[" horiz-adv-x="565" d="M70 -269l223 1821h301l-4 -35q-2 -12 -11 -20t-22 -8h-191l-209 -1694h192q12 0 19.5 -6.5t7.5 -17.5q0 -1 -0.5 -7t-4.5 -33h-301z" /> +<glyph unicode="\" horiz-adv-x="674" d="M116 1480h40q40 0 49 -37l393 -1529h-38q-17 0 -32 9t-20 29z" /> +<glyph unicode="]" horiz-adv-x="565" d="M228 1552h303l-224 -1821h-302l4 36q2 12 11 20t23 8h191l208 1694h-191q-27 0 -27 23z" /> +<glyph unicode="^" d="M618 1449h61l349 -630h-69q-11 0 -20 7t-14 17l-247 446q-18 32 -29 64q-5 -16 -11.5 -31.5t-14.5 -32.5l-246 -446q-5 -8 -13.5 -16t-22.5 -8h-72z" /> +<glyph unicode="_" horiz-adv-x="743" d="M655 -212l-9 -67h-742l8 67h743z" /> +<glyph unicode="`" horiz-adv-x="552" d="M221 1465q24 0 34 -7.5t18 -24.5l118 -244h-54q-22 0 -34 16l-173 260h91z" /> +<glyph unicode="a" horiz-adv-x="1003" d="M784 0h-47q-19 0 -27 9t-8 23l34 320q-39 -82 -85.5 -149t-99 -115t-111 -74.5t-121.5 -26.5q-65 0 -112.5 25t-80 71t-49 111.5t-16.5 147.5q0 89 22.5 174.5t64 162.5t99 141.5t126.5 111.5t148 73.5t163 26.5q61 0 114.5 -10.5t105.5 -37.5zM351 68q58 0 115 32.5 t108.5 92.5t97 144.5t81.5 186.5l51 415q-60 20 -131 20q-69 0 -133.5 -23t-121.5 -64t-104.5 -97t-82 -123t-53.5 -142t-19 -153q0 -137 46.5 -213t145.5 -76z" /> +<glyph unicode="b" horiz-adv-x="1043" d="M104 0l181 1490h95l-99 -815q40 81 89 147t103 113t114 73t122 26q67 0 117 -25.5t83.5 -72t51 -113t17.5 -148.5q0 -79 -16.5 -160.5t-46.5 -157.5t-73.5 -144t-99 -118t-121.5 -79t-140 -29q-87 0 -158.5 39.5t-114.5 116.5l-20 -110q-3 -17 -10 -25t-25 -8h-49z M677 955q-58 0 -117 -32.5t-114 -92t-102.5 -143.5t-84.5 -186l-36 -291q22 -40 50 -68t60.5 -45.5t66.5 -25.5t70 -8q65 0 120.5 26.5t101 71.5t81 105t59.5 126.5t37 136.5t13 137q0 137 -52.5 213t-152.5 76z" /> +<glyph unicode="c" horiz-adv-x="881" d="M816 186q-54 -60 -102.5 -99t-95.5 -61.5t-95 -30.5t-102 -8q-88 0 -153 30t-108 84.5t-64.5 129t-21.5 162.5q0 81 17 160.5t48.5 151t76.5 132t101.5 104.5t122.5 69t141 25q50 0 90.5 -9.5t74 -27.5t61.5 -43.5t51 -57.5l-29 -34q-9 -11 -21 -11q-10 0 -25 16.5 t-40 35.5t-65 35t-100 16q-86 0 -160.5 -46t-129.5 -123.5t-86 -179.5t-31 -213q0 -71 16 -131t49 -104t83.5 -68.5t118.5 -24.5q54 0 97.5 11.5t76.5 29t58 38.5t44.5 38.5t33.5 29t25 11.5t22 -10l21 -27v0z" /> +<glyph unicode="d" horiz-adv-x="1045" d="M769 0q-19 0 -27 9t-8 23l34 324q-40 -83 -89.5 -151t-105 -116.5t-116 -75t-122.5 -26.5q-67 0 -117 25.5t-84 72.5t-51 113.5t-17 149.5q0 78 16 159.5t46.5 157.5t74 143.5t98.5 117.5t120.5 79t140.5 29q83 0 152.5 -36t114.5 -109l75 601h94l-182 -1490h-47zM367 66 q58 0 116.5 32t113 91.5t102 143t84.5 184.5l36 295q-44 80 -109.5 112.5t-136.5 32.5q-65 0 -120.5 -26t-101 -71t-80.5 -104.5t-59.5 -126t-37 -137t-12.5 -136.5q0 -137 52.5 -213.5t152.5 -76.5z" /> +<glyph unicode="e" horiz-adv-x="916" d="M858 824q0 -42 -11 -79.5t-40 -71.5t-78 -64t-126 -55.5t-183.5 -45.5t-249.5 -35q-2 -22 -3 -42.5t-1 -41.5q0 -153 69 -238.5t208 -85.5q54 0 98 11.5t78 30t60.5 39t46.5 39t35 30t27 11.5t22 -10l23 -27q-50 -53 -98 -91.5t-96.5 -63t-101 -36t-111.5 -11.5 q-85 0 -151 28t-111 79.5t-68.5 126t-23.5 166.5q0 77 15 155t45.5 149.5t75 134t102 108.5t127 72.5t150.5 26.5q75 0 126.5 -21t83.5 -52t46.5 -67.5t14.5 -68.5zM582 962q-82 0 -148 -35t-117 -93t-85 -134t-51 -159q130 14 224.5 33t160 40t106 45.5t63 50.5t30 54 t7.5 57q0 22 -9.5 47t-32 45.5t-59 34.5t-89.5 14z" /> +<glyph unicode="f" horiz-adv-x="581" d="M313 915l-108 -893l-43 -236q-4 -23 -17.5 -32.5t-32.5 -9.5h-36l143 1170l-129 9q-23 2 -22 22q0 1 0.5 6.5t3.5 35.5h155l17 129q10 87 39.5 153t74 110t101 66t121.5 22q29 0 57.5 -5.5t50.5 -15.5l-10 -49q-1 -11 -15 -12q-11 0 -32 4.5t-47 4.5q-46 0 -87.5 -15.5 t-74 -49t-55.5 -86.5t-32 -130l-17 -126h289l-10 -72h-284z" /> +<glyph unicode="g" horiz-adv-x="902" d="M780 754q-1 -56 -14.5 -102.5t-34 -85t-44.5 -71.5t-44.5 -65t-34 -64.5t-13.5 -69.5q0 -31 12.5 -57t30 -50.5t39 -49.5t39.5 -53t30.5 -60.5t12.5 -72.5q0 -65 -33 -124.5t-92.5 -106t-142.5 -74t-186 -27.5q-81 0 -148 16.5t-115.5 47.5t-75 76t-26.5 103 q0 74 38 130.5t104 95.5t154 59.5t188 20.5q35 0 69.5 -2.5t70.5 -7.5q-17 24 -29 50.5t-12 58.5q0 36 12.5 73t47.5 89q-42 -29 -89 -44t-102 -15q-58 0 -108.5 18.5t-86.5 54.5t-56.5 89t-20.5 122q0 71 25 139t72.5 121.5t117 85.5t159.5 32q52 0 98 -12.5t82 -38.5h266 l-4 -33q-1 -10 -7.5 -17.5t-21.5 -9.5l-166 -14q18 -32 28.5 -70.5t10.5 -84.5zM670 -53q0 50 -16.5 86t-40.5 65l1 -3q-50 8 -95 11.5t-87 3.5q-101 0 -176 -19t-124.5 -51.5t-74.5 -75.5t-25 -90q0 -44 20 -78.5t56.5 -57.5t89 -35t115.5 -12q80 0 145.5 21.5t112 57 t72.5 82t27 95.5zM415 435q66 0 117.5 27.5t87 72.5t54 101.5t18.5 114.5q0 106 -56 160t-152 54q-66 0 -117 -26.5t-86 -69.5t-53.5 -98.5t-18.5 -114.5q0 -109 55.5 -165t150.5 -56z" /> +<glyph unicode="h" horiz-adv-x="1054" d="M104 0l181 1490h96l-94 -778q41 77 90.5 136.5t104.5 101t112 63t116 21.5q115 0 171.5 -73.5t56.5 -211.5q0 -8 -0.5 -19t-3 -36.5t-7.5 -73.5t-14.5 -128t-23 -200.5t-34.5 -291.5h-96l77 651q6 47 6 89q0 104 -39.5 158.5t-124.5 54.5q-55 0 -112.5 -28t-111.5 -80.5 t-102 -127.5t-85 -167l-66 -550h-97z" /> +<glyph unicode="i" horiz-adv-x="465" d="M342 1019l-124 -1019h-95l124 1019h95zM417 1370q0 -18 -7.5 -34t-19.5 -28.5t-28 -19.5t-32 -7q-17 0 -32.5 7t-27.5 19.5t-19 28.5t-7 34t7 34.5t19 29.5t27 20t33 7q16 0 32 -7t28 -19.5t19.5 -29.5t7.5 -35z" /> +<glyph unicode="j" horiz-adv-x="450" d="M338 1019l-141 -1149q-6 -53 -26.5 -98t-53 -78.5t-77 -52.5t-98.5 -19q-30 0 -51 5t-42 17l6 22q5 23 8.5 31t11.5 8t21.5 -4t35.5 -4q76 0 118 45t52 128l142 1149h94zM415 1370q0 -18 -8 -34t-20 -28.5t-28 -19.5t-32 -7q-17 0 -32.5 7t-27 19.5t-18.5 28.5t-7 34 t7 34.5t19 29.5t27 20t33 7q16 0 32 -7t28 -19.5t19.5 -29.5t7.5 -35z" /> +<glyph unicode="k" horiz-adv-x="909" d="M379 1490l-112 -908h38q18 0 29.5 4.5t26.5 18.5l422 388q12 11 23.5 18.5t29.5 7.5h84l-466 -427q-11 -10 -21 -19t-21 -15q14 -8 23 -19.5t19 -24.5l372 -514h-82q-14 0 -23 5t-19 19l-337 458q-14 18 -27.5 25t-41.5 7h-37l-62 -514h-96l183 1490h95z" /> +<glyph unicode="l" horiz-adv-x="458" d="M120 0l180 1490h95l-181 -1490h-94z" /> +<glyph unicode="m" horiz-adv-x="1588" d="M96 0l123 1022h44q36 0 36 -37l-29 -285q80 159 184.5 246.5t220.5 87.5q102 0 145.5 -64.5t43.5 -185.5q0 -35 -3 -74q40 82 87.5 142.5t100.5 101t108 60.5t110 20q110 0 158 -69t48 -197q0 -10 -1 -23t-3.5 -40.5t-7.5 -76t-14 -130.5t-23.5 -203.5t-34.5 -294.5h-96 l77 651q4 32 6 60t2 54q0 92 -31.5 139.5t-110.5 47.5q-50 0 -102 -23t-101.5 -69t-94 -115.5t-80.5 -163.5l-68 -581h-96l77 651q9 71 9 126q0 86 -29.5 130.5t-105.5 44.5q-117 0 -215.5 -106.5t-173.5 -300.5l-65 -545h-95z" /> +<glyph unicode="n" horiz-adv-x="1048" d="M96 0l123 1022h44q35 0 35 -37l-30 -295q42 81 93 145t107 108.5t115.5 67.5t119.5 23q114 0 171.5 -74.5t57.5 -214.5q0 -9 -0.5 -20.5t-3 -37t-8 -72.5t-14.5 -126t-23 -198.5t-34 -290.5h-96l76 651q6 47 7 89q0 103 -39.5 157.5t-124.5 54.5q-57 0 -115.5 -29 t-113.5 -83t-103 -130t-85 -171l-62 -539h-97z" /> +<glyph unicode="o" horiz-adv-x="1011" d="M444 63q89 0 162.5 47t125.5 124t80.5 177t28.5 205q0 164 -73 253t-202 89q-59 0 -111.5 -21t-96.5 -58.5t-79 -89.5t-59 -113.5t-37 -130t-13 -139.5q0 -163 72 -253t202 -90zM436 -13q-82 0 -149 28.5t-114.5 83t-73.5 131.5t-26 176q0 124 36.5 238t104 201 t159.5 138.5t202 51.5q82 0 149.5 -29t115 -83t73.5 -131.5t26 -174.5q0 -124 -37.5 -237.5t-104 -201t-158.5 -139.5t-203 -52z" /> +<glyph unicode="p" horiz-adv-x="1033" d="M51 -360l168 1382h44q36 0 36 -37l-33 -320q40 83 90 151t105.5 116.5t116 75t122.5 26.5q67 0 117 -25.5t84 -72t51.5 -113t17.5 -148.5q0 -79 -16.5 -160.5t-46.5 -157.5t-73.5 -144t-99 -118t-121.5 -79t-140 -29q-83 0 -153 36.5t-114 108.5l-61 -492h-94zM669 955 q-58 0 -117 -32t-113.5 -91.5t-102.5 -143t-85 -185.5l-36 -293q45 -81 110.5 -114t136.5 -33q65 0 120.5 26.5t101 71.5t81 105t59.5 126.5t36.5 136.5t12.5 137q0 137 -52 213t-152 76z" /> +<glyph unicode="q" horiz-adv-x="1003" d="M739 -360h-55q-20 0 -29 11t-9 30q0 8 1 13l81 642q-39 -79 -84.5 -143t-97 -110t-108.5 -71t-119 -25q-65 0 -112.5 25t-80 71t-49 111.5t-16.5 147.5q0 89 22.5 174.5t64 162.5t99 141.5t126.5 111.5t148 73.5t163 26.5q61 0 114.5 -10.5t105.5 -37.5zM351 68 q58 0 114 32t107.5 91.5t96.5 142.5t81 184l1 3l53 418q-60 20 -131 20q-69 0 -133.5 -23t-121.5 -64t-104.5 -97t-82 -123t-53.5 -142t-19 -153q0 -137 46.5 -213t145.5 -76z" /> +<glyph unicode="r" horiz-adv-x="688" d="M96 0l123 1022h44q36 0 36 -37l-30 -303q70 167 159.5 257.5t191.5 90.5q42 0 86 -17l-18 -91q-47 17 -88 17q-110 0 -197.5 -108t-149.5 -312l-62 -519h-95z" /> +<glyph unicode="s" horiz-adv-x="790" d="M728 894q-8 -14 -22 -14q-10 0 -25 12.5t-41 28.5t-63.5 29t-94.5 13q-52 0 -98.5 -17.5t-81 -47t-54.5 -67.5t-20 -81q0 -42 19.5 -71t52 -50t73 -36t83.5 -30.5t83.5 -34.5t72.5 -45.5t51.5 -65t19.5 -92.5q0 -66 -26 -127.5t-74 -109t-116.5 -76t-152.5 -28.5 q-99 0 -165.5 34t-114.5 90l23 34q6 8 12.5 12.5t15.5 4.5q10 0 25.5 -16.5t42.5 -36.5t69 -36.5t106 -16.5q60 0 109.5 20t85 55t55 80.5t19.5 96.5q0 45 -19.5 76t-51 53t-72.5 37t-83.5 30t-83.5 33t-73 43.5t-51.5 62.5t-19.5 90q0 59 26 114t72 97.5t109.5 67.5 t138.5 25q86 0 149.5 -26.5t113.5 -79.5z" /> +<glyph unicode="t" horiz-adv-x="673" d="M179 171q0 6 0.5 15.5t2 27.5t5 47.5t9.5 74.5l69 578h-134q-20 0 -20 20l5 42l160 12l68 365q2 9 9 16t18 7h47l-48 -389h295l-9 -73h-295l-70 -575q-5 -42 -8 -68.5t-5.5 -43.5t-3 -25t-0.5 -13q0 -67 31.5 -96.5t80.5 -29.5q34 0 60 11t45.5 24t32 23.5t18.5 10.5 t9 -2.5t6 -7.5l18 -43q-41 -43 -99 -69t-117 -26q-84 0 -131.5 46t-48.5 141z" /> +<glyph unicode="u" horiz-adv-x="1046" d="M296 1019l-77 -648q-6 -48 -6 -89q0 -104 39.5 -159t124.5 -55q56 0 113.5 28.5t111.5 82t102.5 129t85.5 169.5l65 542h96l-123 -1019h-45q-19 0 -28 10t-9 28l31 290q-42 -81 -92.5 -144.5t-106.5 -107t-115.5 -66.5t-118.5 -23q-114 0 -170.5 75t-56.5 214q0 9 0.5 20 t3 37t7.5 72.5t14.5 125.5t23 198t34.5 290h96z" /> +<glyph unicode="v" horiz-adv-x="924" d="M85 1019h75q14 0 21.5 -7.5t9.5 -17.5l208 -804q4 -24 7 -46t5 -46q13 43 34 92l407 804q5 11 15 18t21 7h73l-523 -1019h-80z" /> +<glyph unicode="w" horiz-adv-x="1395" d="M88 1019h69q26 0 30 -25l138 -804q4 -23 4.5 -43.5t0.5 -41.5q8 20 16 41.5t18 43.5l350 811q8 23 30 23h37q23 0 26 -23l150 -811q5 -24 7 -45t4 -43q6 22 13 43.5t17 44.5l334 804q5 11 14 18t20 7h68l-437 -1019h-69q-15 0 -20 22l-156 827q-5 26 -6 47 q-7 -23 -18 -47l-360 -827q-8 -22 -25 -22h-68z" /> +<glyph unicode="x" horiz-adv-x="874" d="M380 545l-257 474h82q13 0 19 -3.5t12 -11.5l214 -408q7 15 16 28l295 377q7 8 12.5 13t14.5 5h86l-373 -475l285 -544h-81q-13 0 -21 5.5t-13 17.5l-241 466q-6 -15 -15 -27l-342 -442q-7 -8 -15 -14t-20 -6h-82z" /> +<glyph unicode="y" horiz-adv-x="924" d="M257 -332q-14 -29 -42 -28h-69l215 398l-273 981h76q14 0 20.5 -6.5t10.5 -18.5l215 -792q4 -15 5.5 -30.5t3.5 -31.5q6 15 12.5 31t14.5 31l411 795q5 11 14.5 16.5t18.5 5.5h75z" /> +<glyph unicode="z" horiz-adv-x="858" d="M842 978q-3 -20 -19 -39l-687 -862h573l-10 -77h-690l4 39q1 8 6.5 18.5t13.5 19.5l689 865h-567l10 77h683z" /> +<glyph unicode="{" horiz-adv-x="565" d="M201 478q0 58 -35 95.5t-93 37.5l7 61q76 0 123 59.5t47 180.5q0 61 -7 132.5t-7 133.5q0 87 22 156t61.5 117.5t96.5 74.5t128 26h52l-4 -41q-2 -11 -11.5 -16.5t-17.5 -5.5h-29q-59 0 -100.5 -26t-66.5 -70t-35.5 -100.5t-10.5 -115.5q0 -68 4.5 -135.5t4.5 -131.5 q0 -46 -8.5 -89t-28.5 -78.5t-52 -62t-79 -39.5q25 -6 46 -20t37 -35t26 -48t10 -60q0 -62 -17.5 -122.5t-38.5 -121.5t-38.5 -124t-17.5 -129q0 -42 11 -76t31 -58.5t49 -38t65 -13.5h31q7 0 14.5 -5t7.5 -15v-1t-0.5 -6t-1.5 -13.5t-3 -23.5h-52q-57 0 -101 19t-73.5 52.5 t-45 79t-15.5 99.5q0 70 18 132.5t39.5 122.5t39.5 119.5t18 122.5z" /> +<glyph unicode="|" horiz-adv-x="614" d="M207 1553h77v-1913h-77v1913z" /> +<glyph unicode="}" horiz-adv-x="565" d="M398 805q0 -58 35 -95.5t93 -37.5l-7 -61q-76 0 -123 -59t-47 -181q0 -61 7.5 -132.5t7.5 -133.5q0 -87 -22.5 -156t-62 -117.5t-96.5 -74.5t-128 -26h-52l4 41q2 11 11.5 16.5t17.5 5.5h30q59 0 100 26t66 70t36 100t11 116q0 68 -5 135.5t-5 131.5q0 46 8.5 89t28.5 79 t51.5 62t79.5 39q-25 6 -46 20t-37 34.5t-26 48t-10 60.5q0 62 17.5 122.5t38.5 121.5t38.5 124t17.5 130q0 41 -11 75t-31 58.5t-49.5 38t-64.5 13.5h-31q-7 0 -14.5 5t-7.5 15v1t0.5 6t1.5 13.5t3 23.5h53q56 0 100 -19t73.5 -52.5t45 -79t15.5 -98.5q0 -70 -18 -133 t-39.5 -123t-39.5 -119.5t-18 -122.5z" /> +<glyph unicode="~" d="M736 581q38 0 69.5 13.5t53 38t33 58.5t11.5 74h80q0 -56 -16.5 -104.5t-47 -84t-75.5 -56t-103 -20.5q-52 0 -106.5 20t-108.5 44.5t-104 44.5t-94 20q-39 0 -69.5 -14t-52 -38.5t-33 -58.5t-12.5 -74h-79q0 56 16.5 104.5t47 84.5t75 56.5t102.5 20.5q53 0 107.5 -20 t108 -44.5t103.5 -44.5t94 -20z" /> +<glyph unicode="¡" horiz-adv-x="610" d="M175 -360l70 563q6 46 11 87t11 83.5t13 89.5t15 104h42q-6 -57 -10.5 -104t-9.5 -89.5t-9.5 -83.5t-9.5 -87l-69 -563h-54zM262 939q0 40 27 68t67 28q19 0 37.5 -7.5t31 -20.5t20.5 -31t8 -37q0 -40 -28.5 -67t-68.5 -27t-67 27t-27 67z" /> +<glyph unicode="¢" d="M542 -12q-88 6 -159 38.5t-121 89.5t-76.5 136.5t-26.5 177.5q0 132 39 242t111.5 190t176.5 125t235 47l36 212q2 12 11 22t23 10h35l-42 -246q88 -8 155 -38t114 -76l-28 -33q-5 -5 -10 -8.5t-14 -3.5t-24 11.5t-42 26.5t-67 28.5t-97 18.5l-154 -898q77 2 132.5 19.5 t93 37.5t59 36.5t32.5 16.5t17 -9l22 -31q-27 -29 -65 -54t-85.5 -44t-102.5 -30.5t-115 -13.5l-37 -216q-2 -13 -10.5 -22t-21.5 -9h-36zM252 435q0 -83 21 -149t60 -113.5t94.5 -75.5t126.5 -35l154 897q-108 -3 -192.5 -40.5t-143 -106t-89.5 -164t-31 -213.5z" /> +<glyph unicode="£" d="M886 677q-2 -12 -11.5 -20.5t-23.5 -8.5h-486l-40 -330q-5 -45 -16.5 -80.5t-29.5 -65t-42 -53.5t-56 -44q23 4 44 6t44 2h810l-4 -40q-2 -15 -15.5 -29t-33.5 -14h-994l8 66q37 13 68 31t55 44.5t40 64t22 91.5l43 351h-180l4 38q2 11 11.5 19.5t23.5 8.5h149l37 304 q11 95 50 177t101.5 142t147.5 94t190 34q82 0 142 -19t101 -51t68 -76t43 -93l-41 -23q-12 -5 -21 -5q-17 0 -29 17q-16 33 -35.5 64t-50 54.5t-75.5 37t-111 13.5q-80 0 -146.5 -26.5t-116 -75t-80.5 -115.5t-40 -148l-37 -305h517l-4 -37v0z" /> +<glyph unicode="¤" d="M284 687q0 63 20.5 119t55.5 102l-157 158l51 51l157 -159q46 38 102 59.5t121 21.5q63 0 119.5 -21t102.5 -57l158 157l50 -51l-158 -157q38 -46 59 -102t21 -121q0 -63 -21 -119t-57 -102l157 -158l-50 -51l-158 158q-46 -37 -102.5 -58t-120.5 -21q-63 0 -119 20.5 t-101 57.5l-159 -158l-50 51l157 158q-37 46 -57.5 101.5t-20.5 120.5zM357 687q0 -57 22 -107.5t59.5 -87.5t88 -59t107.5 -22q58 0 109 22t88.5 59t59.5 87.5t22 107.5t-22 108t-59.5 89t-88.5 60t-109 22q-57 0 -107.5 -22t-88 -60t-59.5 -89t-22 -108z" /> +<glyph unicode="¥" d="M180 631h356l-331 818h79q26 0 34 -26l273 -684q8 -20 11.5 -38t5.5 -35q7 17 14.5 35t20.5 38l440 684q7 11 17.5 18.5t24.5 7.5h80l-533 -818h355l-7 -59h-376l-15 -120h376l-7 -58h-375l-49 -394h-95l48 394h-375l7 58h375l15 120h-375z" /> +<glyph unicode="¦" horiz-adv-x="614" d="M207 1553h77v-796h-77v796zM207 435h77v-795h-77v795z" /> +<glyph unicode="§" horiz-adv-x="944" d="M863 1323q-9 -13 -23 -13q-11 0 -26 12.5t-40 28.5t-62.5 29t-94.5 13q-55 0 -101.5 -18t-80.5 -48t-52.5 -69.5t-18.5 -82.5q0 -42 20 -74t54 -58t77.5 -48.5t88.5 -45.5t88.5 -49.5t77.5 -59.5t54.5 -75t20.5 -98q0 -96 -48 -167t-144 -110q41 -35 66.5 -78.5 t25.5 -103.5q0 -70 -25.5 -132t-73 -109t-116.5 -74t-155 -27q-99 0 -167.5 33.5t-117.5 89.5l27 35q10 15 29 15q12 0 28 -16.5t43 -35.5t68 -35.5t104 -16.5t113.5 20t85.5 54.5t53 80t18 96.5q0 62 -37 105t-93 75.5t-121.5 62.5t-121.5 66t-93 86t-37 122q0 87 51 158 t167 113q-43 34 -69.5 78t-26.5 107q0 60 25.5 115.5t71.5 97.5t110 67t142 25q85 0 148 -26.5t112 -80.5zM242 727q0 -39 16.5 -69.5t45.5 -56.5t66.5 -48t78 -42.5t82.5 -42.5t79 -46q80 39 114.5 93.5t34.5 125.5q0 41 -15.5 73t-41 58.5t-60 48t-72.5 41t-76.5 39 t-74.5 41.5q-98 -44 -137.5 -96.5t-39.5 -118.5z" /> +<glyph unicode="¨" horiz-adv-x="552" d="M290 1337q0 -16 -7.5 -31t-19 -26t-27 -18t-31.5 -7q-17 0 -32 7t-27 18t-18.5 26t-6.5 31q0 17 6.5 32.5t18.5 27.5t26.5 18.5t32.5 6.5q16 0 31.5 -6.5t27 -18.5t19 -27.5t7.5 -32.5zM640 1337q0 -16 -7 -31t-18.5 -26t-27 -18t-31.5 -7q-17 0 -32.5 7t-27 18t-18 26 t-6.5 31q0 35 24.5 60t59.5 25q16 0 31.5 -6.5t27 -18.5t18.5 -27.5t7 -32.5z" /> +<glyph unicode="©" horiz-adv-x="1651" d="M1140 431q2 2 5.5 4t6.5 2q5 0 8 -2t4 -3l35 -36q-60 -60 -142 -96t-201 -36q-98 0 -180 33.5t-141 94t-91.5 145.5t-32.5 189q0 102 34 187t95 146t146 95t186 34q53 0 98 -8t83 -22.5t71 -35.5t64 -49l-24 -34q-7 -11 -21 -11q-9 0 -26 13.5t-47.5 29t-77 29 t-115.5 13.5q-85 0 -155 -27t-119.5 -77.5t-76.5 -122t-27 -160.5q0 -92 27 -164t75.5 -121.5t114.5 -75.5t144 -26q61 0 105.5 9.5t76.5 23.5t55.5 30t42.5 29zM110 725q0 101 26.5 196t74.5 177t115.5 149.5t149.5 115.5t176 74.5t197 26.5q101 0 196 -26.5t177 -74.5 t149.5 -115.5t115.5 -149.5t74.5 -177t26.5 -196q0 -102 -26.5 -196.5t-74.5 -176.5t-115.5 -149.5t-149.5 -115.5t-177 -74.5t-196 -26.5t-196 26.5t-177 74.5t-149.5 115.5t-115.5 149.5t-74.5 176.5t-26.5 196.5zM171 725q0 -142 52.5 -266.5t145 -217.5t216 -146 t264.5 -53q94 0 181 24t163 68.5t138 106.5t106.5 138t68.5 163.5t24 182.5q0 142 -53.5 266.5t-146 218t-216.5 147t-265 53.5t-264.5 -53.5t-216 -147t-145 -218t-52.5 -266.5z" /> +<glyph unicode="ª" horiz-adv-x="633" d="M546 859q-11 0 -17.5 3.5t-6.5 15.5v69q-53 -47 -103.5 -72t-118.5 -25q-29 0 -54.5 8t-45 24t-30.5 41t-11 59q0 43 21 80t67.5 65t120.5 45t180 19q3 25 5 40.5t3 25.5t1 15.5v9.5q0 122 -114 122q-40 0 -68.5 -11.5t-49.5 -24.5t-35 -24.5t-24 -11.5q-8 0 -13 4t-7 10 l-9 23q50 48 103.5 71t118.5 23q43 0 74.5 -14t52.5 -39.5t31 -58.5t10 -70v-7.5t-1.5 -18.5t-5 -40.5t-9 -72t-13.5 -115t-20 -168.5h-32zM326 902q62 0 108.5 27t90.5 69l17 143q-164 -5 -239 -43.5t-75 -106.5q0 -47 29.5 -68t68.5 -21z" /> +<glyph unicode="«" horiz-adv-x="837" d="M150 525l2 13l275 387l29 -15q13 -8 13 -21q0 -12 -11 -27l-207 -302q-17 -22 -27 -29q9 -8 19 -28l134 -302q5 -12 5 -20q0 -19 -20 -28l-32 -16zM392 525l2 13l276 387l28 -15q13 -8 14 -21q0 -12 -12 -27l-206 -302q-17 -22 -27 -29q9 -8 18 -28l135 -302q5 -12 5 -20 q0 -19 -20 -28l-33 -16z" /> +<glyph unicode="¬" d="M197 723h847l-47 -375h-81l37 302h-765z" /> +<glyph unicode="­" horiz-adv-x="626" d="M113 647h438l-9 -80h-441z" /> +<glyph unicode="®" horiz-adv-x="1651" d="M116 725q0 101 26.5 196t74.5 177t115.5 149.5t149.5 115.5t176.5 74.5t196.5 26.5t196.5 -26.5t176.5 -74.5t149.5 -115.5t115.5 -149.5t74.5 -177t26.5 -196q0 -102 -26.5 -196.5t-74.5 -176.5t-115.5 -149.5t-149.5 -115.5t-177 -74.5t-196 -26.5t-196 26.5t-177 74.5 t-149.5 115.5t-115.5 149.5t-74.5 176.5t-26.5 196.5zM177 725q0 -142 53 -266.5t145 -217.5t215.5 -146t264.5 -53q94 0 181 24t163 68.5t138 106.5t106.5 138t68.5 163.5t24 182.5q0 142 -53 266.5t-146 218t-217 147t-265 53.5t-264.5 -53.5t-215.5 -147t-145 -218 t-53 -266.5zM668 673v-401h-87v907h253q158 0 237.5 -59t79.5 -180q0 -102 -65.5 -167.5t-186.5 -82.5q12 -7 21.5 -17t19.5 -24l292 -377h-81q-19 0 -32 17l-277 359q-8 11 -20.5 18t-41.5 7h-112zM668 738h151q124 0 185 50t61 143q0 94 -55 137t-176 43h-166v-373z" /> +<glyph unicode="¯" horiz-adv-x="552" d="M124 1348h516l-8 -66h-515z" /> +<glyph unicode="°" horiz-adv-x="777" d="M165 1161q0 63 24.5 119t66 97.5t97.5 65t119 23.5q65 0 121 -23.5t97.5 -65t65.5 -97t24 -119.5q0 -63 -24 -118.5t-65.5 -97t-97.5 -65.5t-121 -24q-63 0 -119 24t-97.5 65.5t-66 97t-24.5 118.5zM236 1161q0 -49 18 -92t50 -74.5t75.5 -50t92.5 -18.5t92 18.5t74.5 50 t50 74.5t18.5 92t-18.5 92t-50 75.5t-74.5 51t-92 18.5t-92.5 -18.5t-75.5 -51t-50 -75.5t-18 -92z" /> +<glyph unicode="±" d="M714 1179l-51 -416h443l-9 -73h-444l-50 -414h-78l50 414h-439l8 73h441l51 416h78zM70 155h960l-8 -73h-961z" /> +<glyph unicode="²" horiz-adv-x="677" d="M487 1661q41 0 76.5 -11.5t61.5 -34t40.5 -54.5t14.5 -75q0 -46 -16 -85t-42 -74t-60.5 -67t-72.5 -66l-240 -217q19 5 39.5 7.5t40.5 2.5h284q23 0 23 -20q0 -2 -1 -9.5t-2 -15.5l-2 -20h-485l2 24q2 16 18 31l272 243q35 32 66.5 62t54 61.5t35.5 64.5t13 70 q0 32 -10 54.5t-28 38t-42 23.5t-51 8q-58 0 -104 -34t-70 -97q-4 -11 -11 -15t-19 -4q-6 0 -9 1l-37 6q26 98 96 150t165 52z" /> +<glyph unicode="³" horiz-adv-x="677" d="M506 1661q41 0 75.5 -11.5t60.5 -32.5t40 -51.5t14 -69.5q0 -77 -43.5 -125.5t-113.5 -67.5q66 -15 99 -54t33 -97q0 -54 -22 -97.5t-59 -75.5t-85 -49t-101 -17q-61 0 -101 15.5t-65 41.5t-38 60.5t-20 71.5l33 13q9 3 17 3q20 0 25 -22q2 -12 8.5 -33t23 -41 t45.5 -34.5t77 -14.5q45 0 80 15.5t59 40t37 54.5t13 61q0 29 -9.5 52t-31.5 39.5t-57 26t-84 9.5l6 51q99 2 151 44t52 116q0 31 -10.5 52.5t-28 36.5t-41 22.5t-50.5 7.5q-65 0 -108 -34t-66 -94q-9 -20 -27 -21q-6 0 -9 1l-37 6q12 49 37 86.5t59 63t75 39t87 13.5z" /> +<glyph unicode="´" horiz-adv-x="552" d="M610 1465l-237 -260q-15 -16 -38 -16h-56l177 244q13 17 25.5 24.5t35.5 7.5h93z" /> +<glyph unicode="µ" horiz-adv-x="1020" d="M287 1019l-84 -685q-1 -5 -1 -12.5v-26.5q0 -112 50.5 -174t159.5 -62q90 0 174 50.5t157 140.5l96 769h93l-125 -1019h-52q-26 0 -26 24l1 4q0 5 0.5 21t2.5 46t5 82q-77 -90 -161 -136.5t-180 -46.5q-90 0 -146 38t-83 107q-2 -43 -5.5 -85t-8.5 -78l-41 -336h-47 q-16 0 -27.5 9.5t-11.5 31.5l166 1338h94z" /> +<glyph unicode="¶" horiz-adv-x="1294" d="M1364 1449l-9 -84h-232l-191 -1560h-87l191 1560h-336l-191 -1560h-88l111 911q-94 0 -169 23t-128.5 65.5t-82 103.5t-28.5 138q0 88 35.5 161.5t101 127.5t157.5 84t205 30h741z" /> +<glyph unicode="·" horiz-adv-x="544" d="M197 606q0 22 8 41.5t22 33.5t32.5 22.5t38.5 8.5q22 0 41 -8.5t33.5 -22.5t22.5 -33.5t8 -41.5q0 -20 -8 -39t-22.5 -33t-34 -22t-40.5 -8q-20 0 -38.5 8t-32.5 22t-22 33t-8 39z" /> +<glyph unicode="¸" horiz-adv-x="552" d="M53 -281q5 0 13 -5.5t19.5 -12t29.5 -12t45 -5.5q52 0 81.5 25.5t29.5 68.5q0 23 -11 38t-31.5 25.5t-49 16t-63.5 10.5l57 137h59l-39 -99q76 -14 115.5 -42.5t39.5 -80.5q0 -34 -15 -61t-40.5 -46t-60.5 -29.5t-76 -10.5q-39 0 -74 12t-58 33l13 27q8 11 16 11z" /> +<glyph unicode="¹" horiz-adv-x="677" d="M254 976h162l68 551l9 38l-164 -130q-8 -6 -17 -7q-13 0 -18 9l-19 31l239 188h58l-84 -680h147l-6 -54h-382z" /> +<glyph unicode="º" horiz-adv-x="705" d="M471 1463q56 0 99.5 -18.5t74 -52.5t46.5 -81.5t16 -106.5q0 -81 -22 -147t-62.5 -112.5t-98 -72t-128.5 -25.5q-57 0 -101 18.5t-74.5 52t-46 81.5t-15.5 106q0 81 22 147t62.5 113t98 72.5t129.5 25.5zM403 904q56 0 99.5 21.5t72 61t43.5 95t15 122.5q0 91 -42 146 t-126 55q-59 0 -103 -22t-72.5 -62t-42.5 -95.5t-14 -121.5q0 -91 42 -145.5t128 -54.5z" /> +<glyph unicode="»" horiz-adv-x="837" d="M172 137l-28 16q-14 8 -14 21q0 12 9 27l210 302q12 19 24 28q-8 6 -18 29l-135 302q-4 8 -4 17q0 22 21 31l31 15l179 -387l-1 -13zM415 137l-28 16q-14 8 -14 21q0 12 9 27l210 302q12 19 23 28q-8 6 -17 29l-135 302q-4 8 -4 17q0 22 20 31l32 15l179 -387l-1 -13z " /> +<glyph unicode="¼" horiz-adv-x="1510" d="M1279 257h130l-3 -40q-2 -16 -21 -16h-112l-25 -201h-62l24 201h-333q-24 0 -24 16l-2 35l420 479h66zM429 32q-12 -19 -26.5 -25.5t-31.5 -6.5h-39l929 1413q23 36 59 36h41zM225 772h162l69 551l8 38l-153 -122q-12 -10 -18 -12t-10 -2q-12 0 -18 8l-18 32l238 187h59 l-84 -680h146l-6 -54h-382zM1260 599q2 12 4 26t6 29l-344 -397h292z" /> +<glyph unicode="½" horiz-adv-x="1510" d="M384 32q-12 -19 -26.5 -25.5t-31.5 -6.5h-39l928 1413q23 36 60 36h41zM1192 739q41 0 76.5 -11t61.5 -33.5t40 -55t14 -75.5q0 -46 -15.5 -85t-42 -73.5t-60.5 -67t-72 -66.5l-241 -217q19 5 40 8t40 3h285q23 0 22 -20v-3t-1 -10l-4 -33h-484l2 25q2 7 5.5 15t11.5 15 l273 243q35 32 66 62t53.5 62t36 64.5t13.5 69.5q0 32 -10.5 55t-28.5 38.5t-42 23t-50 7.5q-63 0 -108.5 -36t-65.5 -94q-7 -18 -29 -19h-8t-15 3l-24 4q26 98 96 149.5t165 51.5zM225 772h162l69 551l8 38l-153 -122q-12 -10 -18 -12t-10 -2q-12 0 -18 8l-18 32l238 187 h59l-84 -680h146l-6 -54h-382z" /> +<glyph unicode="¾" horiz-adv-x="1510" d="M1297 257h130l-3 -40q-2 -8 -6.5 -12t-13.5 -4h-113l-24 -201h-63l25 201h-334q-24 0 -24 16l-2 35l420 479h67zM456 32q-12 -19 -26.5 -25.5t-32.5 -6.5h-39l929 1413q23 36 60 36h41zM494 1457q41 0 75.5 -11t60 -32t40 -52t14.5 -70q0 -77 -43.5 -125.5t-114.5 -67.5 q66 -15 99 -53.5t33 -97.5q0 -54 -22 -97.5t-58.5 -75.5t-85 -48.5t-100.5 -16.5q-61 0 -101 15t-65 41.5t-38 60.5t-20 71l33 13q9 3 17 3t14.5 -3.5t8.5 -11.5q5 -23 13.5 -46t26 -41.5t45 -30.5t70.5 -12q45 0 80.5 15.5t59.5 40t37 54.5t13 61q0 29 -10 52t-32 40 t-56.5 26t-84.5 9l7 51q99 2 150.5 44t51.5 116q0 31 -10 53t-27.5 36.5t-41 22t-51.5 7.5q-65 0 -108.5 -35.5t-65.5 -92.5q-9 -20 -25 -21h-6t-13 2l-28 5q12 49 37 86.5t59 63.5t75 39t87 13zM1278 599q2 12 4 26t6 29l-344 -397h292z" /> +<glyph unicode="¿" horiz-adv-x="701" d="M585 -229q-30 -28 -65 -54t-76 -46t-88 -32t-100 -12q-60 0 -113 19t-92 54t-61 85t-22 114q0 84 25 143t63.5 101.5t84.5 74t87 59t71.5 56t37.5 66.5l33 168h63l-15 -175q-4 -44 -32 -76t-67 -61.5t-84.5 -58.5t-83.5 -67.5t-63.5 -90t-25.5 -124.5q0 -49 17 -88 t46 -66t67 -41t80 -14q62 0 110 18.5t82 40t54 40t27 18.5q8 0 12 -3.5t7 -8.5zM351 940q0 19 7.5 36.5t20 30.5t29.5 20.5t37 7.5q19 0 37 -7.5t30.5 -20.5t20.5 -30.5t8 -36.5q0 -20 -8 -37t-20.5 -30t-30 -20t-37.5 -7q-40 0 -67 27t-27 67z" /> +<glyph unicode="À" horiz-adv-x="1208" d="M1139 0h-78q-14 0 -23 7.5t-12 19.5l-103 424h-650l-206 -424q-5 -11 -16.5 -19t-25.5 -8h-78l724 1449h100zM310 525h595l-179 738q-5 17 -9.5 38.5t-7.5 45.5q-2 -6 -8 -19t-12 -26.5t-11 -24.5t-7 -15zM565 1812q24 0 34.5 -4.5t21.5 -17.5l187 -211h-74 q-12 0 -19.5 3.5t-16.5 11.5l-244 218h111z" /> +<glyph unicode="Á" horiz-adv-x="1208" d="M1139 0h-78q-14 0 -23 7.5t-12 19.5l-103 424h-650l-206 -424q-5 -11 -16.5 -19t-25.5 -8h-78l724 1449h100zM310 525h595l-179 738q-5 17 -9.5 38.5t-7.5 45.5q-2 -6 -8 -19t-12 -26.5t-11 -24.5t-7 -15zM1056 1812l-298 -218q-11 -8 -19.5 -11.5t-20.5 -3.5h-75 l240 211q14 13 26 17.5t35 4.5h112z" /> +<glyph unicode="Â" horiz-adv-x="1208" d="M1139 0h-78q-14 0 -23 7.5t-12 19.5l-103 424h-650l-206 -424q-5 -11 -16.5 -19t-25.5 -8h-78l724 1449h100zM310 525h595l-179 738q-5 17 -9.5 38.5t-7.5 45.5q-2 -6 -8 -19t-12 -26.5t-11 -24.5t-7 -15zM994 1579h-73q-7 0 -16 2.5t-14 7.5l-137 134q-2 2 -4 4.5 t-3 4.5q-3 -5 -8 -9l-171 -134q-7 -5 -16.5 -7.5t-17.5 -2.5h-73l247 204h89z" /> +<glyph unicode="Ã" horiz-adv-x="1208" d="M1139 0h-78q-14 0 -23 7.5t-12 19.5l-103 424h-650l-206 -424q-5 -11 -16.5 -19t-25.5 -8h-78l724 1449h100zM310 525h595l-179 738q-5 17 -9.5 38.5t-7.5 45.5q-2 -6 -8 -19t-12 -26.5t-11 -24.5t-7 -15zM858 1654q39 0 63 28t32 72h53q-5 -35 -17 -65.5t-31.5 -53 t-46 -35.5t-59.5 -13q-32 0 -58 16.5t-50 36t-47 36t-47 16.5q-39 0 -63.5 -29.5t-30.5 -72.5h-56q4 35 17 66t33 53.5t46.5 35t59.5 12.5q32 0 58.5 -16.5t50 -35t46 -35t47.5 -16.5z" /> +<glyph unicode="Ä" horiz-adv-x="1208" d="M1139 0h-78q-14 0 -23 7.5t-12 19.5l-103 424h-650l-206 -424q-5 -11 -16.5 -19t-25.5 -8h-78l724 1449h100zM310 525h595l-179 738q-5 17 -9.5 38.5t-7.5 45.5q-2 -6 -8 -19t-12 -26.5t-11 -24.5t-7 -15zM643 1705q0 -32 -24 -54.5t-55 -22.5t-54.5 22.5t-23.5 54.5 q0 33 23.5 56t54.5 23q32 0 55.5 -23t23.5 -56zM986 1705q0 -32 -23.5 -54.5t-54.5 -22.5q-32 0 -55 22.5t-23 54.5q0 33 23 56t55 23t55 -23t23 -56z" /> +<glyph unicode="Å" horiz-adv-x="1208" d="M1139 0h-78q-14 0 -23 7.5t-12 19.5l-103 424h-650l-206 -424q-5 -11 -16.5 -19t-25.5 -8h-78l724 1449h100zM310 525h595l-179 738q-5 17 -9.5 38.5t-7.5 45.5q-2 -6 -8 -19t-12 -26.5t-11 -24.5t-7 -15zM560 1669q0 35 14 65t37 51.5t54 34t65 12.5q35 0 67 -12.5 t55 -34t36.5 -51.5t13.5 -65q0 -36 -13.5 -65.5t-36.5 -51t-55 -33.5t-67 -12t-65.5 12t-53.5 33.5t-37 51t-14 65.5zM615 1669q0 -51 32 -84t84 -33q51 0 84 33t33 84t-32.5 84t-84.5 33t-84 -33t-32 -84z" /> +<glyph unicode="Æ" horiz-adv-x="1738" d="M1727 1365h-769v-591h580l-11 -82h-569v-608h614l-12 -84h-697v451h-558l-264 -424q-7 -11 -18.5 -19t-25.5 -8h-79l908 1449h912zM351 525h512v841q-10 -26 -21.5 -48t-23.5 -43z" /> +<glyph unicode="Ç" horiz-adv-x="1297" d="M532 -281q5 0 13 -5.5t20 -12t29.5 -12t44.5 -5.5q52 0 82 25.5t30 68.5q0 23 -11.5 38t-32 25.5t-49 16t-63.5 10.5l48 117q-117 6 -211 54t-160 130t-102 194.5t-36 248.5q0 189 57.5 346.5t158.5 270t237.5 174.5t295.5 62q75 0 134 -11.5t109 -34t91 -56.5t80 -77 l-31 -41q-11 -12 -28 -12q-12 0 -33 22.5t-61 49.5t-104 49.5t-162 22.5q-135 0 -252 -53t-203 -151.5t-135.5 -238.5t-49.5 -314q0 -127 33.5 -229t94 -173.5t145 -109t184.5 -37.5q75 0 134.5 12.5t105.5 31.5t79.5 41t57 41t38 32t23.5 13t13 -6l36 -43 q-46 -46 -97.5 -83.5t-110.5 -65t-126.5 -43t-145.5 -17.5l-30 -78q76 -14 115.5 -42.5t39.5 -80.5q0 -34 -14.5 -61t-40.5 -46t-61 -29.5t-76 -10.5q-39 0 -74 12t-58 33l13 27q8 11 16 11z" /> +<glyph unicode="È" horiz-adv-x="1113" d="M1102 1365h-698l-72 -590h580l-11 -82h-579l-75 -609h700l-11 -84h-802l178 1449h801zM572 1812q24 0 34.5 -4.5t21.5 -17.5l187 -211h-74q-12 0 -19.5 3.5t-16.5 11.5l-244 218h111z" /> +<glyph unicode="É" horiz-adv-x="1113" d="M1102 1365h-698l-72 -590h580l-11 -82h-579l-75 -609h700l-11 -84h-802l178 1449h801zM1055 1812l-298 -218q-11 -8 -19.5 -11.5t-20.5 -3.5h-75l240 211q14 13 26 17.5t35 4.5h112z" /> +<glyph unicode="Ê" horiz-adv-x="1113" d="M1102 1365h-698l-72 -590h580l-11 -82h-579l-75 -609h700l-11 -84h-802l178 1449h801zM1001 1579h-73q-7 0 -16 2.5t-14 7.5l-137 134q-2 2 -4 4.5t-3 4.5q-3 -5 -8 -9l-171 -134q-7 -5 -16.5 -7.5t-17.5 -2.5h-73l247 204h89z" /> +<glyph unicode="Ë" horiz-adv-x="1113" d="M1102 1365h-698l-72 -590h580l-11 -82h-579l-75 -609h700l-11 -84h-802l178 1449h801zM650 1705q0 -32 -24 -54.5t-55 -22.5t-54.5 22.5t-23.5 54.5q0 33 23.5 56t54.5 23q32 0 55.5 -23t23.5 -56zM993 1705q0 -32 -23.5 -54.5t-54.5 -22.5q-32 0 -55 22.5t-23 54.5 q0 33 23 56t55 23t55 -23t23 -56z" /> +<glyph unicode="Ì" horiz-adv-x="563" d="M271 0h-102l177 1449h103zM243 1812q24 0 34.5 -4.5t21.5 -17.5l187 -211h-74q-12 0 -19.5 3.5t-16.5 11.5l-244 218h111z" /> +<glyph unicode="Í" horiz-adv-x="563" d="M271 0h-102l177 1449h103zM726 1812l-298 -218q-11 -8 -19.5 -11.5t-20.5 -3.5h-75l240 211q14 13 26 17.5t35 4.5h112z" /> +<glyph unicode="Î" horiz-adv-x="563" d="M271 0h-102l177 1449h103zM672 1579h-73q-7 0 -16 2.5t-14 7.5l-137 134q-2 2 -4 4.5t-3 4.5q-3 -5 -8 -9l-171 -134q-7 -5 -16.5 -7.5t-17.5 -2.5h-73l247 204h89z" /> +<glyph unicode="Ï" horiz-adv-x="563" d="M271 0h-102l177 1449h103zM321 1705q0 -32 -24 -54.5t-55 -22.5t-54.5 22.5t-23.5 54.5q0 33 23.5 56t54.5 23q32 0 55.5 -23t23.5 -56zM664 1705q0 -32 -23.5 -54.5t-54.5 -22.5q-32 0 -55 22.5t-23 54.5q0 33 23 56t55 23t55 -23t23 -56z" /> +<glyph unicode="Ð" horiz-adv-x="1483" d="M79 766h203l84 683h487q128 0 231 -43.5t175 -123.5t111 -193.5t39 -253.5q0 -191 -55.5 -346t-153.5 -263.5t-232.5 -167t-292.5 -58.5h-488l86 702h-202zM1304 833q0 124 -32.5 223t-92.5 167.5t-145.5 105.5t-190.5 37h-386l-74 -600h380l-7 -64h-380l-76 -619h385 q135 0 248.5 50.5t195.5 147t128.5 236t46.5 316.5z" /> +<glyph unicode="Ñ" horiz-adv-x="1423" d="M362 1449q14 0 21 -3.5t14 -15.5l703 -1262q1 14 1.5 27t2.5 24l151 1230h90l-179 -1449h-47q-26 0 -38 23l-703 1261l-3 -46l-152 -1238h-89l178 1449h50v0zM966 1654q39 0 63 28t32 72h53q-5 -35 -17 -65.5t-31.5 -53t-46 -35.5t-59.5 -13q-32 0 -58 16.5t-50 36 t-47 36t-47 16.5q-39 0 -63.5 -29.5t-30.5 -72.5h-56q4 35 17 66t33 53.5t46.5 35t59.5 12.5q32 0 58.5 -16.5t50 -35t46 -35t47.5 -16.5z" /> +<glyph unicode="Ò" horiz-adv-x="1500" d="M1426 836q0 -191 -55.5 -348t-155 -268.5t-234.5 -173t-293 -61.5q-127 0 -229.5 45.5t-174.5 128.5t-111 198.5t-39 255.5q0 190 56.5 347.5t155 269.5t233.5 173.5t291 61.5q128 0 231 -45.5t175.5 -128.5t111 -199t38.5 -256zM1321 834q0 126 -32.5 226.5t-92.5 172 t-145.5 109.5t-191.5 38q-133 0 -246.5 -53t-197 -152.5t-130.5 -240.5t-47 -318q0 -126 32.5 -226.5t93 -171.5t145.5 -109t190 -38q135 0 249 52.5t197 152t129.5 240.5t46.5 318zM708 1812q24 0 34.5 -4.5t21.5 -17.5l187 -211h-74q-12 0 -19.5 3.5t-16.5 11.5l-244 218 h111z" /> +<glyph unicode="Ó" horiz-adv-x="1500" d="M1426 836q0 -191 -55.5 -348t-155 -268.5t-234.5 -173t-293 -61.5q-127 0 -229.5 45.5t-174.5 128.5t-111 198.5t-39 255.5q0 190 56.5 347.5t155 269.5t233.5 173.5t291 61.5q128 0 231 -45.5t175.5 -128.5t111 -199t38.5 -256zM1321 834q0 126 -32.5 226.5t-92.5 172 t-145.5 109.5t-191.5 38q-133 0 -246.5 -53t-197 -152.5t-130.5 -240.5t-47 -318q0 -126 32.5 -226.5t93 -171.5t145.5 -109t190 -38q135 0 249 52.5t197 152t129.5 240.5t46.5 318zM1191 1812l-298 -218q-11 -8 -19.5 -11.5t-20.5 -3.5h-75l240 211q14 13 26 17.5t35 4.5 h112z" /> +<glyph unicode="Ô" horiz-adv-x="1500" d="M1426 836q0 -191 -55.5 -348t-155 -268.5t-234.5 -173t-293 -61.5q-127 0 -229.5 45.5t-174.5 128.5t-111 198.5t-39 255.5q0 190 56.5 347.5t155 269.5t233.5 173.5t291 61.5q128 0 231 -45.5t175.5 -128.5t111 -199t38.5 -256zM1321 834q0 126 -32.5 226.5t-92.5 172 t-145.5 109.5t-191.5 38q-133 0 -246.5 -53t-197 -152.5t-130.5 -240.5t-47 -318q0 -126 32.5 -226.5t93 -171.5t145.5 -109t190 -38q135 0 249 52.5t197 152t129.5 240.5t46.5 318zM1137 1579h-73q-7 0 -16 2.5t-14 7.5l-137 134q-2 2 -4 4.5t-3 4.5q-3 -5 -8 -9l-171 -134 q-7 -5 -16.5 -7.5t-17.5 -2.5h-73l247 204h89z" /> +<glyph unicode="Õ" horiz-adv-x="1500" d="M1426 836q0 -191 -55.5 -348t-155 -268.5t-234.5 -173t-293 -61.5q-127 0 -229.5 45.5t-174.5 128.5t-111 198.5t-39 255.5q0 190 56.5 347.5t155 269.5t233.5 173.5t291 61.5q128 0 231 -45.5t175.5 -128.5t111 -199t38.5 -256zM1321 834q0 126 -32.5 226.5t-92.5 172 t-145.5 109.5t-191.5 38q-133 0 -246.5 -53t-197 -152.5t-130.5 -240.5t-47 -318q0 -126 32.5 -226.5t93 -171.5t145.5 -109t190 -38q135 0 249 52.5t197 152t129.5 240.5t46.5 318zM1001 1654q39 0 63 28t32 72h53q-5 -35 -17 -65.5t-31.5 -53t-46 -35.5t-59.5 -13 q-32 0 -58 16.5t-50 36t-47 36t-47 16.5q-39 0 -63.5 -29.5t-30.5 -72.5h-56q4 35 17 66t33 53.5t46.5 35t59.5 12.5q32 0 58.5 -16.5t50 -35t46 -35t47.5 -16.5z" /> +<glyph unicode="Ö" horiz-adv-x="1500" d="M1426 836q0 -191 -55.5 -348t-155 -268.5t-234.5 -173t-293 -61.5q-127 0 -229.5 45.5t-174.5 128.5t-111 198.5t-39 255.5q0 190 56.5 347.5t155 269.5t233.5 173.5t291 61.5q128 0 231 -45.5t175.5 -128.5t111 -199t38.5 -256zM1321 834q0 126 -32.5 226.5t-92.5 172 t-145.5 109.5t-191.5 38q-133 0 -246.5 -53t-197 -152.5t-130.5 -240.5t-47 -318q0 -126 32.5 -226.5t93 -171.5t145.5 -109t190 -38q135 0 249 52.5t197 152t129.5 240.5t46.5 318zM786 1705q0 -32 -24 -54.5t-55 -22.5t-54.5 22.5t-23.5 54.5q0 33 23.5 56t54.5 23 q32 0 55.5 -23t23.5 -56zM1129 1705q0 -32 -23.5 -54.5t-54.5 -22.5q-32 0 -55 22.5t-23 54.5q0 33 23 56t55 23t55 -23t23 -56z" /> +<glyph unicode="×" d="M1091 1062l-423 -376l333 -381l-55 -52l-336 382l-432 -384l-45 52l431 384l-332 377l59 53l331 -379l422 377z" /> +<glyph unicode="Ø" horiz-adv-x="1499" d="M1426 836q0 -191 -55.5 -348t-155 -268.5t-234.5 -173t-293 -61.5q-106 0 -195 31.5t-157 89.5l-148 -182q-14 -17 -31.5 -24.5t-33.5 -7.5h-42l209 260q-76 83 -116 200t-40 261q0 190 56.5 347.5t155 269.5t233.5 173.5t291 61.5q112 0 204.5 -35t163.5 -100l125 155 q13 17 23.5 23t29.5 6h53l-186 -231q70 -83 106.5 -196.5t36.5 -250.5zM238 616q0 -121 29.5 -218t84.5 -168l825 1023q-59 61 -139.5 94t-178.5 33q-133 0 -246.5 -53t-197 -152.5t-130.5 -241t-47 -317.5zM1321 834q0 114 -26.5 206.5t-75.5 162.5l-823 -1021 q58 -55 134.5 -83t168.5 -28q135 0 249 52.5t197 152t129.5 240.5t46.5 318z" /> +<glyph unicode="Ù" horiz-adv-x="1381" d="M638 72q95 0 175 36.5t140 101t99 153t51 189.5l109 897h103l-111 -897q-15 -120 -62.5 -224t-123 -180.5t-175 -120.5t-216.5 -44q-105 0 -188 36t-139.5 99.5t-86.5 151t-30 191.5q0 45 6 91l110 897h102l-110 -896q-2 -20 -3.5 -40.5t-1.5 -41.5q0 -86 23 -159 t67.5 -126.5t110 -83.5t151.5 -30zM653 1812q24 0 34.5 -4.5t21.5 -17.5l187 -211h-74q-12 0 -19.5 3.5t-16.5 11.5l-244 218h111z" /> +<glyph unicode="Ú" horiz-adv-x="1381" d="M638 72q95 0 175 36.5t140 101t99 153t51 189.5l109 897h103l-111 -897q-15 -120 -62.5 -224t-123 -180.5t-175 -120.5t-216.5 -44q-105 0 -188 36t-139.5 99.5t-86.5 151t-30 191.5q0 45 6 91l110 897h102l-110 -896q-2 -20 -3.5 -40.5t-1.5 -41.5q0 -86 23 -159 t67.5 -126.5t110 -83.5t151.5 -30zM1136 1812l-298 -218q-11 -8 -19.5 -11.5t-20.5 -3.5h-75l240 211q14 13 26 17.5t35 4.5h112z" /> +<glyph unicode="Û" horiz-adv-x="1381" d="M638 72q95 0 175 36.5t140 101t99 153t51 189.5l109 897h103l-111 -897q-15 -120 -62.5 -224t-123 -180.5t-175 -120.5t-216.5 -44q-105 0 -188 36t-139.5 99.5t-86.5 151t-30 191.5q0 45 6 91l110 897h102l-110 -896q-2 -20 -3.5 -40.5t-1.5 -41.5q0 -86 23 -159 t67.5 -126.5t110 -83.5t151.5 -30zM1082 1579h-73q-7 0 -16 2.5t-14 7.5l-137 134q-2 2 -4 4.5t-3 4.5q-3 -5 -8 -9l-171 -134q-7 -5 -16.5 -7.5t-17.5 -2.5h-73l247 204h89z" /> +<glyph unicode="Ü" horiz-adv-x="1381" d="M638 72q95 0 175 36.5t140 101t99 153t51 189.5l109 897h103l-111 -897q-15 -120 -62.5 -224t-123 -180.5t-175 -120.5t-216.5 -44q-105 0 -188 36t-139.5 99.5t-86.5 151t-30 191.5q0 45 6 91l110 897h102l-110 -896q-2 -20 -3.5 -40.5t-1.5 -41.5q0 -86 23 -159 t67.5 -126.5t110 -83.5t151.5 -30zM731 1705q0 -32 -24 -54.5t-55 -22.5t-54.5 22.5t-23.5 54.5q0 33 23.5 56t54.5 23q32 0 55.5 -23t23.5 -56zM1074 1705q0 -32 -23.5 -54.5t-54.5 -22.5q-32 0 -55 22.5t-23 54.5q0 33 23 56t55 23t55 -23t23 -56z" /> +<glyph unicode="Ý" horiz-adv-x="1133" d="M630 597l-75 -597h-101l74 598l-390 851h90q14 0 22 -7t13 -19l306 -684q8 -17 12.5 -34t7.5 -33q8 17 17 33.5t21 33.5l475 684q7 11 16 18.5t24 7.5h85zM1021 1812l-298 -218q-11 -8 -19.5 -11.5t-20.5 -3.5h-75l240 211q14 13 26 17.5t35 4.5h112z" /> +<glyph unicode="Þ" horiz-adv-x="1120" d="M466 1156h248q212 0 319 -95t107 -268q0 -111 -38 -202.5t-108 -157.5t-168.5 -103t-218.5 -37h-247l-35 -293h-102l177 1449h103zM457 1075l-86 -700h246q96 0 173.5 30.5t132.5 85t84.5 129t29.5 162.5q0 140 -83 216.5t-252 76.5h-245z" /> +<glyph unicode="ß" horiz-adv-x="1048" d="M710 1466q75 0 131 -23t94 -60t57 -84.5t19 -94.5q0 -72 -27 -123t-66 -90t-85.5 -69.5t-85.5 -60.5t-66 -63t-27 -77q0 -42 23.5 -68t59 -46t77 -39.5t77 -47.5t59 -71t23.5 -111q0 -78 -27.5 -143t-76.5 -112t-116 -73t-146 -26q-95 0 -159.5 34t-113.5 90l25 33 q12 15 30 16q12 0 28 -16.5t42 -35.5t65 -35.5t99 -16.5q59 0 107 20.5t82 56t52.5 83t18.5 101.5q0 57 -24 93t-61 61t-79 42.5t-79 40.5t-61 57t-24 88q0 57 27 99.5t67.5 76.5t88 65.5t88 67.5t68 82.5t27.5 110.5q0 30 -11.5 64.5t-38 64t-69.5 49t-106 19.5 q-67 0 -129.5 -34t-113.5 -94.5t-86 -143t-48 -178.5l-114 -923l-43 -236q-4 -23 -17.5 -32.5t-32.5 -9.5h-36l143 1169l-134 10q-25 1 -25 22l5 41h164q18 97 63 184.5t108.5 153.5t142.5 104t167 38z" /> +<glyph unicode="à" horiz-adv-x="1003" d="M784 0h-47q-19 0 -27 9t-8 23l34 320q-39 -82 -85.5 -149t-99 -115t-111 -74.5t-121.5 -26.5q-65 0 -112.5 25t-80 71t-49 111.5t-16.5 147.5q0 89 22.5 174.5t64 162.5t99 141.5t126.5 111.5t148 73.5t163 26.5q61 0 114.5 -10.5t105.5 -37.5zM351 68q58 0 115 32.5 t108.5 92.5t97 144.5t81.5 186.5l51 415q-60 20 -131 20q-69 0 -133.5 -23t-121.5 -64t-104.5 -97t-82 -123t-53.5 -142t-19 -153q0 -137 46.5 -213t145.5 -76zM569 1465q24 0 34 -7.5t18 -24.5l118 -244h-54q-22 0 -34 16l-173 260h91z" /> +<glyph unicode="á" horiz-adv-x="1003" d="M784 0h-47q-19 0 -27 9t-8 23l34 320q-39 -82 -85.5 -149t-99 -115t-111 -74.5t-121.5 -26.5q-65 0 -112.5 25t-80 71t-49 111.5t-16.5 147.5q0 89 22.5 174.5t64 162.5t99 141.5t126.5 111.5t148 73.5t163 26.5q61 0 114.5 -10.5t105.5 -37.5zM351 68q58 0 115 32.5 t108.5 92.5t97 144.5t81.5 186.5l51 415q-60 20 -131 20q-69 0 -133.5 -23t-121.5 -64t-104.5 -97t-82 -123t-53.5 -142t-19 -153q0 -137 46.5 -213t145.5 -76zM918 1465l-237 -260q-15 -16 -38 -16h-56l177 244q13 17 25.5 24.5t35.5 7.5h93z" /> +<glyph unicode="â" horiz-adv-x="1003" d="M784 0h-47q-19 0 -27 9t-8 23l34 320q-39 -82 -85.5 -149t-99 -115t-111 -74.5t-121.5 -26.5q-65 0 -112.5 25t-80 71t-49 111.5t-16.5 147.5q0 89 22.5 174.5t64 162.5t99 141.5t126.5 111.5t148 73.5t163 26.5q61 0 114.5 -10.5t105.5 -37.5zM351 68q58 0 115 32.5 t108.5 92.5t97 144.5t81.5 186.5l51 415q-60 20 -131 20q-69 0 -133.5 -23t-121.5 -64t-104.5 -97t-82 -123t-53.5 -142t-19 -153q0 -137 46.5 -213t145.5 -76zM901 1197h-62q-15 0 -25 12l-126 168l-8 13l-11 -13l-168 -168q-5 -5 -12.5 -8.5t-15.5 -3.5h-66l236 252h85z " /> +<glyph unicode="ã" horiz-adv-x="1003" d="M784 0h-47q-19 0 -27 9t-8 23l34 320q-39 -82 -85.5 -149t-99 -115t-111 -74.5t-121.5 -26.5q-65 0 -112.5 25t-80 71t-49 111.5t-16.5 147.5q0 89 22.5 174.5t64 162.5t99 141.5t126.5 111.5t148 73.5t163 26.5q61 0 114.5 -10.5t105.5 -37.5zM351 68q58 0 115 32.5 t108.5 92.5t97 144.5t81.5 186.5l51 415q-60 20 -131 20q-69 0 -133.5 -23t-121.5 -64t-104.5 -97t-82 -123t-53.5 -142t-19 -153q0 -137 46.5 -213t145.5 -76zM776 1310q41 0 64.5 28t31.5 76h58q-4 -37 -17 -68.5t-33.5 -55t-48 -37t-60.5 -13.5q-32 0 -57 17t-48 37.5 t-45 37.5t-46 17q-39 0 -63.5 -30t-32.5 -76h-59q4 37 18 69.5t35 55.5t48 36t60 13q32 0 57.5 -17t48 -37t43.5 -36.5t46 -16.5z" /> +<glyph unicode="ä" horiz-adv-x="1003" d="M784 0h-47q-19 0 -27 9t-8 23l34 320q-39 -82 -85.5 -149t-99 -115t-111 -74.5t-121.5 -26.5q-65 0 -112.5 25t-80 71t-49 111.5t-16.5 147.5q0 89 22.5 174.5t64 162.5t99 141.5t126.5 111.5t148 73.5t163 26.5q61 0 114.5 -10.5t105.5 -37.5zM351 68q58 0 115 32.5 t108.5 92.5t97 144.5t81.5 186.5l51 415q-60 20 -131 20q-69 0 -133.5 -23t-121.5 -64t-104.5 -97t-82 -123t-53.5 -142t-19 -153q0 -137 46.5 -213t145.5 -76zM583 1337q0 -16 -7.5 -31t-19 -26t-27 -18t-31.5 -7q-17 0 -32 7t-27 18t-18.5 26t-6.5 31q0 17 6.5 32.5 t18.5 27.5t26.5 18.5t32.5 6.5q16 0 31.5 -6.5t27 -18.5t19 -27.5t7.5 -32.5zM933 1337q0 -16 -7 -31t-18.5 -26t-27 -18t-31.5 -7q-17 0 -32.5 7t-27 18t-18 26t-6.5 31q0 35 24.5 60t59.5 25q16 0 31.5 -6.5t27 -18.5t18.5 -27.5t7 -32.5z" /> +<glyph unicode="å" horiz-adv-x="1003" d="M784 0h-47q-19 0 -27 9t-8 23l34 320q-39 -82 -85.5 -149t-99 -115t-111 -74.5t-121.5 -26.5q-65 0 -112.5 25t-80 71t-49 111.5t-16.5 147.5q0 89 22.5 174.5t64 162.5t99 141.5t126.5 111.5t148 73.5t163 26.5q61 0 114.5 -10.5t105.5 -37.5zM351 68q58 0 115 32.5 t108.5 92.5t97 144.5t81.5 186.5l51 415q-60 20 -131 20q-69 0 -133.5 -23t-121.5 -64t-104.5 -97t-82 -123t-53.5 -142t-19 -153q0 -137 46.5 -213t145.5 -76zM516 1333q0 37 13.5 68t38 53t56.5 34.5t68 12.5t68 -12.5t56 -34.5t38.5 -53t14.5 -68t-14.5 -67t-38.5 -52.5 t-56 -35t-68 -12.5t-68 12.5t-56.5 35t-38 52.5t-13.5 67zM575 1333q0 -51 33 -83.5t85 -32.5q51 0 84 32.5t33 83.5t-33 84t-84 33q-52 0 -85 -33t-33 -84z" /> +<glyph unicode="æ" horiz-adv-x="1464" d="M1141 1035q56 0 103.5 -16.5t82.5 -46.5t54.5 -71.5t19.5 -90.5q0 -59 -32 -112.5t-105.5 -93.5t-195.5 -64.5t-301 -25.5q-3 -42 -3 -84q0 -176 71 -270.5t195 -94.5q54 0 97.5 11.5t78.5 30t61 39t46.5 39t35.5 30t26 11.5q12 0 22 -10l22 -27q-49 -52 -96 -90.5 t-96 -63.5t-102 -36.5t-112 -11.5q-119 0 -199.5 72t-110.5 208q-29 -79 -75 -133t-100.5 -87.5t-111.5 -48t-106 -14.5q-57 0 -104.5 13.5t-82 42.5t-53.5 73.5t-19 105.5q0 77 36 141t112.5 110.5t197.5 74t291 32.5l11 87q2 20 4 38t2 35q0 108 -47.5 164t-140.5 56 q-68 0 -117.5 -20.5t-85 -44.5t-59.5 -44.5t-38 -20.5q-22 0 -29 19l-12 28q83 80 166.5 121t184.5 41q117 0 176.5 -61.5t70.5 -170.5q58 109 151 170t216 61zM680 513q-141 -5 -242.5 -25t-166.5 -55.5t-96.5 -85.5t-31.5 -115q0 -47 13.5 -80.5t38 -55.5t58.5 -33t74 -11 q62 0 119 23t102.5 66.5t76 107t41.5 145.5zM1130 963q-73 0 -132 -28t-104.5 -78.5t-76 -122.5t-43.5 -161q155 5 258.5 25t166.5 51t89.5 71t26.5 86q0 74 -50.5 115.5t-134.5 41.5z" /> +<glyph unicode="ç" horiz-adv-x="881" d="M279 -281q5 0 12.5 -5.5t19.5 -12t29.5 -12t44.5 -5.5q52 0 82 25.5t30 68.5q0 23 -11.5 38t-32 25.5t-49 16t-63.5 10.5l50 120q-81 5 -140.5 37t-98.5 86t-58.5 125.5t-19.5 156.5q0 81 17 160.5t48.5 151t76.5 132t101.5 104.5t122.5 69t141 25q50 0 90.5 -9.5 t74 -27.5t61.5 -43.5t51 -57.5l-29 -34q-9 -11 -21 -11q-10 0 -25 16.5t-40 35.5t-65 35t-100 16q-86 0 -160.5 -46t-129.5 -123.5t-86 -179.5t-31 -213q0 -71 16 -131t49 -104t83.5 -68.5t118.5 -24.5q54 0 97.5 11.5t76.5 29t58 38.5t44.5 38.5t33.5 29t25 11.5 q13 0 22 -10l21 -27q-51 -56 -96 -93.5t-89 -60t-88 -32.5t-92 -12l-33 -82q76 -14 115.5 -42.5t39.5 -80.5q0 -34 -14.5 -61t-40 -46t-61 -29.5t-76.5 -10.5q-39 0 -74 12t-58 33l13 27q9 11 17 11z" /> +<glyph unicode="è" horiz-adv-x="916" d="M858 824q0 -42 -11 -79.5t-40 -71.5t-78 -64t-126 -55.5t-183.5 -45.5t-249.5 -35q-2 -22 -3 -42.5t-1 -41.5q0 -153 69 -238.5t208 -85.5q54 0 98 11.5t78 30t60.5 39t46.5 39t35 30t27 11.5t22 -10l23 -27q-50 -53 -98 -91.5t-96.5 -63t-101 -36t-111.5 -11.5 q-85 0 -151 28t-111 79.5t-68.5 126t-23.5 166.5q0 77 15 155t45.5 149.5t75 134t102 108.5t127 72.5t150.5 26.5q75 0 126.5 -21t83.5 -52t46.5 -67.5t14.5 -68.5zM582 962q-82 0 -148 -35t-117 -93t-85 -134t-51 -159q130 14 224.5 33t160 40t106 45.5t63 50.5t30 54 t7.5 57q0 22 -9.5 47t-32 45.5t-59 34.5t-89.5 14zM465 1465q24 0 34 -7.5t18 -24.5l118 -244h-54q-22 0 -34 16l-173 260h91z" /> +<glyph unicode="é" horiz-adv-x="916" d="M858 824q0 -42 -11 -79.5t-40 -71.5t-78 -64t-126 -55.5t-183.5 -45.5t-249.5 -35q-2 -22 -3 -42.5t-1 -41.5q0 -153 69 -238.5t208 -85.5q54 0 98 11.5t78 30t60.5 39t46.5 39t35 30t27 11.5t22 -10l23 -27q-50 -53 -98 -91.5t-96.5 -63t-101 -36t-111.5 -11.5 q-85 0 -151 28t-111 79.5t-68.5 126t-23.5 166.5q0 77 15 155t45.5 149.5t75 134t102 108.5t127 72.5t150.5 26.5q75 0 126.5 -21t83.5 -52t46.5 -67.5t14.5 -68.5zM582 962q-82 0 -148 -35t-117 -93t-85 -134t-51 -159q130 14 224.5 33t160 40t106 45.5t63 50.5t30 54 t7.5 57q0 22 -9.5 47t-32 45.5t-59 34.5t-89.5 14zM839 1465l-237 -260q-15 -16 -38 -16h-56l177 244q13 17 25.5 24.5t35.5 7.5h93z" /> +<glyph unicode="ê" horiz-adv-x="916" d="M858 824q0 -42 -11 -79.5t-40 -71.5t-78 -64t-126 -55.5t-183.5 -45.5t-249.5 -35q-2 -22 -3 -42.5t-1 -41.5q0 -153 69 -238.5t208 -85.5q54 0 98 11.5t78 30t60.5 39t46.5 39t35 30t27 11.5t22 -10l23 -27q-50 -53 -98 -91.5t-96.5 -63t-101 -36t-111.5 -11.5 q-85 0 -151 28t-111 79.5t-68.5 126t-23.5 166.5q0 77 15 155t45.5 149.5t75 134t102 108.5t127 72.5t150.5 26.5q75 0 126.5 -21t83.5 -52t46.5 -67.5t14.5 -68.5zM582 962q-82 0 -148 -35t-117 -93t-85 -134t-51 -159q130 14 224.5 33t160 40t106 45.5t63 50.5t30 54 t7.5 57q0 22 -9.5 47t-32 45.5t-59 34.5t-89.5 14zM837 1197h-62q-15 0 -25 12l-126 168l-8 13l-11 -13l-168 -168q-5 -5 -12.5 -8.5t-15.5 -3.5h-66l236 252h85z" /> +<glyph unicode="ë" horiz-adv-x="916" d="M858 824q0 -42 -11 -79.5t-40 -71.5t-78 -64t-126 -55.5t-183.5 -45.5t-249.5 -35q-2 -22 -3 -42.5t-1 -41.5q0 -153 69 -238.5t208 -85.5q54 0 98 11.5t78 30t60.5 39t46.5 39t35 30t27 11.5t22 -10l23 -27q-50 -53 -98 -91.5t-96.5 -63t-101 -36t-111.5 -11.5 q-85 0 -151 28t-111 79.5t-68.5 126t-23.5 166.5q0 77 15 155t45.5 149.5t75 134t102 108.5t127 72.5t150.5 26.5q75 0 126.5 -21t83.5 -52t46.5 -67.5t14.5 -68.5zM582 962q-82 0 -148 -35t-117 -93t-85 -134t-51 -159q130 14 224.5 33t160 40t106 45.5t63 50.5t30 54 t7.5 57q0 22 -9.5 47t-32 45.5t-59 34.5t-89.5 14zM519 1337q0 -16 -7.5 -31t-19 -26t-27 -18t-31.5 -7q-17 0 -32 7t-27 18t-18.5 26t-6.5 31q0 17 6.5 32.5t18.5 27.5t26.5 18.5t32.5 6.5q16 0 31.5 -6.5t27 -18.5t19 -27.5t7.5 -32.5zM869 1337q0 -16 -7 -31t-18.5 -26 t-27 -18t-31.5 -7q-17 0 -32.5 7t-27 18t-18 26t-6.5 31q0 35 24.5 60t59.5 25q16 0 31.5 -6.5t27 -18.5t18.5 -27.5t7 -32.5z" /> +<glyph unicode="ì" horiz-adv-x="465" d="M342 1019l-124 -1019h-95l124 1019h95zM190 1465q24 0 34 -7.5t18 -24.5l118 -244h-54q-22 0 -34 16l-173 260h91z" /> +<glyph unicode="í" horiz-adv-x="465" d="M342 1019l-124 -1019h-95l124 1019h95zM564 1465l-237 -260q-15 -16 -38 -16h-56l177 244q13 17 25.5 24.5t35.5 7.5h93z" /> +<glyph unicode="î" horiz-adv-x="465" d="M342 1019l-124 -1019h-95l124 1019h95zM562 1197h-62q-15 0 -25 12l-126 168l-8 13l-11 -13l-168 -168q-5 -5 -12.5 -8.5t-15.5 -3.5h-66l236 252h85z" /> +<glyph unicode="ï" horiz-adv-x="465" d="M342 1019l-124 -1019h-95l124 1019h95zM244 1337q0 -16 -7.5 -31t-19 -26t-27 -18t-31.5 -7q-17 0 -32 7t-27 18t-18.5 26t-6.5 31q0 17 6.5 32.5t18.5 27.5t26.5 18.5t32.5 6.5q16 0 31.5 -6.5t27 -18.5t19 -27.5t7.5 -32.5zM594 1337q0 -16 -7 -31t-18.5 -26t-27 -18 t-31.5 -7q-17 0 -32.5 7t-27 18t-18 26t-6.5 31q0 35 24.5 60t59.5 25q16 0 31.5 -6.5t27 -18.5t18.5 -27.5t7 -32.5z" /> +<glyph unicode="ð" horiz-adv-x="1013" d="M503 1096q-4 8 -4 13q0 9 8 17l143 124q-52 36 -112.5 60.5t-129.5 42.5q-24 6 -24 23q0 9 4 18l13 30q83 -14 162.5 -45t148.5 -84l165 140l16 -30q3 -6 3 -13q0 -10 -10 -20l-131 -114q44 -41 80.5 -93t63.5 -116.5t41 -141.5t14 -168q0 -163 -32.5 -300.5t-98 -238 t-162.5 -156.5t-226 -56q-78 0 -144 29t-114 82.5t-75 129t-27 168.5q0 112 33 211t95 173.5t149.5 118t195.5 43.5q50 0 99 -14t92 -43t78.5 -74t58.5 -107q0 8 0.5 16.5t0.5 16.5q0 165 -47.5 283t-134.5 194l-175 -149zM445 62q166 0 270.5 130t138.5 391q-9 52 -31 103 t-58.5 91.5t-88 65.5t-121.5 25q-92 0 -164.5 -36.5t-121.5 -100t-74.5 -148t-25.5 -181.5q0 -79 21.5 -141.5t58.5 -106.5t87.5 -68t108.5 -24z" /> +<glyph unicode="ñ" horiz-adv-x="1048" d="M96 0l123 1022h44q35 0 35 -37l-30 -295q42 81 93 145t107 108.5t115.5 67.5t119.5 23q114 0 171.5 -74.5t57.5 -214.5q0 -9 -0.5 -20.5t-3 -37t-8 -72.5t-14.5 -126t-23 -198.5t-34 -290.5h-96l76 651q6 47 7 89q0 103 -39.5 157.5t-124.5 54.5q-57 0 -115.5 -29 t-113.5 -83t-103 -130t-85 -171l-62 -539h-97zM747 1312q41 0 64.5 28t31.5 76h58q-4 -37 -17 -68.5t-33.5 -55t-48 -37t-60.5 -13.5q-32 0 -57 17t-48 37.5t-45 37.5t-46 17q-39 0 -63.5 -30t-32.5 -76h-59q4 37 18 69.5t35 55.5t48 36t60 13q32 0 57.5 -17t48 -37 t43.5 -36.5t46 -16.5z" /> +<glyph unicode="ò" horiz-adv-x="1011" d="M444 63q89 0 162.5 47t125.5 124t80.5 177t28.5 205q0 164 -73 253t-202 89q-59 0 -111.5 -21t-96.5 -58.5t-79 -89.5t-59 -113.5t-37 -130t-13 -139.5q0 -163 72 -253t202 -90zM436 -13q-82 0 -149 28.5t-114.5 83t-73.5 131.5t-26 176q0 124 36.5 238t104 201 t159.5 138.5t202 51.5q82 0 149.5 -29t115 -83t73.5 -131.5t26 -174.5q0 -124 -37.5 -237.5t-104 -201t-158.5 -139.5t-203 -52zM462 1467q24 0 34 -7.5t18 -24.5l118 -244h-54q-22 0 -34 16l-173 260h91z" /> +<glyph unicode="ó" horiz-adv-x="1011" d="M444 63q89 0 162.5 47t125.5 124t80.5 177t28.5 205q0 164 -73 253t-202 89q-59 0 -111.5 -21t-96.5 -58.5t-79 -89.5t-59 -113.5t-37 -130t-13 -139.5q0 -163 72 -253t202 -90zM436 -13q-82 0 -149 28.5t-114.5 83t-73.5 131.5t-26 176q0 124 36.5 238t104 201 t159.5 138.5t202 51.5q82 0 149.5 -29t115 -83t73.5 -131.5t26 -174.5q0 -124 -37.5 -237.5t-104 -201t-158.5 -139.5t-203 -52zM835 1467l-237 -260q-15 -16 -38 -16h-56l177 244q13 17 25.5 24.5t35.5 7.5h93z" /> +<glyph unicode="ô" horiz-adv-x="1011" d="M444 63q89 0 162.5 47t125.5 124t80.5 177t28.5 205q0 164 -73 253t-202 89q-59 0 -111.5 -21t-96.5 -58.5t-79 -89.5t-59 -113.5t-37 -130t-13 -139.5q0 -163 72 -253t202 -90zM436 -13q-82 0 -149 28.5t-114.5 83t-73.5 131.5t-26 176q0 124 36.5 238t104 201 t159.5 138.5t202 51.5q82 0 149.5 -29t115 -83t73.5 -131.5t26 -174.5q0 -124 -37.5 -237.5t-104 -201t-158.5 -139.5t-203 -52zM833 1199h-62q-15 0 -25 12l-126 168l-8 13l-11 -13l-168 -168q-5 -5 -12.5 -8.5t-15.5 -3.5h-66l236 252h85z" /> +<glyph unicode="õ" horiz-adv-x="1011" d="M444 63q89 0 162.5 47t125.5 124t80.5 177t28.5 205q0 164 -73 253t-202 89q-59 0 -111.5 -21t-96.5 -58.5t-79 -89.5t-59 -113.5t-37 -130t-13 -139.5q0 -163 72 -253t202 -90zM436 -13q-82 0 -149 28.5t-114.5 83t-73.5 131.5t-26 176q0 124 36.5 238t104 201 t159.5 138.5t202 51.5q82 0 149.5 -29t115 -83t73.5 -131.5t26 -174.5q0 -124 -37.5 -237.5t-104 -201t-158.5 -139.5t-203 -52zM708 1312q41 0 64.5 28t31.5 76h58q-4 -37 -17 -68.5t-33.5 -55t-48 -37t-60.5 -13.5q-32 0 -57 17t-48 37.5t-45 37.5t-46 17q-39 0 -63.5 -30 t-32.5 -76h-59q4 37 18 69.5t35 55.5t48 36t60 13q32 0 57.5 -17t48 -37t43.5 -36.5t46 -16.5z" /> +<glyph unicode="ö" horiz-adv-x="1011" d="M444 63q89 0 162.5 47t125.5 124t80.5 177t28.5 205q0 164 -73 253t-202 89q-59 0 -111.5 -21t-96.5 -58.5t-79 -89.5t-59 -113.5t-37 -130t-13 -139.5q0 -163 72 -253t202 -90zM436 -13q-82 0 -149 28.5t-114.5 83t-73.5 131.5t-26 176q0 124 36.5 238t104 201 t159.5 138.5t202 51.5q82 0 149.5 -29t115 -83t73.5 -131.5t26 -174.5q0 -124 -37.5 -237.5t-104 -201t-158.5 -139.5t-203 -52zM515 1339q0 -16 -7.5 -31t-19 -26t-27 -18t-31.5 -7q-17 0 -32 7t-27 18t-18.5 26t-6.5 31q0 17 6.5 32.5t18.5 27.5t26.5 18.5t32.5 6.5 q16 0 31.5 -6.5t27 -18.5t19 -27.5t7.5 -32.5zM865 1339q0 -16 -7 -31t-18.5 -26t-27 -18t-31.5 -7q-17 0 -32.5 7t-27 18t-18 26t-6.5 31q0 35 24.5 60t59.5 25q16 0 31.5 -6.5t27 -18.5t18.5 -27.5t7 -32.5z" /> +<glyph unicode="÷" d="M140 723h961l-8 -73h-962zM566 1038q0 22 8.5 41.5t22.5 34t33 23t41 8.5q37 0 60.5 -25t23.5 -61q0 -22 -9 -41t-23.5 -32.5t-34 -21.5t-40.5 -8q-37 0 -59.5 24t-22.5 58zM476 309q0 22 8.5 41.5t22.5 34t33 23t41 8.5q37 0 60.5 -25t23.5 -61q0 -22 -9 -41t-24 -32.5 t-33.5 -21.5t-40.5 -8q-36 0 -59 24t-23 58z" /> +<glyph unicode="ø" horiz-adv-x="1011" d="M436 -13q-137 0 -228 76l-72 -98q-13 -17 -30 -25t-34 -8h-39l130 177q-44 54 -67 128.5t-23 168.5q0 124 36.5 238t104 201t159.5 138.5t202 51.5q70 0 128 -20.5t104 -59.5l62 85q12 16 21.5 23.5t30.5 7.5h51l-120 -163q42 -54 64.5 -127t22.5 -164 q0 -124 -37.5 -237.5t-104 -201t-158.5 -139.5t-203 -52zM165 406q0 -140 56 -230l531 715q-73 73 -186 73q-89 0 -162.5 -46t-127 -122.5t-82.5 -177.5t-29 -212zM444 58q89 0 163.5 46.5t127 123.5t82 178t29.5 210q0 68 -14 124.5t-39 99.5l-531 -714q72 -68 182 -68z " /> +<glyph unicode="ù" horiz-adv-x="1046" d="M296 1019l-77 -648q-6 -48 -6 -89q0 -104 39.5 -159t124.5 -55q56 0 113.5 28.5t111.5 82t102.5 129t85.5 169.5l65 542h96l-123 -1019h-45q-19 0 -28 10t-9 28l31 290q-42 -81 -92.5 -144.5t-106.5 -107t-115.5 -66.5t-118.5 -23q-114 0 -170.5 75t-56.5 214q0 9 0.5 20 t3 37t7.5 72.5t14.5 125.5t23 198t34.5 290h96zM458 1467q24 0 34 -7.5t18 -24.5l118 -244h-54q-22 0 -34 16l-173 260h91z" /> +<glyph unicode="ú" horiz-adv-x="1046" d="M296 1019l-77 -648q-6 -48 -6 -89q0 -104 39.5 -159t124.5 -55q56 0 113.5 28.5t111.5 82t102.5 129t85.5 169.5l65 542h96l-123 -1019h-45q-19 0 -28 10t-9 28l31 290q-42 -81 -92.5 -144.5t-106.5 -107t-115.5 -66.5t-118.5 -23q-114 0 -170.5 75t-56.5 214q0 9 0.5 20 t3 37t7.5 72.5t14.5 125.5t23 198t34.5 290h96zM831 1467l-237 -260q-15 -16 -38 -16h-56l177 244q13 17 25.5 24.5t35.5 7.5h93z" /> +<glyph unicode="û" horiz-adv-x="1046" d="M296 1019l-77 -648q-6 -48 -6 -89q0 -104 39.5 -159t124.5 -55q56 0 113.5 28.5t111.5 82t102.5 129t85.5 169.5l65 542h96l-123 -1019h-45q-19 0 -28 10t-9 28l31 290q-42 -81 -92.5 -144.5t-106.5 -107t-115.5 -66.5t-118.5 -23q-114 0 -170.5 75t-56.5 214q0 9 0.5 20 t3 37t7.5 72.5t14.5 125.5t23 198t34.5 290h96zM829 1199h-62q-15 0 -25 12l-126 168l-8 13l-11 -13l-168 -168q-5 -5 -12.5 -8.5t-15.5 -3.5h-66l236 252h85z" /> +<glyph unicode="ü" horiz-adv-x="1046" d="M296 1019l-77 -648q-6 -48 -6 -89q0 -104 39.5 -159t124.5 -55q56 0 113.5 28.5t111.5 82t102.5 129t85.5 169.5l65 542h96l-123 -1019h-45q-19 0 -28 10t-9 28l31 290q-42 -81 -92.5 -144.5t-106.5 -107t-115.5 -66.5t-118.5 -23q-114 0 -170.5 75t-56.5 214q0 9 0.5 20 t3 37t7.5 72.5t14.5 125.5t23 198t34.5 290h96zM511 1339q0 -16 -7.5 -31t-19 -26t-27 -18t-31.5 -7q-17 0 -32 7t-27 18t-18.5 26t-6.5 31q0 17 6.5 32.5t18.5 27.5t26.5 18.5t32.5 6.5q16 0 31.5 -6.5t27 -18.5t19 -27.5t7.5 -32.5zM861 1339q0 -16 -7 -31t-18.5 -26 t-27 -18t-31.5 -7q-17 0 -32.5 7t-27 18t-18 26t-6.5 31q0 35 24.5 60t59.5 25q16 0 31.5 -6.5t27 -18.5t18.5 -27.5t7 -32.5z" /> +<glyph unicode="ý" horiz-adv-x="924" d="M257 -332q-14 -29 -42 -28h-69l215 398l-273 981h76q14 0 20.5 -6.5t10.5 -18.5l215 -792q4 -15 5.5 -30.5t3.5 -31.5q6 15 12.5 31t14.5 31l411 795q5 11 14.5 16.5t18.5 5.5h75zM791 1467l-237 -260q-15 -16 -38 -16h-56l177 244q13 17 25.5 24.5t35.5 7.5h93z" /> +<glyph unicode="þ" horiz-adv-x="1042" d="M60 -360l227 1850h95l-100 -814q40 80 89 146t103.5 113t114 73t121.5 26q67 0 117 -25.5t83.5 -72t51 -113t17.5 -148.5q0 -79 -16.5 -160.5t-46.5 -157.5t-73.5 -144t-99 -118t-121.5 -79t-140 -29q-83 0 -153 36.5t-114 109.5l-55 -454q-2 -17 -14 -28t-29 -11h-57z M678 955q-58 0 -117 -32.5t-114 -92.5t-102.5 -144t-84.5 -186l-36 -291q23 -40 51 -67.5t60 -45t66 -25.5t70 -8q65 0 120.5 26.5t101 71.5t81.5 105t60 126.5t37 136.5t13 137q0 137 -53 213t-153 76z" /> +<glyph unicode="ÿ" horiz-adv-x="924" d="M257 -332q-14 -29 -42 -28h-69l215 398l-273 981h76q14 0 20.5 -6.5t10.5 -18.5l215 -792q4 -15 5.5 -30.5t3.5 -31.5q6 15 12.5 31t14.5 31l411 795q5 11 14.5 16.5t18.5 5.5h75zM471 1339q0 -16 -7.5 -31t-19 -26t-27 -18t-31.5 -7q-17 0 -32 7t-27 18t-18.5 26 t-6.5 31q0 17 6.5 32.5t18.5 27.5t26.5 18.5t32.5 6.5q16 0 31.5 -6.5t27 -18.5t19 -27.5t7.5 -32.5zM821 1339q0 -16 -7 -31t-18.5 -26t-27 -18t-31.5 -7q-17 0 -32.5 7t-27 18t-18 26t-6.5 31q0 35 24.5 60t59.5 25q16 0 31.5 -6.5t27 -18.5t18.5 -27.5t7 -32.5z" /> +<glyph unicode="ı" horiz-adv-x="465" d="M342 1019l-124 -1019h-95l124 1019h95z" /> +<glyph unicode="Œ" horiz-adv-x="2097" d="M2097 1449l-9 -84h-694l-73 -591h575l-9 -82h-576l-74 -608h693l-11 -84h-785l40 326q-44 -80 -102 -143t-128 -106.5t-150 -66.5t-168 -23q-114 0 -204.5 44.5t-154.5 125.5t-98.5 194.5t-34.5 251.5q0 194 52 352.5t142.5 271.5t213 175.5t264.5 62.5q89 0 163 -27 t132.5 -76.5t100 -121t65.5 -159.5l45 368h785zM1217 844q0 123 -28.5 222t-81 169.5t-128.5 108.5t-171 38q-122 0 -226.5 -54.5t-180.5 -156t-119.5 -245t-43.5 -320.5q0 -123 28.5 -222t81.5 -169.5t129 -107.5t170 -37q123 0 227.5 54t180 154.5t119 244t43.5 321.5z " /> +<glyph unicode="œ" horiz-adv-x="1566" d="M1254 1035q62 0 112 -16.5t85 -45.5t53 -69.5t18 -89.5q0 -38 -11.5 -73.5t-40 -68.5t-76.5 -61.5t-121.5 -53.5t-175 -44.5t-235.5 -34.5q-1 -12 -1 -24v-24q0 -176 71.5 -270.5t194.5 -94.5q54 0 98 11.5t78.5 30t61 39t47 39t35 30t26.5 11.5t21 -10l23 -27 q-49 -52 -96.5 -90.5t-96.5 -63.5t-102 -36.5t-112 -11.5q-124 0 -205.5 78t-107.5 225q-32 -71 -75.5 -127.5t-97.5 -95t-118.5 -59.5t-136.5 -21q-81 0 -140.5 29.5t-98 79t-57 114.5t-18.5 136q0 165 39.5 293t108.5 216t162.5 134t200.5 46q123 0 197.5 -70t97.5 -190 q59 121 159.5 190.5t233.5 69.5zM392 61q73 0 131.5 26t103 70t76 102.5t52 124.5t30 135t9.5 133q0 69 -14.5 126t-44 97t-74.5 62t-105 22q-92 0 -167 -43t-128 -121.5t-81.5 -190.5t-28.5 -252q0 -55 12.5 -107t41 -93t74.5 -66t113 -25zM1241 964q-74 0 -137 -30 t-111.5 -84.5t-80.5 -133t-45 -175.5q178 20 290.5 50t175.5 65t86 75t23 80q0 31 -12 58.5t-36.5 48.5t-62.5 33.5t-90 12.5z" /> +<glyph unicode="Ÿ" horiz-adv-x="1133" d="M630 597l-75 -597h-101l74 598l-390 851h90q14 0 22 -7t13 -19l306 -684q8 -17 12.5 -34t7.5 -33q8 17 17 33.5t21 33.5l475 684q7 11 16 18.5t24 7.5h85zM616 1705q0 -32 -24 -54.5t-55 -22.5t-54.5 22.5t-23.5 54.5q0 33 23.5 56t54.5 23q32 0 55.5 -23t23.5 -56z M959 1705q0 -32 -23.5 -54.5t-54.5 -22.5q-32 0 -55 22.5t-23 54.5q0 33 23 56t55 23t55 -23t23 -56z" /> +<glyph unicode="ˆ" horiz-adv-x="552" d="M608 1197h-62q-15 0 -25 12l-126 168l-8 13l-11 -13l-168 -168q-5 -5 -12.5 -8.5t-15.5 -3.5h-66l236 252h85z" /> +<glyph unicode="˚" horiz-adv-x="552" d="M203 1333q0 37 13.5 68t38 53t56.5 34.5t68 12.5t68 -12.5t56 -34.5t38.5 -53t14.5 -68t-14.5 -67t-38.5 -52.5t-56 -35t-68 -12.5t-68 12.5t-56.5 35t-38 52.5t-13.5 67zM262 1333q0 -51 33 -83.5t85 -32.5q51 0 84 32.5t33 83.5t-33 84t-84 33q-52 0 -85 -33t-33 -84z " /> +<glyph unicode="˜" horiz-adv-x="552" d="M483 1310q41 0 64.5 28t31.5 76h58q-4 -37 -17 -68.5t-33.5 -55t-48 -37t-60.5 -13.5q-32 0 -57 17t-48 37.5t-45 37.5t-46 17q-39 0 -63.5 -30t-32.5 -76h-59q4 37 18 69.5t35 55.5t48 36t60 13q32 0 57.5 -17t48 -37t43.5 -36.5t46 -16.5z" /> +<glyph unicode=" " horiz-adv-x="916" /> +<glyph unicode=" " horiz-adv-x="1832" /> +<glyph unicode=" " horiz-adv-x="916" /> +<glyph unicode=" " horiz-adv-x="1832" /> +<glyph unicode=" " horiz-adv-x="610" /> +<glyph unicode=" " horiz-adv-x="458" /> +<glyph unicode=" " horiz-adv-x="305" /> +<glyph unicode=" " horiz-adv-x="305" /> +<glyph unicode=" " horiz-adv-x="229" /> +<glyph unicode=" " horiz-adv-x="366" /> +<glyph unicode=" " horiz-adv-x="101" /> +<glyph unicode="‐" horiz-adv-x="626" d="M113 647h438l-9 -80h-441z" /> +<glyph unicode="‑" horiz-adv-x="626" d="M113 647h438l-9 -80h-441z" /> +<glyph unicode="‒" horiz-adv-x="626" d="M113 647h438l-9 -80h-441z" /> +<glyph unicode="–" horiz-adv-x="1020" d="M155 627h742l-8 -71h-743z" /> +<glyph unicode="—" horiz-adv-x="1502" d="M155 627h1223l-9 -71h-1223z" /> +<glyph unicode="‘" horiz-adv-x="374" d="M232 1084q-24 56 -23 117q0 90 47 172t121 150l23 -17q6 -5 7 -12q0 -5 -3 -10t-11 -14q-42 -50 -71.5 -110.5t-29.5 -124.5q0 -48 19 -91q2 -4 2 -11q0 -16 -17 -23z" /> +<glyph unicode="’" horiz-adv-x="374" d="M333 1510q24 -56 23 -116q0 -90 -47 -172.5t-121 -149.5l-23 17q-7 5 -7 12q0 5 3 9.5t11 13.5q43 50 71.5 110.5t28.5 125.5q0 24 -4 46t-14 45q-2 4 -2 11q0 15 17 23z" /> +<glyph unicode="‚" horiz-adv-x="398" d="M188 178q24 -56 24 -117q0 -90 -47 -172.5t-121 -148.5l-24 16q-7 5 -7 13q0 5 3 9.5t12 13.5q43 50 71.5 110.5t28.5 125.5q0 24 -4 46t-14 45q-2 4 -2 11q0 15 17 23z" /> +<glyph unicode="“" horiz-adv-x="629" d="M232 1084q-24 56 -23 117q0 90 47 172t121 150l23 -17q6 -5 7 -12q0 -5 -3 -10t-11 -14q-42 -50 -71.5 -110.5t-29.5 -124.5q0 -48 19 -91q2 -4 2 -11q0 -16 -17 -23zM488 1084q-24 56 -23 117q0 90 47 172t121 150l23 -17q6 -5 7 -12q0 -5 -3 -10t-11 -14 q-42 -50 -71.5 -110.5t-29.5 -124.5q0 -48 19 -91q2 -4 2 -11q0 -16 -17 -23z" /> +<glyph unicode="”" horiz-adv-x="629" d="M348 1510q24 -56 24 -116q0 -90 -47 -172.5t-121 -149.5l-24 17q-7 5 -7 12q0 5 3 9.5t11 13.5q43 50 72 110.5t29 125.5q0 24 -4 46t-15 45q-2 4 -2 11q0 15 18 23zM604 1510q24 -56 24 -116q0 -90 -47 -172.5t-121 -149.5l-24 17q-7 5 -7 12q0 5 3 9.5t11 13.5 q43 50 72 110.5t29 125.5q0 24 -4 46t-15 45q-2 4 -2 11q0 15 18 23z" /> +<glyph unicode="„" horiz-adv-x="629" d="M127 178q24 -56 24 -117q0 -90 -47.5 -172.5t-120.5 -148.5l-24 16q-7 5 -7 13q0 5 3 9.5t11 13.5q43 50 72 110.5t29 125.5q0 24 -4.5 46t-14.5 45q-2 4 -2 11q0 15 17 23zM383 178q24 -56 24 -117q0 -90 -47.5 -172.5t-120.5 -148.5l-24 16q-7 5 -7 13q0 5 3 9.5 t11 13.5q43 50 72 110.5t29 125.5q0 24 -4.5 46t-14.5 45q-2 4 -2 11q0 15 17 23z" /> +<glyph unicode="•" d="M321 610q0 62 23.5 117.5t64.5 97t94.5 65t114.5 23.5q62 0 118 -23.5t96.5 -65t64.5 -96.5t24 -118q0 -61 -24 -115t-64.5 -95t-96 -64.5t-118.5 -23.5q-61 0 -114.5 23.5t-94.5 64.5t-64.5 95t-23.5 115z" /> +<glyph unicode="…" horiz-adv-x="1409" d="M59 79q0 19 7.5 36.5t20 30.5t29.5 20.5t38 7.5q19 0 37 -7.5t30.5 -20.5t20.5 -30.5t8 -36.5q0 -40 -28 -67t-68 -27t-67.5 27t-27.5 67zM562 79q0 19 7.5 36.5t20 30.5t29.5 20.5t37 7.5q19 0 37 -7.5t30.5 -20.5t20.5 -30.5t8 -36.5q0 -20 -8 -37t-20.5 -30t-30 -20 t-37.5 -7q-40 0 -67 27t-27 67zM1064 79q0 19 7 36.5t20 30.5t30 20.5t37 7.5q19 0 37 -7.5t31 -20.5t20.5 -30.5t7.5 -36.5q0 -40 -28 -67t-68 -27t-67 27t-27 67z" /> +<glyph unicode=" " horiz-adv-x="366" /> +<glyph unicode="‹" horiz-adv-x="594" d="M150 525l2 13l275 387l29 -15q13 -8 13 -21q0 -12 -11 -27l-207 -302q-17 -22 -27 -29q9 -8 19 -28l134 -302q5 -12 5 -20q0 -19 -20 -28l-32 -16z" /> +<glyph unicode="›" horiz-adv-x="594" d="M172 137l-28 16q-14 8 -14 21q0 12 9 27l210 302q12 19 24 28q-8 6 -18 29l-135 302q-4 8 -4 17q0 22 21 31l31 15l179 -387l-1 -13z" /> +<glyph unicode=" " horiz-adv-x="458" /> +<glyph unicode="€" d="M78 883h162q31 136 88.5 243.5t138.5 182.5t182.5 115t217.5 40q66 0 120 -11.5t98.5 -34t82 -56t70.5 -76.5l-38 -37q-5 -5 -8.5 -7.5t-11.5 -2.5t-18.5 11t-26 26.5t-38 34t-55 34.5t-77 26.5t-104.5 10.5q-97 0 -181 -32.5t-151.5 -96.5t-117 -157.5t-76.5 -212.5h628 l-4 -30q-2 -11 -10 -20t-25 -9h-600q-7 -43 -11.5 -88t-6.5 -94h534l-3 -30q-2 -12 -11.5 -20t-24.5 -8h-496q0 -125 26.5 -221.5t76.5 -162t121.5 -99.5t162.5 -34q63 0 114 12t90.5 31t69 41t50.5 41t35.5 31.5t23.5 12.5q8 0 17 -10l32 -33q-42 -47 -90 -85.5t-103 -66 t-118.5 -42t-135.5 -14.5q-113 0 -200.5 41.5t-147.5 119t-90.5 188.5t-30.5 250h-166l6 58h161q2 48 6 93.5t12 88.5h-155z" /> +<glyph unicode="™" horiz-adv-x="1344" d="M980 1061q2 -8 4 -15t4 -15q3 8 7 15t10 15l243 375q5 8 10.5 10.5t15.5 2.5h55l-71 -589h-61l55 457l10 40l-251 -387q-9 -15 -27 -16h-10q-15 0 -23 16l-160 389v-42l-57 -457h-61l71 589h57q10 0 15 -2.5t8 -10.5zM628 1449l-7 -59h-187l-64 -530h-71l65 530h-188 l8 59h444z" /> +<glyph unicode="◼" horiz-adv-x="1018" d="M0 1019h1019v-1019h-1019v1019z" /> +<glyph horiz-adv-x="552" d="M237 1812q24 0 34.5 -4.5t21.5 -17.5l187 -211h-74q-12 0 -19.5 3.5t-16.5 11.5l-244 218h111z" /> +<glyph horiz-adv-x="552" d="M315 1705q0 -32 -24 -54.5t-55 -22.5t-54.5 22.5t-23.5 54.5q0 33 23.5 56t54.5 23q32 0 55.5 -23t23.5 -56zM658 1705q0 -32 -23.5 -54.5t-54.5 -22.5q-32 0 -55 22.5t-23 54.5q0 33 23 56t55 23t55 -23t23 -56z" /> +<glyph horiz-adv-x="552" d="M720 1812l-298 -218q-11 -8 -19.5 -11.5t-20.5 -3.5h-75l240 211q14 13 26 17.5t35 4.5h112z" /> +<glyph horiz-adv-x="552" d="M666 1579h-73q-7 0 -16 2.5t-14 7.5l-137 134q-2 2 -4 4.5t-3 4.5q-3 -5 -8 -9l-171 -134q-7 -5 -16.5 -7.5t-17.5 -2.5h-73l247 204h89z" /> +<glyph horiz-adv-x="552" d="M232 1669q0 35 14 65t37 51.5t54 34t65 12.5q35 0 67 -12.5t55 -34t36.5 -51.5t13.5 -65q0 -36 -13.5 -65.5t-36.5 -51t-55 -33.5t-67 -12t-65.5 12t-53.5 33.5t-37 51t-14 65.5zM287 1669q0 -51 32 -84t84 -33q51 0 84 33t33 84t-32.5 84t-84.5 33t-84 -33t-32 -84z" /> +<glyph horiz-adv-x="552" d="M530 1654q39 0 63 28t32 72h53q-5 -35 -17 -65.5t-31.5 -53t-46 -35.5t-59.5 -13q-32 0 -58 16.5t-50 36t-47 36t-47 16.5q-39 0 -63.5 -29.5t-30.5 -72.5h-56q4 35 17 66t33 53.5t46.5 35t59.5 12.5q32 0 58.5 -16.5t50 -35t46 -35t47.5 -16.5z" /> +<hkern u1=""" u2="›" k="138" /> +<hkern u1=""" u2="‹" k="138" /> +<hkern u1=""" u2="…" k="154" /> +<hkern u1=""" u2="•" k="138" /> +<hkern u1=""" u2="„" k="154" /> +<hkern u1=""" u2="‚" k="154" /> +<hkern u1=""" u2="—" k="138" /> +<hkern u1=""" u2="–" k="138" /> +<hkern u1=""" u2="Ÿ" k="-48" /> +<hkern u1=""" u2="œ" k="87" /> +<hkern u1=""" u2="ø" k="87" /> +<hkern u1=""" u2="ö" k="87" /> +<hkern u1=""" u2="õ" k="87" /> +<hkern u1=""" u2="ô" k="87" /> +<hkern u1=""" u2="ó" k="87" /> +<hkern u1=""" u2="ò" k="87" /> +<hkern u1=""" u2="ð" k="87" /> +<hkern u1=""" u2="ë" k="87" /> +<hkern u1=""" u2="ê" k="87" /> +<hkern u1=""" u2="é" k="87" /> +<hkern u1=""" u2="è" k="87" /> +<hkern u1=""" u2="ç" k="87" /> +<hkern u1=""" u2="æ" k="87" /> +<hkern u1=""" u2="å" k="87" /> +<hkern u1=""" u2="ä" k="87" /> +<hkern u1=""" u2="ã" k="87" /> +<hkern u1=""" u2="â" k="87" /> +<hkern u1=""" u2="á" k="87" /> +<hkern u1=""" u2="à" k="87" /> +<hkern u1=""" u2="Ý" k="-48" /> +<hkern u1=""" u2="Æ" k="169" /> +<hkern u1=""" u2="Å" k="169" /> +<hkern u1=""" u2="Ä" k="169" /> +<hkern u1=""" u2="Ã" k="169" /> +<hkern u1=""" u2="Â" k="169" /> +<hkern u1=""" u2="Á" k="169" /> +<hkern u1=""" u2="À" k="169" /> +<hkern u1=""" u2="»" k="138" /> +<hkern u1=""" u2="·" k="138" /> +<hkern u1=""" u2="­" k="138" /> +<hkern u1=""" u2="«" k="138" /> +<hkern u1=""" u2="q" k="87" /> +<hkern u1=""" u2="o" k="87" /> +<hkern u1=""" u2="e" k="87" /> +<hkern u1=""" u2="d" k="87" /> +<hkern u1=""" u2="c" k="87" /> +<hkern u1=""" u2="a" k="87" /> +<hkern u1=""" u2="\" k="-63" /> +<hkern u1=""" u2="Y" k="-48" /> +<hkern u1=""" u2="W" k="-67" /> +<hkern u1=""" u2="V" k="-63" /> +<hkern u1=""" u2="A" k="169" /> +<hkern u1=""" u2="/" k="169" /> +<hkern u1=""" u2="." k="154" /> +<hkern u1=""" u2="-" k="138" /> +<hkern u1=""" u2="," k="154" /> +<hkern u1=""" u2="&" k="169" /> +<hkern u1="'" u2="›" k="138" /> +<hkern u1="'" u2="‹" k="138" /> +<hkern u1="'" u2="…" k="154" /> +<hkern u1="'" u2="•" k="138" /> +<hkern u1="'" u2="„" k="154" /> +<hkern u1="'" u2="‚" k="154" /> +<hkern u1="'" u2="—" k="138" /> +<hkern u1="'" u2="–" k="138" /> +<hkern u1="'" u2="Ÿ" k="-48" /> +<hkern u1="'" u2="œ" k="87" /> +<hkern u1="'" u2="ø" k="87" /> +<hkern u1="'" u2="ö" k="87" /> +<hkern u1="'" u2="õ" k="87" /> +<hkern u1="'" u2="ô" k="87" /> +<hkern u1="'" u2="ó" k="87" /> +<hkern u1="'" u2="ò" k="87" /> +<hkern u1="'" u2="ð" k="87" /> +<hkern u1="'" u2="ë" k="87" /> +<hkern u1="'" u2="ê" k="87" /> +<hkern u1="'" u2="é" k="87" /> +<hkern u1="'" u2="è" k="87" /> +<hkern u1="'" u2="ç" k="87" /> +<hkern u1="'" u2="æ" k="87" /> +<hkern u1="'" u2="å" k="87" /> +<hkern u1="'" u2="ä" k="87" /> +<hkern u1="'" u2="ã" k="87" /> +<hkern u1="'" u2="â" k="87" /> +<hkern u1="'" u2="á" k="87" /> +<hkern u1="'" u2="à" k="87" /> +<hkern u1="'" u2="Ý" k="-48" /> +<hkern u1="'" u2="Æ" k="169" /> +<hkern u1="'" u2="Å" k="169" /> +<hkern u1="'" u2="Ä" k="169" /> +<hkern u1="'" u2="Ã" k="169" /> +<hkern u1="'" u2="Â" k="169" /> +<hkern u1="'" u2="Á" k="169" /> +<hkern u1="'" u2="À" k="169" /> +<hkern u1="'" u2="»" k="138" /> +<hkern u1="'" u2="·" k="138" /> +<hkern u1="'" u2="­" k="138" /> +<hkern u1="'" u2="«" k="138" /> +<hkern u1="'" u2="q" k="87" /> +<hkern u1="'" u2="o" k="87" /> +<hkern u1="'" u2="e" k="87" /> +<hkern u1="'" u2="d" k="87" /> +<hkern u1="'" u2="c" k="87" /> +<hkern u1="'" u2="a" k="87" /> +<hkern u1="'" u2="\" k="-63" /> +<hkern u1="'" u2="Y" k="-48" /> +<hkern u1="'" u2="W" k="-67" /> +<hkern u1="'" u2="V" k="-63" /> +<hkern u1="'" u2="A" k="169" /> +<hkern u1="'" u2="/" k="169" /> +<hkern u1="'" u2="." k="154" /> +<hkern u1="'" u2="-" k="138" /> +<hkern u1="'" u2="," k="154" /> +<hkern u1="'" u2="&" k="169" /> +<hkern u1="(" u2="œ" k="26" /> +<hkern u1="(" u2="Œ" k="41" /> +<hkern u1="(" u2="ø" k="26" /> +<hkern u1="(" u2="ö" k="26" /> +<hkern u1="(" u2="õ" k="26" /> +<hkern u1="(" u2="ô" k="26" /> +<hkern u1="(" u2="ó" k="26" /> +<hkern u1="(" u2="ò" k="26" /> +<hkern u1="(" u2="ð" k="26" /> +<hkern u1="(" u2="ë" k="26" /> +<hkern u1="(" u2="ê" k="26" /> +<hkern u1="(" u2="é" k="26" /> +<hkern u1="(" u2="è" k="26" /> +<hkern u1="(" u2="ç" k="26" /> +<hkern u1="(" u2="æ" k="26" /> +<hkern u1="(" u2="å" k="26" /> +<hkern u1="(" u2="ä" k="26" /> +<hkern u1="(" u2="ã" k="26" /> +<hkern u1="(" u2="â" k="26" /> +<hkern u1="(" u2="á" k="26" /> +<hkern u1="(" u2="à" k="26" /> +<hkern u1="(" u2="Ø" k="41" /> +<hkern u1="(" u2="Ö" k="41" /> +<hkern u1="(" u2="Õ" k="41" /> +<hkern u1="(" u2="Ô" k="41" /> +<hkern u1="(" u2="Ó" k="41" /> +<hkern u1="(" u2="Ò" k="41" /> +<hkern u1="(" u2="Ç" k="41" /> +<hkern u1="(" u2="®" k="41" /> +<hkern u1="(" u2="©" k="41" /> +<hkern u1="(" u2="q" k="26" /> +<hkern u1="(" u2="o" k="26" /> +<hkern u1="(" u2="e" k="26" /> +<hkern u1="(" u2="d" k="26" /> +<hkern u1="(" u2="c" k="26" /> +<hkern u1="(" u2="a" k="26" /> +<hkern u1="(" u2="Q" k="41" /> +<hkern u1="(" u2="O" k="41" /> +<hkern u1="(" u2="G" k="41" /> +<hkern u1="(" u2="C" k="41" /> +<hkern u1="(" u2="@" k="41" /> +<hkern u1="*" u2="›" k="138" /> +<hkern u1="*" u2="‹" k="138" /> +<hkern u1="*" u2="…" k="154" /> +<hkern u1="*" u2="•" k="138" /> +<hkern u1="*" u2="„" k="154" /> +<hkern u1="*" u2="‚" k="154" /> +<hkern u1="*" u2="—" k="138" /> +<hkern u1="*" u2="–" k="138" /> +<hkern u1="*" u2="Ÿ" k="-48" /> +<hkern u1="*" u2="œ" k="87" /> +<hkern u1="*" u2="ø" k="87" /> +<hkern u1="*" u2="ö" k="87" /> +<hkern u1="*" u2="õ" k="87" /> +<hkern u1="*" u2="ô" k="87" /> +<hkern u1="*" u2="ó" k="87" /> +<hkern u1="*" u2="ò" k="87" /> +<hkern u1="*" u2="ð" k="87" /> +<hkern u1="*" u2="ë" k="87" /> +<hkern u1="*" u2="ê" k="87" /> +<hkern u1="*" u2="é" k="87" /> +<hkern u1="*" u2="è" k="87" /> +<hkern u1="*" u2="ç" k="87" /> +<hkern u1="*" u2="æ" k="87" /> +<hkern u1="*" u2="å" k="87" /> +<hkern u1="*" u2="ä" k="87" /> +<hkern u1="*" u2="ã" k="87" /> +<hkern u1="*" u2="â" k="87" /> +<hkern u1="*" u2="á" k="87" /> +<hkern u1="*" u2="à" k="87" /> +<hkern u1="*" u2="Ý" k="-48" /> +<hkern u1="*" u2="Æ" k="169" /> +<hkern u1="*" u2="Å" k="169" /> +<hkern u1="*" u2="Ä" k="169" /> +<hkern u1="*" u2="Ã" k="169" /> +<hkern u1="*" u2="Â" k="169" /> +<hkern u1="*" u2="Á" k="169" /> +<hkern u1="*" u2="À" k="169" /> +<hkern u1="*" u2="»" k="138" /> +<hkern u1="*" u2="·" k="138" /> +<hkern u1="*" u2="­" k="138" /> +<hkern u1="*" u2="«" k="138" /> +<hkern u1="*" u2="q" k="87" /> +<hkern u1="*" u2="o" k="87" /> +<hkern u1="*" u2="e" k="87" /> +<hkern u1="*" u2="d" k="87" /> +<hkern u1="*" u2="c" k="87" /> +<hkern u1="*" u2="a" k="87" /> +<hkern u1="*" u2="\" k="-63" /> +<hkern u1="*" u2="Y" k="-48" /> +<hkern u1="*" u2="W" k="-67" /> +<hkern u1="*" u2="V" k="-63" /> +<hkern u1="*" u2="A" k="169" /> +<hkern u1="*" u2="/" k="169" /> +<hkern u1="*" u2="." k="154" /> +<hkern u1="*" u2="-" k="138" /> +<hkern u1="*" u2="," k="154" /> +<hkern u1="*" u2="&" k="169" /> +<hkern u1="," u2="›" k="187" /> +<hkern u1="," u2="‹" k="187" /> +<hkern u1="," u2="•" k="187" /> +<hkern u1="," u2="”" k="200" /> +<hkern u1="," u2="“" k="200" /> +<hkern u1="," u2="’" k="200" /> +<hkern u1="," u2="‘" k="200" /> +<hkern u1="," u2="—" k="187" /> +<hkern u1="," u2="–" k="187" /> +<hkern u1="," u2="Ÿ" k="160" /> +<hkern u1="," u2="Œ" k="59" /> +<hkern u1="," u2="ÿ" k="133" /> +<hkern u1="," u2="ý" k="133" /> +<hkern u1="," u2="Ý" k="160" /> +<hkern u1="," u2="Ø" k="59" /> +<hkern u1="," u2="Ö" k="59" /> +<hkern u1="," u2="Õ" k="59" /> +<hkern u1="," u2="Ô" k="59" /> +<hkern u1="," u2="Ó" k="59" /> +<hkern u1="," u2="Ò" k="59" /> +<hkern u1="," u2="Ç" k="59" /> +<hkern u1="," u2="»" k="187" /> +<hkern u1="," u2="º" k="200" /> +<hkern u1="," u2="·" k="187" /> +<hkern u1="," u2="°" k="200" /> +<hkern u1="," u2="®" k="59" /> +<hkern u1="," u2="­" k="187" /> +<hkern u1="," u2="«" k="187" /> +<hkern u1="," u2="ª" k="200" /> +<hkern u1="," u2="©" k="59" /> +<hkern u1="," u2="y" k="118" /> +<hkern u1="," u2="w" k="56" /> +<hkern u1="," u2="v" k="133" /> +<hkern u1="," u2="\" k="200" /> +<hkern u1="," u2="Y" k="160" /> +<hkern u1="," u2="W" k="151" /> +<hkern u1="," u2="V" k="200" /> +<hkern u1="," u2="T" k="196" /> +<hkern u1="," u2="Q" k="59" /> +<hkern u1="," u2="O" k="59" /> +<hkern u1="," u2="G" k="59" /> +<hkern u1="," u2="C" k="59" /> +<hkern u1="," u2="@" k="59" /> +<hkern u1="," u2="-" k="187" /> +<hkern u1="," u2="*" k="200" /> +<hkern u1="," u2="'" k="200" /> +<hkern u1="," u2=""" k="200" /> +<hkern u1="-" u2="…" k="154" /> +<hkern u1="-" u2="„" k="154" /> +<hkern u1="-" u2="”" k="138" /> +<hkern u1="-" u2="“" k="138" /> +<hkern u1="-" u2="‚" k="154" /> +<hkern u1="-" u2="’" k="138" /> +<hkern u1="-" u2="‘" k="138" /> +<hkern u1="-" u2="Ÿ" k="179" /> +<hkern u1="-" u2="Ý" k="179" /> +<hkern u1="-" u2="Æ" k="36" /> +<hkern u1="-" u2="Å" k="36" /> +<hkern u1="-" u2="Ä" k="36" /> +<hkern u1="-" u2="Ã" k="36" /> +<hkern u1="-" u2="Â" k="36" /> +<hkern u1="-" u2="Á" k="36" /> +<hkern u1="-" u2="À" k="36" /> +<hkern u1="-" u2="º" k="138" /> +<hkern u1="-" u2="°" k="138" /> +<hkern u1="-" u2="ª" k="138" /> +<hkern u1="-" u2="\" k="113" /> +<hkern u1="-" u2="Z" k="54" /> +<hkern u1="-" u2="Y" k="179" /> +<hkern u1="-" u2="X" k="72" /> +<hkern u1="-" u2="V" k="113" /> +<hkern u1="-" u2="T" k="189" /> +<hkern u1="-" u2="A" k="36" /> +<hkern u1="-" u2="/" k="36" /> +<hkern u1="-" u2="." k="154" /> +<hkern u1="-" u2="," k="154" /> +<hkern u1="-" u2="*" k="138" /> +<hkern u1="-" u2="'" k="138" /> +<hkern u1="-" u2="&" k="36" /> +<hkern u1="-" u2=""" k="138" /> +<hkern u1="." u2="›" k="187" /> +<hkern u1="." u2="‹" k="187" /> +<hkern u1="." u2="•" k="187" /> +<hkern u1="." u2="”" k="200" /> +<hkern u1="." u2="“" k="200" /> +<hkern u1="." u2="’" k="200" /> +<hkern u1="." u2="‘" k="200" /> +<hkern u1="." u2="—" k="187" /> +<hkern u1="." u2="–" k="187" /> +<hkern u1="." u2="Ÿ" k="160" /> +<hkern u1="." u2="Œ" k="59" /> +<hkern u1="." u2="ÿ" k="133" /> +<hkern u1="." u2="ý" k="133" /> +<hkern u1="." u2="Ý" k="160" /> +<hkern u1="." u2="Ø" k="59" /> +<hkern u1="." u2="Ö" k="59" /> +<hkern u1="." u2="Õ" k="59" /> +<hkern u1="." u2="Ô" k="59" /> +<hkern u1="." u2="Ó" k="59" /> +<hkern u1="." u2="Ò" k="59" /> +<hkern u1="." u2="Ç" k="59" /> +<hkern u1="." u2="»" k="187" /> +<hkern u1="." u2="º" k="200" /> +<hkern u1="." u2="·" k="187" /> +<hkern u1="." u2="°" k="200" /> +<hkern u1="." u2="®" k="59" /> +<hkern u1="." u2="­" k="187" /> +<hkern u1="." u2="«" k="187" /> +<hkern u1="." u2="ª" k="200" /> +<hkern u1="." u2="©" k="59" /> +<hkern u1="." u2="y" k="118" /> +<hkern u1="." u2="w" k="56" /> +<hkern u1="." u2="v" k="133" /> +<hkern u1="." u2="\" k="200" /> +<hkern u1="." u2="Y" k="160" /> +<hkern u1="." u2="W" k="151" /> +<hkern u1="." u2="V" k="200" /> +<hkern u1="." u2="T" k="196" /> +<hkern u1="." u2="Q" k="59" /> +<hkern u1="." u2="O" k="59" /> +<hkern u1="." u2="G" k="59" /> +<hkern u1="." u2="C" k="59" /> +<hkern u1="." u2="@" k="59" /> +<hkern u1="." u2="-" k="187" /> +<hkern u1="." u2="*" k="200" /> +<hkern u1="." u2="'" k="200" /> +<hkern u1="." u2=""" k="200" /> +<hkern u1="/" u2="›" k="113" /> +<hkern u1="/" u2="‹" k="113" /> +<hkern u1="/" u2="…" k="189" /> +<hkern u1="/" u2="•" k="113" /> +<hkern u1="/" u2="„" k="189" /> +<hkern u1="/" u2="”" k="-63" /> +<hkern u1="/" u2="“" k="-63" /> +<hkern u1="/" u2="‚" k="189" /> +<hkern u1="/" u2="’" k="-63" /> +<hkern u1="/" u2="‘" k="-63" /> +<hkern u1="/" u2="—" k="113" /> +<hkern u1="/" u2="–" k="113" /> +<hkern u1="/" u2="œ" k="105" /> +<hkern u1="/" u2="Œ" k="41" /> +<hkern u1="/" u2="ÿ" k="29" /> +<hkern u1="/" u2="ý" k="29" /> +<hkern u1="/" u2="ü" k="85" /> +<hkern u1="/" u2="û" k="85" /> +<hkern u1="/" u2="ú" k="85" /> +<hkern u1="/" u2="ù" k="85" /> +<hkern u1="/" u2="ø" k="105" /> +<hkern u1="/" u2="ö" k="105" /> +<hkern u1="/" u2="õ" k="105" /> +<hkern u1="/" u2="ô" k="105" /> +<hkern u1="/" u2="ó" k="105" /> +<hkern u1="/" u2="ò" k="105" /> +<hkern u1="/" u2="ñ" k="85" /> +<hkern u1="/" u2="ð" k="105" /> +<hkern u1="/" u2="ë" k="105" /> +<hkern u1="/" u2="ê" k="105" /> +<hkern u1="/" u2="é" k="105" /> +<hkern u1="/" u2="è" k="105" /> +<hkern u1="/" u2="ç" k="105" /> +<hkern u1="/" u2="æ" k="105" /> +<hkern u1="/" u2="å" k="105" /> +<hkern u1="/" u2="ä" k="105" /> +<hkern u1="/" u2="ã" k="105" /> +<hkern u1="/" u2="â" k="105" /> +<hkern u1="/" u2="á" k="105" /> +<hkern u1="/" u2="à" k="105" /> +<hkern u1="/" u2="Ø" k="41" /> +<hkern u1="/" u2="Ö" k="41" /> +<hkern u1="/" u2="Õ" k="41" /> +<hkern u1="/" u2="Ô" k="41" /> +<hkern u1="/" u2="Ó" k="41" /> +<hkern u1="/" u2="Ò" k="41" /> +<hkern u1="/" u2="Ç" k="41" /> +<hkern u1="/" u2="Æ" k="87" /> +<hkern u1="/" u2="Å" k="87" /> +<hkern u1="/" u2="Ä" k="87" /> +<hkern u1="/" u2="Ã" k="87" /> +<hkern u1="/" u2="Â" k="87" /> +<hkern u1="/" u2="Á" k="87" /> +<hkern u1="/" u2="À" k="87" /> +<hkern u1="/" u2="»" k="113" /> +<hkern u1="/" u2="º" k="-63" /> +<hkern u1="/" u2="¹" k="-82" /> +<hkern u1="/" u2="·" k="113" /> +<hkern u1="/" u2="µ" k="85" /> +<hkern u1="/" u2="³" k="-82" /> +<hkern u1="/" u2="²" k="-82" /> +<hkern u1="/" u2="°" k="-63" /> +<hkern u1="/" u2="®" k="41" /> +<hkern u1="/" u2="­" k="113" /> +<hkern u1="/" u2="«" k="113" /> +<hkern u1="/" u2="ª" k="-63" /> +<hkern u1="/" u2="©" k="41" /> +<hkern u1="/" u2="z" k="56" /> +<hkern u1="/" u2="y" k="29" /> +<hkern u1="/" u2="w" k="29" /> +<hkern u1="/" u2="v" k="29" /> +<hkern u1="/" u2="u" k="85" /> +<hkern u1="/" u2="s" k="97" /> +<hkern u1="/" u2="r" k="85" /> +<hkern u1="/" u2="q" k="105" /> +<hkern u1="/" u2="p" k="85" /> +<hkern u1="/" u2="o" k="105" /> +<hkern u1="/" u2="n" k="85" /> +<hkern u1="/" u2="m" k="85" /> +<hkern u1="/" u2="e" k="105" /> +<hkern u1="/" u2="d" k="105" /> +<hkern u1="/" u2="c" k="105" /> +<hkern u1="/" u2="a" k="105" /> +<hkern u1="/" u2="Q" k="41" /> +<hkern u1="/" u2="O" k="41" /> +<hkern u1="/" u2="J" k="148" /> +<hkern u1="/" u2="G" k="41" /> +<hkern u1="/" u2="C" k="41" /> +<hkern u1="/" u2="A" k="87" /> +<hkern u1="/" u2="@" k="41" /> +<hkern u1="/" u2="?" k="-72" /> +<hkern u1="/" u2=";" k="85" /> +<hkern u1="/" u2=":" k="85" /> +<hkern u1="/" u2="/" k="87" /> +<hkern u1="/" u2="." k="189" /> +<hkern u1="/" u2="-" k="113" /> +<hkern u1="/" u2="," k="189" /> +<hkern u1="/" u2="*" k="-63" /> +<hkern u1="/" u2="'" k="-63" /> +<hkern u1="/" u2="&" k="87" /> +<hkern u1="/" u2=""" k="-63" /> +<hkern u1="@" u2="”" k="59" /> +<hkern u1="@" u2="“" k="59" /> +<hkern u1="@" u2="’" k="59" /> +<hkern u1="@" u2="‘" k="59" /> +<hkern u1="@" u2="Ÿ" k="82" /> +<hkern u1="@" u2="Ý" k="82" /> +<hkern u1="@" u2="Æ" k="29" /> +<hkern u1="@" u2="Å" k="29" /> +<hkern u1="@" u2="Ä" k="29" /> +<hkern u1="@" u2="Ã" k="29" /> +<hkern u1="@" u2="Â" k="29" /> +<hkern u1="@" u2="Á" k="29" /> +<hkern u1="@" u2="À" k="29" /> +<hkern u1="@" u2="º" k="59" /> +<hkern u1="@" u2="°" k="59" /> +<hkern u1="@" u2="ª" k="59" /> +<hkern u1="@" u2="}" k="41" /> +<hkern u1="@" u2="]" k="41" /> +<hkern u1="@" u2="\" k="46" /> +<hkern u1="@" u2="Z" k="77" /> +<hkern u1="@" u2="Y" k="82" /> +<hkern u1="@" u2="X" k="49" /> +<hkern u1="@" u2="V" k="46" /> +<hkern u1="@" u2="T" k="123" /> +<hkern u1="@" u2="A" k="29" /> +<hkern u1="@" u2="/" k="29" /> +<hkern u1="@" u2="*" k="59" /> +<hkern u1="@" u2=")" k="41" /> +<hkern u1="@" u2="'" k="59" /> +<hkern u1="@" u2="&" k="29" /> +<hkern u1="@" u2=""" k="59" /> +<hkern u1="A" u2="›" k="36" /> +<hkern u1="A" u2="‹" k="36" /> +<hkern u1="A" u2="•" k="36" /> +<hkern u1="A" u2="”" k="174" /> +<hkern u1="A" u2="“" k="174" /> +<hkern u1="A" u2="’" k="174" /> +<hkern u1="A" u2="‘" k="174" /> +<hkern u1="A" u2="—" k="36" /> +<hkern u1="A" u2="–" k="36" /> +<hkern u1="A" u2="Ÿ" k="138" /> +<hkern u1="A" u2="Œ" k="34" /> +<hkern u1="A" u2="ÿ" k="34" /> +<hkern u1="A" u2="ý" k="34" /> +<hkern u1="A" u2="Ý" k="138" /> +<hkern u1="A" u2="Ü" k="41" /> +<hkern u1="A" u2="Û" k="41" /> +<hkern u1="A" u2="Ú" k="41" /> +<hkern u1="A" u2="Ù" k="41" /> +<hkern u1="A" u2="Ø" k="34" /> +<hkern u1="A" u2="Ö" k="34" /> +<hkern u1="A" u2="Õ" k="34" /> +<hkern u1="A" u2="Ô" k="34" /> +<hkern u1="A" u2="Ó" k="34" /> +<hkern u1="A" u2="Ò" k="34" /> +<hkern u1="A" u2="Ç" k="34" /> +<hkern u1="A" u2="»" k="36" /> +<hkern u1="A" u2="º" k="174" /> +<hkern u1="A" u2="¹" k="164" /> +<hkern u1="A" u2="·" k="36" /> +<hkern u1="A" u2="³" k="164" /> +<hkern u1="A" u2="²" k="164" /> +<hkern u1="A" u2="°" k="174" /> +<hkern u1="A" u2="®" k="34" /> +<hkern u1="A" u2="­" k="36" /> +<hkern u1="A" u2="«" k="36" /> +<hkern u1="A" u2="ª" k="174" /> +<hkern u1="A" u2="©" k="34" /> +<hkern u1="A" u2="y" k="34" /> +<hkern u1="A" u2="w" k="15" /> +<hkern u1="A" u2="v" k="34" /> +<hkern u1="A" u2="t" k="44" /> +<hkern u1="A" u2="\" k="87" /> +<hkern u1="A" u2="Y" k="138" /> +<hkern u1="A" u2="W" k="61" /> +<hkern u1="A" u2="V" k="87" /> +<hkern u1="A" u2="U" k="41" /> +<hkern u1="A" u2="T" k="118" /> +<hkern u1="A" u2="Q" k="34" /> +<hkern u1="A" u2="O" k="34" /> +<hkern u1="A" u2="J" k="-51" /> +<hkern u1="A" u2="G" k="34" /> +<hkern u1="A" u2="C" k="34" /> +<hkern u1="A" u2="@" k="34" /> +<hkern u1="A" u2="-" k="36" /> +<hkern u1="A" u2="*" k="174" /> +<hkern u1="A" u2="'" k="174" /> +<hkern u1="A" u2=""" k="174" /> +<hkern u1="C" u2="›" k="148" /> +<hkern u1="C" u2="‹" k="148" /> +<hkern u1="C" u2="•" k="148" /> +<hkern u1="C" u2="—" k="148" /> +<hkern u1="C" u2="–" k="148" /> +<hkern u1="C" u2="»" k="148" /> +<hkern u1="C" u2="·" k="148" /> +<hkern u1="C" u2="­" k="148" /> +<hkern u1="C" u2="«" k="148" /> +<hkern u1="C" u2="-" k="148" /> +<hkern u1="D" u2="”" k="59" /> +<hkern u1="D" u2="“" k="59" /> +<hkern u1="D" u2="’" k="59" /> +<hkern u1="D" u2="‘" k="59" /> +<hkern u1="D" u2="Ÿ" k="82" /> +<hkern u1="D" u2="Ý" k="82" /> +<hkern u1="D" u2="Æ" k="29" /> +<hkern u1="D" u2="Å" k="29" /> +<hkern u1="D" u2="Ä" k="29" /> +<hkern u1="D" u2="Ã" k="29" /> +<hkern u1="D" u2="Â" k="29" /> +<hkern u1="D" u2="Á" k="29" /> +<hkern u1="D" u2="À" k="29" /> +<hkern u1="D" u2="º" k="59" /> +<hkern u1="D" u2="°" k="59" /> +<hkern u1="D" u2="ª" k="59" /> +<hkern u1="D" u2="}" k="41" /> +<hkern u1="D" u2="]" k="41" /> +<hkern u1="D" u2="\" k="46" /> +<hkern u1="D" u2="Z" k="77" /> +<hkern u1="D" u2="Y" k="82" /> +<hkern u1="D" u2="X" k="49" /> +<hkern u1="D" u2="V" k="46" /> +<hkern u1="D" u2="T" k="123" /> +<hkern u1="D" u2="A" k="29" /> +<hkern u1="D" u2="/" k="29" /> +<hkern u1="D" u2="*" k="59" /> +<hkern u1="D" u2=")" k="41" /> +<hkern u1="D" u2="'" k="59" /> +<hkern u1="D" u2="&" k="29" /> +<hkern u1="D" u2=""" k="59" /> +<hkern u1="F" u2="…" k="184" /> +<hkern u1="F" u2="„" k="184" /> +<hkern u1="F" u2="‚" k="184" /> +<hkern u1="F" u2="œ" k="77" /> +<hkern u1="F" u2="ü" k="61" /> +<hkern u1="F" u2="û" k="61" /> +<hkern u1="F" u2="ú" k="61" /> +<hkern u1="F" u2="ù" k="61" /> +<hkern u1="F" u2="ø" k="77" /> +<hkern u1="F" u2="ö" k="77" /> +<hkern u1="F" u2="õ" k="77" /> +<hkern u1="F" u2="ô" k="77" /> +<hkern u1="F" u2="ó" k="77" /> +<hkern u1="F" u2="ò" k="77" /> +<hkern u1="F" u2="ñ" k="61" /> +<hkern u1="F" u2="ð" k="77" /> +<hkern u1="F" u2="ë" k="77" /> +<hkern u1="F" u2="ê" k="77" /> +<hkern u1="F" u2="é" k="77" /> +<hkern u1="F" u2="è" k="77" /> +<hkern u1="F" u2="ç" k="77" /> +<hkern u1="F" u2="æ" k="77" /> +<hkern u1="F" u2="å" k="77" /> +<hkern u1="F" u2="ä" k="77" /> +<hkern u1="F" u2="ã" k="77" /> +<hkern u1="F" u2="â" k="77" /> +<hkern u1="F" u2="á" k="77" /> +<hkern u1="F" u2="à" k="77" /> +<hkern u1="F" u2="Æ" k="118" /> +<hkern u1="F" u2="Å" k="118" /> +<hkern u1="F" u2="Ä" k="118" /> +<hkern u1="F" u2="Ã" k="118" /> +<hkern u1="F" u2="Â" k="118" /> +<hkern u1="F" u2="Á" k="118" /> +<hkern u1="F" u2="À" k="118" /> +<hkern u1="F" u2="µ" k="61" /> +<hkern u1="F" u2="u" k="61" /> +<hkern u1="F" u2="r" k="61" /> +<hkern u1="F" u2="q" k="77" /> +<hkern u1="F" u2="p" k="61" /> +<hkern u1="F" u2="o" k="77" /> +<hkern u1="F" u2="n" k="61" /> +<hkern u1="F" u2="m" k="61" /> +<hkern u1="F" u2="e" k="77" /> +<hkern u1="F" u2="d" k="77" /> +<hkern u1="F" u2="c" k="77" /> +<hkern u1="F" u2="a" k="77" /> +<hkern u1="F" u2="J" k="215" /> +<hkern u1="F" u2="A" k="118" /> +<hkern u1="F" u2="?" k="-20" /> +<hkern u1="F" u2=";" k="61" /> +<hkern u1="F" u2=":" k="61" /> +<hkern u1="F" u2="/" k="118" /> +<hkern u1="F" u2="." k="184" /> +<hkern u1="F" u2="," k="184" /> +<hkern u1="F" u2="&" k="118" /> +<hkern u1="J" u2="Æ" k="41" /> +<hkern u1="J" u2="Å" k="41" /> +<hkern u1="J" u2="Ä" k="41" /> +<hkern u1="J" u2="Ã" k="41" /> +<hkern u1="J" u2="Â" k="41" /> +<hkern u1="J" u2="Á" k="41" /> +<hkern u1="J" u2="À" k="41" /> +<hkern u1="J" u2="A" k="41" /> +<hkern u1="J" u2="/" k="41" /> +<hkern u1="J" u2="&" k="41" /> +<hkern u1="K" u2="›" k="72" /> +<hkern u1="K" u2="‹" k="72" /> +<hkern u1="K" u2="•" k="72" /> +<hkern u1="K" u2="”" k="-26" /> +<hkern u1="K" u2="“" k="-26" /> +<hkern u1="K" u2="’" k="-26" /> +<hkern u1="K" u2="‘" k="-26" /> +<hkern u1="K" u2="—" k="72" /> +<hkern u1="K" u2="–" k="72" /> +<hkern u1="K" u2="Œ" k="92" /> +<hkern u1="K" u2="ÿ" k="51" /> +<hkern u1="K" u2="ý" k="51" /> +<hkern u1="K" u2="Ø" k="92" /> +<hkern u1="K" u2="Ö" k="92" /> +<hkern u1="K" u2="Õ" k="92" /> +<hkern u1="K" u2="Ô" k="92" /> +<hkern u1="K" u2="Ó" k="92" /> +<hkern u1="K" u2="Ò" k="92" /> +<hkern u1="K" u2="Ç" k="92" /> +<hkern u1="K" u2="»" k="72" /> +<hkern u1="K" u2="º" k="-26" /> +<hkern u1="K" u2="·" k="72" /> +<hkern u1="K" u2="°" k="-26" /> +<hkern u1="K" u2="®" k="92" /> +<hkern u1="K" u2="­" k="72" /> +<hkern u1="K" u2="«" k="72" /> +<hkern u1="K" u2="ª" k="-26" /> +<hkern u1="K" u2="©" k="92" /> +<hkern u1="K" u2="y" k="51" /> +<hkern u1="K" u2="w" k="44" /> +<hkern u1="K" u2="v" k="51" /> +<hkern u1="K" u2="t" k="97" /> +<hkern u1="K" u2="f" k="46" /> +<hkern u1="K" u2="Q" k="92" /> +<hkern u1="K" u2="O" k="92" /> +<hkern u1="K" u2="G" k="92" /> +<hkern u1="K" u2="C" k="92" /> +<hkern u1="K" u2="@" k="92" /> +<hkern u1="K" u2="-" k="72" /> +<hkern u1="K" u2="*" k="-26" /> +<hkern u1="K" u2="'" k="-26" /> +<hkern u1="K" u2=""" k="-26" /> +<hkern u1="L" u2="›" k="225" /> +<hkern u1="L" u2="‹" k="225" /> +<hkern u1="L" u2="•" k="225" /> +<hkern u1="L" u2="”" k="287" /> +<hkern u1="L" u2="“" k="287" /> +<hkern u1="L" u2="’" k="287" /> +<hkern u1="L" u2="‘" k="287" /> +<hkern u1="L" u2="—" k="225" /> +<hkern u1="L" u2="–" k="225" /> +<hkern u1="L" u2="Ÿ" k="200" /> +<hkern u1="L" u2="Œ" k="87" /> +<hkern u1="L" u2="ÿ" k="137" /> +<hkern u1="L" u2="ý" k="137" /> +<hkern u1="L" u2="Ý" k="200" /> +<hkern u1="L" u2="Ø" k="87" /> +<hkern u1="L" u2="Ö" k="87" /> +<hkern u1="L" u2="Õ" k="87" /> +<hkern u1="L" u2="Ô" k="87" /> +<hkern u1="L" u2="Ó" k="87" /> +<hkern u1="L" u2="Ò" k="87" /> +<hkern u1="L" u2="Ç" k="87" /> +<hkern u1="L" u2="»" k="225" /> +<hkern u1="L" u2="º" k="287" /> +<hkern u1="L" u2="¹" k="200" /> +<hkern u1="L" u2="·" k="225" /> +<hkern u1="L" u2="³" k="200" /> +<hkern u1="L" u2="²" k="200" /> +<hkern u1="L" u2="°" k="287" /> +<hkern u1="L" u2="®" k="87" /> +<hkern u1="L" u2="­" k="225" /> +<hkern u1="L" u2="«" k="225" /> +<hkern u1="L" u2="ª" k="287" /> +<hkern u1="L" u2="©" k="87" /> +<hkern u1="L" u2="y" k="137" /> +<hkern u1="L" u2="w" k="85" /> +<hkern u1="L" u2="v" k="137" /> +<hkern u1="L" u2="\" k="174" /> +<hkern u1="L" u2="Y" k="200" /> +<hkern u1="L" u2="W" k="138" /> +<hkern u1="L" u2="V" k="174" /> +<hkern u1="L" u2="T" k="205" /> +<hkern u1="L" u2="Q" k="87" /> +<hkern u1="L" u2="O" k="87" /> +<hkern u1="L" u2="G" k="87" /> +<hkern u1="L" u2="C" k="87" /> +<hkern u1="L" u2="@" k="87" /> +<hkern u1="L" u2="-" k="225" /> +<hkern u1="L" u2="*" k="287" /> +<hkern u1="L" u2="'" k="287" /> +<hkern u1="L" u2=""" k="287" /> +<hkern u1="O" u2="”" k="59" /> +<hkern u1="O" u2="“" k="59" /> +<hkern u1="O" u2="’" k="59" /> +<hkern u1="O" u2="‘" k="59" /> +<hkern u1="O" u2="Ÿ" k="82" /> +<hkern u1="O" u2="Ý" k="82" /> +<hkern u1="O" u2="Æ" k="29" /> +<hkern u1="O" u2="Å" k="29" /> +<hkern u1="O" u2="Ä" k="29" /> +<hkern u1="O" u2="Ã" k="29" /> +<hkern u1="O" u2="Â" k="29" /> +<hkern u1="O" u2="Á" k="29" /> +<hkern u1="O" u2="À" k="29" /> +<hkern u1="O" u2="º" k="59" /> +<hkern u1="O" u2="°" k="59" /> +<hkern u1="O" u2="ª" k="59" /> +<hkern u1="O" u2="}" k="41" /> +<hkern u1="O" u2="]" k="41" /> +<hkern u1="O" u2="\" k="46" /> +<hkern u1="O" u2="Z" k="77" /> +<hkern u1="O" u2="Y" k="82" /> +<hkern u1="O" u2="X" k="49" /> +<hkern u1="O" u2="V" k="46" /> +<hkern u1="O" u2="T" k="123" /> +<hkern u1="O" u2="A" k="29" /> +<hkern u1="O" u2="/" k="29" /> +<hkern u1="O" u2="*" k="59" /> +<hkern u1="O" u2=")" k="41" /> +<hkern u1="O" u2="'" k="59" /> +<hkern u1="O" u2="&" k="29" /> +<hkern u1="O" u2=""" k="59" /> +<hkern u1="P" u2="…" k="200" /> +<hkern u1="P" u2="„" k="200" /> +<hkern u1="P" u2="‚" k="200" /> +<hkern u1="P" u2="œ" k="31" /> +<hkern u1="P" u2="ø" k="31" /> +<hkern u1="P" u2="ö" k="31" /> +<hkern u1="P" u2="õ" k="31" /> +<hkern u1="P" u2="ô" k="31" /> +<hkern u1="P" u2="ó" k="31" /> +<hkern u1="P" u2="ò" k="31" /> +<hkern u1="P" u2="ð" k="31" /> +<hkern u1="P" u2="ë" k="31" /> +<hkern u1="P" u2="ê" k="31" /> +<hkern u1="P" u2="é" k="31" /> +<hkern u1="P" u2="è" k="31" /> +<hkern u1="P" u2="ç" k="31" /> +<hkern u1="P" u2="æ" k="31" /> +<hkern u1="P" u2="å" k="31" /> +<hkern u1="P" u2="ä" k="31" /> +<hkern u1="P" u2="ã" k="31" /> +<hkern u1="P" u2="â" k="31" /> +<hkern u1="P" u2="á" k="31" /> +<hkern u1="P" u2="à" k="31" /> +<hkern u1="P" u2="Æ" k="121" /> +<hkern u1="P" u2="Å" k="121" /> +<hkern u1="P" u2="Ä" k="121" /> +<hkern u1="P" u2="Ã" k="121" /> +<hkern u1="P" u2="Â" k="121" /> +<hkern u1="P" u2="Á" k="121" /> +<hkern u1="P" u2="À" k="121" /> +<hkern u1="P" u2="q" k="31" /> +<hkern u1="P" u2="o" k="31" /> +<hkern u1="P" u2="e" k="31" /> +<hkern u1="P" u2="d" k="31" /> +<hkern u1="P" u2="c" k="31" /> +<hkern u1="P" u2="a" k="31" /> +<hkern u1="P" u2="J" k="174" /> +<hkern u1="P" u2="A" k="121" /> +<hkern u1="P" u2="/" k="121" /> +<hkern u1="P" u2="." k="200" /> +<hkern u1="P" u2="," k="200" /> +<hkern u1="P" u2="&" k="121" /> +<hkern u1="Q" u2="”" k="59" /> +<hkern u1="Q" u2="“" k="59" /> +<hkern u1="Q" u2="’" k="59" /> +<hkern u1="Q" u2="‘" k="59" /> +<hkern u1="Q" u2="Ÿ" k="82" /> +<hkern u1="Q" u2="Ý" k="82" /> +<hkern u1="Q" u2="Æ" k="29" /> +<hkern u1="Q" u2="Å" k="29" /> +<hkern u1="Q" u2="Ä" k="29" /> +<hkern u1="Q" u2="Ã" k="29" /> +<hkern u1="Q" u2="Â" k="29" /> +<hkern u1="Q" u2="Á" k="29" /> +<hkern u1="Q" u2="À" k="29" /> +<hkern u1="Q" u2="º" k="59" /> +<hkern u1="Q" u2="°" k="59" /> +<hkern u1="Q" u2="ª" k="59" /> +<hkern u1="Q" u2="}" k="41" /> +<hkern u1="Q" u2="]" k="41" /> +<hkern u1="Q" u2="\" k="46" /> +<hkern u1="Q" u2="Z" k="77" /> +<hkern u1="Q" u2="Y" k="82" /> +<hkern u1="Q" u2="X" k="49" /> +<hkern u1="Q" u2="V" k="46" /> +<hkern u1="Q" u2="T" k="123" /> +<hkern u1="Q" u2="A" k="29" /> +<hkern u1="Q" u2="/" k="29" /> +<hkern u1="Q" u2="*" k="59" /> +<hkern u1="Q" u2=")" k="41" /> +<hkern u1="Q" u2="'" k="59" /> +<hkern u1="Q" u2="&" k="29" /> +<hkern u1="Q" u2=""" k="59" /> +<hkern u1="R" u2="Œ" k="41" /> +<hkern u1="R" u2="Ü" k="31" /> +<hkern u1="R" u2="Û" k="31" /> +<hkern u1="R" u2="Ú" k="31" /> +<hkern u1="R" u2="Ù" k="31" /> +<hkern u1="R" u2="Ø" k="41" /> +<hkern u1="R" u2="Ö" k="41" /> +<hkern u1="R" u2="Õ" k="41" /> +<hkern u1="R" u2="Ô" k="41" /> +<hkern u1="R" u2="Ó" k="41" /> +<hkern u1="R" u2="Ò" k="41" /> +<hkern u1="R" u2="Ç" k="41" /> +<hkern u1="R" u2="®" k="41" /> +<hkern u1="R" u2="©" k="41" /> +<hkern u1="R" u2="U" k="31" /> +<hkern u1="R" u2="T" k="46" /> +<hkern u1="R" u2="Q" k="41" /> +<hkern u1="R" u2="O" k="41" /> +<hkern u1="R" u2="G" k="41" /> +<hkern u1="R" u2="C" k="41" /> +<hkern u1="R" u2="@" k="41" /> +<hkern u1="T" u2="›" k="184" /> +<hkern u1="T" u2="‹" k="184" /> +<hkern u1="T" u2="…" k="184" /> +<hkern u1="T" u2="•" k="184" /> +<hkern u1="T" u2="„" k="184" /> +<hkern u1="T" u2="‚" k="184" /> +<hkern u1="T" u2="—" k="184" /> +<hkern u1="T" u2="–" k="184" /> +<hkern u1="T" u2="œ" k="220" /> +<hkern u1="T" u2="Œ" k="123" /> +<hkern u1="T" u2="ÿ" k="179" /> +<hkern u1="T" u2="ý" k="179" /> +<hkern u1="T" u2="ü" k="167" /> +<hkern u1="T" u2="û" k="167" /> +<hkern u1="T" u2="ú" k="167" /> +<hkern u1="T" u2="ù" k="167" /> +<hkern u1="T" u2="ø" k="220" /> +<hkern u1="T" u2="ö" k="220" /> +<hkern u1="T" u2="õ" k="220" /> +<hkern u1="T" u2="ô" k="220" /> +<hkern u1="T" u2="ó" k="220" /> +<hkern u1="T" u2="ò" k="220" /> +<hkern u1="T" u2="ñ" k="167" /> +<hkern u1="T" u2="ð" k="220" /> +<hkern u1="T" u2="ë" k="220" /> +<hkern u1="T" u2="ê" k="220" /> +<hkern u1="T" u2="é" k="220" /> +<hkern u1="T" u2="è" k="220" /> +<hkern u1="T" u2="ç" k="220" /> +<hkern u1="T" u2="æ" k="220" /> +<hkern u1="T" u2="å" k="220" /> +<hkern u1="T" u2="ä" k="220" /> +<hkern u1="T" u2="ã" k="220" /> +<hkern u1="T" u2="â" k="220" /> +<hkern u1="T" u2="á" k="220" /> +<hkern u1="T" u2="à" k="220" /> +<hkern u1="T" u2="Ø" k="123" /> +<hkern u1="T" u2="Ö" k="123" /> +<hkern u1="T" u2="Õ" k="123" /> +<hkern u1="T" u2="Ô" k="123" /> +<hkern u1="T" u2="Ó" k="123" /> +<hkern u1="T" u2="Ò" k="123" /> +<hkern u1="T" u2="Ç" k="123" /> +<hkern u1="T" u2="Æ" k="118" /> +<hkern u1="T" u2="Å" k="118" /> +<hkern u1="T" u2="Ä" k="118" /> +<hkern u1="T" u2="Ã" k="118" /> +<hkern u1="T" u2="Â" k="118" /> +<hkern u1="T" u2="Á" k="118" /> +<hkern u1="T" u2="À" k="118" /> +<hkern u1="T" u2="»" k="184" /> +<hkern u1="T" u2="·" k="184" /> +<hkern u1="T" u2="µ" k="167" /> +<hkern u1="T" u2="®" k="123" /> +<hkern u1="T" u2="­" k="184" /> +<hkern u1="T" u2="«" k="184" /> +<hkern u1="T" u2="©" k="123" /> +<hkern u1="T" u2="z" k="159" /> +<hkern u1="T" u2="y" k="184" /> +<hkern u1="T" u2="x" k="162" /> +<hkern u1="T" u2="w" k="138" /> +<hkern u1="T" u2="v" k="179" /> +<hkern u1="T" u2="u" k="167" /> +<hkern u1="T" u2="s" k="190" /> +<hkern u1="T" u2="r" k="167" /> +<hkern u1="T" u2="q" k="220" /> +<hkern u1="T" u2="p" k="167" /> +<hkern u1="T" u2="o" k="220" /> +<hkern u1="T" u2="n" k="167" /> +<hkern u1="T" u2="m" k="167" /> +<hkern u1="T" u2="g" k="196" /> +<hkern u1="T" u2="e" k="220" /> +<hkern u1="T" u2="d" k="220" /> +<hkern u1="T" u2="c" k="220" /> +<hkern u1="T" u2="a" k="220" /> +<hkern u1="T" u2="Q" k="123" /> +<hkern u1="T" u2="O" k="123" /> +<hkern u1="T" u2="J" k="205" /> +<hkern u1="T" u2="G" k="123" /> +<hkern u1="T" u2="C" k="123" /> +<hkern u1="T" u2="A" k="118" /> +<hkern u1="T" u2="@" k="123" /> +<hkern u1="T" u2="?" k="-46" /> +<hkern u1="T" u2=";" k="167" /> +<hkern u1="T" u2=":" k="167" /> +<hkern u1="T" u2="/" k="118" /> +<hkern u1="T" u2="." k="184" /> +<hkern u1="T" u2="-" k="184" /> +<hkern u1="T" u2="," k="184" /> +<hkern u1="T" u2="&" k="118" /> +<hkern u1="U" u2="Æ" k="41" /> +<hkern u1="U" u2="Å" k="41" /> +<hkern u1="U" u2="Ä" k="41" /> +<hkern u1="U" u2="Ã" k="41" /> +<hkern u1="U" u2="Â" k="41" /> +<hkern u1="U" u2="Á" k="41" /> +<hkern u1="U" u2="À" k="41" /> +<hkern u1="U" u2="A" k="41" /> +<hkern u1="U" u2="/" k="41" /> +<hkern u1="U" u2="&" k="41" /> +<hkern u1="V" u2="›" k="113" /> +<hkern u1="V" u2="‹" k="113" /> +<hkern u1="V" u2="…" k="189" /> +<hkern u1="V" u2="•" k="113" /> +<hkern u1="V" u2="„" k="189" /> +<hkern u1="V" u2="”" k="-63" /> +<hkern u1="V" u2="“" k="-63" /> +<hkern u1="V" u2="‚" k="189" /> +<hkern u1="V" u2="’" k="-63" /> +<hkern u1="V" u2="‘" k="-63" /> +<hkern u1="V" u2="—" k="113" /> +<hkern u1="V" u2="–" k="113" /> +<hkern u1="V" u2="œ" k="105" /> +<hkern u1="V" u2="Œ" k="41" /> +<hkern u1="V" u2="ÿ" k="29" /> +<hkern u1="V" u2="ý" k="29" /> +<hkern u1="V" u2="ü" k="85" /> +<hkern u1="V" u2="û" k="85" /> +<hkern u1="V" u2="ú" k="85" /> +<hkern u1="V" u2="ù" k="85" /> +<hkern u1="V" u2="ø" k="105" /> +<hkern u1="V" u2="ö" k="105" /> +<hkern u1="V" u2="õ" k="105" /> +<hkern u1="V" u2="ô" k="105" /> +<hkern u1="V" u2="ó" k="105" /> +<hkern u1="V" u2="ò" k="105" /> +<hkern u1="V" u2="ñ" k="85" /> +<hkern u1="V" u2="ð" k="105" /> +<hkern u1="V" u2="ë" k="105" /> +<hkern u1="V" u2="ê" k="105" /> +<hkern u1="V" u2="é" k="105" /> +<hkern u1="V" u2="è" k="105" /> +<hkern u1="V" u2="ç" k="105" /> +<hkern u1="V" u2="æ" k="105" /> +<hkern u1="V" u2="å" k="105" /> +<hkern u1="V" u2="ä" k="105" /> +<hkern u1="V" u2="ã" k="105" /> +<hkern u1="V" u2="â" k="105" /> +<hkern u1="V" u2="á" k="105" /> +<hkern u1="V" u2="à" k="105" /> +<hkern u1="V" u2="Ø" k="41" /> +<hkern u1="V" u2="Ö" k="41" /> +<hkern u1="V" u2="Õ" k="41" /> +<hkern u1="V" u2="Ô" k="41" /> +<hkern u1="V" u2="Ó" k="41" /> +<hkern u1="V" u2="Ò" k="41" /> +<hkern u1="V" u2="Ç" k="41" /> +<hkern u1="V" u2="Æ" k="87" /> +<hkern u1="V" u2="Å" k="87" /> +<hkern u1="V" u2="Ä" k="87" /> +<hkern u1="V" u2="Ã" k="87" /> +<hkern u1="V" u2="Â" k="87" /> +<hkern u1="V" u2="Á" k="87" /> +<hkern u1="V" u2="À" k="87" /> +<hkern u1="V" u2="»" k="113" /> +<hkern u1="V" u2="º" k="-63" /> +<hkern u1="V" u2="¹" k="-82" /> +<hkern u1="V" u2="·" k="113" /> +<hkern u1="V" u2="µ" k="85" /> +<hkern u1="V" u2="³" k="-82" /> +<hkern u1="V" u2="²" k="-82" /> +<hkern u1="V" u2="°" k="-63" /> +<hkern u1="V" u2="®" k="41" /> +<hkern u1="V" u2="­" k="113" /> +<hkern u1="V" u2="«" k="113" /> +<hkern u1="V" u2="ª" k="-63" /> +<hkern u1="V" u2="©" k="41" /> +<hkern u1="V" u2="z" k="56" /> +<hkern u1="V" u2="y" k="29" /> +<hkern u1="V" u2="w" k="29" /> +<hkern u1="V" u2="v" k="29" /> +<hkern u1="V" u2="u" k="85" /> +<hkern u1="V" u2="s" k="97" /> +<hkern u1="V" u2="r" k="85" /> +<hkern u1="V" u2="q" k="105" /> +<hkern u1="V" u2="p" k="85" /> +<hkern u1="V" u2="o" k="105" /> +<hkern u1="V" u2="n" k="85" /> +<hkern u1="V" u2="m" k="85" /> +<hkern u1="V" u2="e" k="105" /> +<hkern u1="V" u2="d" k="105" /> +<hkern u1="V" u2="c" k="105" /> +<hkern u1="V" u2="a" k="105" /> +<hkern u1="V" u2="Q" k="41" /> +<hkern u1="V" u2="O" k="41" /> +<hkern u1="V" u2="J" k="148" /> +<hkern u1="V" u2="G" k="41" /> +<hkern u1="V" u2="C" k="41" /> +<hkern u1="V" u2="A" k="87" /> +<hkern u1="V" u2="@" k="41" /> +<hkern u1="V" u2="?" k="-72" /> +<hkern u1="V" u2=";" k="85" /> +<hkern u1="V" u2=":" k="85" /> +<hkern u1="V" u2="/" k="87" /> +<hkern u1="V" u2="." k="189" /> +<hkern u1="V" u2="-" k="113" /> +<hkern u1="V" u2="," k="189" /> +<hkern u1="V" u2="*" k="-63" /> +<hkern u1="V" u2="'" k="-63" /> +<hkern u1="V" u2="&" k="87" /> +<hkern u1="V" u2=""" k="-63" /> +<hkern u1="W" u2="…" k="102" /> +<hkern u1="W" u2="„" k="102" /> +<hkern u1="W" u2="”" k="-72" /> +<hkern u1="W" u2="“" k="-72" /> +<hkern u1="W" u2="‚" k="102" /> +<hkern u1="W" u2="’" k="-72" /> +<hkern u1="W" u2="‘" k="-72" /> +<hkern u1="W" u2="œ" k="88" /> +<hkern u1="W" u2="ü" k="59" /> +<hkern u1="W" u2="û" k="59" /> +<hkern u1="W" u2="ú" k="59" /> +<hkern u1="W" u2="ù" k="59" /> +<hkern u1="W" u2="ø" k="88" /> +<hkern u1="W" u2="ö" k="88" /> +<hkern u1="W" u2="õ" k="88" /> +<hkern u1="W" u2="ô" k="88" /> +<hkern u1="W" u2="ó" k="88" /> +<hkern u1="W" u2="ò" k="88" /> +<hkern u1="W" u2="ñ" k="59" /> +<hkern u1="W" u2="ð" k="88" /> +<hkern u1="W" u2="ë" k="88" /> +<hkern u1="W" u2="ê" k="88" /> +<hkern u1="W" u2="é" k="88" /> +<hkern u1="W" u2="è" k="88" /> +<hkern u1="W" u2="ç" k="88" /> +<hkern u1="W" u2="æ" k="88" /> +<hkern u1="W" u2="å" k="88" /> +<hkern u1="W" u2="ä" k="88" /> +<hkern u1="W" u2="ã" k="88" /> +<hkern u1="W" u2="â" k="88" /> +<hkern u1="W" u2="á" k="88" /> +<hkern u1="W" u2="à" k="88" /> +<hkern u1="W" u2="Æ" k="56" /> +<hkern u1="W" u2="Å" k="56" /> +<hkern u1="W" u2="Ä" k="56" /> +<hkern u1="W" u2="Ã" k="56" /> +<hkern u1="W" u2="Â" k="56" /> +<hkern u1="W" u2="Á" k="56" /> +<hkern u1="W" u2="À" k="56" /> +<hkern u1="W" u2="º" k="-72" /> +<hkern u1="W" u2="¹" k="-61" /> +<hkern u1="W" u2="µ" k="59" /> +<hkern u1="W" u2="³" k="-61" /> +<hkern u1="W" u2="²" k="-61" /> +<hkern u1="W" u2="°" k="-72" /> +<hkern u1="W" u2="ª" k="-72" /> +<hkern u1="W" u2="u" k="59" /> +<hkern u1="W" u2="s" k="80" /> +<hkern u1="W" u2="r" k="59" /> +<hkern u1="W" u2="q" k="88" /> +<hkern u1="W" u2="p" k="59" /> +<hkern u1="W" u2="o" k="88" /> +<hkern u1="W" u2="n" k="59" /> +<hkern u1="W" u2="m" k="59" /> +<hkern u1="W" u2="g" k="78" /> +<hkern u1="W" u2="e" k="88" /> +<hkern u1="W" u2="d" k="88" /> +<hkern u1="W" u2="c" k="88" /> +<hkern u1="W" u2="a" k="88" /> +<hkern u1="W" u2="J" k="92" /> +<hkern u1="W" u2="A" k="56" /> +<hkern u1="W" u2=";" k="59" /> +<hkern u1="W" u2=":" k="59" /> +<hkern u1="W" u2="/" k="56" /> +<hkern u1="W" u2="." k="102" /> +<hkern u1="W" u2="," k="102" /> +<hkern u1="W" u2="*" k="-72" /> +<hkern u1="W" u2="'" k="-72" /> +<hkern u1="W" u2="&" k="56" /> +<hkern u1="W" u2=""" k="-72" /> +<hkern u1="X" u2="›" k="72" /> +<hkern u1="X" u2="‹" k="72" /> +<hkern u1="X" u2="•" k="72" /> +<hkern u1="X" u2="”" k="-26" /> +<hkern u1="X" u2="“" k="-26" /> +<hkern u1="X" u2="’" k="-26" /> +<hkern u1="X" u2="‘" k="-26" /> +<hkern u1="X" u2="—" k="72" /> +<hkern u1="X" u2="–" k="72" /> +<hkern u1="X" u2="Œ" k="92" /> +<hkern u1="X" u2="ÿ" k="51" /> +<hkern u1="X" u2="ý" k="51" /> +<hkern u1="X" u2="Ø" k="92" /> +<hkern u1="X" u2="Ö" k="92" /> +<hkern u1="X" u2="Õ" k="92" /> +<hkern u1="X" u2="Ô" k="92" /> +<hkern u1="X" u2="Ó" k="92" /> +<hkern u1="X" u2="Ò" k="92" /> +<hkern u1="X" u2="Ç" k="92" /> +<hkern u1="X" u2="»" k="72" /> +<hkern u1="X" u2="º" k="-26" /> +<hkern u1="X" u2="·" k="72" /> +<hkern u1="X" u2="°" k="-26" /> +<hkern u1="X" u2="®" k="92" /> +<hkern u1="X" u2="­" k="72" /> +<hkern u1="X" u2="«" k="72" /> +<hkern u1="X" u2="ª" k="-26" /> +<hkern u1="X" u2="©" k="92" /> +<hkern u1="X" u2="y" k="51" /> +<hkern u1="X" u2="w" k="44" /> +<hkern u1="X" u2="v" k="51" /> +<hkern u1="X" u2="t" k="97" /> +<hkern u1="X" u2="f" k="46" /> +<hkern u1="X" u2="Q" k="92" /> +<hkern u1="X" u2="O" k="92" /> +<hkern u1="X" u2="G" k="92" /> +<hkern u1="X" u2="C" k="92" /> +<hkern u1="X" u2="@" k="92" /> +<hkern u1="X" u2="-" k="72" /> +<hkern u1="X" u2="*" k="-26" /> +<hkern u1="X" u2="'" k="-26" /> +<hkern u1="X" u2=""" k="-26" /> +<hkern u1="Y" u2="›" k="174" /> +<hkern u1="Y" u2="‹" k="174" /> +<hkern u1="Y" u2="…" k="169" /> +<hkern u1="Y" u2="•" k="174" /> +<hkern u1="Y" u2="„" k="169" /> +<hkern u1="Y" u2="”" k="-53" /> +<hkern u1="Y" u2="“" k="-53" /> +<hkern u1="Y" u2="‚" k="169" /> +<hkern u1="Y" u2="’" k="-53" /> +<hkern u1="Y" u2="‘" k="-53" /> +<hkern u1="Y" u2="—" k="174" /> +<hkern u1="Y" u2="–" k="174" /> +<hkern u1="Y" u2="œ" k="189" /> +<hkern u1="Y" u2="Œ" k="77" /> +<hkern u1="Y" u2="ü" k="121" /> +<hkern u1="Y" u2="û" k="121" /> +<hkern u1="Y" u2="ú" k="121" /> +<hkern u1="Y" u2="ù" k="121" /> +<hkern u1="Y" u2="ø" k="189" /> +<hkern u1="Y" u2="ö" k="189" /> +<hkern u1="Y" u2="õ" k="189" /> +<hkern u1="Y" u2="ô" k="189" /> +<hkern u1="Y" u2="ó" k="189" /> +<hkern u1="Y" u2="ò" k="189" /> +<hkern u1="Y" u2="ñ" k="121" /> +<hkern u1="Y" u2="ð" k="189" /> +<hkern u1="Y" u2="ë" k="189" /> +<hkern u1="Y" u2="ê" k="189" /> +<hkern u1="Y" u2="é" k="189" /> +<hkern u1="Y" u2="è" k="189" /> +<hkern u1="Y" u2="ç" k="189" /> +<hkern u1="Y" u2="æ" k="189" /> +<hkern u1="Y" u2="å" k="189" /> +<hkern u1="Y" u2="ä" k="189" /> +<hkern u1="Y" u2="ã" k="189" /> +<hkern u1="Y" u2="â" k="189" /> +<hkern u1="Y" u2="á" k="189" /> +<hkern u1="Y" u2="à" k="189" /> +<hkern u1="Y" u2="Ø" k="77" /> +<hkern u1="Y" u2="Ö" k="77" /> +<hkern u1="Y" u2="Õ" k="77" /> +<hkern u1="Y" u2="Ô" k="77" /> +<hkern u1="Y" u2="Ó" k="77" /> +<hkern u1="Y" u2="Ò" k="77" /> +<hkern u1="Y" u2="Ç" k="77" /> +<hkern u1="Y" u2="Æ" k="133" /> +<hkern u1="Y" u2="Å" k="133" /> +<hkern u1="Y" u2="Ä" k="133" /> +<hkern u1="Y" u2="Ã" k="133" /> +<hkern u1="Y" u2="Â" k="133" /> +<hkern u1="Y" u2="Á" k="133" /> +<hkern u1="Y" u2="À" k="133" /> +<hkern u1="Y" u2="»" k="174" /> +<hkern u1="Y" u2="º" k="-53" /> +<hkern u1="Y" u2="¹" k="-51" /> +<hkern u1="Y" u2="·" k="174" /> +<hkern u1="Y" u2="µ" k="121" /> +<hkern u1="Y" u2="³" k="-51" /> +<hkern u1="Y" u2="²" k="-51" /> +<hkern u1="Y" u2="°" k="-53" /> +<hkern u1="Y" u2="®" k="77" /> +<hkern u1="Y" u2="­" k="174" /> +<hkern u1="Y" u2="«" k="174" /> +<hkern u1="Y" u2="ª" k="-53" /> +<hkern u1="Y" u2="©" k="77" /> +<hkern u1="Y" u2="z" k="83" /> +<hkern u1="Y" u2="u" k="121" /> +<hkern u1="Y" u2="s" k="189" /> +<hkern u1="Y" u2="r" k="121" /> +<hkern u1="Y" u2="q" k="189" /> +<hkern u1="Y" u2="p" k="121" /> +<hkern u1="Y" u2="o" k="189" /> +<hkern u1="Y" u2="n" k="121" /> +<hkern u1="Y" u2="m" k="121" /> +<hkern u1="Y" u2="g" k="165" /> +<hkern u1="Y" u2="e" k="189" /> +<hkern u1="Y" u2="d" k="189" /> +<hkern u1="Y" u2="c" k="189" /> +<hkern u1="Y" u2="a" k="189" /> +<hkern u1="Y" u2="Q" k="77" /> +<hkern u1="Y" u2="O" k="77" /> +<hkern u1="Y" u2="J" k="205" /> +<hkern u1="Y" u2="G" k="77" /> +<hkern u1="Y" u2="C" k="77" /> +<hkern u1="Y" u2="A" k="133" /> +<hkern u1="Y" u2="@" k="77" /> +<hkern u1="Y" u2="?" k="-51" /> +<hkern u1="Y" u2=";" k="121" /> +<hkern u1="Y" u2=":" k="121" /> +<hkern u1="Y" u2="/" k="133" /> +<hkern u1="Y" u2="." k="169" /> +<hkern u1="Y" u2="-" k="174" /> +<hkern u1="Y" u2="," k="169" /> +<hkern u1="Y" u2="*" k="-53" /> +<hkern u1="Y" u2="'" k="-53" /> +<hkern u1="Y" u2="&" k="133" /> +<hkern u1="Y" u2=""" k="-53" /> +<hkern u1="Z" u2="›" k="90" /> +<hkern u1="Z" u2="‹" k="90" /> +<hkern u1="Z" u2="•" k="90" /> +<hkern u1="Z" u2="—" k="90" /> +<hkern u1="Z" u2="–" k="90" /> +<hkern u1="Z" u2="Œ" k="72" /> +<hkern u1="Z" u2="Ø" k="72" /> +<hkern u1="Z" u2="Ö" k="72" /> +<hkern u1="Z" u2="Õ" k="72" /> +<hkern u1="Z" u2="Ô" k="72" /> +<hkern u1="Z" u2="Ó" k="72" /> +<hkern u1="Z" u2="Ò" k="72" /> +<hkern u1="Z" u2="Ç" k="72" /> +<hkern u1="Z" u2="»" k="90" /> +<hkern u1="Z" u2="·" k="90" /> +<hkern u1="Z" u2="®" k="72" /> +<hkern u1="Z" u2="­" k="90" /> +<hkern u1="Z" u2="«" k="90" /> +<hkern u1="Z" u2="©" k="72" /> +<hkern u1="Z" u2="Q" k="72" /> +<hkern u1="Z" u2="O" k="72" /> +<hkern u1="Z" u2="G" k="72" /> +<hkern u1="Z" u2="C" k="72" /> +<hkern u1="Z" u2="@" k="72" /> +<hkern u1="Z" u2="?" k="-33" /> +<hkern u1="Z" u2="-" k="90" /> +<hkern u1="[" u2="œ" k="26" /> +<hkern u1="[" u2="Œ" k="41" /> +<hkern u1="[" u2="ø" k="26" /> +<hkern u1="[" u2="ö" k="26" /> +<hkern u1="[" u2="õ" k="26" /> +<hkern u1="[" u2="ô" k="26" /> +<hkern u1="[" u2="ó" k="26" /> +<hkern u1="[" u2="ò" k="26" /> +<hkern u1="[" u2="ð" k="26" /> +<hkern u1="[" u2="ë" k="26" /> +<hkern u1="[" u2="ê" k="26" /> +<hkern u1="[" u2="é" k="26" /> +<hkern u1="[" u2="è" k="26" /> +<hkern u1="[" u2="ç" k="26" /> +<hkern u1="[" u2="æ" k="26" /> +<hkern u1="[" u2="å" k="26" /> +<hkern u1="[" u2="ä" k="26" /> +<hkern u1="[" u2="ã" k="26" /> +<hkern u1="[" u2="â" k="26" /> +<hkern u1="[" u2="á" k="26" /> +<hkern u1="[" u2="à" k="26" /> +<hkern u1="[" u2="Ø" k="41" /> +<hkern u1="[" u2="Ö" k="41" /> +<hkern u1="[" u2="Õ" k="41" /> +<hkern u1="[" u2="Ô" k="41" /> +<hkern u1="[" u2="Ó" k="41" /> +<hkern u1="[" u2="Ò" k="41" /> +<hkern u1="[" u2="Ç" k="41" /> +<hkern u1="[" u2="®" k="41" /> +<hkern u1="[" u2="©" k="41" /> +<hkern u1="[" u2="q" k="26" /> +<hkern u1="[" u2="o" k="26" /> +<hkern u1="[" u2="e" k="26" /> +<hkern u1="[" u2="d" k="26" /> +<hkern u1="[" u2="c" k="26" /> +<hkern u1="[" u2="a" k="26" /> +<hkern u1="[" u2="Q" k="41" /> +<hkern u1="[" u2="O" k="41" /> +<hkern u1="[" u2="G" k="41" /> +<hkern u1="[" u2="C" k="41" /> +<hkern u1="[" u2="@" k="41" /> +<hkern u1="\" u2="›" k="36" /> +<hkern u1="\" u2="‹" k="36" /> +<hkern u1="\" u2="•" k="36" /> +<hkern u1="\" u2="”" k="174" /> +<hkern u1="\" u2="“" k="174" /> +<hkern u1="\" u2="’" k="174" /> +<hkern u1="\" u2="‘" k="174" /> +<hkern u1="\" u2="—" k="36" /> +<hkern u1="\" u2="–" k="36" /> +<hkern u1="\" u2="Ÿ" k="138" /> +<hkern u1="\" u2="Œ" k="34" /> +<hkern u1="\" u2="ÿ" k="34" /> +<hkern u1="\" u2="ý" k="34" /> +<hkern u1="\" u2="Ý" k="138" /> +<hkern u1="\" u2="Ü" k="41" /> +<hkern u1="\" u2="Û" k="41" /> +<hkern u1="\" u2="Ú" k="41" /> +<hkern u1="\" u2="Ù" k="41" /> +<hkern u1="\" u2="Ø" k="34" /> +<hkern u1="\" u2="Ö" k="34" /> +<hkern u1="\" u2="Õ" k="34" /> +<hkern u1="\" u2="Ô" k="34" /> +<hkern u1="\" u2="Ó" k="34" /> +<hkern u1="\" u2="Ò" k="34" /> +<hkern u1="\" u2="Ç" k="34" /> +<hkern u1="\" u2="»" k="36" /> +<hkern u1="\" u2="º" k="174" /> +<hkern u1="\" u2="¹" k="164" /> +<hkern u1="\" u2="·" k="36" /> +<hkern u1="\" u2="³" k="164" /> +<hkern u1="\" u2="²" k="164" /> +<hkern u1="\" u2="°" k="174" /> +<hkern u1="\" u2="®" k="34" /> +<hkern u1="\" u2="­" k="36" /> +<hkern u1="\" u2="«" k="36" /> +<hkern u1="\" u2="ª" k="174" /> +<hkern u1="\" u2="©" k="34" /> +<hkern u1="\" u2="y" k="34" /> +<hkern u1="\" u2="w" k="15" /> +<hkern u1="\" u2="v" k="34" /> +<hkern u1="\" u2="t" k="44" /> +<hkern u1="\" u2="\" k="87" /> +<hkern u1="\" u2="Y" k="138" /> +<hkern u1="\" u2="W" k="61" /> +<hkern u1="\" u2="V" k="87" /> +<hkern u1="\" u2="U" k="41" /> +<hkern u1="\" u2="T" k="118" /> +<hkern u1="\" u2="Q" k="34" /> +<hkern u1="\" u2="O" k="34" /> +<hkern u1="\" u2="J" k="-51" /> +<hkern u1="\" u2="G" k="34" /> +<hkern u1="\" u2="C" k="34" /> +<hkern u1="\" u2="@" k="34" /> +<hkern u1="\" u2="-" k="36" /> +<hkern u1="\" u2="*" k="174" /> +<hkern u1="\" u2="'" k="174" /> +<hkern u1="\" u2=""" k="174" /> +<hkern u1="b" u2="”" k="82" /> +<hkern u1="b" u2="“" k="82" /> +<hkern u1="b" u2="’" k="82" /> +<hkern u1="b" u2="‘" k="82" /> +<hkern u1="b" u2="º" k="82" /> +<hkern u1="b" u2="°" k="82" /> +<hkern u1="b" u2="ª" k="82" /> +<hkern u1="b" u2="}" k="26" /> +<hkern u1="b" u2="x" k="46" /> +<hkern u1="b" u2="]" k="26" /> +<hkern u1="b" u2="*" k="82" /> +<hkern u1="b" u2=")" k="26" /> +<hkern u1="b" u2="'" k="82" /> +<hkern u1="b" u2=""" k="82" /> +<hkern u1="e" u2="”" k="82" /> +<hkern u1="e" u2="“" k="82" /> +<hkern u1="e" u2="’" k="82" /> +<hkern u1="e" u2="‘" k="82" /> +<hkern u1="e" u2="º" k="82" /> +<hkern u1="e" u2="°" k="82" /> +<hkern u1="e" u2="ª" k="82" /> +<hkern u1="e" u2="}" k="26" /> +<hkern u1="e" u2="x" k="46" /> +<hkern u1="e" u2="]" k="26" /> +<hkern u1="e" u2="*" k="82" /> +<hkern u1="e" u2=")" k="26" /> +<hkern u1="e" u2="'" k="82" /> +<hkern u1="e" u2=""" k="82" /> +<hkern u1="f" u2="…" k="138" /> +<hkern u1="f" u2="„" k="138" /> +<hkern u1="f" u2="”" k="-77" /> +<hkern u1="f" u2="“" k="-77" /> +<hkern u1="f" u2="‚" k="138" /> +<hkern u1="f" u2="’" k="-77" /> +<hkern u1="f" u2="‘" k="-77" /> +<hkern u1="f" u2="º" k="-77" /> +<hkern u1="f" u2="¹" k="-102" /> +<hkern u1="f" u2="³" k="-102" /> +<hkern u1="f" u2="²" k="-102" /> +<hkern u1="f" u2="°" k="-77" /> +<hkern u1="f" u2="ª" k="-77" /> +<hkern u1="f" u2="." k="138" /> +<hkern u1="f" u2="," k="138" /> +<hkern u1="f" u2="*" k="-77" /> +<hkern u1="f" u2="'" k="-77" /> +<hkern u1="f" u2=""" k="-77" /> +<hkern u1="h" u2="”" k="61" /> +<hkern u1="h" u2="“" k="61" /> +<hkern u1="h" u2="’" k="61" /> +<hkern u1="h" u2="‘" k="61" /> +<hkern u1="h" u2="ÿ" k="26" /> +<hkern u1="h" u2="ý" k="26" /> +<hkern u1="h" u2="º" k="61" /> +<hkern u1="h" u2="¹" k="82" /> +<hkern u1="h" u2="³" k="82" /> +<hkern u1="h" u2="²" k="82" /> +<hkern u1="h" u2="°" k="61" /> +<hkern u1="h" u2="ª" k="61" /> +<hkern u1="h" u2="y" k="31" /> +<hkern u1="h" u2="v" k="26" /> +<hkern u1="h" u2="*" k="61" /> +<hkern u1="h" u2="'" k="61" /> +<hkern u1="h" u2=""" k="61" /> +<hkern u1="k" u2="œ" k="46" /> +<hkern u1="k" u2="ø" k="46" /> +<hkern u1="k" u2="ö" k="46" /> +<hkern u1="k" u2="õ" k="46" /> +<hkern u1="k" u2="ô" k="46" /> +<hkern u1="k" u2="ó" k="46" /> +<hkern u1="k" u2="ò" k="46" /> +<hkern u1="k" u2="ð" k="46" /> +<hkern u1="k" u2="ë" k="46" /> +<hkern u1="k" u2="ê" k="46" /> +<hkern u1="k" u2="é" k="46" /> +<hkern u1="k" u2="è" k="46" /> +<hkern u1="k" u2="ç" k="46" /> +<hkern u1="k" u2="æ" k="46" /> +<hkern u1="k" u2="å" k="46" /> +<hkern u1="k" u2="ä" k="46" /> +<hkern u1="k" u2="ã" k="46" /> +<hkern u1="k" u2="â" k="46" /> +<hkern u1="k" u2="á" k="46" /> +<hkern u1="k" u2="à" k="46" /> +<hkern u1="k" u2="q" k="46" /> +<hkern u1="k" u2="o" k="46" /> +<hkern u1="k" u2="e" k="46" /> +<hkern u1="k" u2="d" k="46" /> +<hkern u1="k" u2="c" k="46" /> +<hkern u1="k" u2="a" k="46" /> +<hkern u1="m" u2="”" k="61" /> +<hkern u1="m" u2="“" k="61" /> +<hkern u1="m" u2="’" k="61" /> +<hkern u1="m" u2="‘" k="61" /> +<hkern u1="m" u2="ÿ" k="26" /> +<hkern u1="m" u2="ý" k="26" /> +<hkern u1="m" u2="º" k="61" /> +<hkern u1="m" u2="¹" k="82" /> +<hkern u1="m" u2="³" k="82" /> +<hkern u1="m" u2="²" k="82" /> +<hkern u1="m" u2="°" k="61" /> +<hkern u1="m" u2="ª" k="61" /> +<hkern u1="m" u2="y" k="31" /> +<hkern u1="m" u2="v" k="26" /> +<hkern u1="m" u2="*" k="61" /> +<hkern u1="m" u2="'" k="61" /> +<hkern u1="m" u2=""" k="61" /> +<hkern u1="n" u2="”" k="61" /> +<hkern u1="n" u2="“" k="61" /> +<hkern u1="n" u2="’" k="61" /> +<hkern u1="n" u2="‘" k="61" /> +<hkern u1="n" u2="ÿ" k="26" /> +<hkern u1="n" u2="ý" k="26" /> +<hkern u1="n" u2="º" k="61" /> +<hkern u1="n" u2="¹" k="82" /> +<hkern u1="n" u2="³" k="82" /> +<hkern u1="n" u2="²" k="82" /> +<hkern u1="n" u2="°" k="61" /> +<hkern u1="n" u2="ª" k="61" /> +<hkern u1="n" u2="y" k="31" /> +<hkern u1="n" u2="v" k="26" /> +<hkern u1="n" u2="*" k="61" /> +<hkern u1="n" u2="'" k="61" /> +<hkern u1="n" u2=""" k="61" /> +<hkern u1="o" u2="”" k="82" /> +<hkern u1="o" u2="“" k="82" /> +<hkern u1="o" u2="’" k="82" /> +<hkern u1="o" u2="‘" k="82" /> +<hkern u1="o" u2="º" k="82" /> +<hkern u1="o" u2="°" k="82" /> +<hkern u1="o" u2="ª" k="82" /> +<hkern u1="o" u2="}" k="26" /> +<hkern u1="o" u2="x" k="46" /> +<hkern u1="o" u2="]" k="26" /> +<hkern u1="o" u2="*" k="82" /> +<hkern u1="o" u2=")" k="26" /> +<hkern u1="o" u2="'" k="82" /> +<hkern u1="o" u2=""" k="82" /> +<hkern u1="p" u2="”" k="82" /> +<hkern u1="p" u2="“" k="82" /> +<hkern u1="p" u2="’" k="82" /> +<hkern u1="p" u2="‘" k="82" /> +<hkern u1="p" u2="º" k="82" /> +<hkern u1="p" u2="°" k="82" /> +<hkern u1="p" u2="ª" k="82" /> +<hkern u1="p" u2="}" k="26" /> +<hkern u1="p" u2="x" k="46" /> +<hkern u1="p" u2="]" k="26" /> +<hkern u1="p" u2="*" k="82" /> +<hkern u1="p" u2=")" k="26" /> +<hkern u1="p" u2="'" k="82" /> +<hkern u1="p" u2=""" k="82" /> +<hkern u1="r" u2="…" k="138" /> +<hkern u1="r" u2="„" k="138" /> +<hkern u1="r" u2="‚" k="138" /> +<hkern u1="r" u2="œ" k="41" /> +<hkern u1="r" u2="ø" k="41" /> +<hkern u1="r" u2="ö" k="41" /> +<hkern u1="r" u2="õ" k="41" /> +<hkern u1="r" u2="ô" k="41" /> +<hkern u1="r" u2="ó" k="41" /> +<hkern u1="r" u2="ò" k="41" /> +<hkern u1="r" u2="ð" k="41" /> +<hkern u1="r" u2="ë" k="41" /> +<hkern u1="r" u2="ê" k="41" /> +<hkern u1="r" u2="é" k="41" /> +<hkern u1="r" u2="è" k="41" /> +<hkern u1="r" u2="ç" k="41" /> +<hkern u1="r" u2="æ" k="41" /> +<hkern u1="r" u2="å" k="41" /> +<hkern u1="r" u2="ä" k="41" /> +<hkern u1="r" u2="ã" k="41" /> +<hkern u1="r" u2="â" k="41" /> +<hkern u1="r" u2="á" k="41" /> +<hkern u1="r" u2="à" k="41" /> +<hkern u1="r" u2="q" k="41" /> +<hkern u1="r" u2="o" k="41" /> +<hkern u1="r" u2="e" k="41" /> +<hkern u1="r" u2="d" k="41" /> +<hkern u1="r" u2="c" k="41" /> +<hkern u1="r" u2="a" k="41" /> +<hkern u1="r" u2="." k="138" /> +<hkern u1="r" u2="," k="138" /> +<hkern u1="v" u2="…" k="133" /> +<hkern u1="v" u2="„" k="133" /> +<hkern u1="v" u2="‚" k="133" /> +<hkern u1="v" u2="œ" k="18" /> +<hkern u1="v" u2="ø" k="18" /> +<hkern u1="v" u2="ö" k="18" /> +<hkern u1="v" u2="õ" k="18" /> +<hkern u1="v" u2="ô" k="18" /> +<hkern u1="v" u2="ó" k="18" /> +<hkern u1="v" u2="ò" k="18" /> +<hkern u1="v" u2="ð" k="18" /> +<hkern u1="v" u2="ë" k="18" /> +<hkern u1="v" u2="ê" k="18" /> +<hkern u1="v" u2="é" k="18" /> +<hkern u1="v" u2="è" k="18" /> +<hkern u1="v" u2="ç" k="18" /> +<hkern u1="v" u2="æ" k="18" /> +<hkern u1="v" u2="å" k="18" /> +<hkern u1="v" u2="ä" k="18" /> +<hkern u1="v" u2="ã" k="18" /> +<hkern u1="v" u2="â" k="18" /> +<hkern u1="v" u2="á" k="18" /> +<hkern u1="v" u2="à" k="18" /> +<hkern u1="v" u2="Æ" k="34" /> +<hkern u1="v" u2="Å" k="34" /> +<hkern u1="v" u2="Ä" k="34" /> +<hkern u1="v" u2="Ã" k="34" /> +<hkern u1="v" u2="Â" k="34" /> +<hkern u1="v" u2="Á" k="34" /> +<hkern u1="v" u2="À" k="34" /> +<hkern u1="v" u2="q" k="18" /> +<hkern u1="v" u2="o" k="18" /> +<hkern u1="v" u2="e" k="18" /> +<hkern u1="v" u2="d" k="18" /> +<hkern u1="v" u2="c" k="18" /> +<hkern u1="v" u2="a" k="18" /> +<hkern u1="v" u2="A" k="34" /> +<hkern u1="v" u2="/" k="34" /> +<hkern u1="v" u2="." k="133" /> +<hkern u1="v" u2="," k="133" /> +<hkern u1="v" u2="&" k="34" /> +<hkern u1="w" u2="…" k="61" /> +<hkern u1="w" u2="„" k="61" /> +<hkern u1="w" u2="‚" k="61" /> +<hkern u1="w" u2="Æ" k="15" /> +<hkern u1="w" u2="Å" k="15" /> +<hkern u1="w" u2="Ä" k="15" /> +<hkern u1="w" u2="Ã" k="15" /> +<hkern u1="w" u2="Â" k="15" /> +<hkern u1="w" u2="Á" k="15" /> +<hkern u1="w" u2="À" k="15" /> +<hkern u1="w" u2="A" k="15" /> +<hkern u1="w" u2="/" k="15" /> +<hkern u1="w" u2="." k="61" /> +<hkern u1="w" u2="," k="61" /> +<hkern u1="w" u2="&" k="15" /> +<hkern u1="x" u2="œ" k="46" /> +<hkern u1="x" u2="ø" k="46" /> +<hkern u1="x" u2="ö" k="46" /> +<hkern u1="x" u2="õ" k="46" /> +<hkern u1="x" u2="ô" k="46" /> +<hkern u1="x" u2="ó" k="46" /> +<hkern u1="x" u2="ò" k="46" /> +<hkern u1="x" u2="ð" k="46" /> +<hkern u1="x" u2="ë" k="46" /> +<hkern u1="x" u2="ê" k="46" /> +<hkern u1="x" u2="é" k="46" /> +<hkern u1="x" u2="è" k="46" /> +<hkern u1="x" u2="ç" k="46" /> +<hkern u1="x" u2="æ" k="46" /> +<hkern u1="x" u2="å" k="46" /> +<hkern u1="x" u2="ä" k="46" /> +<hkern u1="x" u2="ã" k="46" /> +<hkern u1="x" u2="â" k="46" /> +<hkern u1="x" u2="á" k="46" /> +<hkern u1="x" u2="à" k="46" /> +<hkern u1="x" u2="q" k="46" /> +<hkern u1="x" u2="o" k="46" /> +<hkern u1="x" u2="e" k="46" /> +<hkern u1="x" u2="d" k="46" /> +<hkern u1="x" u2="c" k="46" /> +<hkern u1="x" u2="a" k="46" /> +<hkern u1="y" u2="…" k="138" /> +<hkern u1="y" u2="„" k="138" /> +<hkern u1="y" u2="‚" k="138" /> +<hkern u1="y" u2="œ" k="18" /> +<hkern u1="y" u2="ø" k="18" /> +<hkern u1="y" u2="ö" k="18" /> +<hkern u1="y" u2="õ" k="18" /> +<hkern u1="y" u2="ô" k="18" /> +<hkern u1="y" u2="ó" k="18" /> +<hkern u1="y" u2="ò" k="18" /> +<hkern u1="y" u2="ð" k="18" /> +<hkern u1="y" u2="ë" k="18" /> +<hkern u1="y" u2="ê" k="18" /> +<hkern u1="y" u2="é" k="18" /> +<hkern u1="y" u2="è" k="18" /> +<hkern u1="y" u2="ç" k="18" /> +<hkern u1="y" u2="æ" k="18" /> +<hkern u1="y" u2="å" k="18" /> +<hkern u1="y" u2="ä" k="18" /> +<hkern u1="y" u2="ã" k="18" /> +<hkern u1="y" u2="â" k="18" /> +<hkern u1="y" u2="á" k="18" /> +<hkern u1="y" u2="à" k="18" /> +<hkern u1="y" u2="Æ" k="34" /> +<hkern u1="y" u2="Å" k="34" /> +<hkern u1="y" u2="Ä" k="34" /> +<hkern u1="y" u2="Ã" k="34" /> +<hkern u1="y" u2="Â" k="34" /> +<hkern u1="y" u2="Á" k="34" /> +<hkern u1="y" u2="À" k="34" /> +<hkern u1="y" u2="q" k="18" /> +<hkern u1="y" u2="o" k="18" /> +<hkern u1="y" u2="e" k="18" /> +<hkern u1="y" u2="d" k="18" /> +<hkern u1="y" u2="c" k="18" /> +<hkern u1="y" u2="a" k="18" /> +<hkern u1="y" u2="A" k="34" /> +<hkern u1="y" u2="/" k="34" /> +<hkern u1="y" u2="." k="138" /> +<hkern u1="y" u2="," k="138" /> +<hkern u1="y" u2="&" k="34" /> +<hkern u1="{" u2="œ" k="26" /> +<hkern u1="{" u2="Œ" k="41" /> +<hkern u1="{" u2="ø" k="26" /> +<hkern u1="{" u2="ö" k="26" /> +<hkern u1="{" u2="õ" k="26" /> +<hkern u1="{" u2="ô" k="26" /> +<hkern u1="{" u2="ó" k="26" /> +<hkern u1="{" u2="ò" k="26" /> +<hkern u1="{" u2="ð" k="26" /> +<hkern u1="{" u2="ë" k="26" /> +<hkern u1="{" u2="ê" k="26" /> +<hkern u1="{" u2="é" k="26" /> +<hkern u1="{" u2="è" k="26" /> +<hkern u1="{" u2="ç" k="26" /> +<hkern u1="{" u2="æ" k="26" /> +<hkern u1="{" u2="å" k="26" /> +<hkern u1="{" u2="ä" k="26" /> +<hkern u1="{" u2="ã" k="26" /> +<hkern u1="{" u2="â" k="26" /> +<hkern u1="{" u2="á" k="26" /> +<hkern u1="{" u2="à" k="26" /> +<hkern u1="{" u2="Ø" k="41" /> +<hkern u1="{" u2="Ö" k="41" /> +<hkern u1="{" u2="Õ" k="41" /> +<hkern u1="{" u2="Ô" k="41" /> +<hkern u1="{" u2="Ó" k="41" /> +<hkern u1="{" u2="Ò" k="41" /> +<hkern u1="{" u2="Ç" k="41" /> +<hkern u1="{" u2="®" k="41" /> +<hkern u1="{" u2="©" k="41" /> +<hkern u1="{" u2="q" k="26" /> +<hkern u1="{" u2="o" k="26" /> +<hkern u1="{" u2="e" k="26" /> +<hkern u1="{" u2="d" k="26" /> +<hkern u1="{" u2="c" k="26" /> +<hkern u1="{" u2="a" k="26" /> +<hkern u1="{" u2="Q" k="41" /> +<hkern u1="{" u2="O" k="41" /> +<hkern u1="{" u2="G" k="41" /> +<hkern u1="{" u2="C" k="41" /> +<hkern u1="{" u2="@" k="41" /> +<hkern u1="©" u2="”" k="59" /> +<hkern u1="©" u2="“" k="59" /> +<hkern u1="©" u2="’" k="59" /> +<hkern u1="©" u2="‘" k="59" /> +<hkern u1="©" u2="Ÿ" k="82" /> +<hkern u1="©" u2="Ý" k="82" /> +<hkern u1="©" u2="Æ" k="29" /> +<hkern u1="©" u2="Å" k="29" /> +<hkern u1="©" u2="Ä" k="29" /> +<hkern u1="©" u2="Ã" k="29" /> +<hkern u1="©" u2="Â" k="29" /> +<hkern u1="©" u2="Á" k="29" /> +<hkern u1="©" u2="À" k="29" /> +<hkern u1="©" u2="º" k="59" /> +<hkern u1="©" u2="°" k="59" /> +<hkern u1="©" u2="ª" k="59" /> +<hkern u1="©" u2="}" k="41" /> +<hkern u1="©" u2="]" k="41" /> +<hkern u1="©" u2="\" k="46" /> +<hkern u1="©" u2="Z" k="77" /> +<hkern u1="©" u2="Y" k="82" /> +<hkern u1="©" u2="X" k="49" /> +<hkern u1="©" u2="V" k="46" /> +<hkern u1="©" u2="T" k="123" /> +<hkern u1="©" u2="A" k="29" /> +<hkern u1="©" u2="/" k="29" /> +<hkern u1="©" u2="*" k="59" /> +<hkern u1="©" u2=")" k="41" /> +<hkern u1="©" u2="'" k="59" /> +<hkern u1="©" u2="&" k="29" /> +<hkern u1="©" u2=""" k="59" /> +<hkern u1="ª" u2="›" k="138" /> +<hkern u1="ª" u2="‹" k="138" /> +<hkern u1="ª" u2="…" k="154" /> +<hkern u1="ª" u2="•" k="138" /> +<hkern u1="ª" u2="„" k="154" /> +<hkern u1="ª" u2="‚" k="154" /> +<hkern u1="ª" u2="—" k="138" /> +<hkern u1="ª" u2="–" k="138" /> +<hkern u1="ª" u2="Ÿ" k="-48" /> +<hkern u1="ª" u2="œ" k="87" /> +<hkern u1="ª" u2="ø" k="87" /> +<hkern u1="ª" u2="ö" k="87" /> +<hkern u1="ª" u2="õ" k="87" /> +<hkern u1="ª" u2="ô" k="87" /> +<hkern u1="ª" u2="ó" k="87" /> +<hkern u1="ª" u2="ò" k="87" /> +<hkern u1="ª" u2="ð" k="87" /> +<hkern u1="ª" u2="ë" k="87" /> +<hkern u1="ª" u2="ê" k="87" /> +<hkern u1="ª" u2="é" k="87" /> +<hkern u1="ª" u2="è" k="87" /> +<hkern u1="ª" u2="ç" k="87" /> +<hkern u1="ª" u2="æ" k="87" /> +<hkern u1="ª" u2="å" k="87" /> +<hkern u1="ª" u2="ä" k="87" /> +<hkern u1="ª" u2="ã" k="87" /> +<hkern u1="ª" u2="â" k="87" /> +<hkern u1="ª" u2="á" k="87" /> +<hkern u1="ª" u2="à" k="87" /> +<hkern u1="ª" u2="Ý" k="-48" /> +<hkern u1="ª" u2="Æ" k="169" /> +<hkern u1="ª" u2="Å" k="169" /> +<hkern u1="ª" u2="Ä" k="169" /> +<hkern u1="ª" u2="Ã" k="169" /> +<hkern u1="ª" u2="Â" k="169" /> +<hkern u1="ª" u2="Á" k="169" /> +<hkern u1="ª" u2="À" k="169" /> +<hkern u1="ª" u2="»" k="138" /> +<hkern u1="ª" u2="·" k="138" /> +<hkern u1="ª" u2="­" k="138" /> +<hkern u1="ª" u2="«" k="138" /> +<hkern u1="ª" u2="q" k="87" /> +<hkern u1="ª" u2="o" k="87" /> +<hkern u1="ª" u2="e" k="87" /> +<hkern u1="ª" u2="d" k="87" /> +<hkern u1="ª" u2="c" k="87" /> +<hkern u1="ª" u2="a" k="87" /> +<hkern u1="ª" u2="\" k="-63" /> +<hkern u1="ª" u2="Y" k="-48" /> +<hkern u1="ª" u2="W" k="-67" /> +<hkern u1="ª" u2="V" k="-63" /> +<hkern u1="ª" u2="A" k="169" /> +<hkern u1="ª" u2="/" k="169" /> +<hkern u1="ª" u2="." k="154" /> +<hkern u1="ª" u2="-" k="138" /> +<hkern u1="ª" u2="," k="154" /> +<hkern u1="ª" u2="&" k="169" /> +<hkern u1="«" u2="…" k="154" /> +<hkern u1="«" u2="„" k="154" /> +<hkern u1="«" u2="”" k="138" /> +<hkern u1="«" u2="“" k="138" /> +<hkern u1="«" u2="‚" k="154" /> +<hkern u1="«" u2="’" k="138" /> +<hkern u1="«" u2="‘" k="138" /> +<hkern u1="«" u2="Ÿ" k="179" /> +<hkern u1="«" u2="Ý" k="179" /> +<hkern u1="«" u2="Æ" k="36" /> +<hkern u1="«" u2="Å" k="36" /> +<hkern u1="«" u2="Ä" k="36" /> +<hkern u1="«" u2="Ã" k="36" /> +<hkern u1="«" u2="Â" k="36" /> +<hkern u1="«" u2="Á" k="36" /> +<hkern u1="«" u2="À" k="36" /> +<hkern u1="«" u2="º" k="138" /> +<hkern u1="«" u2="°" k="138" /> +<hkern u1="«" u2="ª" k="138" /> +<hkern u1="«" u2="\" k="113" /> +<hkern u1="«" u2="Z" k="54" /> +<hkern u1="«" u2="Y" k="179" /> +<hkern u1="«" u2="X" k="72" /> +<hkern u1="«" u2="V" k="113" /> +<hkern u1="«" u2="T" k="189" /> +<hkern u1="«" u2="A" k="36" /> +<hkern u1="«" u2="/" k="36" /> +<hkern u1="«" u2="." k="154" /> +<hkern u1="«" u2="," k="154" /> +<hkern u1="«" u2="*" k="138" /> +<hkern u1="«" u2="'" k="138" /> +<hkern u1="«" u2="&" k="36" /> +<hkern u1="«" u2=""" k="138" /> +<hkern u1="­" u2="…" k="154" /> +<hkern u1="­" u2="„" k="154" /> +<hkern u1="­" u2="”" k="138" /> +<hkern u1="­" u2="“" k="138" /> +<hkern u1="­" u2="‚" k="154" /> +<hkern u1="­" u2="’" k="138" /> +<hkern u1="­" u2="‘" k="138" /> +<hkern u1="­" u2="Ÿ" k="179" /> +<hkern u1="­" u2="Ý" k="179" /> +<hkern u1="­" u2="Æ" k="36" /> +<hkern u1="­" u2="Å" k="36" /> +<hkern u1="­" u2="Ä" k="36" /> +<hkern u1="­" u2="Ã" k="36" /> +<hkern u1="­" u2="Â" k="36" /> +<hkern u1="­" u2="Á" k="36" /> +<hkern u1="­" u2="À" k="36" /> +<hkern u1="­" u2="º" k="138" /> +<hkern u1="­" u2="°" k="138" /> +<hkern u1="­" u2="ª" k="138" /> +<hkern u1="­" u2="\" k="113" /> +<hkern u1="­" u2="Z" k="54" /> +<hkern u1="­" u2="Y" k="179" /> +<hkern u1="­" u2="X" k="72" /> +<hkern u1="­" u2="V" k="113" /> +<hkern u1="­" u2="T" k="189" /> +<hkern u1="­" u2="A" k="36" /> +<hkern u1="­" u2="/" k="36" /> +<hkern u1="­" u2="." k="154" /> +<hkern u1="­" u2="," k="154" /> +<hkern u1="­" u2="*" k="138" /> +<hkern u1="­" u2="'" k="138" /> +<hkern u1="­" u2="&" k="36" /> +<hkern u1="­" u2=""" k="138" /> +<hkern u1="®" u2="”" k="59" /> +<hkern u1="®" u2="“" k="59" /> +<hkern u1="®" u2="’" k="59" /> +<hkern u1="®" u2="‘" k="59" /> +<hkern u1="®" u2="Ÿ" k="82" /> +<hkern u1="®" u2="Ý" k="82" /> +<hkern u1="®" u2="Æ" k="29" /> +<hkern u1="®" u2="Å" k="29" /> +<hkern u1="®" u2="Ä" k="29" /> +<hkern u1="®" u2="Ã" k="29" /> +<hkern u1="®" u2="Â" k="29" /> +<hkern u1="®" u2="Á" k="29" /> +<hkern u1="®" u2="À" k="29" /> +<hkern u1="®" u2="º" k="59" /> +<hkern u1="®" u2="°" k="59" /> +<hkern u1="®" u2="ª" k="59" /> +<hkern u1="®" u2="}" k="41" /> +<hkern u1="®" u2="]" k="41" /> +<hkern u1="®" u2="\" k="46" /> +<hkern u1="®" u2="Z" k="77" /> +<hkern u1="®" u2="Y" k="82" /> +<hkern u1="®" u2="X" k="49" /> +<hkern u1="®" u2="V" k="46" /> +<hkern u1="®" u2="T" k="123" /> +<hkern u1="®" u2="A" k="29" /> +<hkern u1="®" u2="/" k="29" /> +<hkern u1="®" u2="*" k="59" /> +<hkern u1="®" u2=")" k="41" /> +<hkern u1="®" u2="'" k="59" /> +<hkern u1="®" u2="&" k="29" /> +<hkern u1="®" u2=""" k="59" /> +<hkern u1="°" u2="›" k="138" /> +<hkern u1="°" u2="‹" k="138" /> +<hkern u1="°" u2="…" k="154" /> +<hkern u1="°" u2="•" k="138" /> +<hkern u1="°" u2="„" k="154" /> +<hkern u1="°" u2="‚" k="154" /> +<hkern u1="°" u2="—" k="138" /> +<hkern u1="°" u2="–" k="138" /> +<hkern u1="°" u2="Ÿ" k="-48" /> +<hkern u1="°" u2="œ" k="87" /> +<hkern u1="°" u2="ø" k="87" /> +<hkern u1="°" u2="ö" k="87" /> +<hkern u1="°" u2="õ" k="87" /> +<hkern u1="°" u2="ô" k="87" /> +<hkern u1="°" u2="ó" k="87" /> +<hkern u1="°" u2="ò" k="87" /> +<hkern u1="°" u2="ð" k="87" /> +<hkern u1="°" u2="ë" k="87" /> +<hkern u1="°" u2="ê" k="87" /> +<hkern u1="°" u2="é" k="87" /> +<hkern u1="°" u2="è" k="87" /> +<hkern u1="°" u2="ç" k="87" /> +<hkern u1="°" u2="æ" k="87" /> +<hkern u1="°" u2="å" k="87" /> +<hkern u1="°" u2="ä" k="87" /> +<hkern u1="°" u2="ã" k="87" /> +<hkern u1="°" u2="â" k="87" /> +<hkern u1="°" u2="á" k="87" /> +<hkern u1="°" u2="à" k="87" /> +<hkern u1="°" u2="Ý" k="-48" /> +<hkern u1="°" u2="Æ" k="169" /> +<hkern u1="°" u2="Å" k="169" /> +<hkern u1="°" u2="Ä" k="169" /> +<hkern u1="°" u2="Ã" k="169" /> +<hkern u1="°" u2="Â" k="169" /> +<hkern u1="°" u2="Á" k="169" /> +<hkern u1="°" u2="À" k="169" /> +<hkern u1="°" u2="»" k="138" /> +<hkern u1="°" u2="·" k="138" /> +<hkern u1="°" u2="­" k="138" /> +<hkern u1="°" u2="«" k="138" /> +<hkern u1="°" u2="q" k="87" /> +<hkern u1="°" u2="o" k="87" /> +<hkern u1="°" u2="e" k="87" /> +<hkern u1="°" u2="d" k="87" /> +<hkern u1="°" u2="c" k="87" /> +<hkern u1="°" u2="a" k="87" /> +<hkern u1="°" u2="\" k="-63" /> +<hkern u1="°" u2="Y" k="-48" /> +<hkern u1="°" u2="W" k="-67" /> +<hkern u1="°" u2="V" k="-63" /> +<hkern u1="°" u2="A" k="169" /> +<hkern u1="°" u2="/" k="169" /> +<hkern u1="°" u2="." k="154" /> +<hkern u1="°" u2="-" k="138" /> +<hkern u1="°" u2="," k="154" /> +<hkern u1="°" u2="&" k="169" /> +<hkern u1="²" u2="Ÿ" k="-41" /> +<hkern u1="²" u2="Ý" k="-41" /> +<hkern u1="²" u2="Æ" k="159" /> +<hkern u1="²" u2="Å" k="159" /> +<hkern u1="²" u2="Ä" k="159" /> +<hkern u1="²" u2="Ã" k="159" /> +<hkern u1="²" u2="Â" k="159" /> +<hkern u1="²" u2="Á" k="159" /> +<hkern u1="²" u2="À" k="159" /> +<hkern u1="²" u2="\" k="-72" /> +<hkern u1="²" u2="Y" k="-41" /> +<hkern u1="²" u2="W" k="-72" /> +<hkern u1="²" u2="V" k="-72" /> +<hkern u1="²" u2="A" k="159" /> +<hkern u1="²" u2="/" k="159" /> +<hkern u1="²" u2="&" k="159" /> +<hkern u1="³" u2="Ÿ" k="-41" /> +<hkern u1="³" u2="Ý" k="-41" /> +<hkern u1="³" u2="Æ" k="159" /> +<hkern u1="³" u2="Å" k="159" /> +<hkern u1="³" u2="Ä" k="159" /> +<hkern u1="³" u2="Ã" k="159" /> +<hkern u1="³" u2="Â" k="159" /> +<hkern u1="³" u2="Á" k="159" /> +<hkern u1="³" u2="À" k="159" /> +<hkern u1="³" u2="\" k="-72" /> +<hkern u1="³" u2="Y" k="-41" /> +<hkern u1="³" u2="W" k="-72" /> +<hkern u1="³" u2="V" k="-72" /> +<hkern u1="³" u2="A" k="159" /> +<hkern u1="³" u2="/" k="159" /> +<hkern u1="³" u2="&" k="159" /> +<hkern u1="·" u2="…" k="154" /> +<hkern u1="·" u2="„" k="154" /> +<hkern u1="·" u2="”" k="138" /> +<hkern u1="·" u2="“" k="138" /> +<hkern u1="·" u2="‚" k="154" /> +<hkern u1="·" u2="’" k="138" /> +<hkern u1="·" u2="‘" k="138" /> +<hkern u1="·" u2="Ÿ" k="179" /> +<hkern u1="·" u2="Ý" k="179" /> +<hkern u1="·" u2="Æ" k="36" /> +<hkern u1="·" u2="Å" k="36" /> +<hkern u1="·" u2="Ä" k="36" /> +<hkern u1="·" u2="Ã" k="36" /> +<hkern u1="·" u2="Â" k="36" /> +<hkern u1="·" u2="Á" k="36" /> +<hkern u1="·" u2="À" k="36" /> +<hkern u1="·" u2="º" k="138" /> +<hkern u1="·" u2="°" k="138" /> +<hkern u1="·" u2="ª" k="138" /> +<hkern u1="·" u2="\" k="113" /> +<hkern u1="·" u2="Z" k="54" /> +<hkern u1="·" u2="Y" k="179" /> +<hkern u1="·" u2="X" k="72" /> +<hkern u1="·" u2="V" k="113" /> +<hkern u1="·" u2="T" k="189" /> +<hkern u1="·" u2="A" k="36" /> +<hkern u1="·" u2="/" k="36" /> +<hkern u1="·" u2="." k="154" /> +<hkern u1="·" u2="," k="154" /> +<hkern u1="·" u2="*" k="138" /> +<hkern u1="·" u2="'" k="138" /> +<hkern u1="·" u2="&" k="36" /> +<hkern u1="·" u2=""" k="138" /> +<hkern u1="¹" u2="Ÿ" k="-41" /> +<hkern u1="¹" u2="Ý" k="-41" /> +<hkern u1="¹" u2="Æ" k="159" /> +<hkern u1="¹" u2="Å" k="159" /> +<hkern u1="¹" u2="Ä" k="159" /> +<hkern u1="¹" u2="Ã" k="159" /> +<hkern u1="¹" u2="Â" k="159" /> +<hkern u1="¹" u2="Á" k="159" /> +<hkern u1="¹" u2="À" k="159" /> +<hkern u1="¹" u2="\" k="-72" /> +<hkern u1="¹" u2="Y" k="-41" /> +<hkern u1="¹" u2="W" k="-72" /> +<hkern u1="¹" u2="V" k="-72" /> +<hkern u1="¹" u2="A" k="159" /> +<hkern u1="¹" u2="/" k="159" /> +<hkern u1="¹" u2="&" k="159" /> +<hkern u1="º" u2="›" k="138" /> +<hkern u1="º" u2="‹" k="138" /> +<hkern u1="º" u2="…" k="154" /> +<hkern u1="º" u2="•" k="138" /> +<hkern u1="º" u2="„" k="154" /> +<hkern u1="º" u2="‚" k="154" /> +<hkern u1="º" u2="—" k="138" /> +<hkern u1="º" u2="–" k="138" /> +<hkern u1="º" u2="Ÿ" k="-48" /> +<hkern u1="º" u2="œ" k="87" /> +<hkern u1="º" u2="ø" k="87" /> +<hkern u1="º" u2="ö" k="87" /> +<hkern u1="º" u2="õ" k="87" /> +<hkern u1="º" u2="ô" k="87" /> +<hkern u1="º" u2="ó" k="87" /> +<hkern u1="º" u2="ò" k="87" /> +<hkern u1="º" u2="ð" k="87" /> +<hkern u1="º" u2="ë" k="87" /> +<hkern u1="º" u2="ê" k="87" /> +<hkern u1="º" u2="é" k="87" /> +<hkern u1="º" u2="è" k="87" /> +<hkern u1="º" u2="ç" k="87" /> +<hkern u1="º" u2="æ" k="87" /> +<hkern u1="º" u2="å" k="87" /> +<hkern u1="º" u2="ä" k="87" /> +<hkern u1="º" u2="ã" k="87" /> +<hkern u1="º" u2="â" k="87" /> +<hkern u1="º" u2="á" k="87" /> +<hkern u1="º" u2="à" k="87" /> +<hkern u1="º" u2="Ý" k="-48" /> +<hkern u1="º" u2="Æ" k="169" /> +<hkern u1="º" u2="Å" k="169" /> +<hkern u1="º" u2="Ä" k="169" /> +<hkern u1="º" u2="Ã" k="169" /> +<hkern u1="º" u2="Â" k="169" /> +<hkern u1="º" u2="Á" k="169" /> +<hkern u1="º" u2="À" k="169" /> +<hkern u1="º" u2="»" k="138" /> +<hkern u1="º" u2="·" k="138" /> +<hkern u1="º" u2="­" k="138" /> +<hkern u1="º" u2="«" k="138" /> +<hkern u1="º" u2="q" k="87" /> +<hkern u1="º" u2="o" k="87" /> +<hkern u1="º" u2="e" k="87" /> +<hkern u1="º" u2="d" k="87" /> +<hkern u1="º" u2="c" k="87" /> +<hkern u1="º" u2="a" k="87" /> +<hkern u1="º" u2="\" k="-63" /> +<hkern u1="º" u2="Y" k="-48" /> +<hkern u1="º" u2="W" k="-67" /> +<hkern u1="º" u2="V" k="-63" /> +<hkern u1="º" u2="A" k="169" /> +<hkern u1="º" u2="/" k="169" /> +<hkern u1="º" u2="." k="154" /> +<hkern u1="º" u2="-" k="138" /> +<hkern u1="º" u2="," k="154" /> +<hkern u1="º" u2="&" k="169" /> +<hkern u1="»" u2="…" k="154" /> +<hkern u1="»" u2="„" k="154" /> +<hkern u1="»" u2="”" k="138" /> +<hkern u1="»" u2="“" k="138" /> +<hkern u1="»" u2="‚" k="154" /> +<hkern u1="»" u2="’" k="138" /> +<hkern u1="»" u2="‘" k="138" /> +<hkern u1="»" u2="Ÿ" k="179" /> +<hkern u1="»" u2="Ý" k="179" /> +<hkern u1="»" u2="Æ" k="36" /> +<hkern u1="»" u2="Å" k="36" /> +<hkern u1="»" u2="Ä" k="36" /> +<hkern u1="»" u2="Ã" k="36" /> +<hkern u1="»" u2="Â" k="36" /> +<hkern u1="»" u2="Á" k="36" /> +<hkern u1="»" u2="À" k="36" /> +<hkern u1="»" u2="º" k="138" /> +<hkern u1="»" u2="°" k="138" /> +<hkern u1="»" u2="ª" k="138" /> +<hkern u1="»" u2="\" k="113" /> +<hkern u1="»" u2="Z" k="54" /> +<hkern u1="»" u2="Y" k="179" /> +<hkern u1="»" u2="X" k="72" /> +<hkern u1="»" u2="V" k="113" /> +<hkern u1="»" u2="T" k="189" /> +<hkern u1="»" u2="A" k="36" /> +<hkern u1="»" u2="/" k="36" /> +<hkern u1="»" u2="." k="154" /> +<hkern u1="»" u2="," k="154" /> +<hkern u1="»" u2="*" k="138" /> +<hkern u1="»" u2="'" k="138" /> +<hkern u1="»" u2="&" k="36" /> +<hkern u1="»" u2=""" k="138" /> +<hkern u1="À" u2="›" k="36" /> +<hkern u1="À" u2="‹" k="36" /> +<hkern u1="À" u2="•" k="36" /> +<hkern u1="À" u2="”" k="174" /> +<hkern u1="À" u2="“" k="174" /> +<hkern u1="À" u2="’" k="174" /> +<hkern u1="À" u2="‘" k="174" /> +<hkern u1="À" u2="—" k="36" /> +<hkern u1="À" u2="–" k="36" /> +<hkern u1="À" u2="Ÿ" k="138" /> +<hkern u1="À" u2="Œ" k="34" /> +<hkern u1="À" u2="ÿ" k="34" /> +<hkern u1="À" u2="ý" k="34" /> +<hkern u1="À" u2="Ý" k="138" /> +<hkern u1="À" u2="Ü" k="41" /> +<hkern u1="À" u2="Û" k="41" /> +<hkern u1="À" u2="Ú" k="41" /> +<hkern u1="À" u2="Ù" k="41" /> +<hkern u1="À" u2="Ø" k="34" /> +<hkern u1="À" u2="Ö" k="34" /> +<hkern u1="À" u2="Õ" k="34" /> +<hkern u1="À" u2="Ô" k="34" /> +<hkern u1="À" u2="Ó" k="34" /> +<hkern u1="À" u2="Ò" k="34" /> +<hkern u1="À" u2="Ç" k="34" /> +<hkern u1="À" u2="»" k="36" /> +<hkern u1="À" u2="º" k="174" /> +<hkern u1="À" u2="¹" k="164" /> +<hkern u1="À" u2="·" k="36" /> +<hkern u1="À" u2="³" k="164" /> +<hkern u1="À" u2="²" k="164" /> +<hkern u1="À" u2="°" k="174" /> +<hkern u1="À" u2="®" k="34" /> +<hkern u1="À" u2="­" k="36" /> +<hkern u1="À" u2="«" k="36" /> +<hkern u1="À" u2="ª" k="174" /> +<hkern u1="À" u2="©" k="34" /> +<hkern u1="À" u2="y" k="34" /> +<hkern u1="À" u2="w" k="15" /> +<hkern u1="À" u2="v" k="34" /> +<hkern u1="À" u2="t" k="44" /> +<hkern u1="À" u2="\" k="87" /> +<hkern u1="À" u2="Y" k="138" /> +<hkern u1="À" u2="W" k="61" /> +<hkern u1="À" u2="V" k="87" /> +<hkern u1="À" u2="U" k="41" /> +<hkern u1="À" u2="T" k="118" /> +<hkern u1="À" u2="Q" k="34" /> +<hkern u1="À" u2="O" k="34" /> +<hkern u1="À" u2="J" k="-51" /> +<hkern u1="À" u2="G" k="34" /> +<hkern u1="À" u2="C" k="34" /> +<hkern u1="À" u2="@" k="34" /> +<hkern u1="À" u2="-" k="36" /> +<hkern u1="À" u2="*" k="174" /> +<hkern u1="À" u2="'" k="174" /> +<hkern u1="À" u2=""" k="174" /> +<hkern u1="Á" u2="›" k="36" /> +<hkern u1="Á" u2="‹" k="36" /> +<hkern u1="Á" u2="•" k="36" /> +<hkern u1="Á" u2="”" k="174" /> +<hkern u1="Á" u2="“" k="174" /> +<hkern u1="Á" u2="’" k="174" /> +<hkern u1="Á" u2="‘" k="174" /> +<hkern u1="Á" u2="—" k="36" /> +<hkern u1="Á" u2="–" k="36" /> +<hkern u1="Á" u2="Ÿ" k="138" /> +<hkern u1="Á" u2="Œ" k="34" /> +<hkern u1="Á" u2="ÿ" k="34" /> +<hkern u1="Á" u2="ý" k="34" /> +<hkern u1="Á" u2="Ý" k="138" /> +<hkern u1="Á" u2="Ü" k="41" /> +<hkern u1="Á" u2="Û" k="41" /> +<hkern u1="Á" u2="Ú" k="41" /> +<hkern u1="Á" u2="Ù" k="41" /> +<hkern u1="Á" u2="Ø" k="34" /> +<hkern u1="Á" u2="Ö" k="34" /> +<hkern u1="Á" u2="Õ" k="34" /> +<hkern u1="Á" u2="Ô" k="34" /> +<hkern u1="Á" u2="Ó" k="34" /> +<hkern u1="Á" u2="Ò" k="34" /> +<hkern u1="Á" u2="Ç" k="34" /> +<hkern u1="Á" u2="»" k="36" /> +<hkern u1="Á" u2="º" k="174" /> +<hkern u1="Á" u2="¹" k="164" /> +<hkern u1="Á" u2="·" k="36" /> +<hkern u1="Á" u2="³" k="164" /> +<hkern u1="Á" u2="²" k="164" /> +<hkern u1="Á" u2="°" k="174" /> +<hkern u1="Á" u2="®" k="34" /> +<hkern u1="Á" u2="­" k="36" /> +<hkern u1="Á" u2="«" k="36" /> +<hkern u1="Á" u2="ª" k="174" /> +<hkern u1="Á" u2="©" k="34" /> +<hkern u1="Á" u2="y" k="34" /> +<hkern u1="Á" u2="w" k="15" /> +<hkern u1="Á" u2="v" k="34" /> +<hkern u1="Á" u2="t" k="44" /> +<hkern u1="Á" u2="\" k="87" /> +<hkern u1="Á" u2="Y" k="138" /> +<hkern u1="Á" u2="W" k="61" /> +<hkern u1="Á" u2="V" k="87" /> +<hkern u1="Á" u2="U" k="41" /> +<hkern u1="Á" u2="T" k="118" /> +<hkern u1="Á" u2="Q" k="34" /> +<hkern u1="Á" u2="O" k="34" /> +<hkern u1="Á" u2="J" k="-51" /> +<hkern u1="Á" u2="G" k="34" /> +<hkern u1="Á" u2="C" k="34" /> +<hkern u1="Á" u2="@" k="34" /> +<hkern u1="Á" u2="-" k="36" /> +<hkern u1="Á" u2="*" k="174" /> +<hkern u1="Á" u2="'" k="174" /> +<hkern u1="Á" u2=""" k="174" /> +<hkern u1="Â" u2="›" k="36" /> +<hkern u1="Â" u2="‹" k="36" /> +<hkern u1="Â" u2="•" k="36" /> +<hkern u1="Â" u2="”" k="174" /> +<hkern u1="Â" u2="“" k="174" /> +<hkern u1="Â" u2="’" k="174" /> +<hkern u1="Â" u2="‘" k="174" /> +<hkern u1="Â" u2="—" k="36" /> +<hkern u1="Â" u2="–" k="36" /> +<hkern u1="Â" u2="Ÿ" k="138" /> +<hkern u1="Â" u2="Œ" k="34" /> +<hkern u1="Â" u2="ÿ" k="34" /> +<hkern u1="Â" u2="ý" k="34" /> +<hkern u1="Â" u2="Ý" k="138" /> +<hkern u1="Â" u2="Ü" k="41" /> +<hkern u1="Â" u2="Û" k="41" /> +<hkern u1="Â" u2="Ú" k="41" /> +<hkern u1="Â" u2="Ù" k="41" /> +<hkern u1="Â" u2="Ø" k="34" /> +<hkern u1="Â" u2="Ö" k="34" /> +<hkern u1="Â" u2="Õ" k="34" /> +<hkern u1="Â" u2="Ô" k="34" /> +<hkern u1="Â" u2="Ó" k="34" /> +<hkern u1="Â" u2="Ò" k="34" /> +<hkern u1="Â" u2="Ç" k="34" /> +<hkern u1="Â" u2="»" k="36" /> +<hkern u1="Â" u2="º" k="174" /> +<hkern u1="Â" u2="¹" k="164" /> +<hkern u1="Â" u2="·" k="36" /> +<hkern u1="Â" u2="³" k="164" /> +<hkern u1="Â" u2="²" k="164" /> +<hkern u1="Â" u2="°" k="174" /> +<hkern u1="Â" u2="®" k="34" /> +<hkern u1="Â" u2="­" k="36" /> +<hkern u1="Â" u2="«" k="36" /> +<hkern u1="Â" u2="ª" k="174" /> +<hkern u1="Â" u2="©" k="34" /> +<hkern u1="Â" u2="y" k="34" /> +<hkern u1="Â" u2="w" k="15" /> +<hkern u1="Â" u2="v" k="34" /> +<hkern u1="Â" u2="t" k="44" /> +<hkern u1="Â" u2="\" k="87" /> +<hkern u1="Â" u2="Y" k="138" /> +<hkern u1="Â" u2="W" k="61" /> +<hkern u1="Â" u2="V" k="87" /> +<hkern u1="Â" u2="U" k="41" /> +<hkern u1="Â" u2="T" k="118" /> +<hkern u1="Â" u2="Q" k="34" /> +<hkern u1="Â" u2="O" k="34" /> +<hkern u1="Â" u2="J" k="-51" /> +<hkern u1="Â" u2="G" k="34" /> +<hkern u1="Â" u2="C" k="34" /> +<hkern u1="Â" u2="@" k="34" /> +<hkern u1="Â" u2="-" k="36" /> +<hkern u1="Â" u2="*" k="174" /> +<hkern u1="Â" u2="'" k="174" /> +<hkern u1="Â" u2=""" k="174" /> +<hkern u1="Ã" u2="›" k="36" /> +<hkern u1="Ã" u2="‹" k="36" /> +<hkern u1="Ã" u2="•" k="36" /> +<hkern u1="Ã" u2="”" k="174" /> +<hkern u1="Ã" u2="“" k="174" /> +<hkern u1="Ã" u2="’" k="174" /> +<hkern u1="Ã" u2="‘" k="174" /> +<hkern u1="Ã" u2="—" k="36" /> +<hkern u1="Ã" u2="–" k="36" /> +<hkern u1="Ã" u2="Ÿ" k="138" /> +<hkern u1="Ã" u2="Œ" k="34" /> +<hkern u1="Ã" u2="ÿ" k="34" /> +<hkern u1="Ã" u2="ý" k="34" /> +<hkern u1="Ã" u2="Ý" k="138" /> +<hkern u1="Ã" u2="Ü" k="41" /> +<hkern u1="Ã" u2="Û" k="41" /> +<hkern u1="Ã" u2="Ú" k="41" /> +<hkern u1="Ã" u2="Ù" k="41" /> +<hkern u1="Ã" u2="Ø" k="34" /> +<hkern u1="Ã" u2="Ö" k="34" /> +<hkern u1="Ã" u2="Õ" k="34" /> +<hkern u1="Ã" u2="Ô" k="34" /> +<hkern u1="Ã" u2="Ó" k="34" /> +<hkern u1="Ã" u2="Ò" k="34" /> +<hkern u1="Ã" u2="Ç" k="34" /> +<hkern u1="Ã" u2="»" k="36" /> +<hkern u1="Ã" u2="º" k="174" /> +<hkern u1="Ã" u2="¹" k="164" /> +<hkern u1="Ã" u2="·" k="36" /> +<hkern u1="Ã" u2="³" k="164" /> +<hkern u1="Ã" u2="²" k="164" /> +<hkern u1="Ã" u2="°" k="174" /> +<hkern u1="Ã" u2="®" k="34" /> +<hkern u1="Ã" u2="­" k="36" /> +<hkern u1="Ã" u2="«" k="36" /> +<hkern u1="Ã" u2="ª" k="174" /> +<hkern u1="Ã" u2="©" k="34" /> +<hkern u1="Ã" u2="y" k="34" /> +<hkern u1="Ã" u2="w" k="15" /> +<hkern u1="Ã" u2="v" k="34" /> +<hkern u1="Ã" u2="t" k="44" /> +<hkern u1="Ã" u2="\" k="87" /> +<hkern u1="Ã" u2="Y" k="138" /> +<hkern u1="Ã" u2="W" k="61" /> +<hkern u1="Ã" u2="V" k="87" /> +<hkern u1="Ã" u2="U" k="41" /> +<hkern u1="Ã" u2="T" k="118" /> +<hkern u1="Ã" u2="Q" k="34" /> +<hkern u1="Ã" u2="O" k="34" /> +<hkern u1="Ã" u2="J" k="-51" /> +<hkern u1="Ã" u2="G" k="34" /> +<hkern u1="Ã" u2="C" k="34" /> +<hkern u1="Ã" u2="@" k="34" /> +<hkern u1="Ã" u2="-" k="36" /> +<hkern u1="Ã" u2="*" k="174" /> +<hkern u1="Ã" u2="'" k="174" /> +<hkern u1="Ã" u2=""" k="174" /> +<hkern u1="Ä" u2="›" k="36" /> +<hkern u1="Ä" u2="‹" k="36" /> +<hkern u1="Ä" u2="•" k="36" /> +<hkern u1="Ä" u2="”" k="174" /> +<hkern u1="Ä" u2="“" k="174" /> +<hkern u1="Ä" u2="’" k="174" /> +<hkern u1="Ä" u2="‘" k="174" /> +<hkern u1="Ä" u2="—" k="36" /> +<hkern u1="Ä" u2="–" k="36" /> +<hkern u1="Ä" u2="Ÿ" k="138" /> +<hkern u1="Ä" u2="Œ" k="34" /> +<hkern u1="Ä" u2="ÿ" k="34" /> +<hkern u1="Ä" u2="ý" k="34" /> +<hkern u1="Ä" u2="Ý" k="138" /> +<hkern u1="Ä" u2="Ü" k="41" /> +<hkern u1="Ä" u2="Û" k="41" /> +<hkern u1="Ä" u2="Ú" k="41" /> +<hkern u1="Ä" u2="Ù" k="41" /> +<hkern u1="Ä" u2="Ø" k="34" /> +<hkern u1="Ä" u2="Ö" k="34" /> +<hkern u1="Ä" u2="Õ" k="34" /> +<hkern u1="Ä" u2="Ô" k="34" /> +<hkern u1="Ä" u2="Ó" k="34" /> +<hkern u1="Ä" u2="Ò" k="34" /> +<hkern u1="Ä" u2="Ç" k="34" /> +<hkern u1="Ä" u2="»" k="36" /> +<hkern u1="Ä" u2="º" k="174" /> +<hkern u1="Ä" u2="¹" k="164" /> +<hkern u1="Ä" u2="·" k="36" /> +<hkern u1="Ä" u2="³" k="164" /> +<hkern u1="Ä" u2="²" k="164" /> +<hkern u1="Ä" u2="°" k="174" /> +<hkern u1="Ä" u2="®" k="34" /> +<hkern u1="Ä" u2="­" k="36" /> +<hkern u1="Ä" u2="«" k="36" /> +<hkern u1="Ä" u2="ª" k="174" /> +<hkern u1="Ä" u2="©" k="34" /> +<hkern u1="Ä" u2="y" k="34" /> +<hkern u1="Ä" u2="w" k="15" /> +<hkern u1="Ä" u2="v" k="34" /> +<hkern u1="Ä" u2="t" k="44" /> +<hkern u1="Ä" u2="\" k="87" /> +<hkern u1="Ä" u2="Y" k="138" /> +<hkern u1="Ä" u2="W" k="61" /> +<hkern u1="Ä" u2="V" k="87" /> +<hkern u1="Ä" u2="U" k="41" /> +<hkern u1="Ä" u2="T" k="118" /> +<hkern u1="Ä" u2="Q" k="34" /> +<hkern u1="Ä" u2="O" k="34" /> +<hkern u1="Ä" u2="J" k="-51" /> +<hkern u1="Ä" u2="G" k="34" /> +<hkern u1="Ä" u2="C" k="34" /> +<hkern u1="Ä" u2="@" k="34" /> +<hkern u1="Ä" u2="-" k="36" /> +<hkern u1="Ä" u2="*" k="174" /> +<hkern u1="Ä" u2="'" k="174" /> +<hkern u1="Ä" u2=""" k="174" /> +<hkern u1="Å" u2="›" k="36" /> +<hkern u1="Å" u2="‹" k="36" /> +<hkern u1="Å" u2="•" k="36" /> +<hkern u1="Å" u2="”" k="174" /> +<hkern u1="Å" u2="“" k="174" /> +<hkern u1="Å" u2="’" k="174" /> +<hkern u1="Å" u2="‘" k="174" /> +<hkern u1="Å" u2="—" k="36" /> +<hkern u1="Å" u2="–" k="36" /> +<hkern u1="Å" u2="Ÿ" k="138" /> +<hkern u1="Å" u2="Œ" k="34" /> +<hkern u1="Å" u2="ÿ" k="34" /> +<hkern u1="Å" u2="ý" k="34" /> +<hkern u1="Å" u2="Ý" k="138" /> +<hkern u1="Å" u2="Ü" k="41" /> +<hkern u1="Å" u2="Û" k="41" /> +<hkern u1="Å" u2="Ú" k="41" /> +<hkern u1="Å" u2="Ù" k="41" /> +<hkern u1="Å" u2="Ø" k="34" /> +<hkern u1="Å" u2="Ö" k="34" /> +<hkern u1="Å" u2="Õ" k="34" /> +<hkern u1="Å" u2="Ô" k="34" /> +<hkern u1="Å" u2="Ó" k="34" /> +<hkern u1="Å" u2="Ò" k="34" /> +<hkern u1="Å" u2="Ç" k="34" /> +<hkern u1="Å" u2="»" k="36" /> +<hkern u1="Å" u2="º" k="174" /> +<hkern u1="Å" u2="¹" k="164" /> +<hkern u1="Å" u2="·" k="36" /> +<hkern u1="Å" u2="³" k="164" /> +<hkern u1="Å" u2="²" k="164" /> +<hkern u1="Å" u2="°" k="174" /> +<hkern u1="Å" u2="®" k="34" /> +<hkern u1="Å" u2="­" k="36" /> +<hkern u1="Å" u2="«" k="36" /> +<hkern u1="Å" u2="ª" k="174" /> +<hkern u1="Å" u2="©" k="34" /> +<hkern u1="Å" u2="y" k="34" /> +<hkern u1="Å" u2="w" k="15" /> +<hkern u1="Å" u2="v" k="34" /> +<hkern u1="Å" u2="t" k="44" /> +<hkern u1="Å" u2="\" k="87" /> +<hkern u1="Å" u2="Y" k="138" /> +<hkern u1="Å" u2="W" k="61" /> +<hkern u1="Å" u2="V" k="87" /> +<hkern u1="Å" u2="U" k="41" /> +<hkern u1="Å" u2="T" k="118" /> +<hkern u1="Å" u2="Q" k="34" /> +<hkern u1="Å" u2="O" k="34" /> +<hkern u1="Å" u2="J" k="-51" /> +<hkern u1="Å" u2="G" k="34" /> +<hkern u1="Å" u2="C" k="34" /> +<hkern u1="Å" u2="@" k="34" /> +<hkern u1="Å" u2="-" k="36" /> +<hkern u1="Å" u2="*" k="174" /> +<hkern u1="Å" u2="'" k="174" /> +<hkern u1="Å" u2=""" k="174" /> +<hkern u1="Ç" u2="›" k="148" /> +<hkern u1="Ç" u2="‹" k="148" /> +<hkern u1="Ç" u2="•" k="148" /> +<hkern u1="Ç" u2="—" k="148" /> +<hkern u1="Ç" u2="–" k="148" /> +<hkern u1="Ç" u2="»" k="148" /> +<hkern u1="Ç" u2="·" k="148" /> +<hkern u1="Ç" u2="­" k="148" /> +<hkern u1="Ç" u2="«" k="148" /> +<hkern u1="Ç" u2="-" k="148" /> +<hkern u1="Ð" u2="”" k="59" /> +<hkern u1="Ð" u2="“" k="59" /> +<hkern u1="Ð" u2="’" k="59" /> +<hkern u1="Ð" u2="‘" k="59" /> +<hkern u1="Ð" u2="Ÿ" k="82" /> +<hkern u1="Ð" u2="Ý" k="82" /> +<hkern u1="Ð" u2="Æ" k="29" /> +<hkern u1="Ð" u2="Å" k="29" /> +<hkern u1="Ð" u2="Ä" k="29" /> +<hkern u1="Ð" u2="Ã" k="29" /> +<hkern u1="Ð" u2="Â" k="29" /> +<hkern u1="Ð" u2="Á" k="29" /> +<hkern u1="Ð" u2="À" k="29" /> +<hkern u1="Ð" u2="º" k="59" /> +<hkern u1="Ð" u2="°" k="59" /> +<hkern u1="Ð" u2="ª" k="59" /> +<hkern u1="Ð" u2="}" k="41" /> +<hkern u1="Ð" u2="]" k="41" /> +<hkern u1="Ð" u2="\" k="46" /> +<hkern u1="Ð" u2="Z" k="77" /> +<hkern u1="Ð" u2="Y" k="82" /> +<hkern u1="Ð" u2="X" k="49" /> +<hkern u1="Ð" u2="V" k="46" /> +<hkern u1="Ð" u2="T" k="123" /> +<hkern u1="Ð" u2="A" k="29" /> +<hkern u1="Ð" u2="/" k="29" /> +<hkern u1="Ð" u2="*" k="59" /> +<hkern u1="Ð" u2=")" k="41" /> +<hkern u1="Ð" u2="'" k="59" /> +<hkern u1="Ð" u2="&" k="29" /> +<hkern u1="Ð" u2=""" k="59" /> +<hkern u1="Ò" u2="”" k="59" /> +<hkern u1="Ò" u2="“" k="59" /> +<hkern u1="Ò" u2="’" k="59" /> +<hkern u1="Ò" u2="‘" k="59" /> +<hkern u1="Ò" u2="Ÿ" k="82" /> +<hkern u1="Ò" u2="Ý" k="82" /> +<hkern u1="Ò" u2="Æ" k="29" /> +<hkern u1="Ò" u2="Å" k="29" /> +<hkern u1="Ò" u2="Ä" k="29" /> +<hkern u1="Ò" u2="Ã" k="29" /> +<hkern u1="Ò" u2="Â" k="29" /> +<hkern u1="Ò" u2="Á" k="29" /> +<hkern u1="Ò" u2="À" k="29" /> +<hkern u1="Ò" u2="º" k="59" /> +<hkern u1="Ò" u2="°" k="59" /> +<hkern u1="Ò" u2="ª" k="59" /> +<hkern u1="Ò" u2="}" k="41" /> +<hkern u1="Ò" u2="]" k="41" /> +<hkern u1="Ò" u2="\" k="46" /> +<hkern u1="Ò" u2="Z" k="77" /> +<hkern u1="Ò" u2="Y" k="82" /> +<hkern u1="Ò" u2="X" k="49" /> +<hkern u1="Ò" u2="V" k="46" /> +<hkern u1="Ò" u2="T" k="123" /> +<hkern u1="Ò" u2="A" k="29" /> +<hkern u1="Ò" u2="/" k="29" /> +<hkern u1="Ò" u2="*" k="59" /> +<hkern u1="Ò" u2=")" k="41" /> +<hkern u1="Ò" u2="'" k="59" /> +<hkern u1="Ò" u2="&" k="29" /> +<hkern u1="Ò" u2=""" k="59" /> +<hkern u1="Ó" u2="”" k="59" /> +<hkern u1="Ó" u2="“" k="59" /> +<hkern u1="Ó" u2="’" k="59" /> +<hkern u1="Ó" u2="‘" k="59" /> +<hkern u1="Ó" u2="Ÿ" k="82" /> +<hkern u1="Ó" u2="Ý" k="82" /> +<hkern u1="Ó" u2="Æ" k="29" /> +<hkern u1="Ó" u2="Å" k="29" /> +<hkern u1="Ó" u2="Ä" k="29" /> +<hkern u1="Ó" u2="Ã" k="29" /> +<hkern u1="Ó" u2="Â" k="29" /> +<hkern u1="Ó" u2="Á" k="29" /> +<hkern u1="Ó" u2="À" k="29" /> +<hkern u1="Ó" u2="º" k="59" /> +<hkern u1="Ó" u2="°" k="59" /> +<hkern u1="Ó" u2="ª" k="59" /> +<hkern u1="Ó" u2="}" k="41" /> +<hkern u1="Ó" u2="]" k="41" /> +<hkern u1="Ó" u2="\" k="46" /> +<hkern u1="Ó" u2="Z" k="77" /> +<hkern u1="Ó" u2="Y" k="82" /> +<hkern u1="Ó" u2="X" k="49" /> +<hkern u1="Ó" u2="V" k="46" /> +<hkern u1="Ó" u2="T" k="123" /> +<hkern u1="Ó" u2="A" k="29" /> +<hkern u1="Ó" u2="/" k="29" /> +<hkern u1="Ó" u2="*" k="59" /> +<hkern u1="Ó" u2=")" k="41" /> +<hkern u1="Ó" u2="'" k="59" /> +<hkern u1="Ó" u2="&" k="29" /> +<hkern u1="Ó" u2=""" k="59" /> +<hkern u1="Ô" u2="”" k="59" /> +<hkern u1="Ô" u2="“" k="59" /> +<hkern u1="Ô" u2="’" k="59" /> +<hkern u1="Ô" u2="‘" k="59" /> +<hkern u1="Ô" u2="Ÿ" k="82" /> +<hkern u1="Ô" u2="Ý" k="82" /> +<hkern u1="Ô" u2="Æ" k="29" /> +<hkern u1="Ô" u2="Å" k="29" /> +<hkern u1="Ô" u2="Ä" k="29" /> +<hkern u1="Ô" u2="Ã" k="29" /> +<hkern u1="Ô" u2="Â" k="29" /> +<hkern u1="Ô" u2="Á" k="29" /> +<hkern u1="Ô" u2="À" k="29" /> +<hkern u1="Ô" u2="º" k="59" /> +<hkern u1="Ô" u2="°" k="59" /> +<hkern u1="Ô" u2="ª" k="59" /> +<hkern u1="Ô" u2="}" k="41" /> +<hkern u1="Ô" u2="]" k="41" /> +<hkern u1="Ô" u2="\" k="46" /> +<hkern u1="Ô" u2="Z" k="77" /> +<hkern u1="Ô" u2="Y" k="82" /> +<hkern u1="Ô" u2="X" k="49" /> +<hkern u1="Ô" u2="V" k="46" /> +<hkern u1="Ô" u2="T" k="123" /> +<hkern u1="Ô" u2="A" k="29" /> +<hkern u1="Ô" u2="/" k="29" /> +<hkern u1="Ô" u2="*" k="59" /> +<hkern u1="Ô" u2=")" k="41" /> +<hkern u1="Ô" u2="'" k="59" /> +<hkern u1="Ô" u2="&" k="29" /> +<hkern u1="Ô" u2=""" k="59" /> +<hkern u1="Õ" u2="”" k="59" /> +<hkern u1="Õ" u2="“" k="59" /> +<hkern u1="Õ" u2="’" k="59" /> +<hkern u1="Õ" u2="‘" k="59" /> +<hkern u1="Õ" u2="Ÿ" k="82" /> +<hkern u1="Õ" u2="Ý" k="82" /> +<hkern u1="Õ" u2="Æ" k="29" /> +<hkern u1="Õ" u2="Å" k="29" /> +<hkern u1="Õ" u2="Ä" k="29" /> +<hkern u1="Õ" u2="Ã" k="29" /> +<hkern u1="Õ" u2="Â" k="29" /> +<hkern u1="Õ" u2="Á" k="29" /> +<hkern u1="Õ" u2="À" k="29" /> +<hkern u1="Õ" u2="º" k="59" /> +<hkern u1="Õ" u2="°" k="59" /> +<hkern u1="Õ" u2="ª" k="59" /> +<hkern u1="Õ" u2="}" k="41" /> +<hkern u1="Õ" u2="]" k="41" /> +<hkern u1="Õ" u2="\" k="46" /> +<hkern u1="Õ" u2="Z" k="77" /> +<hkern u1="Õ" u2="Y" k="82" /> +<hkern u1="Õ" u2="X" k="49" /> +<hkern u1="Õ" u2="V" k="46" /> +<hkern u1="Õ" u2="T" k="123" /> +<hkern u1="Õ" u2="A" k="29" /> +<hkern u1="Õ" u2="/" k="29" /> +<hkern u1="Õ" u2="*" k="59" /> +<hkern u1="Õ" u2=")" k="41" /> +<hkern u1="Õ" u2="'" k="59" /> +<hkern u1="Õ" u2="&" k="29" /> +<hkern u1="Õ" u2=""" k="59" /> +<hkern u1="Ö" u2="”" k="59" /> +<hkern u1="Ö" u2="“" k="59" /> +<hkern u1="Ö" u2="’" k="59" /> +<hkern u1="Ö" u2="‘" k="59" /> +<hkern u1="Ö" u2="Ÿ" k="82" /> +<hkern u1="Ö" u2="Ý" k="82" /> +<hkern u1="Ö" u2="Æ" k="29" /> +<hkern u1="Ö" u2="Å" k="29" /> +<hkern u1="Ö" u2="Ä" k="29" /> +<hkern u1="Ö" u2="Ã" k="29" /> +<hkern u1="Ö" u2="Â" k="29" /> +<hkern u1="Ö" u2="Á" k="29" /> +<hkern u1="Ö" u2="À" k="29" /> +<hkern u1="Ö" u2="º" k="59" /> +<hkern u1="Ö" u2="°" k="59" /> +<hkern u1="Ö" u2="ª" k="59" /> +<hkern u1="Ö" u2="}" k="41" /> +<hkern u1="Ö" u2="]" k="41" /> +<hkern u1="Ö" u2="\" k="46" /> +<hkern u1="Ö" u2="Z" k="77" /> +<hkern u1="Ö" u2="Y" k="82" /> +<hkern u1="Ö" u2="X" k="49" /> +<hkern u1="Ö" u2="V" k="46" /> +<hkern u1="Ö" u2="T" k="123" /> +<hkern u1="Ö" u2="A" k="29" /> +<hkern u1="Ö" u2="/" k="29" /> +<hkern u1="Ö" u2="*" k="59" /> +<hkern u1="Ö" u2=")" k="41" /> +<hkern u1="Ö" u2="'" k="59" /> +<hkern u1="Ö" u2="&" k="29" /> +<hkern u1="Ö" u2=""" k="59" /> +<hkern u1="Ù" u2="Æ" k="41" /> +<hkern u1="Ù" u2="Å" k="41" /> +<hkern u1="Ù" u2="Ä" k="41" /> +<hkern u1="Ù" u2="Ã" k="41" /> +<hkern u1="Ù" u2="Â" k="41" /> +<hkern u1="Ù" u2="Á" k="41" /> +<hkern u1="Ù" u2="À" k="41" /> +<hkern u1="Ù" u2="A" k="41" /> +<hkern u1="Ù" u2="/" k="41" /> +<hkern u1="Ù" u2="&" k="41" /> +<hkern u1="Ú" u2="Æ" k="41" /> +<hkern u1="Ú" u2="Å" k="41" /> +<hkern u1="Ú" u2="Ä" k="41" /> +<hkern u1="Ú" u2="Ã" k="41" /> +<hkern u1="Ú" u2="Â" k="41" /> +<hkern u1="Ú" u2="Á" k="41" /> +<hkern u1="Ú" u2="À" k="41" /> +<hkern u1="Ú" u2="A" k="41" /> +<hkern u1="Ú" u2="/" k="41" /> +<hkern u1="Ú" u2="&" k="41" /> +<hkern u1="Û" u2="Æ" k="41" /> +<hkern u1="Û" u2="Å" k="41" /> +<hkern u1="Û" u2="Ä" k="41" /> +<hkern u1="Û" u2="Ã" k="41" /> +<hkern u1="Û" u2="Â" k="41" /> +<hkern u1="Û" u2="Á" k="41" /> +<hkern u1="Û" u2="À" k="41" /> +<hkern u1="Û" u2="A" k="41" /> +<hkern u1="Û" u2="/" k="41" /> +<hkern u1="Û" u2="&" k="41" /> +<hkern u1="Ü" u2="Æ" k="41" /> +<hkern u1="Ü" u2="Å" k="41" /> +<hkern u1="Ü" u2="Ä" k="41" /> +<hkern u1="Ü" u2="Ã" k="41" /> +<hkern u1="Ü" u2="Â" k="41" /> +<hkern u1="Ü" u2="Á" k="41" /> +<hkern u1="Ü" u2="À" k="41" /> +<hkern u1="Ü" u2="A" k="41" /> +<hkern u1="Ü" u2="/" k="41" /> +<hkern u1="Ü" u2="&" k="41" /> +<hkern u1="Ý" u2="›" k="174" /> +<hkern u1="Ý" u2="‹" k="174" /> +<hkern u1="Ý" u2="…" k="169" /> +<hkern u1="Ý" u2="•" k="174" /> +<hkern u1="Ý" u2="„" k="169" /> +<hkern u1="Ý" u2="”" k="-53" /> +<hkern u1="Ý" u2="“" k="-53" /> +<hkern u1="Ý" u2="‚" k="169" /> +<hkern u1="Ý" u2="’" k="-53" /> +<hkern u1="Ý" u2="‘" k="-53" /> +<hkern u1="Ý" u2="—" k="174" /> +<hkern u1="Ý" u2="–" k="174" /> +<hkern u1="Ý" u2="œ" k="189" /> +<hkern u1="Ý" u2="Œ" k="77" /> +<hkern u1="Ý" u2="ü" k="121" /> +<hkern u1="Ý" u2="û" k="121" /> +<hkern u1="Ý" u2="ú" k="121" /> +<hkern u1="Ý" u2="ù" k="121" /> +<hkern u1="Ý" u2="ø" k="189" /> +<hkern u1="Ý" u2="ö" k="189" /> +<hkern u1="Ý" u2="õ" k="189" /> +<hkern u1="Ý" u2="ô" k="189" /> +<hkern u1="Ý" u2="ó" k="189" /> +<hkern u1="Ý" u2="ò" k="189" /> +<hkern u1="Ý" u2="ñ" k="121" /> +<hkern u1="Ý" u2="ð" k="189" /> +<hkern u1="Ý" u2="ë" k="189" /> +<hkern u1="Ý" u2="ê" k="189" /> +<hkern u1="Ý" u2="é" k="189" /> +<hkern u1="Ý" u2="è" k="189" /> +<hkern u1="Ý" u2="ç" k="189" /> +<hkern u1="Ý" u2="æ" k="189" /> +<hkern u1="Ý" u2="å" k="189" /> +<hkern u1="Ý" u2="ä" k="189" /> +<hkern u1="Ý" u2="ã" k="189" /> +<hkern u1="Ý" u2="â" k="189" /> +<hkern u1="Ý" u2="á" k="189" /> +<hkern u1="Ý" u2="à" k="189" /> +<hkern u1="Ý" u2="Ø" k="77" /> +<hkern u1="Ý" u2="Ö" k="77" /> +<hkern u1="Ý" u2="Õ" k="77" /> +<hkern u1="Ý" u2="Ô" k="77" /> +<hkern u1="Ý" u2="Ó" k="77" /> +<hkern u1="Ý" u2="Ò" k="77" /> +<hkern u1="Ý" u2="Ç" k="77" /> +<hkern u1="Ý" u2="Æ" k="133" /> +<hkern u1="Ý" u2="Å" k="133" /> +<hkern u1="Ý" u2="Ä" k="133" /> +<hkern u1="Ý" u2="Ã" k="133" /> +<hkern u1="Ý" u2="Â" k="133" /> +<hkern u1="Ý" u2="Á" k="133" /> +<hkern u1="Ý" u2="À" k="133" /> +<hkern u1="Ý" u2="»" k="174" /> +<hkern u1="Ý" u2="º" k="-53" /> +<hkern u1="Ý" u2="¹" k="-51" /> +<hkern u1="Ý" u2="·" k="174" /> +<hkern u1="Ý" u2="µ" k="121" /> +<hkern u1="Ý" u2="³" k="-51" /> +<hkern u1="Ý" u2="²" k="-51" /> +<hkern u1="Ý" u2="°" k="-53" /> +<hkern u1="Ý" u2="®" k="77" /> +<hkern u1="Ý" u2="­" k="174" /> +<hkern u1="Ý" u2="«" k="174" /> +<hkern u1="Ý" u2="ª" k="-53" /> +<hkern u1="Ý" u2="©" k="77" /> +<hkern u1="Ý" u2="z" k="83" /> +<hkern u1="Ý" u2="u" k="121" /> +<hkern u1="Ý" u2="s" k="189" /> +<hkern u1="Ý" u2="r" k="121" /> +<hkern u1="Ý" u2="q" k="189" /> +<hkern u1="Ý" u2="p" k="121" /> +<hkern u1="Ý" u2="o" k="189" /> +<hkern u1="Ý" u2="n" k="121" /> +<hkern u1="Ý" u2="m" k="121" /> +<hkern u1="Ý" u2="g" k="165" /> +<hkern u1="Ý" u2="e" k="189" /> +<hkern u1="Ý" u2="d" k="189" /> +<hkern u1="Ý" u2="c" k="189" /> +<hkern u1="Ý" u2="a" k="189" /> +<hkern u1="Ý" u2="Q" k="77" /> +<hkern u1="Ý" u2="O" k="77" /> +<hkern u1="Ý" u2="J" k="205" /> +<hkern u1="Ý" u2="G" k="77" /> +<hkern u1="Ý" u2="C" k="77" /> +<hkern u1="Ý" u2="A" k="133" /> +<hkern u1="Ý" u2="@" k="77" /> +<hkern u1="Ý" u2="?" k="-51" /> +<hkern u1="Ý" u2=";" k="121" /> +<hkern u1="Ý" u2=":" k="121" /> +<hkern u1="Ý" u2="/" k="133" /> +<hkern u1="Ý" u2="." k="169" /> +<hkern u1="Ý" u2="-" k="174" /> +<hkern u1="Ý" u2="," k="169" /> +<hkern u1="Ý" u2="*" k="-53" /> +<hkern u1="Ý" u2="'" k="-53" /> +<hkern u1="Ý" u2="&" k="133" /> +<hkern u1="Ý" u2=""" k="-53" /> +<hkern u1="Þ" u2="”" k="59" /> +<hkern u1="Þ" u2="“" k="59" /> +<hkern u1="Þ" u2="’" k="59" /> +<hkern u1="Þ" u2="‘" k="59" /> +<hkern u1="Þ" u2="Ÿ" k="82" /> +<hkern u1="Þ" u2="Ý" k="82" /> +<hkern u1="Þ" u2="Æ" k="29" /> +<hkern u1="Þ" u2="Å" k="29" /> +<hkern u1="Þ" u2="Ä" k="29" /> +<hkern u1="Þ" u2="Ã" k="29" /> +<hkern u1="Þ" u2="Â" k="29" /> +<hkern u1="Þ" u2="Á" k="29" /> +<hkern u1="Þ" u2="À" k="29" /> +<hkern u1="Þ" u2="º" k="59" /> +<hkern u1="Þ" u2="°" k="59" /> +<hkern u1="Þ" u2="ª" k="59" /> +<hkern u1="Þ" u2="}" k="41" /> +<hkern u1="Þ" u2="]" k="41" /> +<hkern u1="Þ" u2="\" k="46" /> +<hkern u1="Þ" u2="Z" k="77" /> +<hkern u1="Þ" u2="Y" k="82" /> +<hkern u1="Þ" u2="X" k="49" /> +<hkern u1="Þ" u2="V" k="46" /> +<hkern u1="Þ" u2="T" k="123" /> +<hkern u1="Þ" u2="A" k="29" /> +<hkern u1="Þ" u2="/" k="29" /> +<hkern u1="Þ" u2="*" k="59" /> +<hkern u1="Þ" u2=")" k="41" /> +<hkern u1="Þ" u2="'" k="59" /> +<hkern u1="Þ" u2="&" k="29" /> +<hkern u1="Þ" u2=""" k="59" /> +<hkern u1="æ" u2="”" k="82" /> +<hkern u1="æ" u2="“" k="82" /> +<hkern u1="æ" u2="’" k="82" /> +<hkern u1="æ" u2="‘" k="82" /> +<hkern u1="æ" u2="º" k="82" /> +<hkern u1="æ" u2="°" k="82" /> +<hkern u1="æ" u2="ª" k="82" /> +<hkern u1="æ" u2="}" k="26" /> +<hkern u1="æ" u2="x" k="46" /> +<hkern u1="æ" u2="]" k="26" /> +<hkern u1="æ" u2="*" k="82" /> +<hkern u1="æ" u2=")" k="26" /> +<hkern u1="æ" u2="'" k="82" /> +<hkern u1="æ" u2=""" k="82" /> +<hkern u1="è" u2="”" k="82" /> +<hkern u1="è" u2="“" k="82" /> +<hkern u1="è" u2="’" k="82" /> +<hkern u1="è" u2="‘" k="82" /> +<hkern u1="è" u2="º" k="82" /> +<hkern u1="è" u2="°" k="82" /> +<hkern u1="è" u2="ª" k="82" /> +<hkern u1="è" u2="}" k="26" /> +<hkern u1="è" u2="x" k="46" /> +<hkern u1="è" u2="]" k="26" /> +<hkern u1="è" u2="*" k="82" /> +<hkern u1="è" u2=")" k="26" /> +<hkern u1="è" u2="'" k="82" /> +<hkern u1="è" u2=""" k="82" /> +<hkern u1="é" u2="”" k="82" /> +<hkern u1="é" u2="“" k="82" /> +<hkern u1="é" u2="’" k="82" /> +<hkern u1="é" u2="‘" k="82" /> +<hkern u1="é" u2="º" k="82" /> +<hkern u1="é" u2="°" k="82" /> +<hkern u1="é" u2="ª" k="82" /> +<hkern u1="é" u2="}" k="26" /> +<hkern u1="é" u2="x" k="46" /> +<hkern u1="é" u2="]" k="26" /> +<hkern u1="é" u2="*" k="82" /> +<hkern u1="é" u2=")" k="26" /> +<hkern u1="é" u2="'" k="82" /> +<hkern u1="é" u2=""" k="82" /> +<hkern u1="ê" u2="”" k="82" /> +<hkern u1="ê" u2="“" k="82" /> +<hkern u1="ê" u2="’" k="82" /> +<hkern u1="ê" u2="‘" k="82" /> +<hkern u1="ê" u2="º" k="82" /> +<hkern u1="ê" u2="°" k="82" /> +<hkern u1="ê" u2="ª" k="82" /> +<hkern u1="ê" u2="}" k="26" /> +<hkern u1="ê" u2="x" k="46" /> +<hkern u1="ê" u2="]" k="26" /> +<hkern u1="ê" u2="*" k="82" /> +<hkern u1="ê" u2=")" k="26" /> +<hkern u1="ê" u2="'" k="82" /> +<hkern u1="ê" u2=""" k="82" /> +<hkern u1="ë" u2="”" k="82" /> +<hkern u1="ë" u2="“" k="82" /> +<hkern u1="ë" u2="’" k="82" /> +<hkern u1="ë" u2="‘" k="82" /> +<hkern u1="ë" u2="º" k="82" /> +<hkern u1="ë" u2="°" k="82" /> +<hkern u1="ë" u2="ª" k="82" /> +<hkern u1="ë" u2="}" k="26" /> +<hkern u1="ë" u2="x" k="46" /> +<hkern u1="ë" u2="]" k="26" /> +<hkern u1="ë" u2="*" k="82" /> +<hkern u1="ë" u2=")" k="26" /> +<hkern u1="ë" u2="'" k="82" /> +<hkern u1="ë" u2=""" k="82" /> +<hkern u1="ñ" u2="”" k="61" /> +<hkern u1="ñ" u2="“" k="61" /> +<hkern u1="ñ" u2="’" k="61" /> +<hkern u1="ñ" u2="‘" k="61" /> +<hkern u1="ñ" u2="ÿ" k="26" /> +<hkern u1="ñ" u2="ý" k="26" /> +<hkern u1="ñ" u2="º" k="61" /> +<hkern u1="ñ" u2="¹" k="82" /> +<hkern u1="ñ" u2="³" k="82" /> +<hkern u1="ñ" u2="²" k="82" /> +<hkern u1="ñ" u2="°" k="61" /> +<hkern u1="ñ" u2="ª" k="61" /> +<hkern u1="ñ" u2="y" k="31" /> +<hkern u1="ñ" u2="v" k="26" /> +<hkern u1="ñ" u2="*" k="61" /> +<hkern u1="ñ" u2="'" k="61" /> +<hkern u1="ñ" u2=""" k="61" /> +<hkern u1="ò" u2="”" k="82" /> +<hkern u1="ò" u2="“" k="82" /> +<hkern u1="ò" u2="’" k="82" /> +<hkern u1="ò" u2="‘" k="82" /> +<hkern u1="ò" u2="º" k="82" /> +<hkern u1="ò" u2="°" k="82" /> +<hkern u1="ò" u2="ª" k="82" /> +<hkern u1="ò" u2="}" k="26" /> +<hkern u1="ò" u2="x" k="46" /> +<hkern u1="ò" u2="]" k="26" /> +<hkern u1="ò" u2="*" k="82" /> +<hkern u1="ò" u2=")" k="26" /> +<hkern u1="ò" u2="'" k="82" /> +<hkern u1="ò" u2=""" k="82" /> +<hkern u1="ó" u2="”" k="82" /> +<hkern u1="ó" u2="“" k="82" /> +<hkern u1="ó" u2="’" k="82" /> +<hkern u1="ó" u2="‘" k="82" /> +<hkern u1="ó" u2="º" k="82" /> +<hkern u1="ó" u2="°" k="82" /> +<hkern u1="ó" u2="ª" k="82" /> +<hkern u1="ó" u2="}" k="26" /> +<hkern u1="ó" u2="x" k="46" /> +<hkern u1="ó" u2="]" k="26" /> +<hkern u1="ó" u2="*" k="82" /> +<hkern u1="ó" u2=")" k="26" /> +<hkern u1="ó" u2="'" k="82" /> +<hkern u1="ó" u2=""" k="82" /> +<hkern u1="ô" u2="”" k="82" /> +<hkern u1="ô" u2="“" k="82" /> +<hkern u1="ô" u2="’" k="82" /> +<hkern u1="ô" u2="‘" k="82" /> +<hkern u1="ô" u2="º" k="82" /> +<hkern u1="ô" u2="°" k="82" /> +<hkern u1="ô" u2="ª" k="82" /> +<hkern u1="ô" u2="}" k="26" /> +<hkern u1="ô" u2="x" k="46" /> +<hkern u1="ô" u2="]" k="26" /> +<hkern u1="ô" u2="*" k="82" /> +<hkern u1="ô" u2=")" k="26" /> +<hkern u1="ô" u2="'" k="82" /> +<hkern u1="ô" u2=""" k="82" /> +<hkern u1="õ" u2="”" k="82" /> +<hkern u1="õ" u2="“" k="82" /> +<hkern u1="õ" u2="’" k="82" /> +<hkern u1="õ" u2="‘" k="82" /> +<hkern u1="õ" u2="º" k="82" /> +<hkern u1="õ" u2="°" k="82" /> +<hkern u1="õ" u2="ª" k="82" /> +<hkern u1="õ" u2="}" k="26" /> +<hkern u1="õ" u2="x" k="46" /> +<hkern u1="õ" u2="]" k="26" /> +<hkern u1="õ" u2="*" k="82" /> +<hkern u1="õ" u2=")" k="26" /> +<hkern u1="õ" u2="'" k="82" /> +<hkern u1="õ" u2=""" k="82" /> +<hkern u1="ö" u2="”" k="82" /> +<hkern u1="ö" u2="“" k="82" /> +<hkern u1="ö" u2="’" k="82" /> +<hkern u1="ö" u2="‘" k="82" /> +<hkern u1="ö" u2="º" k="82" /> +<hkern u1="ö" u2="°" k="82" /> +<hkern u1="ö" u2="ª" k="82" /> +<hkern u1="ö" u2="}" k="26" /> +<hkern u1="ö" u2="x" k="46" /> +<hkern u1="ö" u2="]" k="26" /> +<hkern u1="ö" u2="*" k="82" /> +<hkern u1="ö" u2=")" k="26" /> +<hkern u1="ö" u2="'" k="82" /> +<hkern u1="ö" u2=""" k="82" /> +<hkern u1="ø" u2="”" k="82" /> +<hkern u1="ø" u2="“" k="82" /> +<hkern u1="ø" u2="’" k="82" /> +<hkern u1="ø" u2="‘" k="82" /> +<hkern u1="ø" u2="º" k="82" /> +<hkern u1="ø" u2="°" k="82" /> +<hkern u1="ø" u2="ª" k="82" /> +<hkern u1="ø" u2="}" k="26" /> +<hkern u1="ø" u2="x" k="46" /> +<hkern u1="ø" u2="]" k="26" /> +<hkern u1="ø" u2="*" k="82" /> +<hkern u1="ø" u2=")" k="26" /> +<hkern u1="ø" u2="'" k="82" /> +<hkern u1="ø" u2=""" k="82" /> +<hkern u1="ý" u2="…" k="133" /> +<hkern u1="ý" u2="„" k="133" /> +<hkern u1="ý" u2="‚" k="133" /> +<hkern u1="ý" u2="œ" k="18" /> +<hkern u1="ý" u2="ø" k="18" /> +<hkern u1="ý" u2="ö" k="18" /> +<hkern u1="ý" u2="õ" k="18" /> +<hkern u1="ý" u2="ô" k="18" /> +<hkern u1="ý" u2="ó" k="18" /> +<hkern u1="ý" u2="ò" k="18" /> +<hkern u1="ý" u2="ð" k="18" /> +<hkern u1="ý" u2="ë" k="18" /> +<hkern u1="ý" u2="ê" k="18" /> +<hkern u1="ý" u2="é" k="18" /> +<hkern u1="ý" u2="è" k="18" /> +<hkern u1="ý" u2="ç" k="18" /> +<hkern u1="ý" u2="æ" k="18" /> +<hkern u1="ý" u2="å" k="18" /> +<hkern u1="ý" u2="ä" k="18" /> +<hkern u1="ý" u2="ã" k="18" /> +<hkern u1="ý" u2="â" k="18" /> +<hkern u1="ý" u2="á" k="18" /> +<hkern u1="ý" u2="à" k="18" /> +<hkern u1="ý" u2="Æ" k="34" /> +<hkern u1="ý" u2="Å" k="34" /> +<hkern u1="ý" u2="Ä" k="34" /> +<hkern u1="ý" u2="Ã" k="34" /> +<hkern u1="ý" u2="Â" k="34" /> +<hkern u1="ý" u2="Á" k="34" /> +<hkern u1="ý" u2="À" k="34" /> +<hkern u1="ý" u2="q" k="18" /> +<hkern u1="ý" u2="o" k="18" /> +<hkern u1="ý" u2="e" k="18" /> +<hkern u1="ý" u2="d" k="18" /> +<hkern u1="ý" u2="c" k="18" /> +<hkern u1="ý" u2="a" k="18" /> +<hkern u1="ý" u2="A" k="34" /> +<hkern u1="ý" u2="/" k="34" /> +<hkern u1="ý" u2="." k="133" /> +<hkern u1="ý" u2="," k="133" /> +<hkern u1="ý" u2="&" k="34" /> +<hkern u1="þ" u2="”" k="82" /> +<hkern u1="þ" u2="“" k="82" /> +<hkern u1="þ" u2="’" k="82" /> +<hkern u1="þ" u2="‘" k="82" /> +<hkern u1="þ" u2="º" k="82" /> +<hkern u1="þ" u2="°" k="82" /> +<hkern u1="þ" u2="ª" k="82" /> +<hkern u1="þ" u2="}" k="26" /> +<hkern u1="þ" u2="x" k="46" /> +<hkern u1="þ" u2="]" k="26" /> +<hkern u1="þ" u2="*" k="82" /> +<hkern u1="þ" u2=")" k="26" /> +<hkern u1="þ" u2="'" k="82" /> +<hkern u1="þ" u2=""" k="82" /> +<hkern u1="ÿ" u2="…" k="133" /> +<hkern u1="ÿ" u2="„" k="133" /> +<hkern u1="ÿ" u2="‚" k="133" /> +<hkern u1="ÿ" u2="œ" k="18" /> +<hkern u1="ÿ" u2="ø" k="18" /> +<hkern u1="ÿ" u2="ö" k="18" /> +<hkern u1="ÿ" u2="õ" k="18" /> +<hkern u1="ÿ" u2="ô" k="18" /> +<hkern u1="ÿ" u2="ó" k="18" /> +<hkern u1="ÿ" u2="ò" k="18" /> +<hkern u1="ÿ" u2="ð" k="18" /> +<hkern u1="ÿ" u2="ë" k="18" /> +<hkern u1="ÿ" u2="ê" k="18" /> +<hkern u1="ÿ" u2="é" k="18" /> +<hkern u1="ÿ" u2="è" k="18" /> +<hkern u1="ÿ" u2="ç" k="18" /> +<hkern u1="ÿ" u2="æ" k="18" /> +<hkern u1="ÿ" u2="å" k="18" /> +<hkern u1="ÿ" u2="ä" k="18" /> +<hkern u1="ÿ" u2="ã" k="18" /> +<hkern u1="ÿ" u2="â" k="18" /> +<hkern u1="ÿ" u2="á" k="18" /> +<hkern u1="ÿ" u2="à" k="18" /> +<hkern u1="ÿ" u2="Æ" k="34" /> +<hkern u1="ÿ" u2="Å" k="34" /> +<hkern u1="ÿ" u2="Ä" k="34" /> +<hkern u1="ÿ" u2="Ã" k="34" /> +<hkern u1="ÿ" u2="Â" k="34" /> +<hkern u1="ÿ" u2="Á" k="34" /> +<hkern u1="ÿ" u2="À" k="34" /> +<hkern u1="ÿ" u2="q" k="18" /> +<hkern u1="ÿ" u2="o" k="18" /> +<hkern u1="ÿ" u2="e" k="18" /> +<hkern u1="ÿ" u2="d" k="18" /> +<hkern u1="ÿ" u2="c" k="18" /> +<hkern u1="ÿ" u2="a" k="18" /> +<hkern u1="ÿ" u2="A" k="34" /> +<hkern u1="ÿ" u2="/" k="34" /> +<hkern u1="ÿ" u2="." k="133" /> +<hkern u1="ÿ" u2="," k="133" /> +<hkern u1="ÿ" u2="&" k="34" /> +<hkern u1="œ" u2="”" k="82" /> +<hkern u1="œ" u2="“" k="82" /> +<hkern u1="œ" u2="’" k="82" /> +<hkern u1="œ" u2="‘" k="82" /> +<hkern u1="œ" u2="º" k="82" /> +<hkern u1="œ" u2="°" k="82" /> +<hkern u1="œ" u2="ª" k="82" /> +<hkern u1="œ" u2="}" k="26" /> +<hkern u1="œ" u2="x" k="46" /> +<hkern u1="œ" u2="]" k="26" /> +<hkern u1="œ" u2="*" k="82" /> +<hkern u1="œ" u2=")" k="26" /> +<hkern u1="œ" u2="'" k="82" /> +<hkern u1="œ" u2=""" k="82" /> +<hkern u1="Ÿ" u2="›" k="174" /> +<hkern u1="Ÿ" u2="‹" k="174" /> +<hkern u1="Ÿ" u2="…" k="169" /> +<hkern u1="Ÿ" u2="•" k="174" /> +<hkern u1="Ÿ" u2="„" k="169" /> +<hkern u1="Ÿ" u2="”" k="-53" /> +<hkern u1="Ÿ" u2="“" k="-53" /> +<hkern u1="Ÿ" u2="‚" k="169" /> +<hkern u1="Ÿ" u2="’" k="-53" /> +<hkern u1="Ÿ" u2="‘" k="-53" /> +<hkern u1="Ÿ" u2="—" k="174" /> +<hkern u1="Ÿ" u2="–" k="174" /> +<hkern u1="Ÿ" u2="œ" k="189" /> +<hkern u1="Ÿ" u2="Œ" k="77" /> +<hkern u1="Ÿ" u2="ü" k="121" /> +<hkern u1="Ÿ" u2="û" k="121" /> +<hkern u1="Ÿ" u2="ú" k="121" /> +<hkern u1="Ÿ" u2="ù" k="121" /> +<hkern u1="Ÿ" u2="ø" k="189" /> +<hkern u1="Ÿ" u2="ö" k="189" /> +<hkern u1="Ÿ" u2="õ" k="189" /> +<hkern u1="Ÿ" u2="ô" k="189" /> +<hkern u1="Ÿ" u2="ó" k="189" /> +<hkern u1="Ÿ" u2="ò" k="189" /> +<hkern u1="Ÿ" u2="ñ" k="121" /> +<hkern u1="Ÿ" u2="ð" k="189" /> +<hkern u1="Ÿ" u2="ë" k="189" /> +<hkern u1="Ÿ" u2="ê" k="189" /> +<hkern u1="Ÿ" u2="é" k="189" /> +<hkern u1="Ÿ" u2="è" k="189" /> +<hkern u1="Ÿ" u2="ç" k="189" /> +<hkern u1="Ÿ" u2="æ" k="189" /> +<hkern u1="Ÿ" u2="å" k="189" /> +<hkern u1="Ÿ" u2="ä" k="189" /> +<hkern u1="Ÿ" u2="ã" k="189" /> +<hkern u1="Ÿ" u2="â" k="189" /> +<hkern u1="Ÿ" u2="á" k="189" /> +<hkern u1="Ÿ" u2="à" k="189" /> +<hkern u1="Ÿ" u2="Ø" k="77" /> +<hkern u1="Ÿ" u2="Ö" k="77" /> +<hkern u1="Ÿ" u2="Õ" k="77" /> +<hkern u1="Ÿ" u2="Ô" k="77" /> +<hkern u1="Ÿ" u2="Ó" k="77" /> +<hkern u1="Ÿ" u2="Ò" k="77" /> +<hkern u1="Ÿ" u2="Ç" k="77" /> +<hkern u1="Ÿ" u2="Æ" k="133" /> +<hkern u1="Ÿ" u2="Å" k="133" /> +<hkern u1="Ÿ" u2="Ä" k="133" /> +<hkern u1="Ÿ" u2="Ã" k="133" /> +<hkern u1="Ÿ" u2="Â" k="133" /> +<hkern u1="Ÿ" u2="Á" k="133" /> +<hkern u1="Ÿ" u2="À" k="133" /> +<hkern u1="Ÿ" u2="»" k="174" /> +<hkern u1="Ÿ" u2="º" k="-53" /> +<hkern u1="Ÿ" u2="¹" k="-51" /> +<hkern u1="Ÿ" u2="·" k="174" /> +<hkern u1="Ÿ" u2="µ" k="121" /> +<hkern u1="Ÿ" u2="³" k="-51" /> +<hkern u1="Ÿ" u2="²" k="-51" /> +<hkern u1="Ÿ" u2="°" k="-53" /> +<hkern u1="Ÿ" u2="®" k="77" /> +<hkern u1="Ÿ" u2="­" k="174" /> +<hkern u1="Ÿ" u2="«" k="174" /> +<hkern u1="Ÿ" u2="ª" k="-53" /> +<hkern u1="Ÿ" u2="©" k="77" /> +<hkern u1="Ÿ" u2="z" k="83" /> +<hkern u1="Ÿ" u2="u" k="121" /> +<hkern u1="Ÿ" u2="s" k="189" /> +<hkern u1="Ÿ" u2="r" k="121" /> +<hkern u1="Ÿ" u2="q" k="189" /> +<hkern u1="Ÿ" u2="p" k="121" /> +<hkern u1="Ÿ" u2="o" k="189" /> +<hkern u1="Ÿ" u2="n" k="121" /> +<hkern u1="Ÿ" u2="m" k="121" /> +<hkern u1="Ÿ" u2="g" k="165" /> +<hkern u1="Ÿ" u2="e" k="189" /> +<hkern u1="Ÿ" u2="d" k="189" /> +<hkern u1="Ÿ" u2="c" k="189" /> +<hkern u1="Ÿ" u2="a" k="189" /> +<hkern u1="Ÿ" u2="Q" k="77" /> +<hkern u1="Ÿ" u2="O" k="77" /> +<hkern u1="Ÿ" u2="J" k="205" /> +<hkern u1="Ÿ" u2="G" k="77" /> +<hkern u1="Ÿ" u2="C" k="77" /> +<hkern u1="Ÿ" u2="A" k="133" /> +<hkern u1="Ÿ" u2="@" k="77" /> +<hkern u1="Ÿ" u2="?" k="-51" /> +<hkern u1="Ÿ" u2=";" k="121" /> +<hkern u1="Ÿ" u2=":" k="121" /> +<hkern u1="Ÿ" u2="/" k="133" /> +<hkern u1="Ÿ" u2="." k="169" /> +<hkern u1="Ÿ" u2="-" k="174" /> +<hkern u1="Ÿ" u2="," k="169" /> +<hkern u1="Ÿ" u2="*" k="-53" /> +<hkern u1="Ÿ" u2="'" k="-53" /> +<hkern u1="Ÿ" u2="&" k="133" /> +<hkern u1="Ÿ" u2=""" k="-53" /> +<hkern u1="–" u2="…" k="154" /> +<hkern u1="–" u2="„" k="154" /> +<hkern u1="–" u2="”" k="138" /> +<hkern u1="–" u2="“" k="138" /> +<hkern u1="–" u2="‚" k="154" /> +<hkern u1="–" u2="’" k="138" /> +<hkern u1="–" u2="‘" k="138" /> +<hkern u1="–" u2="Ÿ" k="179" /> +<hkern u1="–" u2="Ý" k="179" /> +<hkern u1="–" u2="Æ" k="36" /> +<hkern u1="–" u2="Å" k="36" /> +<hkern u1="–" u2="Ä" k="36" /> +<hkern u1="–" u2="Ã" k="36" /> +<hkern u1="–" u2="Â" k="36" /> +<hkern u1="–" u2="Á" k="36" /> +<hkern u1="–" u2="À" k="36" /> +<hkern u1="–" u2="º" k="138" /> +<hkern u1="–" u2="°" k="138" /> +<hkern u1="–" u2="ª" k="138" /> +<hkern u1="–" u2="\" k="113" /> +<hkern u1="–" u2="Z" k="54" /> +<hkern u1="–" u2="Y" k="179" /> +<hkern u1="–" u2="X" k="72" /> +<hkern u1="–" u2="V" k="113" /> +<hkern u1="–" u2="T" k="189" /> +<hkern u1="–" u2="A" k="36" /> +<hkern u1="–" u2="/" k="36" /> +<hkern u1="–" u2="." k="154" /> +<hkern u1="–" u2="," k="154" /> +<hkern u1="–" u2="*" k="138" /> +<hkern u1="–" u2="'" k="138" /> +<hkern u1="–" u2="&" k="36" /> +<hkern u1="–" u2=""" k="138" /> +<hkern u1="—" u2="…" k="154" /> +<hkern u1="—" u2="„" k="154" /> +<hkern u1="—" u2="”" k="138" /> +<hkern u1="—" u2="“" k="138" /> +<hkern u1="—" u2="‚" k="154" /> +<hkern u1="—" u2="’" k="138" /> +<hkern u1="—" u2="‘" k="138" /> +<hkern u1="—" u2="Ÿ" k="179" /> +<hkern u1="—" u2="Ý" k="179" /> +<hkern u1="—" u2="Æ" k="36" /> +<hkern u1="—" u2="Å" k="36" /> +<hkern u1="—" u2="Ä" k="36" /> +<hkern u1="—" u2="Ã" k="36" /> +<hkern u1="—" u2="Â" k="36" /> +<hkern u1="—" u2="Á" k="36" /> +<hkern u1="—" u2="À" k="36" /> +<hkern u1="—" u2="º" k="138" /> +<hkern u1="—" u2="°" k="138" /> +<hkern u1="—" u2="ª" k="138" /> +<hkern u1="—" u2="\" k="113" /> +<hkern u1="—" u2="Z" k="54" /> +<hkern u1="—" u2="Y" k="179" /> +<hkern u1="—" u2="X" k="72" /> +<hkern u1="—" u2="V" k="113" /> +<hkern u1="—" u2="T" k="189" /> +<hkern u1="—" u2="A" k="36" /> +<hkern u1="—" u2="/" k="36" /> +<hkern u1="—" u2="." k="154" /> +<hkern u1="—" u2="," k="154" /> +<hkern u1="—" u2="*" k="138" /> +<hkern u1="—" u2="'" k="138" /> +<hkern u1="—" u2="&" k="36" /> +<hkern u1="—" u2=""" k="138" /> +<hkern u1="‘" u2="›" k="138" /> +<hkern u1="‘" u2="‹" k="138" /> +<hkern u1="‘" u2="…" k="154" /> +<hkern u1="‘" u2="•" k="138" /> +<hkern u1="‘" u2="„" k="154" /> +<hkern u1="‘" u2="‚" k="154" /> +<hkern u1="‘" u2="—" k="138" /> +<hkern u1="‘" u2="–" k="138" /> +<hkern u1="‘" u2="Ÿ" k="-48" /> +<hkern u1="‘" u2="œ" k="87" /> +<hkern u1="‘" u2="ø" k="87" /> +<hkern u1="‘" u2="ö" k="87" /> +<hkern u1="‘" u2="õ" k="87" /> +<hkern u1="‘" u2="ô" k="87" /> +<hkern u1="‘" u2="ó" k="87" /> +<hkern u1="‘" u2="ò" k="87" /> +<hkern u1="‘" u2="ð" k="87" /> +<hkern u1="‘" u2="ë" k="87" /> +<hkern u1="‘" u2="ê" k="87" /> +<hkern u1="‘" u2="é" k="87" /> +<hkern u1="‘" u2="è" k="87" /> +<hkern u1="‘" u2="ç" k="87" /> +<hkern u1="‘" u2="æ" k="87" /> +<hkern u1="‘" u2="å" k="87" /> +<hkern u1="‘" u2="ä" k="87" /> +<hkern u1="‘" u2="ã" k="87" /> +<hkern u1="‘" u2="â" k="87" /> +<hkern u1="‘" u2="á" k="87" /> +<hkern u1="‘" u2="à" k="87" /> +<hkern u1="‘" u2="Ý" k="-48" /> +<hkern u1="‘" u2="Æ" k="169" /> +<hkern u1="‘" u2="Å" k="169" /> +<hkern u1="‘" u2="Ä" k="169" /> +<hkern u1="‘" u2="Ã" k="169" /> +<hkern u1="‘" u2="Â" k="169" /> +<hkern u1="‘" u2="Á" k="169" /> +<hkern u1="‘" u2="À" k="169" /> +<hkern u1="‘" u2="»" k="138" /> +<hkern u1="‘" u2="·" k="138" /> +<hkern u1="‘" u2="­" k="138" /> +<hkern u1="‘" u2="«" k="138" /> +<hkern u1="‘" u2="q" k="87" /> +<hkern u1="‘" u2="o" k="87" /> +<hkern u1="‘" u2="e" k="87" /> +<hkern u1="‘" u2="d" k="87" /> +<hkern u1="‘" u2="c" k="87" /> +<hkern u1="‘" u2="a" k="87" /> +<hkern u1="‘" u2="\" k="-63" /> +<hkern u1="‘" u2="Y" k="-48" /> +<hkern u1="‘" u2="W" k="-67" /> +<hkern u1="‘" u2="V" k="-63" /> +<hkern u1="‘" u2="A" k="169" /> +<hkern u1="‘" u2="/" k="169" /> +<hkern u1="‘" u2="." k="154" /> +<hkern u1="‘" u2="-" k="138" /> +<hkern u1="‘" u2="," k="154" /> +<hkern u1="‘" u2="&" k="169" /> +<hkern u1="’" u2="›" k="138" /> +<hkern u1="’" u2="‹" k="138" /> +<hkern u1="’" u2="…" k="154" /> +<hkern u1="’" u2="•" k="138" /> +<hkern u1="’" u2="„" k="154" /> +<hkern u1="’" u2="‚" k="154" /> +<hkern u1="’" u2="—" k="138" /> +<hkern u1="’" u2="–" k="138" /> +<hkern u1="’" u2="Ÿ" k="-48" /> +<hkern u1="’" u2="œ" k="87" /> +<hkern u1="’" u2="ø" k="87" /> +<hkern u1="’" u2="ö" k="87" /> +<hkern u1="’" u2="õ" k="87" /> +<hkern u1="’" u2="ô" k="87" /> +<hkern u1="’" u2="ó" k="87" /> +<hkern u1="’" u2="ò" k="87" /> +<hkern u1="’" u2="ð" k="87" /> +<hkern u1="’" u2="ë" k="87" /> +<hkern u1="’" u2="ê" k="87" /> +<hkern u1="’" u2="é" k="87" /> +<hkern u1="’" u2="è" k="87" /> +<hkern u1="’" u2="ç" k="87" /> +<hkern u1="’" u2="æ" k="87" /> +<hkern u1="’" u2="å" k="87" /> +<hkern u1="’" u2="ä" k="87" /> +<hkern u1="’" u2="ã" k="87" /> +<hkern u1="’" u2="â" k="87" /> +<hkern u1="’" u2="á" k="87" /> +<hkern u1="’" u2="à" k="87" /> +<hkern u1="’" u2="Ý" k="-48" /> +<hkern u1="’" u2="Æ" k="169" /> +<hkern u1="’" u2="Å" k="169" /> +<hkern u1="’" u2="Ä" k="169" /> +<hkern u1="’" u2="Ã" k="169" /> +<hkern u1="’" u2="Â" k="169" /> +<hkern u1="’" u2="Á" k="169" /> +<hkern u1="’" u2="À" k="169" /> +<hkern u1="’" u2="»" k="138" /> +<hkern u1="’" u2="·" k="138" /> +<hkern u1="’" u2="­" k="138" /> +<hkern u1="’" u2="«" k="138" /> +<hkern u1="’" u2="q" k="87" /> +<hkern u1="’" u2="o" k="87" /> +<hkern u1="’" u2="e" k="87" /> +<hkern u1="’" u2="d" k="87" /> +<hkern u1="’" u2="c" k="87" /> +<hkern u1="’" u2="a" k="87" /> +<hkern u1="’" u2="\" k="-63" /> +<hkern u1="’" u2="Y" k="-48" /> +<hkern u1="’" u2="W" k="-67" /> +<hkern u1="’" u2="V" k="-63" /> +<hkern u1="’" u2="A" k="169" /> +<hkern u1="’" u2="/" k="169" /> +<hkern u1="’" u2="." k="154" /> +<hkern u1="’" u2="-" k="138" /> +<hkern u1="’" u2="," k="154" /> +<hkern u1="’" u2="&" k="169" /> +<hkern u1="‚" u2="›" k="187" /> +<hkern u1="‚" u2="‹" k="187" /> +<hkern u1="‚" u2="•" k="187" /> +<hkern u1="‚" u2="”" k="200" /> +<hkern u1="‚" u2="“" k="200" /> +<hkern u1="‚" u2="’" k="200" /> +<hkern u1="‚" u2="‘" k="200" /> +<hkern u1="‚" u2="—" k="187" /> +<hkern u1="‚" u2="–" k="187" /> +<hkern u1="‚" u2="Ÿ" k="160" /> +<hkern u1="‚" u2="Œ" k="59" /> +<hkern u1="‚" u2="ÿ" k="133" /> +<hkern u1="‚" u2="ý" k="133" /> +<hkern u1="‚" u2="Ý" k="160" /> +<hkern u1="‚" u2="Ø" k="59" /> +<hkern u1="‚" u2="Ö" k="59" /> +<hkern u1="‚" u2="Õ" k="59" /> +<hkern u1="‚" u2="Ô" k="59" /> +<hkern u1="‚" u2="Ó" k="59" /> +<hkern u1="‚" u2="Ò" k="59" /> +<hkern u1="‚" u2="Ç" k="59" /> +<hkern u1="‚" u2="»" k="187" /> +<hkern u1="‚" u2="º" k="200" /> +<hkern u1="‚" u2="·" k="187" /> +<hkern u1="‚" u2="°" k="200" /> +<hkern u1="‚" u2="®" k="59" /> +<hkern u1="‚" u2="­" k="187" /> +<hkern u1="‚" u2="«" k="187" /> +<hkern u1="‚" u2="ª" k="200" /> +<hkern u1="‚" u2="©" k="59" /> +<hkern u1="‚" u2="y" k="118" /> +<hkern u1="‚" u2="w" k="56" /> +<hkern u1="‚" u2="v" k="133" /> +<hkern u1="‚" u2="\" k="200" /> +<hkern u1="‚" u2="Y" k="160" /> +<hkern u1="‚" u2="W" k="151" /> +<hkern u1="‚" u2="V" k="200" /> +<hkern u1="‚" u2="T" k="196" /> +<hkern u1="‚" u2="Q" k="59" /> +<hkern u1="‚" u2="O" k="59" /> +<hkern u1="‚" u2="G" k="59" /> +<hkern u1="‚" u2="C" k="59" /> +<hkern u1="‚" u2="@" k="59" /> +<hkern u1="‚" u2="-" k="187" /> +<hkern u1="‚" u2="*" k="200" /> +<hkern u1="‚" u2="'" k="200" /> +<hkern u1="‚" u2=""" k="200" /> +<hkern u1="“" u2="›" k="138" /> +<hkern u1="“" u2="‹" k="138" /> +<hkern u1="“" u2="…" k="154" /> +<hkern u1="“" u2="•" k="138" /> +<hkern u1="“" u2="„" k="154" /> +<hkern u1="“" u2="‚" k="154" /> +<hkern u1="“" u2="—" k="138" /> +<hkern u1="“" u2="–" k="138" /> +<hkern u1="“" u2="Ÿ" k="-48" /> +<hkern u1="“" u2="œ" k="87" /> +<hkern u1="“" u2="ø" k="87" /> +<hkern u1="“" u2="ö" k="87" /> +<hkern u1="“" u2="õ" k="87" /> +<hkern u1="“" u2="ô" k="87" /> +<hkern u1="“" u2="ó" k="87" /> +<hkern u1="“" u2="ò" k="87" /> +<hkern u1="“" u2="ð" k="87" /> +<hkern u1="“" u2="ë" k="87" /> +<hkern u1="“" u2="ê" k="87" /> +<hkern u1="“" u2="é" k="87" /> +<hkern u1="“" u2="è" k="87" /> +<hkern u1="“" u2="ç" k="87" /> +<hkern u1="“" u2="æ" k="87" /> +<hkern u1="“" u2="å" k="87" /> +<hkern u1="“" u2="ä" k="87" /> +<hkern u1="“" u2="ã" k="87" /> +<hkern u1="“" u2="â" k="87" /> +<hkern u1="“" u2="á" k="87" /> +<hkern u1="“" u2="à" k="87" /> +<hkern u1="“" u2="Ý" k="-48" /> +<hkern u1="“" u2="Æ" k="169" /> +<hkern u1="“" u2="Å" k="169" /> +<hkern u1="“" u2="Ä" k="169" /> +<hkern u1="“" u2="Ã" k="169" /> +<hkern u1="“" u2="Â" k="169" /> +<hkern u1="“" u2="Á" k="169" /> +<hkern u1="“" u2="À" k="169" /> +<hkern u1="“" u2="»" k="138" /> +<hkern u1="“" u2="·" k="138" /> +<hkern u1="“" u2="­" k="138" /> +<hkern u1="“" u2="«" k="138" /> +<hkern u1="“" u2="q" k="87" /> +<hkern u1="“" u2="o" k="87" /> +<hkern u1="“" u2="e" k="87" /> +<hkern u1="“" u2="d" k="87" /> +<hkern u1="“" u2="c" k="87" /> +<hkern u1="“" u2="a" k="87" /> +<hkern u1="“" u2="\" k="-63" /> +<hkern u1="“" u2="Y" k="-48" /> +<hkern u1="“" u2="W" k="-67" /> +<hkern u1="“" u2="V" k="-63" /> +<hkern u1="“" u2="A" k="169" /> +<hkern u1="“" u2="/" k="169" /> +<hkern u1="“" u2="." k="154" /> +<hkern u1="“" u2="-" k="138" /> +<hkern u1="“" u2="," k="154" /> +<hkern u1="“" u2="&" k="169" /> +<hkern u1="”" u2="›" k="138" /> +<hkern u1="”" u2="‹" k="138" /> +<hkern u1="”" u2="…" k="154" /> +<hkern u1="”" u2="•" k="138" /> +<hkern u1="”" u2="„" k="154" /> +<hkern u1="”" u2="‚" k="154" /> +<hkern u1="”" u2="—" k="138" /> +<hkern u1="”" u2="–" k="138" /> +<hkern u1="”" u2="Ÿ" k="-48" /> +<hkern u1="”" u2="œ" k="87" /> +<hkern u1="”" u2="ø" k="87" /> +<hkern u1="”" u2="ö" k="87" /> +<hkern u1="”" u2="õ" k="87" /> +<hkern u1="”" u2="ô" k="87" /> +<hkern u1="”" u2="ó" k="87" /> +<hkern u1="”" u2="ò" k="87" /> +<hkern u1="”" u2="ð" k="87" /> +<hkern u1="”" u2="ë" k="87" /> +<hkern u1="”" u2="ê" k="87" /> +<hkern u1="”" u2="é" k="87" /> +<hkern u1="”" u2="è" k="87" /> +<hkern u1="”" u2="ç" k="87" /> +<hkern u1="”" u2="æ" k="87" /> +<hkern u1="”" u2="å" k="87" /> +<hkern u1="”" u2="ä" k="87" /> +<hkern u1="”" u2="ã" k="87" /> +<hkern u1="”" u2="â" k="87" /> +<hkern u1="”" u2="á" k="87" /> +<hkern u1="”" u2="à" k="87" /> +<hkern u1="”" u2="Ý" k="-48" /> +<hkern u1="”" u2="Æ" k="169" /> +<hkern u1="”" u2="Å" k="169" /> +<hkern u1="”" u2="Ä" k="169" /> +<hkern u1="”" u2="Ã" k="169" /> +<hkern u1="”" u2="Â" k="169" /> +<hkern u1="”" u2="Á" k="169" /> +<hkern u1="”" u2="À" k="169" /> +<hkern u1="”" u2="»" k="138" /> +<hkern u1="”" u2="·" k="138" /> +<hkern u1="”" u2="­" k="138" /> +<hkern u1="”" u2="«" k="138" /> +<hkern u1="”" u2="q" k="87" /> +<hkern u1="”" u2="o" k="87" /> +<hkern u1="”" u2="e" k="87" /> +<hkern u1="”" u2="d" k="87" /> +<hkern u1="”" u2="c" k="87" /> +<hkern u1="”" u2="a" k="87" /> +<hkern u1="”" u2="\" k="-63" /> +<hkern u1="”" u2="Y" k="-48" /> +<hkern u1="”" u2="W" k="-67" /> +<hkern u1="”" u2="V" k="-63" /> +<hkern u1="”" u2="A" k="169" /> +<hkern u1="”" u2="/" k="169" /> +<hkern u1="”" u2="." k="154" /> +<hkern u1="”" u2="-" k="138" /> +<hkern u1="”" u2="," k="154" /> +<hkern u1="”" u2="&" k="169" /> +<hkern u1="„" u2="›" k="187" /> +<hkern u1="„" u2="‹" k="187" /> +<hkern u1="„" u2="•" k="187" /> +<hkern u1="„" u2="”" k="200" /> +<hkern u1="„" u2="“" k="200" /> +<hkern u1="„" u2="’" k="200" /> +<hkern u1="„" u2="‘" k="200" /> +<hkern u1="„" u2="—" k="187" /> +<hkern u1="„" u2="–" k="187" /> +<hkern u1="„" u2="Ÿ" k="160" /> +<hkern u1="„" u2="Œ" k="59" /> +<hkern u1="„" u2="ÿ" k="133" /> +<hkern u1="„" u2="ý" k="133" /> +<hkern u1="„" u2="Ý" k="160" /> +<hkern u1="„" u2="Ø" k="59" /> +<hkern u1="„" u2="Ö" k="59" /> +<hkern u1="„" u2="Õ" k="59" /> +<hkern u1="„" u2="Ô" k="59" /> +<hkern u1="„" u2="Ó" k="59" /> +<hkern u1="„" u2="Ò" k="59" /> +<hkern u1="„" u2="Ç" k="59" /> +<hkern u1="„" u2="»" k="187" /> +<hkern u1="„" u2="º" k="200" /> +<hkern u1="„" u2="·" k="187" /> +<hkern u1="„" u2="°" k="200" /> +<hkern u1="„" u2="®" k="59" /> +<hkern u1="„" u2="­" k="187" /> +<hkern u1="„" u2="«" k="187" /> +<hkern u1="„" u2="ª" k="200" /> +<hkern u1="„" u2="©" k="59" /> +<hkern u1="„" u2="y" k="118" /> +<hkern u1="„" u2="w" k="56" /> +<hkern u1="„" u2="v" k="133" /> +<hkern u1="„" u2="\" k="200" /> +<hkern u1="„" u2="Y" k="160" /> +<hkern u1="„" u2="W" k="151" /> +<hkern u1="„" u2="V" k="200" /> +<hkern u1="„" u2="T" k="196" /> +<hkern u1="„" u2="Q" k="59" /> +<hkern u1="„" u2="O" k="59" /> +<hkern u1="„" u2="G" k="59" /> +<hkern u1="„" u2="C" k="59" /> +<hkern u1="„" u2="@" k="59" /> +<hkern u1="„" u2="-" k="187" /> +<hkern u1="„" u2="*" k="200" /> +<hkern u1="„" u2="'" k="200" /> +<hkern u1="„" u2=""" k="200" /> +<hkern u1="•" u2="…" k="154" /> +<hkern u1="•" u2="„" k="154" /> +<hkern u1="•" u2="”" k="138" /> +<hkern u1="•" u2="“" k="138" /> +<hkern u1="•" u2="‚" k="154" /> +<hkern u1="•" u2="’" k="138" /> +<hkern u1="•" u2="‘" k="138" /> +<hkern u1="•" u2="Ÿ" k="179" /> +<hkern u1="•" u2="Ý" k="179" /> +<hkern u1="•" u2="Æ" k="36" /> +<hkern u1="•" u2="Å" k="36" /> +<hkern u1="•" u2="Ä" k="36" /> +<hkern u1="•" u2="Ã" k="36" /> +<hkern u1="•" u2="Â" k="36" /> +<hkern u1="•" u2="Á" k="36" /> +<hkern u1="•" u2="À" k="36" /> +<hkern u1="•" u2="º" k="138" /> +<hkern u1="•" u2="°" k="138" /> +<hkern u1="•" u2="ª" k="138" /> +<hkern u1="•" u2="\" k="113" /> +<hkern u1="•" u2="Z" k="54" /> +<hkern u1="•" u2="Y" k="179" /> +<hkern u1="•" u2="X" k="72" /> +<hkern u1="•" u2="V" k="113" /> +<hkern u1="•" u2="T" k="189" /> +<hkern u1="•" u2="A" k="36" /> +<hkern u1="•" u2="/" k="36" /> +<hkern u1="•" u2="." k="154" /> +<hkern u1="•" u2="," k="154" /> +<hkern u1="•" u2="*" k="138" /> +<hkern u1="•" u2="'" k="138" /> +<hkern u1="•" u2="&" k="36" /> +<hkern u1="•" u2=""" k="138" /> +<hkern u1="…" u2="›" k="187" /> +<hkern u1="…" u2="‹" k="187" /> +<hkern u1="…" u2="•" k="187" /> +<hkern u1="…" u2="”" k="200" /> +<hkern u1="…" u2="“" k="200" /> +<hkern u1="…" u2="’" k="200" /> +<hkern u1="…" u2="‘" k="200" /> +<hkern u1="…" u2="—" k="187" /> +<hkern u1="…" u2="–" k="187" /> +<hkern u1="…" u2="Ÿ" k="160" /> +<hkern u1="…" u2="Œ" k="59" /> +<hkern u1="…" u2="ÿ" k="133" /> +<hkern u1="…" u2="ý" k="133" /> +<hkern u1="…" u2="Ý" k="160" /> +<hkern u1="…" u2="Ø" k="59" /> +<hkern u1="…" u2="Ö" k="59" /> +<hkern u1="…" u2="Õ" k="59" /> +<hkern u1="…" u2="Ô" k="59" /> +<hkern u1="…" u2="Ó" k="59" /> +<hkern u1="…" u2="Ò" k="59" /> +<hkern u1="…" u2="Ç" k="59" /> +<hkern u1="…" u2="»" k="187" /> +<hkern u1="…" u2="º" k="200" /> +<hkern u1="…" u2="·" k="187" /> +<hkern u1="…" u2="°" k="200" /> +<hkern u1="…" u2="®" k="59" /> +<hkern u1="…" u2="­" k="187" /> +<hkern u1="…" u2="«" k="187" /> +<hkern u1="…" u2="ª" k="200" /> +<hkern u1="…" u2="©" k="59" /> +<hkern u1="…" u2="y" k="118" /> +<hkern u1="…" u2="w" k="56" /> +<hkern u1="…" u2="v" k="133" /> +<hkern u1="…" u2="\" k="200" /> +<hkern u1="…" u2="Y" k="160" /> +<hkern u1="…" u2="W" k="151" /> +<hkern u1="…" u2="V" k="200" /> +<hkern u1="…" u2="T" k="196" /> +<hkern u1="…" u2="Q" k="59" /> +<hkern u1="…" u2="O" k="59" /> +<hkern u1="…" u2="G" k="59" /> +<hkern u1="…" u2="C" k="59" /> +<hkern u1="…" u2="@" k="59" /> +<hkern u1="…" u2="-" k="187" /> +<hkern u1="…" u2="*" k="200" /> +<hkern u1="…" u2="'" k="200" /> +<hkern u1="…" u2=""" k="200" /> +<hkern u1="‹" u2="…" k="154" /> +<hkern u1="‹" u2="„" k="154" /> +<hkern u1="‹" u2="”" k="138" /> +<hkern u1="‹" u2="“" k="138" /> +<hkern u1="‹" u2="‚" k="154" /> +<hkern u1="‹" u2="’" k="138" /> +<hkern u1="‹" u2="‘" k="138" /> +<hkern u1="‹" u2="Ÿ" k="179" /> +<hkern u1="‹" u2="Ý" k="179" /> +<hkern u1="‹" u2="Æ" k="36" /> +<hkern u1="‹" u2="Å" k="36" /> +<hkern u1="‹" u2="Ä" k="36" /> +<hkern u1="‹" u2="Ã" k="36" /> +<hkern u1="‹" u2="Â" k="36" /> +<hkern u1="‹" u2="Á" k="36" /> +<hkern u1="‹" u2="À" k="36" /> +<hkern u1="‹" u2="º" k="138" /> +<hkern u1="‹" u2="°" k="138" /> +<hkern u1="‹" u2="ª" k="138" /> +<hkern u1="‹" u2="\" k="113" /> +<hkern u1="‹" u2="Z" k="54" /> +<hkern u1="‹" u2="Y" k="179" /> +<hkern u1="‹" u2="X" k="72" /> +<hkern u1="‹" u2="V" k="113" /> +<hkern u1="‹" u2="T" k="189" /> +<hkern u1="‹" u2="A" k="36" /> +<hkern u1="‹" u2="/" k="36" /> +<hkern u1="‹" u2="." k="154" /> +<hkern u1="‹" u2="," k="154" /> +<hkern u1="‹" u2="*" k="138" /> +<hkern u1="‹" u2="'" k="138" /> +<hkern u1="‹" u2="&" k="36" /> +<hkern u1="‹" u2=""" k="138" /> +<hkern u1="›" u2="…" k="154" /> +<hkern u1="›" u2="„" k="154" /> +<hkern u1="›" u2="”" k="138" /> +<hkern u1="›" u2="“" k="138" /> +<hkern u1="›" u2="‚" k="154" /> +<hkern u1="›" u2="’" k="138" /> +<hkern u1="›" u2="‘" k="138" /> +<hkern u1="›" u2="Ÿ" k="179" /> +<hkern u1="›" u2="Ý" k="179" /> +<hkern u1="›" u2="Æ" k="36" /> +<hkern u1="›" u2="Å" k="36" /> +<hkern u1="›" u2="Ä" k="36" /> +<hkern u1="›" u2="Ã" k="36" /> +<hkern u1="›" u2="Â" k="36" /> +<hkern u1="›" u2="Á" k="36" /> +<hkern u1="›" u2="À" k="36" /> +<hkern u1="›" u2="º" k="138" /> +<hkern u1="›" u2="°" k="138" /> +<hkern u1="›" u2="ª" k="138" /> +<hkern u1="›" u2="\" k="113" /> +<hkern u1="›" u2="Z" k="54" /> +<hkern u1="›" u2="Y" k="179" /> +<hkern u1="›" u2="X" k="72" /> +<hkern u1="›" u2="V" k="113" /> +<hkern u1="›" u2="T" k="189" /> +<hkern u1="›" u2="A" k="36" /> +<hkern u1="›" u2="/" k="36" /> +<hkern u1="›" u2="." k="154" /> +<hkern u1="›" u2="," k="154" /> +<hkern u1="›" u2="*" k="138" /> +<hkern u1="›" u2="'" k="138" /> +<hkern u1="›" u2="&" k="36" /> +<hkern u1="›" u2=""" k="138" /> +<hkern u1="™" u2="›" k="138" /> +<hkern u1="™" u2="‹" k="138" /> +<hkern u1="™" u2="…" k="154" /> +<hkern u1="™" u2="•" k="138" /> +<hkern u1="™" u2="„" k="154" /> +<hkern u1="™" u2="‚" k="154" /> +<hkern u1="™" u2="—" k="138" /> +<hkern u1="™" u2="–" k="138" /> +<hkern u1="™" u2="Ÿ" k="-48" /> +<hkern u1="™" u2="œ" k="87" /> +<hkern u1="™" u2="ø" k="87" /> +<hkern u1="™" u2="ö" k="87" /> +<hkern u1="™" u2="õ" k="87" /> +<hkern u1="™" u2="ô" k="87" /> +<hkern u1="™" u2="ó" k="87" /> +<hkern u1="™" u2="ò" k="87" /> +<hkern u1="™" u2="ð" k="87" /> +<hkern u1="™" u2="ë" k="87" /> +<hkern u1="™" u2="ê" k="87" /> +<hkern u1="™" u2="é" k="87" /> +<hkern u1="™" u2="è" k="87" /> +<hkern u1="™" u2="ç" k="87" /> +<hkern u1="™" u2="æ" k="87" /> +<hkern u1="™" u2="å" k="87" /> +<hkern u1="™" u2="ä" k="87" /> +<hkern u1="™" u2="ã" k="87" /> +<hkern u1="™" u2="â" k="87" /> +<hkern u1="™" u2="á" k="87" /> +<hkern u1="™" u2="à" k="87" /> +<hkern u1="™" u2="Ý" k="-48" /> +<hkern u1="™" u2="Æ" k="169" /> +<hkern u1="™" u2="Å" k="169" /> +<hkern u1="™" u2="Ä" k="169" /> +<hkern u1="™" u2="Ã" k="169" /> +<hkern u1="™" u2="Â" k="169" /> +<hkern u1="™" u2="Á" k="169" /> +<hkern u1="™" u2="À" k="169" /> +<hkern u1="™" u2="»" k="138" /> +<hkern u1="™" u2="·" k="138" /> +<hkern u1="™" u2="­" k="138" /> +<hkern u1="™" u2="«" k="138" /> +<hkern u1="™" u2="q" k="87" /> +<hkern u1="™" u2="o" k="87" /> +<hkern u1="™" u2="e" k="87" /> +<hkern u1="™" u2="d" k="87" /> +<hkern u1="™" u2="c" k="87" /> +<hkern u1="™" u2="a" k="87" /> +<hkern u1="™" u2="\" k="-63" /> +<hkern u1="™" u2="Y" k="-48" /> +<hkern u1="™" u2="W" k="-67" /> +<hkern u1="™" u2="V" k="-63" /> +<hkern u1="™" u2="A" k="169" /> +<hkern u1="™" u2="/" k="169" /> +<hkern u1="™" u2="." k="154" /> +<hkern u1="™" u2="-" k="138" /> +<hkern u1="™" u2="," k="154" /> +<hkern u1="™" u2="&" k="169" /> +</font> +</defs></svg>
@@ -0,0 +1,4249 @@
+<?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="latoregular" horiz-adv-x="1187" > +<font-face units-per-em="2048" ascent="1649" descent="-399" /> +<missing-glyph horiz-adv-x="395" /> +<glyph unicode="fi" horiz-adv-x="1167" d="M190 0v882l-114 13q-22 5 -35.5 16t-13.5 31v75h163v57q0 95 30 174.5t89.5 137t148 89t206.5 31.5q39 0 79 -5t70 -15l-6 -95q-2 -13 -12.5 -17t-29.5 -4q-11 0 -23.5 0.5t-27.5 0.5q-181 0 -263.5 -75t-82.5 -227v-52h626v-1017h-182v885h-438v-885h-184z" /> +<glyph unicode="fl" horiz-adv-x="1216" d="M190 0v882l-114 13q-22 5 -35.5 16t-13.5 31v75h163v55q0 86 27 163.5t80 134.5t133 91t186 34q85 0 163.5 -6.5t152.5 -6.5h102v-1482h-182v1354q-55 2 -111 5t-97 3q-133 0 -204.5 -76.5t-71.5 -213.5v-55h270v-132h-264v-885h-184z" /> +<glyph horiz-adv-x="0" /> +<glyph unicode="
" horiz-adv-x="0" /> +<glyph horiz-adv-x="0" /> +<glyph horiz-adv-x="0" /> +<glyph unicode=" " horiz-adv-x="395" /> +<glyph unicode="	" horiz-adv-x="395" /> +<glyph unicode=" " horiz-adv-x="395" /> +<glyph unicode="!" horiz-adv-x="702" d="M440 1467v-585q0 -46 -1.5 -90t-4.5 -89t-7.5 -91.5t-10.5 -99.5h-124q-6 53 -11 99.5t-8 91.5t-4.5 89t-1.5 90v585h173zM223 113q0 27 10 50t26.5 40.5t40.5 28t50 10.5q27 0 50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5 t-50.5 9.5t-40 27t-26.5 40.5t-10 51z" /> +<glyph unicode=""" horiz-adv-x="813" d="M314 1467v-297l-16 -158q-3 -33 -17.5 -51t-46.5 -18q-27 0 -41.5 18t-20.5 51l-16 158v297h158zM655 1467v-297l-16 -158q-3 -33 -17.5 -51t-46.5 -18q-27 0 -41.5 18t-20.5 51l-16 158v297h158z" /> +<glyph unicode="#" d="M809 433l-86 -433h-83q-24 0 -40 17.5t-16 44.5q0 4 0.5 8t1.5 9l72 354h-252l-73 -363q-8 -38 -31 -54t-53 -16h-81l87 433h-150q-24 0 -37 12t-13 40q0 5 0.5 11.5t1.5 12.5l9 58h208l67 334h-238l14 76q5 30 23.5 44t58.5 14h161l74 367q6 31 28 48t53 17h82l-86 -432 h253l86 432h81q26 0 42.5 -15t16.5 -40q0 -8 -1 -13l-75 -364h218l-14 -77q-5 -30 -24 -43.5t-58 -13.5h-141l-67 -334h184q25 0 38 -11.5t13 -41.5q0 -5 -0.5 -10.5t-1.5 -11.5l-9 -59h-243zM425 567h253l66 334h-252z" /> +<glyph unicode="$" d="M510 -12q-124 11 -226 60.5t-175 126.5l54 84q7 11 20.5 18.5t27.5 7.5q19 0 44 -19.5t60.5 -44.5t85.5 -49t119 -32l38 544q-72 22 -141 49t-123.5 70.5t-88 109.5t-33.5 165q0 75 29 146t85 126.5t138 91t188 39.5l11 147q2 19 15 34.5t36 15.5h67l-14 -202 q108 -13 185.5 -55.5t139.5 -101.5l-44 -68q-20 -31 -47 -30q-14 0 -35.5 12.5t-51 29.5t-68.5 34t-89 24l-34 -496q74 -23 145.5 -49t129 -68t92.5 -105t35 -158q0 -92 -30.5 -173t-89.5 -142t-144.5 -99.5t-194.5 -44.5l-13 -181q-2 -19 -15.5 -34t-35.5 -15h-67zM912 417 q0 51 -19 88t-51.5 63.5t-76.5 46t-94 35.5l-35 -510q67 6 118.5 29.5t87 59t53 83.5t17.5 105zM344 1097q0 -49 17.5 -85.5t48 -64t71.5 -48t89 -37.5l31 462q-67 -6 -115.5 -26.5t-79.5 -51.5t-46.5 -69t-15.5 -80z" /> +<glyph unicode="%" horiz-adv-x="1609" d="M724 1113q0 -86 -26.5 -154t-71 -114.5t-104 -71t-124.5 -24.5q-70 0 -128.5 24.5t-102.5 71t-68.5 114.5t-24.5 154q0 88 24.5 156.5t68.5 116t103 72t128 24.5t129 -24.5t103.5 -72t68.5 -116t25 -156.5zM582 1113q0 68 -14.5 115t-39.5 77t-58.5 43.5t-71.5 13.5 t-71 -13.5t-57.5 -43.5t-38.5 -77t-14 -115q0 -67 14 -113.5t38.5 -75.5t57.5 -42t71 -13t71.5 13t58.5 42t39.5 75.5t14.5 113.5zM1237 1431q13 17 28 26.5t40 9.5h131l-1072 -1437q-10 -13 -24.5 -21.5t-34.5 -8.5h-135zM1535 346q0 -86 -26.5 -153.5t-71 -114t-103.5 -71 t-124 -24.5q-70 0 -128.5 24.5t-102.5 71t-68.5 114t-24.5 153.5q0 88 24.5 157t68.5 116.5t103 72t128 24.5t128.5 -24.5t103.5 -72t68.5 -116.5t24.5 -157zM1394 346q0 68 -14.5 115.5t-39.5 77t-58.5 43t-71.5 13.5t-71 -13.5t-57.5 -43t-38.5 -77t-14 -115.5 q0 -67 14 -113t38.5 -75t57.5 -42t71 -13t71.5 13t58.5 42t39.5 75t14.5 113z" /> +<glyph unicode="&" horiz-adv-x="1439" d="M676 1484q81 0 147.5 -26t115 -69t76.5 -100t33 -119l-114 -22q-5 -1 -9 -1q-13 0 -25 7t-17 26q-7 27 -23 55.5t-41 52t-60.5 38.5t-82.5 15q-51 0 -92 -16t-70.5 -45.5t-45 -69t-15.5 -85.5q0 -36 8.5 -68.5t26 -66t45 -68.5t66.5 -74l422 -429q39 69 62 144t31 151 q2 19 12.5 30.5t28.5 11.5h113q-2 -118 -38 -231.5t-104 -213.5l308 -311h-177q-30 0 -48 7t-41 30l-147 148q-96 -93 -221.5 -147t-276.5 -54q-82 0 -160.5 27.5t-140.5 80t-100 128.5t-38 171q0 72 24 136t66.5 118t101 97t127.5 74q-62 79 -91.5 153.5t-29.5 154.5 q0 75 27 140.5t78 114t124.5 77t164.5 28.5zM269 406q0 -67 24.5 -117.5t64.5 -85.5t91.5 -53t104.5 -18q115 0 206 42t161 112l-434 437q-109 -58 -163.5 -139.5t-54.5 -177.5z" /> +<glyph unicode="'" horiz-adv-x="471" d="M314 1467v-297l-16 -158q-3 -33 -17.5 -51t-46.5 -18q-27 0 -41.5 18t-20.5 51l-16 158v297h158z" /> +<glyph unicode="(" horiz-adv-x="614" d="M296 644q0 -219 56.5 -425.5t162.5 -393.5q6 -11 8 -19.5t2 -16.5q0 -14 -7 -23.5t-18 -16.5l-81 -49q-77 118 -131 233.5t-87 232.5t-48.5 235t-15.5 243q0 124 15.5 243t48.5 235t87 231.5t131 234.5l81 -50q11 -7 18 -16.5t7 -23.5q0 -15 -10 -35 q-108 -186 -163.5 -393t-55.5 -426z" /> +<glyph unicode=")" horiz-adv-x="614" d="M305 644q0 219 -55.5 426t-163.5 393q-10 19 -10 35q0 14 7 23.5t18 16.5l81 50q77 -119 131 -234.5t87 -231.5t48.5 -235t15.5 -243q0 -125 -15.5 -243t-48.5 -235t-87 -232.5t-131 -233.5l-81 49q-11 7 -18 16.5t-7 23.5q0 8 2 16.5t8 19.5q106 187 162.5 393.5 t56.5 425.5z" /> +<glyph unicode="*" horiz-adv-x="819" d="M362 884v201q0 19 3 37t10 34q-20 -26 -54 -46l-177 -101l-45 76l176 103q37 22 75 24q-20 2 -38 8t-37 18l-177 103l45 77l178 -102q36 -20 58 -53q-9 18 -13 37t-4 39v203h91v-202q0 -42 -15 -73q11 15 25 26.5t32 22.5l176 101l45 -77l-176 -102q-17 -11 -34.5 -17.5 t-35.5 -8.5q18 -2 35 -7.5t35 -16.5l177 -104l-45 -76l-177 102q-18 11 -33 22.5t-26 27.5q16 -34 17 -74v-202h-91z" /> +<glyph unicode="+" d="M667 1194v-437h416v-139h-416v-440h-150v440h-415v139h415v437h150z" /> +<glyph unicode="," horiz-adv-x="434" d="M96 126q0 24 9 44.5t24.5 36.5t38 25.5t49.5 9.5q31 0 55 -11.5t40 -31.5t24 -46t8 -57q0 -46 -13.5 -95.5t-38 -98t-60.5 -95t-82 -85.5l-31 30q-13 12 -14 29q0 13 15 28q10 11 26 30t32.5 43.5t30 54t19.5 63.5h-13q-27 0 -48.5 9t-37 26t-24.5 40t-9 51z" /> +<glyph unicode="-" horiz-adv-x="710" d="M102 691h506v-154h-506v154z" /> +<glyph unicode="." horiz-adv-x="434" d="M90 113q0 27 10 50t26.5 40.5t40 28t50.5 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5t-40 27t-26.5 40.5t-10 51z" /> +<glyph unicode="/" horiz-adv-x="763" d="M165 -22q-14 -36 -42.5 -53t-57.5 -17h-77l615 1533q13 33 38 50t58 17h77z" /> +<glyph unicode="0" d="M1126 733q0 -193 -41.5 -333.5t-113 -232.5t-169 -137t-209.5 -45q-113 0 -209.5 45t-168.5 137t-113 233t-41 333q0 193 41 334t113 234t168.5 138t209.5 45q112 0 209.5 -45t169 -138t113 -234t41.5 -334zM937 733q0 168 -28 282t-76 184t-110.5 100t-129.5 30 q-68 0 -130.5 -30t-109.5 -100t-75 -184t-28 -282t28 -281.5t75 -183t109.5 -100t130.5 -30.5t130 30.5t110 100t76 183t28 281.5z" /> +<glyph unicode="1" d="M294 139h315v1001q0 45 3 91l-262 -224q-10 -8 -20.5 -12t-19.5 -4q-15 0 -27.5 7t-18.5 16l-57 79l436 377h149v-1331h288v-139h-786v139z" /> +<glyph unicode="2" d="M615 1484q93 0 174 -28t140 -80.5t93 -128.5t34 -172q0 -82 -24.5 -151.5t-66.5 -133.5t-97 -124t-116 -122l-386 -396q41 11 82.5 18t80.5 7h492q30 0 47 -17.5t17 -44.5v-111h-979v62q0 19 8 40t25 38l470 472q58 59 106.5 114t83 110.5t52.5 112.5t18 121 q0 65 -20.5 113.5t-56 80t-84 47.5t-103.5 16t-102 -16.5t-83.5 -45.5t-61.5 -69t-35 -88q-8 -30 -24.5 -43t-43.5 -13q-5 0 -10.5 0.5t-13.5 1.5l-95 16q14 100 55 177.5t104 130t144.5 79.5t175.5 27z" /> +<glyph unicode="3" d="M635 1484q93 0 172 -26.5t135.5 -76t88.5 -119t32 -154.5q0 -70 -18 -124.5t-51 -96t-80.5 -70.5t-105.5 -46q143 -38 215.5 -127t72.5 -223q0 -101 -38.5 -182t-105 -138t-155 -87t-190.5 -30q-117 0 -199.5 29t-140 80t-94.5 121.5t-62 152.5l77 32q22 9 43 10 q20 0 36.5 -9t24.5 -27q2 -4 4 -9l4 -10q14 -30 34.5 -67t55.5 -70t86.5 -55.5t128.5 -22.5t135 25t96 65t57.5 89.5t19.5 97.5q0 59 -15.5 108t-57 85t-115 56.5t-187.5 20.5v132q93 1 159 20.5t108 53.5t61 81t19 104q0 63 -20 110.5t-55 78t-82.5 46t-102.5 15.5 t-102.5 -16.5t-84 -45.5t-61 -69.5t-36.5 -87.5q-8 -30 -24.5 -43t-42.5 -13q-5 0 -10.5 0.5t-12.5 1.5l-95 16q14 100 55 177.5t104 130t144.5 79.5t175.5 27z" /> +<glyph unicode="4" d="M925 529h222v-104q0 -16 -10 -27.5t-30 -11.5h-182v-386h-161v386h-650q-20 0 -35.5 12t-19.5 29l-18 93l714 947h170v-938zM764 1135q0 27 1.5 57.5t6.5 62.5l-533 -726h525v606z" /> +<glyph unicode="5" d="M1001 1388q0 -39 -24.5 -64.5t-82.5 -25.5h-461l-67 -385q115 25 212 25q115 0 202 -34t146.5 -93t90 -140t30.5 -176q0 -117 -41 -211.5t-112.5 -161.5t-167.5 -102.5t-208 -35.5q-65 0 -124 12.5t-110.5 34t-95.5 49.5t-77 58l55 78q18 27 49 27q19 0 45.5 -16 t63 -35.5t86.5 -35.5t118 -16q77 0 138.5 24.5t105 70.5t67 109.5t23.5 141.5q0 69 -20 124.5t-60.5 94t-100.5 60t-141 21.5q-55 0 -114.5 -9t-123.5 -29l-115 33l119 686h695v-79z" /> +<glyph unicode="6" d="M666 899q88 0 166.5 -29t138 -85t94.5 -137.5t35 -185.5q0 -101 -37 -188.5t-103 -152t-159 -101t-205 -36.5q-111 0 -200.5 35t-153 100t-97.5 158t-34 207q0 96 43 205t136 234l372 500q14 18 39.5 31t58.5 13h162l-509 -644q52 36 115.5 56t137.5 20zM287 453 q0 -71 20.5 -129.5t60 -100.5t96 -65t129.5 -23q74 0 133 23.5t101.5 65.5t65.5 99.5t23 125.5q0 72 -22.5 129.5t-63 98t-98 62t-126.5 21.5q-74 0 -133 -25t-100.5 -67.5t-63.5 -98.5t-22 -116z" /> +<glyph unicode="7" d="M1110 1467v-82q0 -35 -7.5 -57t-16.5 -38l-607 -1225q-13 -27 -36.5 -46t-63.5 -19h-130l616 1210q13 26 27 47.5t32 40.5h-766q-17 0 -31 14t-14 31v124h997z" /> +<glyph unicode="8" d="M593 -16q-110 0 -201 29t-156.5 83.5t-101.5 131.5t-36 173q0 141 74 233t211 131q-116 43 -174.5 128.5t-58.5 204.5q0 81 31.5 151.5t90 122.5t140 82t181.5 30q99 0 181 -30t140.5 -82t90 -122.5t31.5 -151.5q0 -119 -59 -204.5t-174 -128.5q137 -39 210.5 -130.5 t73.5 -233.5q0 -96 -36 -173t-101 -131.5t-156 -83.5t-201 -29zM593 129q72 0 128.5 20t96 56.5t60.5 87t21 111.5q0 76 -25 130t-67.5 87.5t-98 49.5t-115.5 16t-115.5 -16t-98 -49.5t-67.5 -87.5t-25 -130q0 -61 21 -111.5t60.5 -87t96 -56.5t128.5 -20zM593 834 q72 0 122.5 22t82 58t46 83t14.5 98t-17 96t-50 79t-83 53t-115 19q-66 0 -115.5 -19t-83 -53t-50 -79t-16.5 -96q0 -50 14 -97.5t46 -83.5t82.5 -58t122.5 -22z" /> +<glyph unicode="9" d="M562 602q-83 0 -157 27.5t-130.5 81.5t-89.5 132.5t-33 179.5q0 96 35.5 180t100 146.5t153.5 98.5t196 36q105 0 191 -35t147.5 -97.5t95 -149.5t33.5 -192q0 -63 -12 -120t-34.5 -111.5t-53.5 -108.5t-71 -111l-358 -516q-13 -19 -37.5 -31t-56.5 -12h-168l447 585 q23 30 42 56.5t37 52.5q-56 -45 -127 -68.5t-150 -23.5zM929 1031q0 69 -22 124.5t-61 94.5t-93 60t-118 21q-68 0 -123.5 -22t-95 -61t-61 -93t-21.5 -119q0 -70 20 -124.5t57.5 -92.5t91 -57.5t120.5 -19.5q74 0 130.5 24.5t95.5 64t59.5 92t20.5 108.5z" /> +<glyph unicode=":" horiz-adv-x="516" d="M131 113q0 27 10 50t26.5 40.5t40 28t50.5 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5t-40 27t-26.5 40.5t-10 51zM131 881q0 27 10 50t26.5 40.5t40 28t50.5 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5 q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5t-40 27t-26.5 40.5t-10 51z" /> +<glyph unicode=";" horiz-adv-x="516" d="M137 126q0 24 9 44.5t24.5 36.5t38 25.5t49.5 9.5q31 0 55 -11.5t40 -31.5t24 -46t8 -57q0 -46 -13.5 -95.5t-38 -98t-60.5 -95t-83 -85.5l-30 30q-13 12 -14 29q0 13 15 28q10 11 26 30t32.5 43.5t30 54t19.5 63.5h-13q-27 0 -48.5 9t-37 26t-24.5 40t-9 51zM131 881 q0 27 10 50t26.5 40.5t40 28t50.5 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5t-40 27t-26.5 40.5t-10 51z" /> +<glyph unicode="<" d="M152 727l792 411v-130q0 -17 -8 -30t-29 -24l-460 -233q-20 -11 -43 -19t-49 -14q26 -5 49 -13t43 -19l460 -232q20 -10 28.5 -23.5t8.5 -29.5v-131l-792 411v76z" /> +<glyph unicode="=" d="M154 588h879v-138h-879v138zM154 931h879v-138h-879v138z" /> +<glyph unicode=">" d="M244 240v131q0 16 8 29.5t29 23.5l459 232q20 10 42.5 18.5t47.5 13.5q-26 6 -47.5 14t-42.5 19l-459 233q-20 10 -28.5 23t-8.5 31v130l791 -411v-76z" /> +<glyph unicode="?" horiz-adv-x="815" d="M35 1336q32 30 70 56.5t83.5 47t98.5 32.5t114 12q81 0 150.5 -23.5t119.5 -66.5t78.5 -104.5t28.5 -138.5q0 -78 -23 -134t-58 -98.5t-77 -74t-78.5 -59t-62.5 -55.5t-30 -61l-19 -157h-125l-12 170v11q0 43 23 76.5t58.5 62.5t75.5 58.5t75.5 64.5t58.5 80t23 107 q0 44 -17.5 79.5t-47 61t-70 38.5t-86.5 13q-62 0 -107 -15t-75.5 -33.5t-49.5 -34t-31 -15.5q-26 0 -40 24zM236 113q0 27 9.5 50t26.5 40.5t40.5 28t49.5 10.5q27 0 50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50 9.5t-40 27 t-26.5 40.5t-9.5 51z" /> +<glyph unicode="@" horiz-adv-x="1683" d="M1195 190q-80 0 -130 38.5t-64 118.5q-59 -83 -128.5 -118.5t-149.5 -35.5q-61 0 -106.5 20.5t-75.5 58t-45 89t-15 110.5q0 87 33.5 175.5t99 160t163 116.5t225.5 45q69 0 121 -11t98 -31l-96 -370q-19 -77 -19 -127q0 -37 9 -61t25 -38t37 -19t45 -5q50 0 95 29 t79.5 81t54 125t19.5 162q0 141 -45.5 248t-124.5 178t-187 106.5t-233 35.5q-137 0 -257 -52.5t-209 -144.5t-140.5 -218t-51.5 -274q0 -174 55 -306t149.5 -221t222 -134t274.5 -45q156 0 275 34t206 86q15 9 28 9q22 0 31 -24l26 -68q-110 -74 -249.5 -116t-316.5 -42 t-330 56.5t-265 162.5t-176 259.5t-64 348.5q0 112 28 215t79.5 192.5t123 164t159.5 127t189.5 82t212.5 29.5q94 0 184 -20.5t170.5 -60.5t148 -99t116 -135.5t76 -170t27.5 -203.5q0 -111 -31.5 -204t-86 -162t-129 -108t-160.5 -39zM759 313q32 0 64 10.5t62 36 t55.5 69.5t42.5 111l78 302q-40 9 -87 9q-77 0 -141 -32.5t-110 -84.5t-72 -119.5t-26 -138.5q0 -74 33.5 -118.5t100.5 -44.5z" /> +<glyph unicode="A" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5z" /> +<glyph unicode="B" horiz-adv-x="1325" d="M178 0v1467h468q135 0 233 -26.5t161 -75.5t93 -120t30 -161q0 -54 -17 -104t-51 -93t-86 -77t-121 -55q161 -32 242.5 -116t81.5 -221q0 -93 -34 -170t-100 -132.5t-162 -85.5t-219 -30h-519zM377 669v-511h317q85 0 146 19.5t100.5 54.5t58 84t18.5 107 q0 114 -80.5 180t-243.5 66h-316zM377 810h262q84 0 145.5 18.5t102 51t60 79.5t19.5 102q0 129 -78 189.5t-242 60.5h-269v-501z" /> +<glyph unicode="C" horiz-adv-x="1402" d="M1212 303q16 0 30 -13l78 -85q-90 -104 -218.5 -162.5t-309.5 -58.5q-159 0 -288 54.5t-220 153.5t-141.5 237t-50.5 304t54 304.5t151 237.5t233 154t299 55q162 0 279.5 -50.5t208.5 -136.5l-65 -91q-7 -10 -16 -16.5t-27 -6.5q-13 0 -28 9.5t-35.5 24t-48 31 t-65.5 30.5t-88 24t-116 10q-118 0 -215.5 -40.5t-168 -115.5t-110 -182.5t-39.5 -240.5q0 -137 39.5 -244.5t107.5 -182t161 -113t201 -38.5q66 0 118 7.5t96.5 24t83 41.5t77.5 60q17 15 33 15z" /> +<glyph unicode="D" horiz-adv-x="1542" d="M1450 733q0 -165 -52 -300t-147.5 -231.5t-228.5 -149t-295 -52.5h-549v1467h549q162 0 295 -52.5t228.5 -149.5t147.5 -232t52 -300zM1246 733q0 135 -37 241.5t-104.5 180.5t-163.5 113t-214 39h-349v-1146h349q118 0 214 39t163.5 112t104.5 179.5t37 241.5z" /> +<glyph unicode="E" horiz-adv-x="1189" d="M1082 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-904v1467h904z" /> +<glyph unicode="F" horiz-adv-x="1159" d="M1082 1467v-161h-704v-513h602v-162h-602v-631h-200v1467h904z" /> +<glyph unicode="G" horiz-adv-x="1503" d="M833 144q59 0 108.5 6t93.5 17t83 27t78 36v324h-227q-19 0 -31 11.5t-12 27.5v113h450v-564q-55 -40 -115 -69.5t-128 -49.5t-146 -29.5t-169 -9.5q-160 0 -293 54.5t-229 153.5t-150 237t-54 304q0 168 53 306.5t150.5 237t236.5 153t311 54.5q87 0 161.5 -13 t138.5 -37t118.5 -58.5t101.5 -77.5l-56 -90q-17 -28 -45 -27q-16 0 -36 11q-26 14 -57.5 34.5t-77 39.5t-107.5 32.5t-147 13.5q-124 0 -224.5 -40.5t-171 -116t-108.5 -182.5t-38 -240q0 -139 39.5 -248t111 -185t170 -116t217.5 -40z" /> +<glyph unicode="H" horiz-adv-x="1548" d="M1368 0h-200v668h-790v-668h-200v1467h200v-654h790v654h200v-1467z" /> +<glyph unicode="I" horiz-adv-x="628" d="M414 0h-199v1467h199v-1467z" /> +<glyph unicode="J" horiz-adv-x="909" d="M730 507q0 -123 -30 -220.5t-89 -164.5t-145 -102.5t-198 -35.5q-99 0 -207 28q2 30 5.5 59t6.5 58q2 17 12.5 28t32.5 11q18 0 49 -9t82 -9q68 0 120.5 20t89 63t55 110.5t18.5 159.5v964h198v-960z" /> +<glyph unicode="K" horiz-adv-x="1394" d="M396 824h75q39 0 62 10t44 33l488 553q23 26 43.5 36.5t53.5 10.5h169l-559 -631q-22 -24 -40.5 -40.5t-40.5 -26.5q29 -9 50.5 -27.5t44.5 -46.5l584 -695h-172q-19 0 -32.5 3t-23 8t-18 13.5t-16.5 17.5l-507 583q-11 12 -21 20.5t-22.5 15t-29.5 9t-42 2.5h-90v-672 h-197v1467h197v-643z" /> +<glyph unicode="L" horiz-adv-x="1052" d="M377 167h635v-167h-834v1467h199v-1300z" /> +<glyph unicode="M" horiz-adv-x="1884" d="M900 530q14 -25 25 -51.5t21 -54.5q10 29 21.5 55t25.5 52l497 903q13 24 27.5 28.5t41.5 4.5h146v-1467h-174v1078q0 22 1 46.5t3 50.5l-503 -918q-26 -46 -71 -46h-29q-46 0 -72 46l-514 921q3 -27 4.5 -52.5t1.5 -47.5v-1078h-174v1467h147q27 0 41 -5t27 -28 l507 -904v0z" /> +<glyph unicode="N" horiz-adv-x="1548" d="M281 1467q27 0 39.5 -6.5t28.5 -26.5l850 -1106q-3 27 -4 51.5t-1 48.5v1039h174v-1467h-100q-24 0 -40 8t-31 28l-849 1105q2 -26 3 -50.5t1 -44.5v-1046h-174v1467h103v0z" /> +<glyph unicode="O" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242z" /> +<glyph unicode="P" horiz-adv-x="1251" d="M396 549v-549h-197v1467h433q139 0 242 -32t170.5 -91.5t101 -143.5t33.5 -187q0 -102 -36 -187.5t-105 -147t-171.5 -95.5t-234.5 -34h-236zM396 707h236q85 0 150 22.5t109 63t66.5 96.5t22.5 124q0 140 -86.5 219t-261.5 79h-236v-604z" /> +<glyph unicode="Q" horiz-adv-x="1634" d="M1541 733q0 -103 -21 -196.5t-61 -173.5t-97 -145.5t-129 -114.5l377 -406h-164q-37 0 -65.5 10t-52.5 36l-258 281q-58 -18 -121 -28.5t-132 -10.5q-162 0 -295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155 t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242z" /> +<glyph unicode="R" horiz-adv-x="1318" d="M396 612v-612h-197v1467h414q139 0 240.5 -28t167.5 -81t98 -128.5t32 -168.5q0 -78 -24.5 -145.5t-71 -121.5t-114 -91.5t-151.5 -57.5q37 -22 65 -62l428 -583h-176q-54 0 -80 42l-381 524q-17 25 -37.5 35.5t-61.5 10.5h-151zM396 757h208q87 0 153 21t110.5 59.5 t67 91.5t22.5 118q0 131 -86.5 197.5t-257.5 66.5h-217v-554z" /> +<glyph unicode="S" horiz-adv-x="1085" d="M930 1238q-9 -15 -19.5 -23t-26.5 -8q-17 0 -40.5 17.5t-58.5 38.5t-85 38.5t-120 17.5q-67 0 -118 -18t-85.5 -48.5t-52 -72t-17.5 -89.5q0 -61 30.5 -102t80 -69.5t112.5 -49.5t129 -43.5t129 -50.5t112.5 -71t80 -105.5t30.5 -154.5q0 -96 -33 -180.5t-96 -147 t-154.5 -98t-208.5 -35.5q-142 0 -259.5 51.5t-200.5 139.5l58 94q8 11 19.5 19t26.5 8q22 0 49.5 -23t69 -50.5t100 -51t143.5 -23.5q71 0 126.5 19.5t93.5 55t58.5 84.5t20.5 110q0 67 -30 109t-79 71t-112 49t-129 41t-129 48.5t-112.5 71.5t-79.5 110t-30 163 q0 78 30 151t87.5 129t142 90t194.5 34q123 0 224 -39t177 -113z" /> +<glyph unicode="T" horiz-adv-x="1208" d="M1178 1467v-167h-475v-1300h-198v1300h-476v167h1149z" /> +<glyph unicode="U" horiz-adv-x="1495" d="M749 158q91 0 162.5 30.5t121 86t76 132t26.5 168.5v892h197v-892q0 -127 -40.5 -235.5t-115.5 -187.5t-183.5 -124t-243.5 -45t-244 45t-184.5 124t-116 188t-40.5 235v892h197v-890q0 -92 26.5 -169t76 -132.5t122 -86.5t163.5 -31z" /> +<glyph unicode="V" horiz-adv-x="1392" d="M8 1467h159q27 0 43 -13t24 -34l415 -1035q14 -35 26 -76t23 -85q9 44 20 85t25 76l413 1035q7 17 24.5 32t43.5 15h159l-598 -1467h-179z" /> +<glyph unicode="W" horiz-adv-x="2086" d="M14 1467h165q27 0 44.5 -13t23.5 -34l303 -1020q8 -28 14.5 -59.5t13.5 -66.5q7 35 14 67.5t16 58.5l345 1020q6 17 24 32t44 15h57q27 0 44 -13t24 -34l343 -1020q18 -53 33 -121q6 34 11 64.5t13 56.5l304 1020q5 18 23 32.5t44 14.5h155l-458 -1467h-178l-372 1119 q-11 32 -21 74q-5 -20 -9.5 -39t-9.5 -35l-374 -1119h-178z" /> +<glyph unicode="X" horiz-adv-x="1316" d="M519 754l-484 713h197q22 0 32 -7t19 -20l383 -588q7 22 21 47l362 537q9 14 19.5 22.5t26.5 8.5h189l-486 -704l502 -763h-196q-23 0 -35.5 12t-20.5 26l-394 615q-7 -22 -18 -41l-383 -574q-9 -14 -21 -26t-33 -12h-185z" /> +<glyph unicode="Y" horiz-adv-x="1288" d="M743 584v-584h-197v584l-538 883h174q27 0 42.5 -13t26.5 -33l336 -570q20 -36 34 -67.5t25 -62.5q11 32 24.5 63.5t34.5 66.5l334 570q9 16 25 31t42 15h176z" /> +<glyph unicode="Z" horiz-adv-x="1277" d="M1200 1467v-73q0 -35 -21 -66l-831 -1166h838v-162h-1098v78q0 31 20 58l831 1170h-812v161h1073z" /> +<glyph unicode="[" horiz-adv-x="614" d="M145 -296v1866h377v-72q0 -23 -13.5 -35.5t-36.5 -12.5h-173v-1625h173q23 0 36.5 -13t13.5 -36v-72h-377z" /> +<glyph unicode="\" horiz-adv-x="768" d="M-20 1508h77q34 0 58.5 -17t38.5 -50l615 -1533h-77q-30 0 -58.5 17.5t-41.5 52.5z" /> +<glyph unicode="]" horiz-adv-x="614" d="M92 -224q0 20 14 34.5t36 14.5h173v1625h-173q-23 0 -36.5 14t-13.5 34v72h377v-1866h-377v72z" /> +<glyph unicode="^" d="M528 1467h118l367 -661h-132q-17 0 -29.5 10t-21.5 25l-200 360q-13 24 -23 46t-17 43q-14 -45 -38 -89l-199 -360q-8 -14 -19.5 -24.5t-32.5 -10.5h-139z" /> +<glyph unicode="_" horiz-adv-x="806" d="M807 -169v-123h-807v123h807z" /> +<glyph unicode="`" horiz-adv-x="628" d="M212 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5t-27 22.5l-240 264h173z" /> +<glyph unicode="a" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5z" /> +<glyph unicode="b" horiz-adv-x="1144" d="M156 0v1508h183v-620q65 75 148 120.5t191 45.5q90 0 162.5 -34t124 -101t79 -166t27.5 -228q0 -115 -30.5 -213.5t-88.5 -170.5t-141.5 -113.5t-187.5 -41.5q-100 0 -170.5 38.5t-122.5 108.5l-9 -94q-8 -39 -48 -39h-117zM618 908q-89 0 -156 -41t-123 -115v-502 q49 -68 109 -95.5t134 -27.5q145 0 223 103.5t78 294.5q0 101 -18 174t-52 119.5t-83.5 68t-111.5 21.5z" /> +<glyph unicode="c" horiz-adv-x="956" d="M857 853q-8 -11 -16 -17.5t-24 -6.5q-15 0 -33 13t-45.5 28.5t-67 28t-97.5 12.5q-76 0 -134 -27t-97.5 -78t-59.5 -124t-20 -163q0 -94 21.5 -167t60.5 -123t95 -76t125 -26q67 0 110 16t71.5 35.5t47 35t36.5 15.5q24 0 35 -17l51 -67q-68 -83 -169 -121t-213 -38 q-97 0 -181 35.5t-145.5 104t-96.5 167.5t-35 226q0 116 32 214t94 169.5t153 111.5t209 40q109 0 193 -35.5t148 -99.5z" /> +<glyph unicode="d" horiz-adv-x="1144" d="M880 0q-39 0 -50 38l-16 126q-67 -81 -152 -129.5t-196 -48.5q-89 0 -162 34t-124 100.5t-78.5 166t-27.5 228.5q0 115 30.5 213.5t88.5 171.5t141 114.5t188 41.5q95 0 163 -32.5t121 -90.5v575h182v-1508h-108zM526 133q89 0 156.5 41t123.5 116v502q-50 68 -110 94.5 t-133 26.5q-145 0 -223 -103t-78 -295q0 -101 17.5 -173.5t51.5 -119t83 -68t112 -21.5z" /> +<glyph unicode="e" horiz-adv-x="1073" d="M560 1054q93 0 172 -31.5t136.5 -90.5t89.5 -145.5t32 -196.5q0 -43 -9 -57.5t-35 -14.5h-690q2 -98 26.5 -171t67.5 -121.5t102.5 -72.5t133.5 -24q69 0 118.5 16t85 34.5t59.5 34t42 15.5q23 0 35 -17l51 -67q-34 -41 -81 -71t-101 -49.5t-111 -29t-114 -9.5 q-108 0 -198 36t-156 106.5t-103 174t-37 237.5q0 109 33 203t95.5 163t152.5 108.5t203 39.5zM564 920q-132 0 -207.5 -76.5t-94.5 -211.5h564q0 63 -17 116t-51 91.5t-83 59.5t-111 21z" /> +<glyph unicode="f" horiz-adv-x="690" d="M190 0v882l-114 13q-22 5 -35.5 16t-13.5 31v75h163v100q0 89 25.5 158.5t72 117t112 72t147.5 24.5q70 0 129 -21l-4 -91q-1 -20 -17.5 -24t-46.5 -4h-31q-47 0 -85.5 -12.5t-66.5 -40t-42.5 -72.5t-14.5 -112v-95h300v-132h-294v-885h-184z" /> +<glyph unicode="g" horiz-adv-x="1046" d="M499 1055q68 0 126.5 -15t106.5 -44h282v-67q0 -34 -43 -43l-118 -17q35 -67 35 -148q0 -76 -29.5 -138t-81 -106t-122.5 -67.5t-156 -23.5q-73 0 -138 17q-33 -20 -49.5 -43.5t-16.5 -46.5q0 -37 29.5 -55.5t79 -27t112 -10.5t127.5 -6.5t127.5 -16t111.5 -37 t78.5 -70.5t29.5 -117q0 -67 -33 -129t-95.5 -110.5t-153 -78t-203.5 -29.5q-114 0 -199.5 22.5t-141.5 60.5t-84.5 87.5t-28.5 104.5q0 77 48.5 130.5t133.5 85.5q-44 20 -70 54.5t-26 91.5q0 23 8.5 47t25 47.5t41.5 45t57 37.5q-77 43 -120.5 114.5t-43.5 166.5 q0 76 29.5 138t81.5 105.5t124.5 67t158.5 23.5zM822 -56q0 39 -21.5 62.5t-58 36t-85 19t-101.5 9t-108.5 5.5t-105.5 11q-58 -28 -94.5 -67.5t-36.5 -95.5q0 -35 18 -65t55 -52t92.5 -35t131.5 -13q74 0 132 13.5t98.5 38t62 58.5t21.5 75zM499 507q55 0 97.5 15.5t71 43 t43 66t14.5 84.5q0 95 -58 151.5t-168 56.5t-168 -56.5t-58 -151.5q0 -46 15 -84.5t43.5 -66t71 -43t96.5 -15.5z" /> +<glyph unicode="h" horiz-adv-x="1138" d="M150 0v1508h182v-610q67 71 147.5 113.5t186.5 42.5q85 0 150 -28.5t108.5 -80t66 -124t22.5 -161.5v-660h-183v660q0 118 -53.5 183t-164.5 65q-81 0 -151 -39t-129 -105v-764h-182z" /> +<glyph unicode="i" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182zM393 1363q0 -27 -10.5 -50t-28.5 -41t-41.5 -28t-50.5 -10t-50 10t-40.5 28t-28 41t-10.5 50t10.5 51t28 42t41 28t49.5 10q27 0 50.5 -10t41.5 -28t28.5 -42t10.5 -51z" /> +<glyph unicode="j" horiz-adv-x="520" d="M352 1037v-1114q0 -62 -16.5 -116t-51.5 -94t-91 -63t-134 -23q-34 0 -61.5 5.5t-54.5 15.5l8 98q2 13 9 17t23 4q8 0 17 -0.5t23 -0.5q80 0 113.5 37t33.5 120v1114h182zM393 1363q0 -27 -10.5 -50t-28.5 -41t-41.5 -28t-50.5 -10t-50 10t-40.5 28t-28 41t-10.5 50 t10.5 51t28 42t41 28t49.5 10q27 0 50.5 -10t41.5 -28t28.5 -42t10.5 -51z" /> +<glyph unicode="k" horiz-adv-x="1073" d="M339 1508v-887h47q20 0 33.5 5.5t30.5 22.5l327 351q15 16 30.5 26.5t41.5 10.5h166l-382 -406q-14 -17 -28 -30.5t-32 -23.5q18 -12 33.5 -28.5t28.5 -36.5l405 -512h-163q-23 0 -39 8.5t-30 27.5l-341 425q-15 22 -30.5 28.5t-46.5 6.5h-51v-496h-183v1508h183z" /> +<glyph unicode="l" horiz-adv-x="524" d="M352 1508v-1508h-182v1508h182z" /> +<glyph unicode="m" horiz-adv-x="1681" d="M150 0v1037h108q39 0 49 -38l14 -106q57 71 128 116t165 45q105 0 170.5 -58.5t94.5 -157.5q22 56 57 97t79 67.5t93.5 39t100.5 12.5q82 0 146 -26.5t108.5 -76.5t68 -123t23.5 -168v-660h-182v660q0 122 -53 185t-155 63q-45 0 -85.5 -15.5t-71 -46.5t-48.5 -77.5 t-18 -108.5v-660h-182v660q0 125 -50.5 186.5t-146.5 61.5q-68 0 -125.5 -36t-105.5 -99v-773h-182z" /> +<glyph unicode="n" horiz-adv-x="1138" d="M150 0v1037h108q39 0 49 -38l15 -112q68 75 151 121t193 46q85 0 150 -28.5t108.5 -80t66 -124t22.5 -161.5v-660h-183v660q0 118 -53.5 183t-164.5 65q-81 0 -151 -39t-129 -105v-764h-182z" /> +<glyph unicode="o" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5z" /> +<glyph unicode="p" horiz-adv-x="1130" d="M150 -351v1388h108q39 0 49 -38l16 -122q67 81 152 130t197 49q89 0 161.5 -34.5t124 -101.5t79 -166.5t27.5 -228.5q0 -115 -31 -213.5t-88 -170.5t-140.5 -113.5t-188.5 -41.5q-96 0 -164 31.5t-120 90.5v-459h-182zM611 908q-89 0 -156 -41t-123 -115v-502 q50 -68 110 -95.5t133 -27.5q144 0 222.5 103.5t78.5 294.5q0 101 -18 174t-52 119.5t-83.5 68t-111.5 21.5z" /> +<glyph unicode="q" horiz-adv-x="1144" d="M988 1037v-1388h-182v505q-66 -76 -149.5 -122t-190.5 -46q-89 0 -162 34t-124 100.5t-78.5 166t-27.5 228.5q0 115 30.5 213.5t88.5 171.5t141 114.5t188 41.5q100 0 170.5 -36t125.5 -101l12 80q10 38 50 38h108zM526 133q89 0 156.5 41t123.5 116v502 q-49 66 -109.5 93.5t-133.5 27.5q-145 0 -223 -103t-78 -295q0 -101 17.5 -173.5t51.5 -119t83 -68t112 -21.5z" /> +<glyph unicode="r" horiz-adv-x="825" d="M150 0v1037h104q30 0 41 -11t15 -39l13 -162q53 109 131 170t184 61q43 0 78 -10t64 -27l-23 -136q-7 -26 -32 -26q-14 0 -44 10t-83 10q-95 0 -159 -55.5t-107 -161.5v-660h-182z" /> +<glyph unicode="s" horiz-adv-x="888" d="M743 866q-12 -23 -37 -22q-15 0 -35 11t-48 25t-67 26t-92 12q-46 0 -83 -12t-63 -32.5t-40 -47.5t-14 -59q0 -40 23 -66.5t61 -46t86 -34.5t99 -32t99 -37.5t86 -51t61 -75t23 -107.5q0 -72 -25.5 -132.5t-76 -105t-123 -70t-167.5 -25.5q-109 0 -197 35t-150 91l43 69 q8 13 19.5 20.5t30.5 7.5q18 0 38.5 -14.5t49.5 -32t70.5 -31.5t104.5 -14q53 0 93 13.5t66.5 37t39.5 54.5t13 66q0 43 -23 71t-61 48t-86.5 35t-99.5 31t-99.5 37t-86.5 53t-61 78.5t-23 113.5q0 59 24.5 114t71.5 96.5t116 66t157 24.5q102 0 183.5 -32.5t140.5 -88.5z " /> +<glyph unicode="t" horiz-adv-x="763" d="M464 -16q-123 0 -189 68.5t-66 197.5v635h-125q-16 0 -27.5 9.5t-11.5 30.5v72l170 22l42 320q2 15 13.5 25t28.5 10h92v-357h297v-132h-297v-623q0 -66 32 -97.5t82 -31.5q29 0 49.5 7.5t36 17t26.5 17t19 7.5q14 0 26 -17l53 -87q-47 -44 -113.5 -69t-137.5 -25z" /> +<glyph unicode="u" horiz-adv-x="1138" d="M307 1037v-661q0 -118 54.5 -182.5t163.5 -64.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-68 -75 -151.5 -120.5t-192.5 -45.5q-85 0 -150 28t-109 79t-66 124t-22 161v661h182z" /> +<glyph unicode="v" horiz-adv-x="1048" d="M18 1037h150q22 0 36 -11t20 -27l263 -667q14 -37 22.5 -74t15.5 -73q8 36 17.5 73t23.5 74l267 667q6 16 19.5 27t34.5 11h142l-423 -1037h-165z" /> +<glyph unicode="w" horiz-adv-x="1568" d="M14 1037h144q23 0 37 -11t19 -27l199 -667q8 -37 15 -71.5t12 -69.5q8 35 18.5 69.5t21.5 71.5l219 672q5 15 18 25t33 10h78q20 0 34 -10t19 -25l214 -672q11 -36 19.5 -71t17.5 -68q5 34 13 70.5t17 68.5l203 667q5 16 19.5 27t33.5 11h137l-335 -1037h-145 q-27 0 -37 35l-229 703q-8 24 -13 48t-11 48q-5 -24 -10 -48.5t-13 -48.5l-233 -702q-11 -35 -42 -35h-137z" /> +<glyph unicode="x" horiz-adv-x="1032" d="M392 531l-349 506h175q23 0 33 -7t18 -20l254 -389q9 29 27 57l223 328q10 14 20.5 22.5t25.5 8.5h168l-349 -495l363 -542h-175q-23 0 -35.5 12t-20.5 26l-261 406q-7 -30 -22 -53l-241 -353q-10 -14 -22 -26t-33 -12h-162z" /> +<glyph unicode="y" horiz-adv-x="1048" d="M454 -306q-9 -20 -23 -32.5t-43 -12.5h-135l189 411l-428 977h158q24 0 37 -11.5t19 -26.5l278 -653q9 -23 15.5 -45t12.5 -46q7 24 14 46.5t16 45.5l270 652q6 16 20.5 27t32.5 11h145z" /> +<glyph unicode="z" horiz-adv-x="946" d="M873 959q0 -19 -7 -37t-18 -32l-561 -748h566v-142h-781v76q0 13 6.5 31t18.5 34l565 753h-559v143h770v-78z" /> +<glyph unicode="{" horiz-adv-x="614" d="M185 435q0 65 -35.5 106.5t-104.5 41.5v109q69 0 104.5 41t35.5 107q0 51 -8 101t-17.5 100.5t-18 101.5t-8.5 104q0 71 21 130.5t63.5 102.5t105.5 66.5t147 23.5h54v-81q0 -20 -14 -29.5t-27 -9.5h-20q-79 0 -124.5 -51.5t-45.5 -140.5q0 -57 7 -110t16.5 -104 t16.5 -101t7 -101q0 -39 -11.5 -72.5t-32.5 -59.5t-49 -45t-62 -28q34 -9 62 -28t49 -45.5t32.5 -59.5t11.5 -71q0 -51 -7 -101t-16.5 -101t-16.5 -104t-7 -111q0 -89 45.5 -140t124.5 -51h20q12 0 26.5 -9.5t14.5 -29.5v-82h-54q-84 0 -147 24t-105.5 67t-63.5 102.5 t-21 130.5q0 53 8.5 103.5t18 101.5t17.5 101t8 101z" /> +<glyph unicode="|" horiz-adv-x="614" d="M236 1570h141v-1921h-141v1921z" /> +<glyph unicode="}" horiz-adv-x="614" d="M429 435q0 -51 8 -101t18 -101t18 -101.5t8 -103.5q0 -71 -21.5 -130.5t-63.5 -102.5t-105 -67t-147 -24h-54v82q0 20 14.5 29.5t26.5 9.5h21q79 0 124.5 51t45.5 140q0 57 -7.5 110.5t-16.5 104.5t-16.5 101t-7.5 101q0 38 11.5 71t32.5 59.5t49 45.5t62 28 q-34 9 -62 28t-49 45t-32.5 59.5t-11.5 72.5q0 51 7.5 101t16.5 101t16.5 104t7.5 110q0 88 -46 140t-124 52h-21q-12 0 -26.5 9t-14.5 30v81h54q84 0 147 -23.5t105 -66.5t63.5 -102.5t21.5 -130.5q0 -53 -8 -104t-18 -101.5t-18 -100.5t-8 -101q0 -66 36 -107t104 -41 v-109q-69 0 -104.5 -41.5t-35.5 -106.5z" /> +<glyph unicode="~" d="M777 628q67 0 104.5 43.5t38.5 114.5h147q0 -69 -19 -126t-54.5 -98t-87.5 -63.5t-118 -22.5q-53 0 -105 16.5t-100.5 36.5t-93 37t-80.5 17q-67 0 -104.5 -43t-38.5 -116h-147q0 69 19 126t54 98t87 64t118 23q53 0 105.5 -17t101 -36.5t92.5 -36.5t81 -17z" /> +<glyph unicode="¡" horiz-adv-x="702" d="M268 -351v554q0 46 1.5 89.5t5 88t8 91.5t10.5 100h124q6 -53 10.5 -100t7.5 -91.5t4.5 -88t1.5 -89.5v-554h-173zM223 926q0 28 10 50.5t27.5 40t40.5 27.5t50 10t50 -10t40.5 -27.5t27.5 -40.5t10 -50t-10 -50.5t-27.5 -41t-40.5 -27.5t-50 -10q-28 0 -50.5 10 t-40 27.5t-27.5 41t-10 50.5z" /> +<glyph unicode="¢" d="M574 -11q-94 10 -173 50.5t-137 108t-90.5 160.5t-32.5 210q0 114 34 209.5t98.5 166.5t158.5 112.5t216 44.5l12 183q2 20 16 35t36 15h67l-16 -238q84 -12 151.5 -44.5t122.5 -82.5l-47 -64q-8 -11 -15.5 -16.5t-22.5 -5.5q-12 0 -29 8.5t-40 20.5t-55 24.5t-75 19.5 l-54 -780q65 4 108.5 20t73.5 33.5t49.5 31.5t36.5 14q11 0 20 -4.5t14 -11.5l50 -65q-61 -74 -156 -111.5t-205 -44.5l-12 -179q-2 -19 -16 -34.5t-35 -15.5h-68zM323 518q0 -166 69 -264t193 -122l53 778q-78 -6 -137 -35t-99 -80t-59.5 -120.5t-19.5 -156.5z" /> +<glyph unicode="£" d="M53 688q0 27 16.5 45.5t46.5 18.5h137v267q0 96 27.5 180.5t84 147.5t140.5 99.5t196 36.5q80 0 142 -20t110 -55t83.5 -81t60.5 -99l-74 -47q-10 -6 -21 -9t-21 -3q-14 0 -27 6t-24 20q-20 26 -41.5 50t-47.5 42t-59.5 28.5t-80.5 10.5q-65 0 -113.5 -21.5t-81.5 -61.5 t-49.5 -96t-16.5 -126v-269h452v-74q0 -18 -15.5 -33.5t-37.5 -15.5h-399v-249q0 -77 -29 -133t-80 -102q30 5 59 9t60 4h692v-78q0 -14 -6 -28t-16 -26t-24.5 -19t-32.5 -7h-987v118q35 10 66.5 27.5t56 43.5t39.5 61.5t15 82.5v296h-200v59z" /> +<glyph unicode="¤" d="M228 688q0 58 17 110t47 97l-157 157l93 92l155 -156q45 32 98.5 49.5t112.5 17.5q58 0 110.5 -17t96.5 -48l156 157l92 -93l-155 -156q32 -45 49.5 -97.5t17.5 -112.5q0 -58 -17 -110.5t-47 -96.5l156 -154l-94 -95l-155 156q-45 -31 -98.5 -48t-111.5 -17t-110 16.5 t-97 46.5l-157 -157l-91 94l155 155q-31 45 -48.5 98t-17.5 112zM364 688q0 -47 17.5 -88.5t49.5 -72.5t73.5 -49.5t89.5 -18.5t90.5 18.5t74 49.5t49.5 72.5t18 88.5q0 48 -18 90t-49.5 74t-74 50t-90.5 18t-89.5 -18t-73.5 -50t-49.5 -74t-17.5 -90z" /> +<glyph unicode="¥" d="M150 640h313l-418 827h153q27 0 42.5 -12.5t25.5 -33.5l283 -579q14 -36 24.5 -66t17.5 -59q7 30 16 60t24 65l281 579q8 17 25 31.5t43 14.5h154l-419 -827h314v-104h-348v-108h348v-105h-348v-323h-183v323h-348v105h348v108h-348v104z" /> +<glyph unicode="¦" horiz-adv-x="614" d="M236 1570h141v-813h-141v813zM236 463h141v-814h-141v814z" /> +<glyph unicode="§" horiz-adv-x="1030" d="M837 1295q-12 -23 -38 -22q-15 0 -35 11t-48 25t-67 26t-92 12q-49 0 -88.5 -13t-66.5 -34.5t-41.5 -50t-14.5 -60.5q0 -39 25 -68t65.5 -53.5t93 -46.5t106 -45.5t106 -51.5t92.5 -64.5t65.5 -83.5t25.5 -109q0 -83 -40 -148t-126 -104q50 -38 81.5 -88.5t31.5 -120.5 q0 -72 -25.5 -133t-75 -105.5t-123 -70t-167.5 -25.5q-109 0 -196.5 35.5t-149.5 90.5l42 70q8 13 20 20t29 7q18 0 39 -14t50.5 -32t73 -32.5t108.5 -14.5q51 0 91.5 13t68 36t42 54.5t14.5 70.5q0 46 -25.5 80t-67.5 60t-95.5 47.5t-110 44t-109.5 48.5t-95 62t-67.5 83.5 t-25.5 113.5q0 80 44 144t139 99q-51 39 -83.5 93t-32.5 131q0 59 24.5 114t72 96t116 65.5t156.5 24.5q102 0 183.5 -32t141.5 -88zM279 743q0 -52 35.5 -88.5t91.5 -65.5t123.5 -56t130.5 -59q55 27 80 65.5t25 86.5q0 37 -15.5 65.5t-42 52t-62.5 43t-76.5 37.5t-83.5 36 t-84 38q-68 -31 -95 -68.5t-27 -86.5z" /> +<glyph unicode="¨" horiz-adv-x="628" d="M245 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM612 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5t-36.5 24.5 t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z" /> +<glyph unicode="©" horiz-adv-x="1634" d="M1055 474q8 5 13.5 8.5t11.5 3.5q11 0 15.5 -3t10.5 -9l62 -65q-58 -68 -143 -105.5t-204 -37.5q-100 0 -182.5 35t-141.5 97.5t-91 148.5t-32 188q0 103 35 190t97.5 149t148 96t186.5 34q111 0 188.5 -34.5t135.5 -91.5l-47 -66q-5 -6 -13 -12.5t-21 -6.5 q-14 0 -30 11.5t-41.5 25t-64.5 25.5t-99 12q-72 0 -129.5 -23t-98 -66t-62.5 -104.5t-22 -138.5q0 -79 22 -141t60.5 -103.5t93 -64t117.5 -22.5q49 0 83 6.5t58.5 16.5t44 22.5t39.5 24.5zM70 733q0 103 26.5 199t75 179.5t117 151.5t151.5 117.5t178.5 76t198.5 26.5 t199 -26.5t179 -76t151.5 -117.5t117 -151.5t75.5 -179t27 -199.5q0 -102 -27 -198t-75.5 -179t-117 -151t-151.5 -117t-178.5 -75.5t-199.5 -26.5q-103 0 -198.5 26.5t-178.5 75.5t-151.5 117t-117 151t-75 178.5t-26.5 198.5zM172 733q0 -91 22.5 -175t64.5 -157 t100.5 -132.5t130 -102t154.5 -65.5t173 -23q135 0 253.5 51t206 139.5t138 208t50.5 256.5q0 91 -23 176t-65 158.5t-100.5 134t-130.5 103t-155.5 66t-173.5 23.5q-135 0 -253 -52t-205 -141.5t-137 -210t-50 -257.5z" /> +<glyph unicode="ª" horiz-adv-x="700" d="M610 860h-61q-18 0 -27.5 5.5t-17.5 24.5l-12 50q-25 -22 -48.5 -38t-49 -28t-54.5 -17.5t-64 -5.5q-39 0 -72 10t-57.5 31t-38.5 52t-14 73q0 35 19.5 69t64.5 61.5t119.5 45t183.5 19.5v38q0 65 -29.5 95.5t-87.5 30.5q-39 0 -65 -9t-44.5 -20t-33.5 -19.5t-32 -8.5 q-14 0 -24 7.5t-15 18.5l-23 43q53 50 115 73.5t137 23.5q55 0 98 -17.5t73 -48t45 -73.5t15 -96v-390zM316 945q52 0 90 19.5t75 55.5v107q-72 -2 -121.5 -10.5t-80 -22.5t-44 -32t-13.5 -39q0 -43 26.5 -60.5t67.5 -17.5z" /> +<glyph unicode="«" horiz-adv-x="948" d="M141 530v24l255 398l60 -28q14 -7 21 -18.5t7 -24.5q0 -17 -10 -34l-163 -267q-14 -25 -28 -38q15 -14 28 -37l163 -267q5 -8 7.5 -17.5t2.5 -17.5q0 -29 -28 -42l-60 -29zM444 530v24l255 398l60 -28q14 -7 21 -18.5t7 -24.5q0 -17 -10 -34l-163 -267q-14 -25 -28 -38 q15 -14 28 -37l163 -267q5 -8 7.5 -17.5t2.5 -17.5q0 -29 -28 -42l-60 -29z" /> +<glyph unicode="¬" d="M152 757h880v-434h-154v295h-726v139z" /> +<glyph unicode="­" horiz-adv-x="710" d="M102 691h506v-154h-506v154z" /> +<glyph unicode="®" horiz-adv-x="1634" d="M70 733q0 103 26.5 199t75 179.5t117 151.5t151.5 117.5t178.5 76t198.5 26.5t199 -26.5t179 -76t151.5 -117.5t117 -151.5t75.5 -179t27 -199.5q0 -102 -27 -198t-75.5 -179t-117 -151t-151.5 -117t-178.5 -75.5t-199.5 -26.5q-103 0 -198.5 26.5t-178.5 75.5 t-151.5 117t-117 151t-75 178.5t-26.5 198.5zM172 733q0 -91 22.5 -175t64.5 -157t100.5 -132.5t130 -102t154.5 -65.5t173 -23q135 0 253.5 51t206 139.5t138 208t50.5 256.5q0 91 -23 176t-65 158.5t-100.5 134t-130.5 103t-155.5 66t-173.5 23.5q-135 0 -253 -52 t-205 -141.5t-137 -210t-50 -257.5zM670 641v-362h-160v913h295q176 0 261 -64t85 -189q0 -96 -55 -163.5t-163 -93.5q17 -10 30 -25.5t24 -35.5l234 -342h-152q-34 0 -50 25l-206 309q-9 13 -22 20.5t-39 7.5h-82zM670 758h118q56 0 96 10.5t64 31t34.5 50.5t10.5 69 q0 38 -9.5 66.5t-31.5 47t-58 27.5t-89 9h-135v-311z" /> +<glyph unicode="¯" horiz-adv-x="628" d="M20 1380h588v-119h-588v119z" /> +<glyph unicode="°" horiz-adv-x="813" d="M72 1155q0 69 25.5 129.5t70.5 105t106 70t132 25.5t131.5 -25.5t105.5 -70t70.5 -105t25.5 -129.5q0 -68 -25.5 -127.5t-70.5 -104t-106 -71t-131 -26.5q-71 0 -132 26.5t-106 71t-70.5 104t-25.5 127.5zM202 1154q0 -43 15 -80.5t43 -65t65 -43.5t81 -16q43 0 79.5 16 t64.5 43.5t43 65t15 80.5t-15 81t-43 66t-64.5 44t-79.5 16t-80.5 -16t-65.5 -44t-43 -66t-15 -81z" /> +<glyph unicode="±" d="M667 1231v-385h416v-139h-416v-377h-150v377h-415v139h415v385h150zM102 220h981v-138h-981v138z" /> +<glyph unicode="²" horiz-adv-x="679" d="M354 1676q53 0 97 -15t74.5 -43t47.5 -67.5t17 -87.5q0 -41 -13 -76t-34.5 -67t-49 -61.5t-58.5 -60.5l-166 -169q24 6 48 10t45 4h200q22 0 33.5 -11t11.5 -32v-78h-523v44q0 13 5 27.5t17 26.5l227 224q26 26 48 52.5t38.5 53.5t26.5 54.5t10 54.5q0 52 -31 80.5 t-77 28.5q-47 0 -76 -24.5t-44 -67.5q-8 -14 -17.5 -22.5t-27.5 -8.5q-4 0 -8.5 0.5t-9.5 1.5l-73 12q15 109 86 163t176 54z" /> +<glyph unicode="³" horiz-adv-x="679" d="M362 1676q52 0 94.5 -14.5t72.5 -41t46.5 -61t16.5 -75.5q0 -131 -122 -177q68 -19 103 -59.5t35 -103.5q0 -56 -21.5 -99.5t-56.5 -72.5t-82 -44t-96 -15q-58 0 -101 13t-74.5 38t-53.5 62t-37 85l56 25q15 6 30 6q30 0 41 -24q6 -13 15.5 -29.5t24.5 -31t37 -24 t55 -9.5q32 0 56 10t40.5 26t24.5 36.5t8 42.5q0 31 -8.5 52.5t-28.5 36t-53.5 21.5t-81.5 7v90q89 1 125.5 31.5t36.5 83.5q0 51 -30 78t-79 27t-78 -24t-41 -65q-8 -16 -17 -24t-24 -8q-4 0 -9 0.5t-10 1.5l-68 12q7 54 29.5 94.5t55.5 68t76 41t93 13.5z" /> +<glyph unicode="´" horiz-adv-x="628" d="M611 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5h178z" /> +<glyph unicode="µ" horiz-adv-x="1138" d="M307 1037v-673q0 -112 55.5 -173.5t162.5 -61.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-69 -74 -141 -109t-161 -35q-76 0 -133 26t-97 73q7 -43 10 -87.5t3 -83.5v-285h-91q-39 0 -60 20.5t-21 57.5v1310h182z" /> +<glyph unicode="¶" horiz-adv-x="1370" d="M1333 1467v-156h-224v-1517h-161v1517h-283v-1517h-161v882q-106 0 -191.5 31t-145 85t-92 126.5t-32.5 155.5q0 88 32.5 160.5t92 124t144.5 80t192 28.5h829z" /> +<glyph unicode="·" horiz-adv-x="559" d="M127 607q0 32 12 60.5t33 49t48.5 33t58.5 12.5q32 0 60.5 -12.5t49 -33t32.5 -49t12 -60.5q0 -31 -12 -58.5t-32.5 -48.5t-49.5 -32.5t-60 -11.5t-58.5 11.5t-48.5 32.5t-33 48.5t-12 58.5z" /> +<glyph unicode="¸" horiz-adv-x="628" d="M176 -253q6 0 14.5 -3.5t19.5 -8t27.5 -8t37.5 -3.5q43 0 65 16.5t22 43.5q0 19 -11 32.5t-32 22.5t-51.5 15.5t-69.5 11.5l44 144h114l-24 -82q92 -20 133.5 -55.5t41.5 -90.5q0 -33 -16.5 -59t-45.5 -44.5t-70 -28t-90 -9.5q-42 0 -80 8.5t-70 22.5l18 57q6 18 23 18z " /> +<glyph unicode="¹" horiz-adv-x="679" d="M177 1009h151v450l4 44l-110 -90q-12 -9 -26 -9q-24 0 -33 14l-40 58l227 194h111v-661h133v-87h-417v87z" /> +<glyph unicode="º" horiz-adv-x="780" d="M391 1484q72 0 130 -22t98.5 -63t63.5 -100t23 -132q0 -74 -23 -133t-63.5 -100.5t-98.5 -63.5t-130 -22q-73 0 -131 22t-99.5 63.5t-64 101t-22.5 132.5t22.5 132t64 100t99.5 63t131 22zM391 956q86 0 128.5 54t42.5 156t-42.5 155.5t-128.5 53.5q-89 0 -131.5 -53 t-42.5 -156q0 -102 42.5 -156t131.5 -54z" /> +<glyph unicode="»" horiz-adv-x="948" d="M242 132l-60 29q-29 13 -28 42q0 17 10 35l163 267q13 25 27 37q-12 11 -27 38l-163 267q-10 17 -10 35q0 29 28 42l60 28l255 -398v-24zM800 554v-24l-255 -398l-60 29q-29 13 -28 42q0 17 10 35l163 267q13 25 27 37q-12 11 -27 38l-163 267q-10 17 -10 35q0 29 28 42 l60 28z" /> +<glyph unicode="¼" horiz-adv-x="1458" d="M1326 273h112v-66q0 -11 -7.5 -19t-20.5 -8h-84v-180h-112v180h-313q-18 0 -29 8.5t-13 20.5l-10 58l350 479h127v-473zM159 807h150v450l4 45l-109 -91q-12 -9 -27 -9q-24 0 -33 15l-40 57l228 194h110v-661h133v-87h-416v87zM1214 520q0 19 1.5 42t4.5 46l-247 -335 h241v247zM444 54q-19 -32 -41.5 -43t-52.5 -11h-78l838 1405q18 30 42 46t56 16h79z" /> +<glyph unicode="½" horiz-adv-x="1458" d="M1153 755q53 0 96.5 -15.5t74.5 -43t48 -67t17 -87.5q0 -41 -13 -76.5t-34.5 -67t-49 -61.5t-58.5 -61l-166 -168q24 6 48 10t45 4h200q22 0 33.5 -11.5t11.5 -31.5v-79h-523v44q0 13 5 27.5t17 26.5l227 225q26 26 48 52t38.5 53.5t26 54.5t9.5 55q0 52 -30.5 80 t-76.5 28q-47 0 -76.5 -24.5t-43.5 -67.5q-8 -14 -18 -22.5t-27 -8.5q-4 0 -8.5 0.5t-9.5 1.5l-73 13q15 109 86 163t176 54zM159 807h150v450l4 45l-109 -91q-12 -9 -27 -9q-24 0 -33 15l-40 57l228 194h110v-661h133v-87h-416v87zM399 54q-19 -32 -41.5 -43t-52.5 -11h-78 l838 1405q18 30 41.5 46t56.5 16h79z" /> +<glyph unicode="¾" horiz-adv-x="1460" d="M1327 273h112v-66q0 -11 -7.5 -19t-20.5 -8h-84v-180h-112v180h-313q-18 0 -29 8.5t-13 20.5l-10 58l350 479h127v-473zM346 1475q52 0 94 -15t72.5 -41t46.5 -61t16 -76q0 -131 -121 -177q68 -19 103 -59t35 -104q0 -56 -21.5 -99t-57 -72.5t-82 -44t-95.5 -14.5 q-58 0 -101.5 12.5t-74.5 37.5t-53 62t-37 85l56 25q15 6 30 6q30 0 41 -24q6 -13 15 -29.5t24.5 -30.5t37.5 -24t55 -10q32 0 56 10.5t40 26t24.5 36t8.5 42.5q0 31 -9 53t-29 36t-53 21.5t-81 7.5v89q89 1 125 31.5t36 84.5q0 51 -29.5 77.5t-78.5 26.5t-78.5 -24 t-41.5 -65q-8 -16 -16.5 -24t-24.5 -8q-4 0 -8.5 0.5t-9.5 1.5l-69 12q7 54 29.5 95t56 68t76.5 41t93 14zM1215 520q0 19 1.5 42t4.5 46l-247 -335h241v247zM450 54q-19 -32 -42 -43t-53 -11h-77l837 1405q18 30 42 46t56 16h79z" /> +<glyph unicode="¿" horiz-adv-x="815" d="M788 -217q-32 -30 -70 -56.5t-83 -47t-98.5 -32.5t-114.5 -12q-81 0 -150 23t-119.5 64.5t-79 102t-28.5 137.5q0 78 23 132t58.5 93t77.5 67t78 52.5t62.5 49.5t30.5 59l18 157h125l12 -171v-12q0 -45 -23 -76.5t-58 -57.5t-75.5 -50t-76 -54.5t-58.5 -71.5t-23 -102 q0 -45 17.5 -80t47 -60t70 -38.5t86.5 -13.5q62 0 107 15.5t75.5 34t50 33.5t31.5 15q14 0 23 -6t16 -17zM332 925q0 27 9.5 50t26.5 40.5t40.5 28t50.5 10.5t50 -10.5t40.5 -28t27.5 -41t10 -49.5q0 -28 -10 -51t-27.5 -40.5t-41 -27t-49.5 -9.5q-27 0 -50.5 9.5t-40.5 27 t-26.5 40.5t-9.5 51z" /> +<glyph unicode="À" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM533 1825q33 0 49 -7t37 -27l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5 l-302 222h206z" /> +<glyph unicode="Á" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM1046 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208 q10 10 19 16.5t18 10.5t20.5 5.5t28.5 1.5h206z" /> +<glyph unicode="Â" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM1030 1583h-138q-12 0 -26.5 3.5t-23.5 9.5l-133 98q-8 4 -13 8 q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138l243 215h180z" /> +<glyph unicode="Ã" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM820 1703q36 0 55 21t20 59h100q0 -44 -11 -81t-32.5 -64t-53.5 -42 t-73 -15q-36 0 -68.5 13.5t-62.5 29t-57 29t-51 13.5q-35 0 -54 -22t-20 -59h-102q0 44 11.5 81.5t33.5 64t54.5 42t72.5 15.5q36 0 68.5 -13.5t62 -29t56 -29t51.5 -13.5z" /> +<glyph unicode="Ä" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM592 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9 t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM1028 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5 t24.5 -36t9 -45z" /> +<glyph unicode="Å" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM501 1699q0 40 16 73.5t42 57.5t60.5 37.5t73.5 13.5q40 0 75.5 -13.5 t62.5 -37.5t42.5 -57.5t15.5 -73.5q0 -39 -15.5 -72t-42.5 -56.5t-62.5 -36.5t-75.5 -13q-39 0 -73.5 13t-60.5 36.5t-42 56.5t-16 72zM592 1699q0 -44 27.5 -73.5t75.5 -29.5q46 0 74.5 29.5t28.5 73.5q0 46 -28.5 74.5t-74.5 28.5q-48 0 -75.5 -28.5t-27.5 -74.5z" /> +<glyph unicode="Æ" horiz-adv-x="1902" d="M751 1467h1045v-161h-767l62 -488h572v-155h-553l62 -501h624v-162h-790l-51 401h-569l-183 -355q-11 -20 -30 -33t-46 -13h-152zM461 545h476l-96 771q-12 -42 -27 -77.5t-30 -67.5z" /> +<glyph unicode="Ç" horiz-adv-x="1402" d="M658 -253q6 0 14.5 -3.5t19.5 -8t27.5 -8t38.5 -3.5q43 0 65 16.5t22 43.5q0 19 -11.5 32.5t-32.5 22.5t-51.5 15.5t-69.5 11.5l37 121q-142 12 -258 72t-197.5 157.5t-125.5 229t-44 287.5q0 166 54 304.5t151 237.5t233 154t299 55q162 0 279.5 -50.5t208.5 -136.5 l-65 -91q-7 -10 -16 -16.5t-27 -6.5q-13 0 -28 9.5t-35.5 24t-48 31t-65.5 30.5t-88 24t-116 10q-118 0 -215.5 -40.5t-168 -115.5t-110 -182.5t-39.5 -240.5q0 -137 39.5 -244.5t107.5 -182t161 -113t201 -38.5q66 0 118 7.5t96.5 24t83 41.5t77.5 60q17 15 33 15t30 -13 l78 -85q-85 -99 -204.5 -156.5t-285.5 -63.5l-16 -57q92 -20 133.5 -55.5t41.5 -90.5q0 -33 -16.5 -59t-45.5 -44.5t-70 -28t-90 -9.5q-42 0 -80 8.5t-70 22.5l18 57q6 18 23 18z" /> +<glyph unicode="È" horiz-adv-x="1189" d="M1082 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-904v1467h904zM479 1825q33 0 49 -7t37 -27l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" /> +<glyph unicode="É" horiz-adv-x="1189" d="M1082 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-904v1467h904zM992 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 19 16.5t18 10.5t20.5 5.5t28.5 1.5h206z" /> +<glyph unicode="Ê" horiz-adv-x="1189" d="M1082 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-904v1467h904zM977 1583h-138q-12 0 -26.5 3.5t-23.5 9.5l-133 98q-8 4 -13 8q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138l243 215h180z" /> +<glyph unicode="Ë" horiz-adv-x="1189" d="M1082 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-904v1467h904zM539 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM975 1706 q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" /> +<glyph unicode="Ì" horiz-adv-x="628" d="M414 0h-199v1467h199v-1467zM153 1825q33 0 49 -7t37 -27l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" /> +<glyph unicode="Í" horiz-adv-x="628" d="M414 0h-199v1467h199v-1467zM666 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 19 16.5t18 10.5t20.5 5.5t28.5 1.5h206z" /> +<glyph unicode="Î" horiz-adv-x="628" d="M414 0h-199v1467h199v-1467zM650 1583h-138q-12 0 -26.5 3.5t-23.5 9.5l-133 98q-8 4 -13 8q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138l243 215h180z" /> +<glyph unicode="Ï" horiz-adv-x="628" d="M414 0h-199v1467h199v-1467zM211 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM647 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9 q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" /> +<glyph unicode="Ð" horiz-adv-x="1615" d="M51 799h202v668h548q162 0 295.5 -52.5t228.5 -149.5t147.5 -232t52.5 -300t-52.5 -300t-147.5 -231.5t-228.5 -149t-295.5 -52.5h-548v682h-202v117zM1321 733q0 135 -37 241.5t-104.5 180.5t-163.5 113t-215 39h-349v-508h390v-117h-390v-521h349q119 0 215 39 t163.5 112t104.5 179.5t37 241.5z" /> +<glyph unicode="Ñ" horiz-adv-x="1548" d="M281 1467q27 0 39.5 -6.5t28.5 -26.5l850 -1106q-3 27 -4 51.5t-1 48.5v1039h174v-1467h-100q-24 0 -40 8t-31 28l-849 1105q2 -26 3 -50.5t1 -44.5v-1046h-174v1467h103v0zM922 1703q36 0 55 21t20 59h100q0 -44 -11 -81t-32.5 -64t-53.5 -42t-73 -15q-36 0 -68.5 13.5 t-62.5 29t-57 29t-51 13.5q-35 0 -54 -22t-20 -59h-102q0 44 11.5 81.5t33.5 64t54.5 42t72.5 15.5q36 0 68.5 -13.5t62 -29t56 -29t51.5 -13.5z" /> +<glyph unicode="Ò" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242zM656 1825q33 0 49 -7t37 -27l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" /> +<glyph unicode="Ó" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242zM1169 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 19 16.5t18 10.5t20.5 5.5t28.5 1.5h206z" /> +<glyph unicode="Ô" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242zM1153 1583h-138q-12 0 -26.5 3.5t-23.5 9.5l-133 98q-8 4 -13 8q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138 l243 215h180z" /> +<glyph unicode="Õ" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242zM943 1703q36 0 55 21t20 59h100q0 -44 -11 -81t-32.5 -64t-53.5 -42t-73 -15q-36 0 -68.5 13.5t-62.5 29t-57 29t-51 13.5 q-35 0 -54 -22t-20 -59h-102q0 44 11.5 81.5t33.5 64t54.5 42t72.5 15.5q36 0 68.5 -13.5t62 -29t56 -29t51.5 -13.5z" /> +<glyph unicode="Ö" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242zM715 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5 t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM1151 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" /> +<glyph unicode="×" d="M1041 1038l-352 -352l363 -361l-98 -99l-362 363l-366 -365l-97 99l365 364l-354 353l98 99l353 -355l352 353z" /> +<glyph unicode="Ø" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5q-111 0 -207 25t-177 74l-102 -139q-23 -30 -52.5 -43.5t-59.5 -13.5h-80l196 267q-115 100 -178 247.5t-63 330.5q0 165 52.5 303t147.5 237.5t228 155t295 55.5q118 0 220.5 -30t187.5 -85l84 114 q20 28 36.5 39.5t49.5 11.5h102l-176 -241q105 -100 162.5 -242.5t57.5 -317.5zM297 733q0 -138 38.5 -246t108.5 -183l675 921q-61 43 -137 65t-165 22q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5zM1337 733q0 129 -33 232t-95 177l-670 -914q119 -72 278 -71 q119 0 215 39.5t164 113.5t104.5 181t36.5 242z" /> +<glyph unicode="Ù" horiz-adv-x="1495" d="M749 158q91 0 162.5 30.5t121 86t76 132t26.5 168.5v892h197v-892q0 -127 -40.5 -235.5t-115.5 -187.5t-183.5 -124t-243.5 -45t-244 45t-184.5 124t-116 188t-40.5 235v892h197v-890q0 -92 26.5 -169t76 -132.5t122 -86.5t163.5 -31zM584 1825q33 0 49 -7t37 -27 l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" /> +<glyph unicode="Ú" horiz-adv-x="1495" d="M749 158q91 0 162.5 30.5t121 86t76 132t26.5 168.5v892h197v-892q0 -127 -40.5 -235.5t-115.5 -187.5t-183.5 -124t-243.5 -45t-244 45t-184.5 124t-116 188t-40.5 235v892h197v-890q0 -92 26.5 -169t76 -132.5t122 -86.5t163.5 -31zM1097 1825l-301 -221 q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 19 16.5t18 10.5t20.5 5.5t28.5 1.5h206z" /> +<glyph unicode="Û" horiz-adv-x="1495" d="M749 158q91 0 162.5 30.5t121 86t76 132t26.5 168.5v892h197v-892q0 -127 -40.5 -235.5t-115.5 -187.5t-183.5 -124t-243.5 -45t-244 45t-184.5 124t-116 188t-40.5 235v892h197v-890q0 -92 26.5 -169t76 -132.5t122 -86.5t163.5 -31zM1081 1583h-138q-12 0 -26.5 3.5 t-23.5 9.5l-133 98q-8 4 -13 8q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138l243 215h180z" /> +<glyph unicode="Ü" horiz-adv-x="1495" d="M749 158q91 0 162.5 30.5t121 86t76 132t26.5 168.5v892h197v-892q0 -127 -40.5 -235.5t-115.5 -187.5t-183.5 -124t-243.5 -45t-244 45t-184.5 124t-116 188t-40.5 235v892h197v-890q0 -92 26.5 -169t76 -132.5t122 -86.5t163.5 -31zM643 1706q0 -23 -9.5 -42.5 t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM1079 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36 t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" /> +<glyph unicode="Ý" horiz-adv-x="1288" d="M743 584v-584h-197v584l-538 883h174q27 0 42.5 -13t26.5 -33l336 -570q20 -36 34 -67.5t25 -62.5q11 32 24.5 63.5t34.5 66.5l334 570q9 16 25 31t42 15h176zM995 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 19 16.5t18 10.5t20.5 5.5t28.5 1.5 h206z" /> +<glyph unicode="Þ" horiz-adv-x="1251" d="M396 279v-279h-197v1467h197v-270h236q139 0 242 -32t170.5 -91.5t101 -143.5t33.5 -188q0 -102 -36 -187t-105 -146.5t-171.5 -95.5t-234.5 -34h-236zM396 436h236q85 0 150 22.5t109 63t66.5 97t22.5 123.5q0 140 -86.5 219t-261.5 79h-236v-604z" /> +<glyph unicode="ß" horiz-adv-x="1247" d="M689 1489q105 0 182.5 -31t128 -78.5t74.5 -103.5t24 -109q0 -61 -22 -105t-55 -78t-71.5 -59.5t-71 -50t-54.5 -50.5t-22 -59q0 -40 27 -66.5t68 -49.5t88.5 -47t88.5 -60t68 -88.5t27 -131.5q0 -80 -29 -142.5t-80 -106t-120.5 -66.5t-149.5 -23q-99 0 -180.5 35 t-142.5 91l42 69q8 13 20 20.5t29 7.5q18 0 38.5 -14.5t49 -32t67 -31.5t92.5 -14q45 0 81 13.5t61 37t38 56.5t13 71q0 57 -28.5 93t-71.5 62t-93 47.5t-93 51.5t-72 72.5t-29 109.5q0 54 23 94.5t57.5 73t74.5 60t74 58.5t57.5 67t23.5 85q0 33 -13 66.5t-41.5 60 t-74.5 43.5t-110 17q-70 0 -126.5 -21.5t-97 -64.5t-62.5 -107.5t-22 -150.5v-1010h-184v1016q0 106 35.5 193t101 149.5t157.5 96.5t205 34z" /> +<glyph unicode="à" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM438 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5t-27 22.5l-240 264h173z" /> +<glyph unicode="á" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM837 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5h178z" /> +<glyph unicode="â" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM853 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18l-132 -129q-6 -5 -17.5 -9.5t-23.5 -4.5h-126l228 270h170z" /> +<glyph unicode="ã" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM653 1357q37 0 57 21.5t21 66.5h110q0 -48 -12.5 -88.5t-36.5 -69.5t-57.5 -44.5t-74.5 -15.5q-36 0 -67 14.5t-58.5 32t-52.5 32.5t-48 15q-74 0 -76 -90h-114q0 49 13.5 89.5t38 69.5t58.5 45t74 16q36 0 67 -15t58.5 -32.5t51.5 -32t48 -14.5z" /> +<glyph unicode="ä" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM471 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM838 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5 t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z" /> +<glyph unicode="å" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM336 1347q0 43 16 77.5t44.5 60t65 39.5t77.5 14q42 0 79.5 -14t66 -39.5t45 -60t16.5 -77.5q0 -42 -16.5 -77t-45 -59.5t-66 -38.5t-79.5 -14q-41 0 -77.5 14t-65 38.5t-44.5 59.5t-16 77zM438 1347q0 -45 27.5 -74t75.5 -29q46 0 74.5 29t28.5 74 q0 46 -28.5 74.5t-74.5 28.5q-48 0 -75.5 -28.5t-27.5 -74.5z" /> +<glyph unicode="æ" horiz-adv-x="1671" d="M1194 1054q84 0 156 -33t125 -95.5t83 -152t30 -204.5q0 -42 -8 -56.5t-34 -14.5h-642q4 -93 27.5 -162.5t63 -115.5t93.5 -68.5t120 -22.5q71 0 118 15t78.5 33.5t51 33t35.5 14.5q14 0 23.5 -4.5t15.5 -12.5l48 -63q-34 -41 -78.5 -71t-95 -49.5t-105 -29t-107.5 -9.5 q-120 0 -217.5 57.5t-154.5 176.5q-28 -63 -72.5 -108t-98.5 -74t-115 -41.5t-121 -12.5q-71 0 -129.5 17.5t-101 53.5t-65.5 90.5t-23 127.5q0 61 34 121t109 107t197 77t298 34v52q0 121 -51.5 185t-153.5 64q-67 0 -112 -17.5t-78.5 -39t-57.5 -39.5t-48 -18 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 179 124t208 41q123 0 198 -52.5t109 -145.5q55 90 143.5 143t212.5 53zM732 498q-126 -5 -214 -23t-143.5 -47t-80.5 -65.5t-25 -79.5q0 -89 51.5 -130t134.5 -41q58 0 108.5 18t88 56t59 94.5t21.5 132.5v85zM1187 920 q-62 0 -111.5 -21t-85 -61t-56.5 -97.5t-28 -129.5h520q0 67 -15.5 124t-46.5 97.5t-75.5 64t-101.5 23.5z" /> +<glyph unicode="ç" horiz-adv-x="956" d="M410 -253q6 0 14 -3.5t19.5 -8t27.5 -8t38 -3.5q43 0 65 16.5t22 43.5q0 19 -11.5 32.5t-32.5 22.5t-51.5 15.5t-69.5 11.5l38 124q-85 11 -157 51.5t-124.5 108t-82 160.5t-29.5 209t32 214t94 169.5t153 111.5t209 40q109 0 193 -35.5t148 -99.5l-48 -66 q-8 -11 -16 -17.5t-24 -6.5q-15 0 -33 13t-45.5 28.5t-67 28t-97.5 12.5q-76 0 -134 -27t-97.5 -78t-59.5 -124t-20 -163q0 -94 21.5 -167t60.5 -123t95 -76t125 -26q67 0 110 16t71.5 35.5t47 35t36.5 15.5q11 0 20 -4.5t15 -12.5l51 -67q-60 -74 -147 -111.5t-186 -45.5 l-18 -60q92 -20 133.5 -55.5t41.5 -90.5q0 -33 -16 -59t-45.5 -44.5t-70.5 -28t-90 -9.5q-42 0 -80 8.5t-69 22.5l17 57q7 18 24 18z" /> +<glyph unicode="è" horiz-adv-x="1073" d="M560 1054q93 0 172 -31.5t136.5 -90.5t89.5 -145.5t32 -196.5q0 -43 -9 -57.5t-35 -14.5h-690q2 -98 26.5 -171t67.5 -121.5t102.5 -72.5t133.5 -24q69 0 118.5 16t85 34.5t59.5 34t42 15.5q23 0 35 -17l51 -67q-34 -41 -81 -71t-101 -49.5t-111 -29t-114 -9.5 q-108 0 -198 36t-156 106.5t-103 174t-37 237.5q0 109 33 203t95.5 163t152.5 108.5t203 39.5zM564 920q-132 0 -207.5 -76.5t-94.5 -211.5h564q0 63 -17 116t-51 91.5t-83 59.5t-111 21zM462 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5t-27 22.5l-240 264 h173z" /> +<glyph unicode="é" horiz-adv-x="1073" d="M560 1054q93 0 172 -31.5t136.5 -90.5t89.5 -145.5t32 -196.5q0 -43 -9 -57.5t-35 -14.5h-690q2 -98 26.5 -171t67.5 -121.5t102.5 -72.5t133.5 -24q69 0 118.5 16t85 34.5t59.5 34t42 15.5q23 0 35 -17l51 -67q-34 -41 -81 -71t-101 -49.5t-111 -29t-114 -9.5 q-108 0 -198 36t-156 106.5t-103 174t-37 237.5q0 109 33 203t95.5 163t152.5 108.5t203 39.5zM564 920q-132 0 -207.5 -76.5t-94.5 -211.5h564q0 63 -17 116t-51 91.5t-83 59.5t-111 21zM861 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5 h178z" /> +<glyph unicode="ê" horiz-adv-x="1073" d="M560 1054q93 0 172 -31.5t136.5 -90.5t89.5 -145.5t32 -196.5q0 -43 -9 -57.5t-35 -14.5h-690q2 -98 26.5 -171t67.5 -121.5t102.5 -72.5t133.5 -24q69 0 118.5 16t85 34.5t59.5 34t42 15.5q23 0 35 -17l51 -67q-34 -41 -81 -71t-101 -49.5t-111 -29t-114 -9.5 q-108 0 -198 36t-156 106.5t-103 174t-37 237.5q0 109 33 203t95.5 163t152.5 108.5t203 39.5zM564 920q-132 0 -207.5 -76.5t-94.5 -211.5h564q0 63 -17 116t-51 91.5t-83 59.5t-111 21zM877 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18l-132 -129q-6 -5 -17.5 -9.5 t-23.5 -4.5h-126l228 270h170z" /> +<glyph unicode="ë" horiz-adv-x="1073" d="M560 1054q93 0 172 -31.5t136.5 -90.5t89.5 -145.5t32 -196.5q0 -43 -9 -57.5t-35 -14.5h-690q2 -98 26.5 -171t67.5 -121.5t102.5 -72.5t133.5 -24q69 0 118.5 16t85 34.5t59.5 34t42 15.5q23 0 35 -17l51 -67q-34 -41 -81 -71t-101 -49.5t-111 -29t-114 -9.5 q-108 0 -198 36t-156 106.5t-103 174t-37 237.5q0 109 33 203t95.5 163t152.5 108.5t203 39.5zM564 920q-132 0 -207.5 -76.5t-94.5 -211.5h564q0 63 -17 116t-51 91.5t-83 59.5t-111 21zM495 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5 t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM862 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z " /> +<glyph unicode="ì" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182zM166 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5t-27 22.5l-240 264h173z" /> +<glyph unicode="í" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182zM565 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5h178z" /> +<glyph unicode="î" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182zM580 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18l-132 -129q-6 -5 -17.5 -9.5t-23.5 -4.5h-126l228 270h170z" /> +<glyph unicode="ï" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182zM199 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM566 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5 t-44 -9.5q-24 0 -45 9.5t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z" /> +<glyph unicode="ð" horiz-adv-x="1132" d="M427 1091q-4 7 -6.5 13.5t-2.5 12.5q0 23 23 38l106 74q-46 20 -98 37.5t-110 31.5q-18 5 -31 19t-13 38q0 15 5 29l21 64q98 -16 190 -47t175 -80l171 125l36 -58q8 -13 8 -25q0 -22 -22 -38l-100 -69q61 -50 112 -113.5t87 -142.5t56 -174t20 -208q0 -146 -32 -262.5 t-95 -198.5t-156.5 -126t-216.5 -44q-100 0 -187 33.5t-151 96.5t-101 154t-37 206q0 96 31.5 181.5t91 150t144 102.5t191.5 38q102 0 192.5 -44t157.5 -133q-20 139 -80.5 236.5t-156.5 162.5l-188 -138zM558 128q73 0 132 27.5t100 83.5t65 140.5t27 198.5 q-16 44 -43 85.5t-65.5 73.5t-89 51t-114.5 19q-77 0 -134.5 -25.5t-96.5 -70t-59 -105.5t-20 -131q0 -83 23.5 -148t64.5 -109t95 -67t115 -23z" /> +<glyph unicode="ñ" horiz-adv-x="1138" d="M150 0v1037h108q39 0 49 -38l15 -112q68 75 151 121t193 46q85 0 150 -28.5t108.5 -80t66 -124t22.5 -161.5v-660h-183v660q0 118 -53.5 183t-164.5 65q-81 0 -151 -39t-129 -105v-764h-182zM691 1357q37 0 57 21.5t21 66.5h110q0 -48 -12.5 -88.5t-36.5 -69.5 t-57.5 -44.5t-74.5 -15.5q-36 0 -67 14.5t-58.5 32t-52.5 32.5t-48 15q-74 0 -76 -90h-114q0 49 13.5 89.5t38 69.5t58.5 45t74 16q36 0 67 -15t58.5 -32.5t51.5 -32t48 -14.5z" /> +<glyph unicode="ò" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5zM469 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5t-27 22.5l-240 264h173z" /> +<glyph unicode="ó" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5zM868 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5h178z" /> +<glyph unicode="ô" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5zM884 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18l-132 -129q-6 -5 -17.5 -9.5t-23.5 -4.5h-126l228 270h170z" /> +<glyph unicode="õ" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5zM684 1357q37 0 57 21.5t21 66.5h110q0 -48 -12.5 -88.5t-36.5 -69.5t-57.5 -44.5t-74.5 -15.5q-36 0 -67 14.5t-58.5 32t-52.5 32.5t-48 15q-74 0 -76 -90 h-114q0 49 13.5 89.5t38 69.5t58.5 45t74 16q36 0 67 -15t58.5 -32.5t51.5 -32t48 -14.5z" /> +<glyph unicode="ö" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5zM502 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5 t37 -25.5t25.5 -37t9.5 -45zM869 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z" /> +<glyph unicode="÷" d="M102 757h981v-139h-981v139zM465 1051q0 27 9.5 50t26.5 40.5t40 28t51 10.5q27 0 50 -10.5t40 -28t27.5 -41t10.5 -49.5q0 -28 -10.5 -51t-27.5 -40.5t-40.5 -27t-49.5 -9.5q-28 0 -51 9.5t-40 27t-26.5 40.5t-9.5 51zM465 322q0 27 9.5 50t26.5 40.5t40 28t51 10.5 q27 0 50 -10.5t40 -28t27.5 -41t10.5 -49.5q0 -28 -10.5 -51t-27.5 -40.5t-40.5 -27t-49.5 -9.5q-28 0 -51 9.5t-40 27t-26.5 40.5t-9.5 51z" /> +<glyph unicode="ø" horiz-adv-x="1138" d="M934 905q62 -70 96 -167.5t34 -218.5q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37q-78 0 -145 17t-122 50l-56 -76q-23 -30 -53 -42.5t-60 -12.5h-68l148 201q-68 71 -103.5 170t-35.5 226q0 122 34.5 221t99 168.5t156.5 107.5t205 38q81 0 150.5 -19.5 t126.5 -55.5l69 93q20 28 37 39.5t49 11.5h93zM252 518q0 -164 60 -263l447 604q-75 57 -189 57q-78 0 -137 -27.5t-99.5 -78.5t-61 -125.5t-20.5 -166.5zM570 123q77 0 136 27t99.5 78.5t61 124.5t20.5 165q0 155 -53 253l-444 -599q71 -49 180 -49z" /> +<glyph unicode="ù" horiz-adv-x="1138" d="M307 1037v-661q0 -118 54.5 -182.5t163.5 -64.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-68 -75 -151.5 -120.5t-192.5 -45.5q-85 0 -150 28t-109 79t-66 124t-22 161v661h182zM463 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5 t-27 22.5l-240 264h173z" /> +<glyph unicode="ú" horiz-adv-x="1138" d="M307 1037v-661q0 -118 54.5 -182.5t163.5 -64.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-68 -75 -151.5 -120.5t-192.5 -45.5q-85 0 -150 28t-109 79t-66 124t-22 161v661h182zM862 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248 q14 24 31 34.5t50 10.5h178z" /> +<glyph unicode="û" horiz-adv-x="1138" d="M307 1037v-661q0 -118 54.5 -182.5t163.5 -64.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-68 -75 -151.5 -120.5t-192.5 -45.5q-85 0 -150 28t-109 79t-66 124t-22 161v661h182zM878 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18 l-132 -129q-6 -5 -17.5 -9.5t-23.5 -4.5h-126l228 270h170z" /> +<glyph unicode="ü" horiz-adv-x="1138" d="M307 1037v-661q0 -118 54.5 -182.5t163.5 -64.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-68 -75 -151.5 -120.5t-192.5 -45.5q-85 0 -150 28t-109 79t-66 124t-22 161v661h182zM496 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5 q-23 0 -43 9.5t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM863 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5 t36.5 -25.5t25 -37t9 -45z" /> +<glyph unicode="ý" horiz-adv-x="1048" d="M454 -306q-9 -20 -23 -32.5t-43 -12.5h-135l189 411l-428 977h158q24 0 37 -11.5t19 -26.5l278 -653q9 -23 15.5 -45t12.5 -46q7 24 14 46.5t16 45.5l270 652q6 16 20.5 27t32.5 11h145zM844 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5 h178z" /> +<glyph unicode="þ" horiz-adv-x="1130" d="M150 -351v1859h182v-621q65 76 148.5 121.5t191.5 45.5q89 0 161.5 -34t124 -101t79 -166t27.5 -228q0 -115 -31 -213.5t-88 -170.5t-140.5 -113.5t-188.5 -41.5q-97 0 -164.5 35t-119.5 100v-472h-182zM611 908q-89 0 -156 -41t-123 -115v-502q50 -68 110 -95.5 t133 -27.5q144 0 222.5 103.5t78.5 294.5q0 101 -18 174t-52 119.5t-83.5 68t-111.5 21.5z" /> +<glyph unicode="ÿ" horiz-adv-x="1048" d="M454 -306q-9 -20 -23 -32.5t-43 -12.5h-135l189 411l-428 977h158q24 0 37 -11.5t19 -26.5l278 -653q9 -23 15.5 -45t12.5 -46q7 24 14 46.5t16 45.5l270 652q6 16 20.5 27t32.5 11h145zM478 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5 t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM845 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5 t25 -37t9 -45z" /> +<glyph unicode="ı" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182z" /> +<glyph unicode="Œ" horiz-adv-x="2244" d="M2137 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-881v246q-86 -123 -216 -191.5t-295 -68.5q-145 0 -265 54.5t-206 153.5t-133 236.5t-47 302.5t47 303t133 237.5t206 155t265 55.5q165 0 295 -69t216 -193v245h881zM1233 733q0 135 -33 243t-93.5 184 t-147.5 116.5t-193 40.5t-193 -40.5t-148 -116.5t-94.5 -184t-33.5 -243t33.5 -243t94.5 -183.5t147.5 -115t193.5 -39.5q106 0 193 39.5t147.5 115t93.5 183.5t33 243z" /> +<glyph unicode="œ" horiz-adv-x="1775" d="M1298 1054q84 0 156.5 -33t125 -95.5t83 -152t30.5 -204.5q0 -42 -8.5 -56.5t-33.5 -14.5h-642q4 -93 27.5 -162.5t63 -115.5t93 -68.5t120.5 -22.5q62 0 107.5 16t78.5 34.5t56 34t41 15.5q22 0 34 -17l52 -67q-34 -41 -78 -71t-95 -49.5t-105 -29t-108 -9.5 q-122 0 -219.5 58.5t-153.5 180.5q-55 -115 -154 -177t-240 -62q-102 0 -186 37t-144 107t-92.5 168t-32.5 221q0 122 32.5 221t93.5 168.5t146.5 107.5t190.5 38q134 0 231 -62t152 -175q51 108 146.5 172.5t231.5 64.5zM547 128q142 0 211.5 103t69.5 287q0 92 -17 165.5 t-52 123.5t-88.5 76.5t-123.5 26.5q-73 0 -126 -26.5t-88.5 -76.5t-53 -123.5t-17.5 -165.5q0 -184 70.5 -287t214.5 -103zM1292 920q-62 0 -111 -21t-84.5 -61t-57 -97.5t-28.5 -129.5h520q0 67 -16 124t-46.5 97.5t-75.5 64t-101 23.5z" /> +<glyph unicode="Ÿ" horiz-adv-x="1288" d="M743 584v-584h-197v584l-538 883h174q27 0 42.5 -13t26.5 -33l336 -570q20 -36 34 -67.5t25 -62.5q11 32 24.5 63.5t34.5 66.5l334 570q9 16 25 31t42 15h176zM541 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45 t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM977 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" /> +<glyph unicode="ˆ" horiz-adv-x="628" d="M627 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18l-132 -129q-6 -5 -17.5 -9.5t-23.5 -4.5h-126l228 270h170z" /> +<glyph unicode="˚" horiz-adv-x="628" d="M109 1347q0 43 16 77.5t44.5 60t65 39.5t77.5 14q42 0 79.5 -14t66 -39.5t45 -60t16.5 -77.5q0 -42 -16.5 -77t-45 -59.5t-66 -38.5t-79.5 -14q-41 0 -77.5 14t-65 38.5t-44.5 59.5t-16 77zM211 1347q0 -45 27.5 -74t75.5 -29q46 0 74.5 29t28.5 74q0 46 -28.5 74.5 t-74.5 28.5q-48 0 -75.5 -28.5t-27.5 -74.5z" /> +<glyph unicode="˜" horiz-adv-x="628" d="M427 1357q37 0 57 21.5t21 66.5h110q0 -48 -12.5 -88.5t-36.5 -69.5t-57.5 -44.5t-74.5 -15.5q-36 0 -67 14.5t-58.5 32t-52.5 32.5t-48 15q-74 0 -76 -90h-114q0 49 13.5 89.5t38 69.5t58.5 45t74 16q36 0 67 -15t58.5 -32.5t51.5 -32t48 -14.5z" /> +<glyph unicode=" " horiz-adv-x="940" /> +<glyph unicode=" " horiz-adv-x="1881" /> +<glyph unicode=" " horiz-adv-x="940" /> +<glyph unicode=" " horiz-adv-x="1881" /> +<glyph unicode=" " horiz-adv-x="627" /> +<glyph unicode=" " horiz-adv-x="470" /> +<glyph unicode=" " horiz-adv-x="313" /> +<glyph unicode=" " horiz-adv-x="313" /> +<glyph unicode=" " horiz-adv-x="235" /> +<glyph unicode=" " horiz-adv-x="376" /> +<glyph unicode=" " horiz-adv-x="104" /> +<glyph unicode="‐" horiz-adv-x="710" d="M102 691h506v-154h-506v154z" /> +<glyph unicode="‑" horiz-adv-x="710" d="M102 691h506v-154h-506v154z" /> +<glyph unicode="‒" horiz-adv-x="710" d="M102 691h506v-154h-506v154z" /> +<glyph unicode="–" horiz-adv-x="1138" d="M160 671h819v-133h-819v133z" /> +<glyph unicode="—" horiz-adv-x="1681" d="M160 671h1362v-133h-1362v133z" /> +<glyph unicode="‘" horiz-adv-x="434" d="M117 1036q-30 49 -44 99t-14 99q0 92 46 176.5t127 155.5l57 -35q8 -5 10.5 -11.5t2.5 -12.5q0 -14 -10 -24q-16 -20 -31.5 -43t-28 -48t-19.5 -52.5t-7 -58.5q0 -33 9.5 -67.5t33.5 -73.5q7 -11 7 -24q0 -25 -28 -35z" /> +<glyph unicode="’" horiz-adv-x="434" d="M278 1544q30 -49 43 -98t13 -98q0 -93 -45.5 -178t-126.5 -155l-57 35q-8 5 -10.5 11t-2.5 12q0 14 10 25q16 19 32 42t28 48t19 53t7 58q0 33 -9.5 68t-33.5 74q-7 11 -7 22q0 25 28 36z" /> +<glyph unicode="‚" horiz-adv-x="434" d="M278 247q30 -49 43 -98.5t13 -98.5q0 -93 -45.5 -177.5t-126.5 -155.5l-57 35q-8 5 -10.5 11.5t-2.5 12.5q0 14 10 24q16 19 32 42.5t28 48.5t19 52.5t7 58.5q0 33 -9.5 67.5t-33.5 73.5q-7 11 -7 23q0 25 28 36z" /> +<glyph unicode="“" horiz-adv-x="745" d="M117 1036q-30 49 -44 99t-14 99q0 92 46 176.5t127 155.5l57 -35q8 -5 10.5 -11.5t2.5 -12.5q0 -14 -10 -24q-16 -20 -31.5 -43t-28 -48t-19.5 -52.5t-7 -58.5q0 -33 9.5 -67.5t33.5 -73.5q7 -11 7 -24q0 -25 -28 -35zM428 1036q-30 49 -43.5 99t-13.5 99 q0 92 45.5 176.5t127.5 155.5l56 -35q8 -5 10.5 -11.5t2.5 -12.5q0 -14 -10 -24q-16 -20 -31.5 -43t-28 -48t-19.5 -52.5t-7 -58.5q0 -33 10 -67.5t33 -73.5q7 -11 7 -24q0 -25 -27 -35z" /> +<glyph unicode="”" horiz-adv-x="745" d="M278 1544q30 -49 43 -98t13 -98q0 -93 -45.5 -178t-126.5 -155l-57 35q-8 5 -10.5 11t-2.5 12q0 14 10 25q16 19 32 42t28 48t19 53t7 58q0 33 -9.5 68t-33.5 74q-7 11 -7 22q0 25 28 36zM589 1544q30 -49 43 -98t13 -98q0 -93 -45.5 -178t-126.5 -155l-56 35 q-8 5 -11 11t-3 12q0 14 11 25q16 19 31.5 42t27.5 48t19.5 53t7.5 58q0 33 -10 68t-33 74q-7 11 -7 22q0 25 27 36z" /> +<glyph unicode="„" horiz-adv-x="745" d="M278 247q30 -49 43 -98.5t13 -98.5q0 -93 -45.5 -177.5t-126.5 -155.5l-57 35q-8 5 -10.5 11.5t-2.5 12.5q0 14 10 24q16 19 32 42.5t28 48.5t19 52.5t7 58.5q0 33 -9.5 67.5t-33.5 73.5q-7 11 -7 23q0 25 28 36zM589 247q30 -49 43 -98.5t13 -98.5q0 -93 -45.5 -177.5 t-126.5 -155.5l-56 35q-8 5 -11 11.5t-3 12.5q0 14 11 24q16 19 31.5 42.5t27.5 48.5t19.5 52.5t7.5 58.5q0 33 -10 67.5t-33 73.5q-7 11 -7 23q0 25 27 36z" /> +<glyph unicode="•" d="M213 609q0 79 30 148.5t81.5 121.5t120.5 82t147 30q79 0 148.5 -30t121 -82t82 -121.5t30.5 -148.5t-30.5 -148t-82 -120t-121 -81.5t-148.5 -30.5q-78 0 -147 30.5t-120.5 81.5t-81.5 120t-30 148z" /> +<glyph unicode="…" horiz-adv-x="1488" d="M90 113q0 27 10 50t26.5 40.5t40 28t50.5 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5t-40 27t-26.5 40.5t-10 51zM1144 113q0 27 9.5 50t26.5 40.5t40.5 28t50.5 10.5t50.5 -10.5t40.5 -28t27 -41t10 -49.5 q0 -28 -10 -51t-27 -40.5t-41 -27t-50 -9.5q-27 0 -50.5 9.5t-40.5 27t-26.5 40.5t-9.5 51zM616 113q0 27 10 50t27 40.5t40.5 28t49.5 10.5q27 0 50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50 9.5t-40 27t-27 40.5t-10 51z" /> +<glyph unicode=" " horiz-adv-x="376" /> +<glyph unicode="‹" horiz-adv-x="647" d="M141 530v24l255 398l60 -28q14 -7 21 -18.5t7 -24.5q0 -17 -10 -34l-163 -267q-14 -25 -28 -38q15 -14 28 -37l163 -267q5 -8 7.5 -17.5t2.5 -17.5q0 -29 -28 -42l-60 -29z" /> +<glyph unicode="›" horiz-adv-x="647" d="M497 554v-24l-255 -398l-60 29q-29 13 -28 42q0 17 10 35l163 267q13 25 27 37q-12 11 -27 38l-163 267q-10 17 -10 35q0 29 28 42l60 28z" /> +<glyph unicode=" " horiz-adv-x="470" /> +<glyph unicode="€" d="M35 921h150q20 129 69 232.5t121 177t166.5 112.5t204.5 39q137 0 234.5 -51.5t169.5 -141.5l-63 -69q-8 -9 -16 -16t-22 -7q-17 0 -36.5 19.5t-51 43t-81.5 43t-126 19.5q-150 0 -248.5 -102.5t-131.5 -298.5h560v-57q0 -18 -14 -33t-38 -15h-521q-1 -20 -1.5 -40.5 t-0.5 -42.5v-31.5t1 -30.5h479v-58q0 -17 -14.5 -32t-39.5 -15h-415q29 -211 127 -316.5t247 -105.5q55 0 97.5 11t73 27.5t52.5 35.5t38.5 35t29.5 27t25 11q8 0 14 -3.5t15 -11.5l76 -71q-72 -104 -178 -162t-253 -58q-119 0 -214 40.5t-164.5 115.5t-114 183t-61.5 242 h-145v105h137q-1 15 -1 30.5v31.5q0 20 0.5 41.5t1.5 41.5h-138v105z" /> +<glyph unicode="™" horiz-adv-x="1474" d="M986 1136q6 -14 12 -27t10 -28q5 14 9 27t12 28l173 310q9 13 17.5 17t24.5 4h109v-606h-113v374l9 77l-187 -344q-13 -29 -45 -29h-19q-32 0 -44 29l-188 341l8 -74v-374h-112v606h108q17 0 24.5 -4t18.5 -17zM563 1467v-107h-184v-499h-129v499h-184v107h497z" /> +<glyph unicode="◼" horiz-adv-x="1038" d="M0 1039h1039v-1039h-1039v1039z" /> +<glyph horiz-adv-x="628" d="M161 1825q33 0 49 -7t37 -27l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" /> +<glyph horiz-adv-x="628" d="M209 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM645 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35 t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" /> +<glyph horiz-adv-x="628" d="M674 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 19 16.5t18 10.5t20.5 5.5t28.5 1.5h206z" /> +<glyph horiz-adv-x="628" d="M647 1583h-138q-12 0 -26.5 3.5t-23.5 9.5l-133 98q-8 4 -13 8q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138l243 215h180z" /> +<glyph horiz-adv-x="628" d="M121 1699q0 40 16 73.5t42 57.5t60.5 37.5t73.5 13.5q40 0 75.5 -13.5t62.5 -37.5t42.5 -57.5t15.5 -73.5q0 -39 -15.5 -72t-42.5 -56.5t-62.5 -36.5t-75.5 -13q-39 0 -73.5 13t-60.5 36.5t-42 56.5t-16 72zM212 1699q0 -44 27.5 -73.5t75.5 -29.5q46 0 74.5 29.5 t28.5 73.5q0 46 -28.5 74.5t-74.5 28.5q-48 0 -75.5 -28.5t-27.5 -74.5z" /> +<glyph horiz-adv-x="628" d="M437 1703q36 0 55 21t20 59h100q0 -44 -11 -81t-32.5 -64t-53.5 -42t-73 -15q-36 0 -68.5 13.5t-62.5 29t-57 29t-51 13.5q-35 0 -54 -22t-20 -59h-102q0 44 11.5 81.5t33.5 64t54.5 42t72.5 15.5q36 0 68.5 -13.5t62 -29t56 -29t51.5 -13.5z" /> +<hkern u1=""" u2="›" k="182" /> +<hkern u1=""" u2="‹" k="182" /> +<hkern u1=""" u2="•" k="182" /> +<hkern u1=""" u2="„" k="233" /> +<hkern u1=""" u2="‚" k="233" /> +<hkern u1=""" u2="—" k="182" /> +<hkern u1=""" u2="–" k="182" /> +<hkern u1=""" u2="Ÿ" k="-31" /> +<hkern u1=""" u2="œ" k="94" /> +<hkern u1=""" u2="Œ" k="47" /> +<hkern u1=""" u2="ø" k="94" /> +<hkern u1=""" u2="ö" k="94" /> +<hkern u1=""" u2="õ" k="94" /> +<hkern u1=""" u2="ô" k="94" /> +<hkern u1=""" u2="ó" k="94" /> +<hkern u1=""" u2="ò" k="94" /> +<hkern u1=""" u2="ð" k="94" /> +<hkern u1=""" u2="ë" k="94" /> +<hkern u1=""" u2="ê" k="94" /> +<hkern u1=""" u2="é" k="94" /> +<hkern u1=""" u2="è" k="94" /> +<hkern u1=""" u2="ç" k="94" /> +<hkern u1=""" u2="æ" k="66" /> +<hkern u1=""" u2="å" k="66" /> +<hkern u1=""" u2="ä" k="66" /> +<hkern u1=""" u2="ã" k="66" /> +<hkern u1=""" u2="â" k="66" /> +<hkern u1=""" u2="á" k="66" /> +<hkern u1=""" u2="à" k="66" /> +<hkern u1=""" u2="Ý" k="-31" /> +<hkern u1=""" u2="Ø" k="47" /> +<hkern u1=""" u2="Ö" k="47" /> +<hkern u1=""" u2="Õ" k="47" /> +<hkern u1=""" u2="Ô" k="47" /> +<hkern u1=""" u2="Ó" k="47" /> +<hkern u1=""" u2="Ò" k="47" /> +<hkern u1=""" u2="Ç" k="47" /> +<hkern u1=""" u2="Æ" k="186" /> +<hkern u1=""" u2="Å" k="186" /> +<hkern u1=""" u2="Ä" k="186" /> +<hkern u1=""" u2="Ã" k="186" /> +<hkern u1=""" u2="Â" k="186" /> +<hkern u1=""" u2="Á" k="186" /> +<hkern u1=""" u2="À" k="186" /> +<hkern u1=""" u2="»" k="182" /> +<hkern u1=""" u2="·" k="182" /> +<hkern u1=""" u2="­" k="182" /> +<hkern u1=""" u2="«" k="182" /> +<hkern u1=""" u2="q" k="94" /> +<hkern u1=""" u2="o" k="94" /> +<hkern u1=""" u2="e" k="94" /> +<hkern u1=""" u2="d" k="94" /> +<hkern u1=""" u2="c" k="94" /> +<hkern u1=""" u2="a" k="66" /> +<hkern u1=""" u2="\" k="-49" /> +<hkern u1=""" u2="Y" k="-31" /> +<hkern u1=""" u2="W" k="-49" /> +<hkern u1=""" u2="V" k="-49" /> +<hkern u1=""" u2="Q" k="47" /> +<hkern u1=""" u2="O" k="47" /> +<hkern u1=""" u2="G" k="47" /> +<hkern u1=""" u2="C" k="47" /> +<hkern u1=""" u2="A" k="186" /> +<hkern u1=""" u2="@" k="47" /> +<hkern u1=""" u2="/" k="186" /> +<hkern u1=""" u2="." k="233" /> +<hkern u1=""" u2="-" k="182" /> +<hkern u1=""" u2="," k="233" /> +<hkern u1=""" u2="&" k="186" /> +<hkern u1="'" u2="›" k="182" /> +<hkern u1="'" u2="‹" k="182" /> +<hkern u1="'" u2="•" k="182" /> +<hkern u1="'" u2="„" k="233" /> +<hkern u1="'" u2="‚" k="233" /> +<hkern u1="'" u2="—" k="182" /> +<hkern u1="'" u2="–" k="182" /> +<hkern u1="'" u2="Ÿ" k="-31" /> +<hkern u1="'" u2="œ" k="94" /> +<hkern u1="'" u2="Œ" k="47" /> +<hkern u1="'" u2="ø" k="94" /> +<hkern u1="'" u2="ö" k="94" /> +<hkern u1="'" u2="õ" k="94" /> +<hkern u1="'" u2="ô" k="94" /> +<hkern u1="'" u2="ó" k="94" /> +<hkern u1="'" u2="ò" k="94" /> +<hkern u1="'" u2="ð" k="94" /> +<hkern u1="'" u2="ë" k="94" /> +<hkern u1="'" u2="ê" k="94" /> +<hkern u1="'" u2="é" k="94" /> +<hkern u1="'" u2="è" k="94" /> +<hkern u1="'" u2="ç" k="94" /> +<hkern u1="'" u2="æ" k="66" /> +<hkern u1="'" u2="å" k="66" /> +<hkern u1="'" u2="ä" k="66" /> +<hkern u1="'" u2="ã" k="66" /> +<hkern u1="'" u2="â" k="66" /> +<hkern u1="'" u2="á" k="66" /> +<hkern u1="'" u2="à" k="66" /> +<hkern u1="'" u2="Ý" k="-31" /> +<hkern u1="'" u2="Ø" k="47" /> +<hkern u1="'" u2="Ö" k="47" /> +<hkern u1="'" u2="Õ" k="47" /> +<hkern u1="'" u2="Ô" k="47" /> +<hkern u1="'" u2="Ó" k="47" /> +<hkern u1="'" u2="Ò" k="47" /> +<hkern u1="'" u2="Ç" k="47" /> +<hkern u1="'" u2="Æ" k="186" /> +<hkern u1="'" u2="Å" k="186" /> +<hkern u1="'" u2="Ä" k="186" /> +<hkern u1="'" u2="Ã" k="186" /> +<hkern u1="'" u2="Â" k="186" /> +<hkern u1="'" u2="Á" k="186" /> +<hkern u1="'" u2="À" k="186" /> +<hkern u1="'" u2="»" k="182" /> +<hkern u1="'" u2="·" k="182" /> +<hkern u1="'" u2="­" k="182" /> +<hkern u1="'" u2="«" k="182" /> +<hkern u1="'" u2="q" k="94" /> +<hkern u1="'" u2="o" k="94" /> +<hkern u1="'" u2="e" k="94" /> +<hkern u1="'" u2="d" k="94" /> +<hkern u1="'" u2="c" k="94" /> +<hkern u1="'" u2="a" k="66" /> +<hkern u1="'" u2="\" k="-49" /> +<hkern u1="'" u2="Y" k="-31" /> +<hkern u1="'" u2="W" k="-49" /> +<hkern u1="'" u2="V" k="-49" /> +<hkern u1="'" u2="Q" k="47" /> +<hkern u1="'" u2="O" k="47" /> +<hkern u1="'" u2="G" k="47" /> +<hkern u1="'" u2="C" k="47" /> +<hkern u1="'" u2="A" k="186" /> +<hkern u1="'" u2="@" k="47" /> +<hkern u1="'" u2="/" k="186" /> +<hkern u1="'" u2="." k="233" /> +<hkern u1="'" u2="-" k="182" /> +<hkern u1="'" u2="," k="233" /> +<hkern u1="'" u2="&" k="186" /> +<hkern u1="(" u2="œ" k="33" /> +<hkern u1="(" u2="Œ" k="41" /> +<hkern u1="(" u2="ø" k="33" /> +<hkern u1="(" u2="ö" k="33" /> +<hkern u1="(" u2="õ" k="33" /> +<hkern u1="(" u2="ô" k="33" /> +<hkern u1="(" u2="ó" k="33" /> +<hkern u1="(" u2="ò" k="33" /> +<hkern u1="(" u2="ð" k="33" /> +<hkern u1="(" u2="ë" k="33" /> +<hkern u1="(" u2="ê" k="33" /> +<hkern u1="(" u2="é" k="33" /> +<hkern u1="(" u2="è" k="33" /> +<hkern u1="(" u2="ç" k="33" /> +<hkern u1="(" u2="Ø" k="41" /> +<hkern u1="(" u2="Ö" k="41" /> +<hkern u1="(" u2="Õ" k="41" /> +<hkern u1="(" u2="Ô" k="41" /> +<hkern u1="(" u2="Ó" k="41" /> +<hkern u1="(" u2="Ò" k="41" /> +<hkern u1="(" u2="Ç" k="41" /> +<hkern u1="(" u2="q" k="33" /> +<hkern u1="(" u2="o" k="33" /> +<hkern u1="(" u2="e" k="33" /> +<hkern u1="(" u2="d" k="33" /> +<hkern u1="(" u2="c" k="33" /> +<hkern u1="(" u2="Q" k="41" /> +<hkern u1="(" u2="O" k="41" /> +<hkern u1="(" u2="G" k="41" /> +<hkern u1="(" u2="C" k="41" /> +<hkern u1="(" u2="@" k="41" /> +<hkern u1="*" u2="›" k="182" /> +<hkern u1="*" u2="‹" k="182" /> +<hkern u1="*" u2="•" k="182" /> +<hkern u1="*" u2="„" k="233" /> +<hkern u1="*" u2="‚" k="233" /> +<hkern u1="*" u2="—" k="182" /> +<hkern u1="*" u2="–" k="182" /> +<hkern u1="*" u2="Ÿ" k="-31" /> +<hkern u1="*" u2="œ" k="94" /> +<hkern u1="*" u2="Œ" k="47" /> +<hkern u1="*" u2="ø" k="94" /> +<hkern u1="*" u2="ö" k="94" /> +<hkern u1="*" u2="õ" k="94" /> +<hkern u1="*" u2="ô" k="94" /> +<hkern u1="*" u2="ó" k="94" /> +<hkern u1="*" u2="ò" k="94" /> +<hkern u1="*" u2="ð" k="94" /> +<hkern u1="*" u2="ë" k="94" /> +<hkern u1="*" u2="ê" k="94" /> +<hkern u1="*" u2="é" k="94" /> +<hkern u1="*" u2="è" k="94" /> +<hkern u1="*" u2="ç" k="94" /> +<hkern u1="*" u2="æ" k="66" /> +<hkern u1="*" u2="å" k="66" /> +<hkern u1="*" u2="ä" k="66" /> +<hkern u1="*" u2="ã" k="66" /> +<hkern u1="*" u2="â" k="66" /> +<hkern u1="*" u2="á" k="66" /> +<hkern u1="*" u2="à" k="66" /> +<hkern u1="*" u2="Ý" k="-31" /> +<hkern u1="*" u2="Ø" k="47" /> +<hkern u1="*" u2="Ö" k="47" /> +<hkern u1="*" u2="Õ" k="47" /> +<hkern u1="*" u2="Ô" k="47" /> +<hkern u1="*" u2="Ó" k="47" /> +<hkern u1="*" u2="Ò" k="47" /> +<hkern u1="*" u2="Ç" k="47" /> +<hkern u1="*" u2="Æ" k="186" /> +<hkern u1="*" u2="Å" k="186" /> +<hkern u1="*" u2="Ä" k="186" /> +<hkern u1="*" u2="Ã" k="186" /> +<hkern u1="*" u2="Â" k="186" /> +<hkern u1="*" u2="Á" k="186" /> +<hkern u1="*" u2="À" k="186" /> +<hkern u1="*" u2="»" k="182" /> +<hkern u1="*" u2="·" k="182" /> +<hkern u1="*" u2="­" k="182" /> +<hkern u1="*" u2="«" k="182" /> +<hkern u1="*" u2="q" k="94" /> +<hkern u1="*" u2="o" k="94" /> +<hkern u1="*" u2="e" k="94" /> +<hkern u1="*" u2="d" k="94" /> +<hkern u1="*" u2="c" k="94" /> +<hkern u1="*" u2="a" k="66" /> +<hkern u1="*" u2="\" k="-49" /> +<hkern u1="*" u2="Y" k="-31" /> +<hkern u1="*" u2="W" k="-49" /> +<hkern u1="*" u2="V" k="-49" /> +<hkern u1="*" u2="Q" k="47" /> +<hkern u1="*" u2="O" k="47" /> +<hkern u1="*" u2="G" k="47" /> +<hkern u1="*" u2="C" k="47" /> +<hkern u1="*" u2="A" k="186" /> +<hkern u1="*" u2="@" k="47" /> +<hkern u1="*" u2="/" k="186" /> +<hkern u1="*" u2="." k="233" /> +<hkern u1="*" u2="-" k="182" /> +<hkern u1="*" u2="," k="233" /> +<hkern u1="*" u2="&" k="186" /> +<hkern u1="," u2="™" k="233" /> +<hkern u1="," u2="›" k="139" /> +<hkern u1="," u2="‹" k="139" /> +<hkern u1="," u2="•" k="139" /> +<hkern u1="," u2="”" k="233" /> +<hkern u1="," u2="“" k="233" /> +<hkern u1="," u2="’" k="233" /> +<hkern u1="," u2="‘" k="233" /> +<hkern u1="," u2="—" k="139" /> +<hkern u1="," u2="–" k="139" /> +<hkern u1="," u2="Ÿ" k="156" /> +<hkern u1="," u2="Œ" k="57" /> +<hkern u1="," u2="Ý" k="156" /> +<hkern u1="," u2="Ø" k="57" /> +<hkern u1="," u2="Ö" k="57" /> +<hkern u1="," u2="Õ" k="57" /> +<hkern u1="," u2="Ô" k="57" /> +<hkern u1="," u2="Ó" k="57" /> +<hkern u1="," u2="Ò" k="57" /> +<hkern u1="," u2="Ç" k="57" /> +<hkern u1="," u2="»" k="139" /> +<hkern u1="," u2="º" k="233" /> +<hkern u1="," u2="·" k="139" /> +<hkern u1="," u2="°" k="233" /> +<hkern u1="," u2="­" k="139" /> +<hkern u1="," u2="«" k="139" /> +<hkern u1="," u2="ª" k="233" /> +<hkern u1="," u2="y" k="135" /> +<hkern u1="," u2="w" k="63" /> +<hkern u1="," u2="v" k="135" /> +<hkern u1="," u2="\" k="184" /> +<hkern u1="," u2="Y" k="156" /> +<hkern u1="," u2="W" k="125" /> +<hkern u1="," u2="V" k="184" /> +<hkern u1="," u2="T" k="184" /> +<hkern u1="," u2="Q" k="57" /> +<hkern u1="," u2="O" k="57" /> +<hkern u1="," u2="G" k="57" /> +<hkern u1="," u2="C" k="57" /> +<hkern u1="," u2="@" k="57" /> +<hkern u1="," u2="-" k="139" /> +<hkern u1="," u2="*" k="233" /> +<hkern u1="," u2="'" k="233" /> +<hkern u1="," u2=""" k="233" /> +<hkern u1="-" u2="™" k="182" /> +<hkern u1="-" u2="„" k="139" /> +<hkern u1="-" u2="”" k="182" /> +<hkern u1="-" u2="“" k="182" /> +<hkern u1="-" u2="‚" k="139" /> +<hkern u1="-" u2="’" k="182" /> +<hkern u1="-" u2="‘" k="182" /> +<hkern u1="-" u2="Ÿ" k="164" /> +<hkern u1="-" u2="Ý" k="164" /> +<hkern u1="-" u2="Æ" k="53" /> +<hkern u1="-" u2="Å" k="53" /> +<hkern u1="-" u2="Ä" k="53" /> +<hkern u1="-" u2="Ã" k="53" /> +<hkern u1="-" u2="Â" k="53" /> +<hkern u1="-" u2="Á" k="53" /> +<hkern u1="-" u2="À" k="53" /> +<hkern u1="-" u2="º" k="182" /> +<hkern u1="-" u2="°" k="182" /> +<hkern u1="-" u2="ª" k="182" /> +<hkern u1="-" u2="\" k="115" /> +<hkern u1="-" u2="Z" k="47" /> +<hkern u1="-" u2="Y" k="164" /> +<hkern u1="-" u2="X" k="63" /> +<hkern u1="-" u2="W" k="33" /> +<hkern u1="-" u2="V" k="115" /> +<hkern u1="-" u2="T" k="184" /> +<hkern u1="-" u2="A" k="53" /> +<hkern u1="-" u2="/" k="53" /> +<hkern u1="-" u2="." k="139" /> +<hkern u1="-" u2="," k="139" /> +<hkern u1="-" u2="*" k="182" /> +<hkern u1="-" u2="'" k="182" /> +<hkern u1="-" u2="&" k="53" /> +<hkern u1="-" u2=""" k="182" /> +<hkern u1="." u2="™" k="233" /> +<hkern u1="." u2="›" k="139" /> +<hkern u1="." u2="‹" k="139" /> +<hkern u1="." u2="•" k="139" /> +<hkern u1="." u2="”" k="233" /> +<hkern u1="." u2="“" k="233" /> +<hkern u1="." u2="’" k="233" /> +<hkern u1="." u2="‘" k="233" /> +<hkern u1="." u2="—" k="139" /> +<hkern u1="." u2="–" k="139" /> +<hkern u1="." u2="Ÿ" k="156" /> +<hkern u1="." u2="Œ" k="57" /> +<hkern u1="." u2="Ý" k="156" /> +<hkern u1="." u2="Ø" k="57" /> +<hkern u1="." u2="Ö" k="57" /> +<hkern u1="." u2="Õ" k="57" /> +<hkern u1="." u2="Ô" k="57" /> +<hkern u1="." u2="Ó" k="57" /> +<hkern u1="." u2="Ò" k="57" /> +<hkern u1="." u2="Ç" k="57" /> +<hkern u1="." u2="»" k="139" /> +<hkern u1="." u2="º" k="233" /> +<hkern u1="." u2="·" k="139" /> +<hkern u1="." u2="°" k="233" /> +<hkern u1="." u2="­" k="139" /> +<hkern u1="." u2="«" k="139" /> +<hkern u1="." u2="ª" k="233" /> +<hkern u1="." u2="y" k="135" /> +<hkern u1="." u2="w" k="63" /> +<hkern u1="." u2="v" k="135" /> +<hkern u1="." u2="\" k="184" /> +<hkern u1="." u2="Y" k="156" /> +<hkern u1="." u2="W" k="125" /> +<hkern u1="." u2="V" k="184" /> +<hkern u1="." u2="T" k="184" /> +<hkern u1="." u2="Q" k="57" /> +<hkern u1="." u2="O" k="57" /> +<hkern u1="." u2="G" k="57" /> +<hkern u1="." u2="C" k="57" /> +<hkern u1="." u2="@" k="57" /> +<hkern u1="." u2="-" k="139" /> +<hkern u1="." u2="*" k="233" /> +<hkern u1="." u2="'" k="233" /> +<hkern u1="." u2=""" k="233" /> +<hkern u1="/" u2="™" k="-49" /> +<hkern u1="/" u2="›" k="115" /> +<hkern u1="/" u2="‹" k="115" /> +<hkern u1="/" u2="•" k="115" /> +<hkern u1="/" u2="„" k="197" /> +<hkern u1="/" u2="”" k="-49" /> +<hkern u1="/" u2="“" k="-49" /> +<hkern u1="/" u2="‚" k="197" /> +<hkern u1="/" u2="’" k="-49" /> +<hkern u1="/" u2="‘" k="-49" /> +<hkern u1="/" u2="—" k="115" /> +<hkern u1="/" u2="–" k="115" /> +<hkern u1="/" u2="œ" k="119" /> +<hkern u1="/" u2="Œ" k="53" /> +<hkern u1="/" u2="ü" k="90" /> +<hkern u1="/" u2="û" k="90" /> +<hkern u1="/" u2="ú" k="90" /> +<hkern u1="/" u2="ù" k="90" /> +<hkern u1="/" u2="ø" k="119" /> +<hkern u1="/" u2="ö" k="119" /> +<hkern u1="/" u2="õ" k="119" /> +<hkern u1="/" u2="ô" k="119" /> +<hkern u1="/" u2="ó" k="119" /> +<hkern u1="/" u2="ò" k="119" /> +<hkern u1="/" u2="ñ" k="90" /> +<hkern u1="/" u2="ð" k="119" /> +<hkern u1="/" u2="ë" k="119" /> +<hkern u1="/" u2="ê" k="119" /> +<hkern u1="/" u2="é" k="119" /> +<hkern u1="/" u2="è" k="119" /> +<hkern u1="/" u2="ç" k="119" /> +<hkern u1="/" u2="æ" k="119" /> +<hkern u1="/" u2="å" k="119" /> +<hkern u1="/" u2="ä" k="119" /> +<hkern u1="/" u2="ã" k="119" /> +<hkern u1="/" u2="â" k="119" /> +<hkern u1="/" u2="á" k="119" /> +<hkern u1="/" u2="à" k="119" /> +<hkern u1="/" u2="Ø" k="53" /> +<hkern u1="/" u2="Ö" k="53" /> +<hkern u1="/" u2="Õ" k="53" /> +<hkern u1="/" u2="Ô" k="53" /> +<hkern u1="/" u2="Ó" k="53" /> +<hkern u1="/" u2="Ò" k="53" /> +<hkern u1="/" u2="Ç" k="53" /> +<hkern u1="/" u2="Æ" k="139" /> +<hkern u1="/" u2="Å" k="139" /> +<hkern u1="/" u2="Ä" k="139" /> +<hkern u1="/" u2="Ã" k="139" /> +<hkern u1="/" u2="Â" k="139" /> +<hkern u1="/" u2="Á" k="139" /> +<hkern u1="/" u2="À" k="139" /> +<hkern u1="/" u2="»" k="115" /> +<hkern u1="/" u2="º" k="-49" /> +<hkern u1="/" u2="¹" k="-59" /> +<hkern u1="/" u2="·" k="115" /> +<hkern u1="/" u2="µ" k="90" /> +<hkern u1="/" u2="³" k="-59" /> +<hkern u1="/" u2="²" k="-59" /> +<hkern u1="/" u2="°" k="-49" /> +<hkern u1="/" u2="­" k="115" /> +<hkern u1="/" u2="«" k="115" /> +<hkern u1="/" u2="ª" k="-49" /> +<hkern u1="/" u2="z" k="84" /> +<hkern u1="/" u2="y" k="49" /> +<hkern u1="/" u2="x" k="53" /> +<hkern u1="/" u2="v" k="49" /> +<hkern u1="/" u2="u" k="90" /> +<hkern u1="/" u2="t" k="43" /> +<hkern u1="/" u2="s" k="109" /> +<hkern u1="/" u2="r" k="90" /> +<hkern u1="/" u2="q" k="119" /> +<hkern u1="/" u2="p" k="90" /> +<hkern u1="/" u2="o" k="119" /> +<hkern u1="/" u2="n" k="90" /> +<hkern u1="/" u2="m" k="90" /> +<hkern u1="/" u2="g" k="139" /> +<hkern u1="/" u2="f" k="31" /> +<hkern u1="/" u2="e" k="119" /> +<hkern u1="/" u2="d" k="119" /> +<hkern u1="/" u2="c" k="119" /> +<hkern u1="/" u2="a" k="119" /> +<hkern u1="/" u2="Q" k="53" /> +<hkern u1="/" u2="O" k="53" /> +<hkern u1="/" u2="J" k="156" /> +<hkern u1="/" u2="G" k="53" /> +<hkern u1="/" u2="C" k="53" /> +<hkern u1="/" u2="A" k="139" /> +<hkern u1="/" u2="@" k="53" /> +<hkern u1="/" u2="?" k="-49" /> +<hkern u1="/" u2=";" k="90" /> +<hkern u1="/" u2=":" k="90" /> +<hkern u1="/" u2="/" k="139" /> +<hkern u1="/" u2="." k="197" /> +<hkern u1="/" u2="-" k="115" /> +<hkern u1="/" u2="," k="197" /> +<hkern u1="/" u2="*" k="-49" /> +<hkern u1="/" u2="'" k="-49" /> +<hkern u1="/" u2="&" k="139" /> +<hkern u1="/" u2=""" k="-49" /> +<hkern u1="@" u2="™" k="47" /> +<hkern u1="@" u2="„" k="57" /> +<hkern u1="@" u2="”" k="47" /> +<hkern u1="@" u2="“" k="47" /> +<hkern u1="@" u2="‚" k="57" /> +<hkern u1="@" u2="’" k="47" /> +<hkern u1="@" u2="‘" k="47" /> +<hkern u1="@" u2="Ÿ" k="82" /> +<hkern u1="@" u2="Ý" k="82" /> +<hkern u1="@" u2="Æ" k="43" /> +<hkern u1="@" u2="Å" k="43" /> +<hkern u1="@" u2="Ä" k="43" /> +<hkern u1="@" u2="Ã" k="43" /> +<hkern u1="@" u2="Â" k="43" /> +<hkern u1="@" u2="Á" k="43" /> +<hkern u1="@" u2="À" k="43" /> +<hkern u1="@" u2="º" k="47" /> +<hkern u1="@" u2="°" k="47" /> +<hkern u1="@" u2="ª" k="47" /> +<hkern u1="@" u2="}" k="41" /> +<hkern u1="@" u2="]" k="41" /> +<hkern u1="@" u2="\" k="53" /> +<hkern u1="@" u2="Z" k="72" /> +<hkern u1="@" u2="Y" k="82" /> +<hkern u1="@" u2="X" k="31" /> +<hkern u1="@" u2="V" k="53" /> +<hkern u1="@" u2="T" k="100" /> +<hkern u1="@" u2="A" k="43" /> +<hkern u1="@" u2="/" k="43" /> +<hkern u1="@" u2="." k="57" /> +<hkern u1="@" u2="," k="57" /> +<hkern u1="@" u2="*" k="47" /> +<hkern u1="@" u2=")" k="41" /> +<hkern u1="@" u2="'" k="47" /> +<hkern u1="@" u2="&" k="43" /> +<hkern u1="@" u2=""" k="47" /> +<hkern u1="A" u2="™" k="186" /> +<hkern u1="A" u2="›" k="53" /> +<hkern u1="A" u2="‹" k="53" /> +<hkern u1="A" u2="•" k="53" /> +<hkern u1="A" u2="”" k="186" /> +<hkern u1="A" u2="“" k="186" /> +<hkern u1="A" u2="’" k="186" /> +<hkern u1="A" u2="‘" k="186" /> +<hkern u1="A" u2="—" k="53" /> +<hkern u1="A" u2="–" k="53" /> +<hkern u1="A" u2="Ÿ" k="168" /> +<hkern u1="A" u2="Œ" k="43" /> +<hkern u1="A" u2="Ý" k="168" /> +<hkern u1="A" u2="Ü" k="57" /> +<hkern u1="A" u2="Û" k="57" /> +<hkern u1="A" u2="Ú" k="57" /> +<hkern u1="A" u2="Ù" k="57" /> +<hkern u1="A" u2="Ø" k="43" /> +<hkern u1="A" u2="Ö" k="43" /> +<hkern u1="A" u2="Õ" k="43" /> +<hkern u1="A" u2="Ô" k="43" /> +<hkern u1="A" u2="Ó" k="43" /> +<hkern u1="A" u2="Ò" k="43" /> +<hkern u1="A" u2="Ç" k="43" /> +<hkern u1="A" u2="»" k="53" /> +<hkern u1="A" u2="º" k="186" /> +<hkern u1="A" u2="¹" k="188" /> +<hkern u1="A" u2="·" k="53" /> +<hkern u1="A" u2="³" k="188" /> +<hkern u1="A" u2="²" k="188" /> +<hkern u1="A" u2="°" k="186" /> +<hkern u1="A" u2="­" k="53" /> +<hkern u1="A" u2="«" k="53" /> +<hkern u1="A" u2="ª" k="186" /> +<hkern u1="A" u2="y" k="84" /> +<hkern u1="A" u2="v" k="84" /> +<hkern u1="A" u2="\" k="139" /> +<hkern u1="A" u2="Y" k="168" /> +<hkern u1="A" u2="W" k="86" /> +<hkern u1="A" u2="V" k="139" /> +<hkern u1="A" u2="U" k="57" /> +<hkern u1="A" u2="T" k="135" /> +<hkern u1="A" u2="Q" k="43" /> +<hkern u1="A" u2="O" k="43" /> +<hkern u1="A" u2="J" k="-51" /> +<hkern u1="A" u2="G" k="43" /> +<hkern u1="A" u2="C" k="43" /> +<hkern u1="A" u2="@" k="43" /> +<hkern u1="A" u2="?" k="57" /> +<hkern u1="A" u2="-" k="53" /> +<hkern u1="A" u2="*" k="186" /> +<hkern u1="A" u2="'" k="186" /> +<hkern u1="A" u2=""" k="186" /> +<hkern u1="C" u2="›" k="154" /> +<hkern u1="C" u2="‹" k="154" /> +<hkern u1="C" u2="•" k="154" /> +<hkern u1="C" u2="—" k="154" /> +<hkern u1="C" u2="–" k="154" /> +<hkern u1="C" u2="»" k="154" /> +<hkern u1="C" u2="·" k="154" /> +<hkern u1="C" u2="­" k="154" /> +<hkern u1="C" u2="«" k="154" /> +<hkern u1="C" u2="-" k="154" /> +<hkern u1="D" u2="™" k="47" /> +<hkern u1="D" u2="„" k="57" /> +<hkern u1="D" u2="”" k="47" /> +<hkern u1="D" u2="“" k="47" /> +<hkern u1="D" u2="‚" k="57" /> +<hkern u1="D" u2="’" k="47" /> +<hkern u1="D" u2="‘" k="47" /> +<hkern u1="D" u2="Ÿ" k="82" /> +<hkern u1="D" u2="Ý" k="82" /> +<hkern u1="D" u2="Æ" k="43" /> +<hkern u1="D" u2="Å" k="43" /> +<hkern u1="D" u2="Ä" k="43" /> +<hkern u1="D" u2="Ã" k="43" /> +<hkern u1="D" u2="Â" k="43" /> +<hkern u1="D" u2="Á" k="43" /> +<hkern u1="D" u2="À" k="43" /> +<hkern u1="D" u2="º" k="47" /> +<hkern u1="D" u2="°" k="47" /> +<hkern u1="D" u2="ª" k="47" /> +<hkern u1="D" u2="}" k="41" /> +<hkern u1="D" u2="]" k="41" /> +<hkern u1="D" u2="\" k="53" /> +<hkern u1="D" u2="Z" k="72" /> +<hkern u1="D" u2="Y" k="82" /> +<hkern u1="D" u2="X" k="31" /> +<hkern u1="D" u2="V" k="53" /> +<hkern u1="D" u2="T" k="100" /> +<hkern u1="D" u2="A" k="43" /> +<hkern u1="D" u2="/" k="43" /> +<hkern u1="D" u2="." k="57" /> +<hkern u1="D" u2="," k="57" /> +<hkern u1="D" u2="*" k="47" /> +<hkern u1="D" u2=")" k="41" /> +<hkern u1="D" u2="'" k="47" /> +<hkern u1="D" u2="&" k="43" /> +<hkern u1="D" u2=""" k="47" /> +<hkern u1="F" u2="„" k="184" /> +<hkern u1="F" u2="‚" k="184" /> +<hkern u1="F" u2="œ" k="72" /> +<hkern u1="F" u2="ü" k="61" /> +<hkern u1="F" u2="û" k="61" /> +<hkern u1="F" u2="ú" k="61" /> +<hkern u1="F" u2="ù" k="61" /> +<hkern u1="F" u2="ø" k="72" /> +<hkern u1="F" u2="ö" k="72" /> +<hkern u1="F" u2="õ" k="72" /> +<hkern u1="F" u2="ô" k="72" /> +<hkern u1="F" u2="ó" k="72" /> +<hkern u1="F" u2="ò" k="72" /> +<hkern u1="F" u2="ñ" k="61" /> +<hkern u1="F" u2="ð" k="72" /> +<hkern u1="F" u2="ë" k="72" /> +<hkern u1="F" u2="ê" k="72" /> +<hkern u1="F" u2="é" k="72" /> +<hkern u1="F" u2="è" k="72" /> +<hkern u1="F" u2="ç" k="72" /> +<hkern u1="F" u2="Æ" k="135" /> +<hkern u1="F" u2="Å" k="135" /> +<hkern u1="F" u2="Ä" k="135" /> +<hkern u1="F" u2="Ã" k="135" /> +<hkern u1="F" u2="Â" k="135" /> +<hkern u1="F" u2="Á" k="135" /> +<hkern u1="F" u2="À" k="135" /> +<hkern u1="F" u2="µ" k="61" /> +<hkern u1="F" u2="u" k="61" /> +<hkern u1="F" u2="r" k="61" /> +<hkern u1="F" u2="q" k="72" /> +<hkern u1="F" u2="p" k="61" /> +<hkern u1="F" u2="o" k="72" /> +<hkern u1="F" u2="n" k="61" /> +<hkern u1="F" u2="m" k="61" /> +<hkern u1="F" u2="e" k="72" /> +<hkern u1="F" u2="d" k="72" /> +<hkern u1="F" u2="c" k="72" /> +<hkern u1="F" u2="J" k="203" /> +<hkern u1="F" u2="A" k="135" /> +<hkern u1="F" u2="?" k="-31" /> +<hkern u1="F" u2=";" k="61" /> +<hkern u1="F" u2=":" k="61" /> +<hkern u1="F" u2="/" k="135" /> +<hkern u1="F" u2="." k="184" /> +<hkern u1="F" u2="," k="184" /> +<hkern u1="F" u2="&" k="135" /> +<hkern u1="J" u2="„" k="51" /> +<hkern u1="J" u2="‚" k="51" /> +<hkern u1="J" u2="Æ" k="57" /> +<hkern u1="J" u2="Å" k="57" /> +<hkern u1="J" u2="Ä" k="57" /> +<hkern u1="J" u2="Ã" k="57" /> +<hkern u1="J" u2="Â" k="57" /> +<hkern u1="J" u2="Á" k="57" /> +<hkern u1="J" u2="À" k="57" /> +<hkern u1="J" u2="A" k="57" /> +<hkern u1="J" u2="/" k="57" /> +<hkern u1="J" u2="." k="51" /> +<hkern u1="J" u2="," k="51" /> +<hkern u1="J" u2="&" k="57" /> +<hkern u1="K" u2="›" k="63" /> +<hkern u1="K" u2="‹" k="63" /> +<hkern u1="K" u2="•" k="63" /> +<hkern u1="K" u2="—" k="63" /> +<hkern u1="K" u2="–" k="63" /> +<hkern u1="K" u2="œ" k="37" /> +<hkern u1="K" u2="Œ" k="31" /> +<hkern u1="K" u2="ø" k="37" /> +<hkern u1="K" u2="ö" k="37" /> +<hkern u1="K" u2="õ" k="37" /> +<hkern u1="K" u2="ô" k="37" /> +<hkern u1="K" u2="ó" k="37" /> +<hkern u1="K" u2="ò" k="37" /> +<hkern u1="K" u2="ð" k="37" /> +<hkern u1="K" u2="ë" k="37" /> +<hkern u1="K" u2="ê" k="37" /> +<hkern u1="K" u2="é" k="37" /> +<hkern u1="K" u2="è" k="37" /> +<hkern u1="K" u2="ç" k="37" /> +<hkern u1="K" u2="Ø" k="31" /> +<hkern u1="K" u2="Ö" k="31" /> +<hkern u1="K" u2="Õ" k="31" /> +<hkern u1="K" u2="Ô" k="31" /> +<hkern u1="K" u2="Ó" k="31" /> +<hkern u1="K" u2="Ò" k="31" /> +<hkern u1="K" u2="Ç" k="31" /> +<hkern u1="K" u2="»" k="63" /> +<hkern u1="K" u2="·" k="63" /> +<hkern u1="K" u2="­" k="63" /> +<hkern u1="K" u2="«" k="63" /> +<hkern u1="K" u2="y" k="68" /> +<hkern u1="K" u2="w" k="57" /> +<hkern u1="K" u2="v" k="68" /> +<hkern u1="K" u2="t" k="84" /> +<hkern u1="K" u2="q" k="37" /> +<hkern u1="K" u2="o" k="37" /> +<hkern u1="K" u2="f" k="53" /> +<hkern u1="K" u2="e" k="37" /> +<hkern u1="K" u2="d" k="37" /> +<hkern u1="K" u2="c" k="37" /> +<hkern u1="K" u2="Q" k="31" /> +<hkern u1="K" u2="O" k="31" /> +<hkern u1="K" u2="G" k="31" /> +<hkern u1="K" u2="C" k="31" /> +<hkern u1="K" u2="@" k="31" /> +<hkern u1="K" u2="-" k="63" /> +<hkern u1="L" u2="™" k="297" /> +<hkern u1="L" u2="›" k="203" /> +<hkern u1="L" u2="‹" k="203" /> +<hkern u1="L" u2="•" k="203" /> +<hkern u1="L" u2="„" k="-55" /> +<hkern u1="L" u2="”" k="297" /> +<hkern u1="L" u2="“" k="297" /> +<hkern u1="L" u2="‚" k="-55" /> +<hkern u1="L" u2="’" k="297" /> +<hkern u1="L" u2="‘" k="297" /> +<hkern u1="L" u2="—" k="203" /> +<hkern u1="L" u2="–" k="203" /> +<hkern u1="L" u2="Ÿ" k="217" /> +<hkern u1="L" u2="œ" k="37" /> +<hkern u1="L" u2="Œ" k="82" /> +<hkern u1="L" u2="ø" k="37" /> +<hkern u1="L" u2="ö" k="37" /> +<hkern u1="L" u2="õ" k="37" /> +<hkern u1="L" u2="ô" k="37" /> +<hkern u1="L" u2="ó" k="37" /> +<hkern u1="L" u2="ò" k="37" /> +<hkern u1="L" u2="ð" k="37" /> +<hkern u1="L" u2="ë" k="37" /> +<hkern u1="L" u2="ê" k="37" /> +<hkern u1="L" u2="é" k="37" /> +<hkern u1="L" u2="è" k="37" /> +<hkern u1="L" u2="ç" k="37" /> +<hkern u1="L" u2="Ý" k="217" /> +<hkern u1="L" u2="Ø" k="82" /> +<hkern u1="L" u2="Ö" k="82" /> +<hkern u1="L" u2="Õ" k="82" /> +<hkern u1="L" u2="Ô" k="82" /> +<hkern u1="L" u2="Ó" k="82" /> +<hkern u1="L" u2="Ò" k="82" /> +<hkern u1="L" u2="Ç" k="82" /> +<hkern u1="L" u2="»" k="203" /> +<hkern u1="L" u2="º" k="297" /> +<hkern u1="L" u2="¹" k="207" /> +<hkern u1="L" u2="·" k="203" /> +<hkern u1="L" u2="³" k="207" /> +<hkern u1="L" u2="²" k="207" /> +<hkern u1="L" u2="°" k="297" /> +<hkern u1="L" u2="­" k="203" /> +<hkern u1="L" u2="«" k="203" /> +<hkern u1="L" u2="ª" k="297" /> +<hkern u1="L" u2="y" k="111" /> +<hkern u1="L" u2="w" k="82" /> +<hkern u1="L" u2="v" k="111" /> +<hkern u1="L" u2="q" k="37" /> +<hkern u1="L" u2="o" k="37" /> +<hkern u1="L" u2="e" k="37" /> +<hkern u1="L" u2="d" k="37" /> +<hkern u1="L" u2="c" k="37" /> +<hkern u1="L" u2="\" k="186" /> +<hkern u1="L" u2="Y" k="217" /> +<hkern u1="L" u2="W" k="156" /> +<hkern u1="L" u2="V" k="186" /> +<hkern u1="L" u2="T" k="176" /> +<hkern u1="L" u2="Q" k="82" /> +<hkern u1="L" u2="O" k="82" /> +<hkern u1="L" u2="G" k="82" /> +<hkern u1="L" u2="C" k="82" /> +<hkern u1="L" u2="@" k="82" /> +<hkern u1="L" u2="?" k="51" /> +<hkern u1="L" u2="." k="-55" /> +<hkern u1="L" u2="-" k="203" /> +<hkern u1="L" u2="," k="-55" /> +<hkern u1="L" u2="*" k="297" /> +<hkern u1="L" u2="'" k="297" /> +<hkern u1="L" u2=""" k="297" /> +<hkern u1="O" u2="™" k="47" /> +<hkern u1="O" u2="„" k="57" /> +<hkern u1="O" u2="”" k="47" /> +<hkern u1="O" u2="“" k="47" /> +<hkern u1="O" u2="‚" k="57" /> +<hkern u1="O" u2="’" k="47" /> +<hkern u1="O" u2="‘" k="47" /> +<hkern u1="O" u2="Ÿ" k="82" /> +<hkern u1="O" u2="Ý" k="82" /> +<hkern u1="O" u2="Æ" k="43" /> +<hkern u1="O" u2="Å" k="43" /> +<hkern u1="O" u2="Ä" k="43" /> +<hkern u1="O" u2="Ã" k="43" /> +<hkern u1="O" u2="Â" k="43" /> +<hkern u1="O" u2="Á" k="43" /> +<hkern u1="O" u2="À" k="43" /> +<hkern u1="O" u2="º" k="47" /> +<hkern u1="O" u2="°" k="47" /> +<hkern u1="O" u2="ª" k="47" /> +<hkern u1="O" u2="}" k="41" /> +<hkern u1="O" u2="]" k="41" /> +<hkern u1="O" u2="\" k="53" /> +<hkern u1="O" u2="Z" k="72" /> +<hkern u1="O" u2="Y" k="82" /> +<hkern u1="O" u2="X" k="31" /> +<hkern u1="O" u2="V" k="53" /> +<hkern u1="O" u2="T" k="100" /> +<hkern u1="O" u2="A" k="43" /> +<hkern u1="O" u2="/" k="43" /> +<hkern u1="O" u2="." k="57" /> +<hkern u1="O" u2="," k="57" /> +<hkern u1="O" u2="*" k="47" /> +<hkern u1="O" u2=")" k="41" /> +<hkern u1="O" u2="'" k="47" /> +<hkern u1="O" u2="&" k="43" /> +<hkern u1="O" u2=""" k="47" /> +<hkern u1="P" u2="„" k="254" /> +<hkern u1="P" u2="‚" k="254" /> +<hkern u1="P" u2="œ" k="31" /> +<hkern u1="P" u2="ø" k="31" /> +<hkern u1="P" u2="ö" k="31" /> +<hkern u1="P" u2="õ" k="31" /> +<hkern u1="P" u2="ô" k="31" /> +<hkern u1="P" u2="ó" k="31" /> +<hkern u1="P" u2="ò" k="31" /> +<hkern u1="P" u2="ð" k="31" /> +<hkern u1="P" u2="ë" k="31" /> +<hkern u1="P" u2="ê" k="31" /> +<hkern u1="P" u2="é" k="31" /> +<hkern u1="P" u2="è" k="31" /> +<hkern u1="P" u2="ç" k="31" /> +<hkern u1="P" u2="æ" k="51" /> +<hkern u1="P" u2="å" k="51" /> +<hkern u1="P" u2="ä" k="51" /> +<hkern u1="P" u2="ã" k="51" /> +<hkern u1="P" u2="â" k="51" /> +<hkern u1="P" u2="á" k="51" /> +<hkern u1="P" u2="à" k="51" /> +<hkern u1="P" u2="Æ" k="141" /> +<hkern u1="P" u2="Å" k="141" /> +<hkern u1="P" u2="Ä" k="141" /> +<hkern u1="P" u2="Ã" k="141" /> +<hkern u1="P" u2="Â" k="141" /> +<hkern u1="P" u2="Á" k="141" /> +<hkern u1="P" u2="À" k="141" /> +<hkern u1="P" u2="q" k="31" /> +<hkern u1="P" u2="o" k="31" /> +<hkern u1="P" u2="e" k="31" /> +<hkern u1="P" u2="d" k="31" /> +<hkern u1="P" u2="c" k="31" /> +<hkern u1="P" u2="a" k="51" /> +<hkern u1="P" u2="J" k="186" /> +<hkern u1="P" u2="A" k="141" /> +<hkern u1="P" u2="/" k="141" /> +<hkern u1="P" u2="." k="254" /> +<hkern u1="P" u2="," k="254" /> +<hkern u1="P" u2="&" k="141" /> +<hkern u1="Q" u2="™" k="47" /> +<hkern u1="Q" u2="„" k="57" /> +<hkern u1="Q" u2="”" k="47" /> +<hkern u1="Q" u2="“" k="47" /> +<hkern u1="Q" u2="‚" k="57" /> +<hkern u1="Q" u2="’" k="47" /> +<hkern u1="Q" u2="‘" k="47" /> +<hkern u1="Q" u2="Ÿ" k="82" /> +<hkern u1="Q" u2="Ý" k="82" /> +<hkern u1="Q" u2="Æ" k="43" /> +<hkern u1="Q" u2="Å" k="43" /> +<hkern u1="Q" u2="Ä" k="43" /> +<hkern u1="Q" u2="Ã" k="43" /> +<hkern u1="Q" u2="Â" k="43" /> +<hkern u1="Q" u2="Á" k="43" /> +<hkern u1="Q" u2="À" k="43" /> +<hkern u1="Q" u2="º" k="47" /> +<hkern u1="Q" u2="°" k="47" /> +<hkern u1="Q" u2="ª" k="47" /> +<hkern u1="Q" u2="}" k="41" /> +<hkern u1="Q" u2="]" k="41" /> +<hkern u1="Q" u2="\" k="53" /> +<hkern u1="Q" u2="Z" k="72" /> +<hkern u1="Q" u2="Y" k="82" /> +<hkern u1="Q" u2="X" k="31" /> +<hkern u1="Q" u2="V" k="53" /> +<hkern u1="Q" u2="T" k="100" /> +<hkern u1="Q" u2="A" k="43" /> +<hkern u1="Q" u2="/" k="43" /> +<hkern u1="Q" u2="." k="57" /> +<hkern u1="Q" u2="," k="57" /> +<hkern u1="Q" u2="*" k="47" /> +<hkern u1="Q" u2=")" k="41" /> +<hkern u1="Q" u2="'" k="47" /> +<hkern u1="Q" u2="&" k="43" /> +<hkern u1="Q" u2=""" k="47" /> +<hkern u1="R" u2="Œ" k="47" /> +<hkern u1="R" u2="Ü" k="43" /> +<hkern u1="R" u2="Û" k="43" /> +<hkern u1="R" u2="Ú" k="43" /> +<hkern u1="R" u2="Ù" k="43" /> +<hkern u1="R" u2="Ø" k="47" /> +<hkern u1="R" u2="Ö" k="47" /> +<hkern u1="R" u2="Õ" k="47" /> +<hkern u1="R" u2="Ô" k="47" /> +<hkern u1="R" u2="Ó" k="47" /> +<hkern u1="R" u2="Ò" k="47" /> +<hkern u1="R" u2="Ç" k="47" /> +<hkern u1="R" u2="U" k="43" /> +<hkern u1="R" u2="T" k="53" /> +<hkern u1="R" u2="Q" k="47" /> +<hkern u1="R" u2="O" k="47" /> +<hkern u1="R" u2="G" k="47" /> +<hkern u1="R" u2="C" k="47" /> +<hkern u1="R" u2="@" k="47" /> +<hkern u1="T" u2="›" k="184" /> +<hkern u1="T" u2="‹" k="184" /> +<hkern u1="T" u2="•" k="184" /> +<hkern u1="T" u2="„" k="184" /> +<hkern u1="T" u2="‚" k="184" /> +<hkern u1="T" u2="—" k="184" /> +<hkern u1="T" u2="–" k="184" /> +<hkern u1="T" u2="œ" k="215" /> +<hkern u1="T" u2="Œ" k="100" /> +<hkern u1="T" u2="ü" k="164" /> +<hkern u1="T" u2="û" k="164" /> +<hkern u1="T" u2="ú" k="164" /> +<hkern u1="T" u2="ù" k="164" /> +<hkern u1="T" u2="ø" k="215" /> +<hkern u1="T" u2="ö" k="215" /> +<hkern u1="T" u2="õ" k="215" /> +<hkern u1="T" u2="ô" k="215" /> +<hkern u1="T" u2="ó" k="215" /> +<hkern u1="T" u2="ò" k="215" /> +<hkern u1="T" u2="ñ" k="164" /> +<hkern u1="T" u2="ð" k="215" /> +<hkern u1="T" u2="ë" k="215" /> +<hkern u1="T" u2="ê" k="215" /> +<hkern u1="T" u2="é" k="215" /> +<hkern u1="T" u2="è" k="215" /> +<hkern u1="T" u2="ç" k="215" /> +<hkern u1="T" u2="æ" k="256" /> +<hkern u1="T" u2="å" k="256" /> +<hkern u1="T" u2="ä" k="256" /> +<hkern u1="T" u2="ã" k="256" /> +<hkern u1="T" u2="â" k="256" /> +<hkern u1="T" u2="á" k="256" /> +<hkern u1="T" u2="à" k="256" /> +<hkern u1="T" u2="Ø" k="100" /> +<hkern u1="T" u2="Ö" k="100" /> +<hkern u1="T" u2="Õ" k="100" /> +<hkern u1="T" u2="Ô" k="100" /> +<hkern u1="T" u2="Ó" k="100" /> +<hkern u1="T" u2="Ò" k="100" /> +<hkern u1="T" u2="Ç" k="100" /> +<hkern u1="T" u2="Æ" k="135" /> +<hkern u1="T" u2="Å" k="135" /> +<hkern u1="T" u2="Ä" k="135" /> +<hkern u1="T" u2="Ã" k="135" /> +<hkern u1="T" u2="Â" k="135" /> +<hkern u1="T" u2="Á" k="135" /> +<hkern u1="T" u2="À" k="135" /> +<hkern u1="T" u2="»" k="184" /> +<hkern u1="T" u2="·" k="184" /> +<hkern u1="T" u2="µ" k="164" /> +<hkern u1="T" u2="­" k="184" /> +<hkern u1="T" u2="«" k="184" /> +<hkern u1="T" u2="z" k="123" /> +<hkern u1="T" u2="y" k="184" /> +<hkern u1="T" u2="x" k="147" /> +<hkern u1="T" u2="w" k="143" /> +<hkern u1="T" u2="v" k="184" /> +<hkern u1="T" u2="u" k="164" /> +<hkern u1="T" u2="s" k="166" /> +<hkern u1="T" u2="r" k="164" /> +<hkern u1="T" u2="q" k="215" /> +<hkern u1="T" u2="p" k="164" /> +<hkern u1="T" u2="o" k="215" /> +<hkern u1="T" u2="n" k="164" /> +<hkern u1="T" u2="m" k="164" /> +<hkern u1="T" u2="g" k="193" /> +<hkern u1="T" u2="e" k="215" /> +<hkern u1="T" u2="d" k="215" /> +<hkern u1="T" u2="c" k="215" /> +<hkern u1="T" u2="a" k="256" /> +<hkern u1="T" u2="Q" k="100" /> +<hkern u1="T" u2="O" k="100" /> +<hkern u1="T" u2="J" k="205" /> +<hkern u1="T" u2="G" k="100" /> +<hkern u1="T" u2="C" k="100" /> +<hkern u1="T" u2="A" k="135" /> +<hkern u1="T" u2="@" k="100" /> +<hkern u1="T" u2=";" k="164" /> +<hkern u1="T" u2=":" k="164" /> +<hkern u1="T" u2="/" k="135" /> +<hkern u1="T" u2="." k="184" /> +<hkern u1="T" u2="-" k="184" /> +<hkern u1="T" u2="," k="184" /> +<hkern u1="T" u2="&" k="135" /> +<hkern u1="U" u2="„" k="51" /> +<hkern u1="U" u2="‚" k="51" /> +<hkern u1="U" u2="Æ" k="57" /> +<hkern u1="U" u2="Å" k="57" /> +<hkern u1="U" u2="Ä" k="57" /> +<hkern u1="U" u2="Ã" k="57" /> +<hkern u1="U" u2="Â" k="57" /> +<hkern u1="U" u2="Á" k="57" /> +<hkern u1="U" u2="À" k="57" /> +<hkern u1="U" u2="A" k="57" /> +<hkern u1="U" u2="/" k="57" /> +<hkern u1="U" u2="." k="51" /> +<hkern u1="U" u2="," k="51" /> +<hkern u1="U" u2="&" k="57" /> +<hkern u1="V" u2="™" k="-49" /> +<hkern u1="V" u2="›" k="115" /> +<hkern u1="V" u2="‹" k="115" /> +<hkern u1="V" u2="•" k="115" /> +<hkern u1="V" u2="„" k="197" /> +<hkern u1="V" u2="”" k="-49" /> +<hkern u1="V" u2="“" k="-49" /> +<hkern u1="V" u2="‚" k="197" /> +<hkern u1="V" u2="’" k="-49" /> +<hkern u1="V" u2="‘" k="-49" /> +<hkern u1="V" u2="—" k="115" /> +<hkern u1="V" u2="–" k="115" /> +<hkern u1="V" u2="œ" k="119" /> +<hkern u1="V" u2="Œ" k="53" /> +<hkern u1="V" u2="ü" k="90" /> +<hkern u1="V" u2="û" k="90" /> +<hkern u1="V" u2="ú" k="90" /> +<hkern u1="V" u2="ù" k="90" /> +<hkern u1="V" u2="ø" k="119" /> +<hkern u1="V" u2="ö" k="119" /> +<hkern u1="V" u2="õ" k="119" /> +<hkern u1="V" u2="ô" k="119" /> +<hkern u1="V" u2="ó" k="119" /> +<hkern u1="V" u2="ò" k="119" /> +<hkern u1="V" u2="ñ" k="90" /> +<hkern u1="V" u2="ð" k="119" /> +<hkern u1="V" u2="ë" k="119" /> +<hkern u1="V" u2="ê" k="119" /> +<hkern u1="V" u2="é" k="119" /> +<hkern u1="V" u2="è" k="119" /> +<hkern u1="V" u2="ç" k="119" /> +<hkern u1="V" u2="æ" k="119" /> +<hkern u1="V" u2="å" k="119" /> +<hkern u1="V" u2="ä" k="119" /> +<hkern u1="V" u2="ã" k="119" /> +<hkern u1="V" u2="â" k="119" /> +<hkern u1="V" u2="á" k="119" /> +<hkern u1="V" u2="à" k="119" /> +<hkern u1="V" u2="Ø" k="53" /> +<hkern u1="V" u2="Ö" k="53" /> +<hkern u1="V" u2="Õ" k="53" /> +<hkern u1="V" u2="Ô" k="53" /> +<hkern u1="V" u2="Ó" k="53" /> +<hkern u1="V" u2="Ò" k="53" /> +<hkern u1="V" u2="Ç" k="53" /> +<hkern u1="V" u2="Æ" k="139" /> +<hkern u1="V" u2="Å" k="139" /> +<hkern u1="V" u2="Ä" k="139" /> +<hkern u1="V" u2="Ã" k="139" /> +<hkern u1="V" u2="Â" k="139" /> +<hkern u1="V" u2="Á" k="139" /> +<hkern u1="V" u2="À" k="139" /> +<hkern u1="V" u2="»" k="115" /> +<hkern u1="V" u2="º" k="-49" /> +<hkern u1="V" u2="¹" k="-59" /> +<hkern u1="V" u2="·" k="115" /> +<hkern u1="V" u2="µ" k="90" /> +<hkern u1="V" u2="³" k="-59" /> +<hkern u1="V" u2="²" k="-59" /> +<hkern u1="V" u2="°" k="-49" /> +<hkern u1="V" u2="­" k="115" /> +<hkern u1="V" u2="«" k="115" /> +<hkern u1="V" u2="ª" k="-49" /> +<hkern u1="V" u2="z" k="84" /> +<hkern u1="V" u2="y" k="49" /> +<hkern u1="V" u2="x" k="53" /> +<hkern u1="V" u2="v" k="49" /> +<hkern u1="V" u2="u" k="90" /> +<hkern u1="V" u2="t" k="43" /> +<hkern u1="V" u2="s" k="109" /> +<hkern u1="V" u2="r" k="90" /> +<hkern u1="V" u2="q" k="119" /> +<hkern u1="V" u2="p" k="90" /> +<hkern u1="V" u2="o" k="119" /> +<hkern u1="V" u2="n" k="90" /> +<hkern u1="V" u2="m" k="90" /> +<hkern u1="V" u2="g" k="139" /> +<hkern u1="V" u2="f" k="31" /> +<hkern u1="V" u2="e" k="119" /> +<hkern u1="V" u2="d" k="119" /> +<hkern u1="V" u2="c" k="119" /> +<hkern u1="V" u2="a" k="119" /> +<hkern u1="V" u2="Q" k="53" /> +<hkern u1="V" u2="O" k="53" /> +<hkern u1="V" u2="J" k="156" /> +<hkern u1="V" u2="G" k="53" /> +<hkern u1="V" u2="C" k="53" /> +<hkern u1="V" u2="A" k="139" /> +<hkern u1="V" u2="@" k="53" /> +<hkern u1="V" u2="?" k="-49" /> +<hkern u1="V" u2=";" k="90" /> +<hkern u1="V" u2=":" k="90" /> +<hkern u1="V" u2="/" k="139" /> +<hkern u1="V" u2="." k="197" /> +<hkern u1="V" u2="-" k="115" /> +<hkern u1="V" u2="," k="197" /> +<hkern u1="V" u2="*" k="-49" /> +<hkern u1="V" u2="'" k="-49" /> +<hkern u1="V" u2="&" k="139" /> +<hkern u1="V" u2=""" k="-49" /> +<hkern u1="W" u2="™" k="-49" /> +<hkern u1="W" u2="›" k="33" /> +<hkern u1="W" u2="‹" k="33" /> +<hkern u1="W" u2="•" k="33" /> +<hkern u1="W" u2="„" k="125" /> +<hkern u1="W" u2="”" k="-49" /> +<hkern u1="W" u2="“" k="-49" /> +<hkern u1="W" u2="‚" k="125" /> +<hkern u1="W" u2="’" k="-49" /> +<hkern u1="W" u2="‘" k="-49" /> +<hkern u1="W" u2="—" k="33" /> +<hkern u1="W" u2="–" k="33" /> +<hkern u1="W" u2="œ" k="33" /> +<hkern u1="W" u2="ø" k="33" /> +<hkern u1="W" u2="ö" k="33" /> +<hkern u1="W" u2="õ" k="33" /> +<hkern u1="W" u2="ô" k="33" /> +<hkern u1="W" u2="ó" k="33" /> +<hkern u1="W" u2="ò" k="33" /> +<hkern u1="W" u2="ð" k="33" /> +<hkern u1="W" u2="ë" k="33" /> +<hkern u1="W" u2="ê" k="33" /> +<hkern u1="W" u2="é" k="33" /> +<hkern u1="W" u2="è" k="33" /> +<hkern u1="W" u2="ç" k="33" /> +<hkern u1="W" u2="æ" k="90" /> +<hkern u1="W" u2="å" k="90" /> +<hkern u1="W" u2="ä" k="90" /> +<hkern u1="W" u2="ã" k="90" /> +<hkern u1="W" u2="â" k="90" /> +<hkern u1="W" u2="á" k="90" /> +<hkern u1="W" u2="à" k="90" /> +<hkern u1="W" u2="Æ" k="96" /> +<hkern u1="W" u2="Å" k="96" /> +<hkern u1="W" u2="Ä" k="96" /> +<hkern u1="W" u2="Ã" k="96" /> +<hkern u1="W" u2="Â" k="96" /> +<hkern u1="W" u2="Á" k="96" /> +<hkern u1="W" u2="À" k="96" /> +<hkern u1="W" u2="»" k="33" /> +<hkern u1="W" u2="º" k="-49" /> +<hkern u1="W" u2="¹" k="-49" /> +<hkern u1="W" u2="·" k="33" /> +<hkern u1="W" u2="³" k="-49" /> +<hkern u1="W" u2="²" k="-49" /> +<hkern u1="W" u2="°" k="-49" /> +<hkern u1="W" u2="­" k="33" /> +<hkern u1="W" u2="«" k="33" /> +<hkern u1="W" u2="ª" k="-49" /> +<hkern u1="W" u2="s" k="47" /> +<hkern u1="W" u2="q" k="33" /> +<hkern u1="W" u2="o" k="33" /> +<hkern u1="W" u2="g" k="100" /> +<hkern u1="W" u2="e" k="33" /> +<hkern u1="W" u2="d" k="33" /> +<hkern u1="W" u2="c" k="33" /> +<hkern u1="W" u2="a" k="90" /> +<hkern u1="W" u2="J" k="104" /> +<hkern u1="W" u2="A" k="96" /> +<hkern u1="W" u2="?" k="-35" /> +<hkern u1="W" u2="/" k="96" /> +<hkern u1="W" u2="." k="125" /> +<hkern u1="W" u2="-" k="33" /> +<hkern u1="W" u2="," k="125" /> +<hkern u1="W" u2="*" k="-49" /> +<hkern u1="W" u2="'" k="-49" /> +<hkern u1="W" u2="&" k="96" /> +<hkern u1="W" u2=""" k="-49" /> +<hkern u1="X" u2="›" k="63" /> +<hkern u1="X" u2="‹" k="63" /> +<hkern u1="X" u2="•" k="63" /> +<hkern u1="X" u2="—" k="63" /> +<hkern u1="X" u2="–" k="63" /> +<hkern u1="X" u2="œ" k="37" /> +<hkern u1="X" u2="Œ" k="31" /> +<hkern u1="X" u2="ø" k="37" /> +<hkern u1="X" u2="ö" k="37" /> +<hkern u1="X" u2="õ" k="37" /> +<hkern u1="X" u2="ô" k="37" /> +<hkern u1="X" u2="ó" k="37" /> +<hkern u1="X" u2="ò" k="37" /> +<hkern u1="X" u2="ð" k="37" /> +<hkern u1="X" u2="ë" k="37" /> +<hkern u1="X" u2="ê" k="37" /> +<hkern u1="X" u2="é" k="37" /> +<hkern u1="X" u2="è" k="37" /> +<hkern u1="X" u2="ç" k="37" /> +<hkern u1="X" u2="Ø" k="31" /> +<hkern u1="X" u2="Ö" k="31" /> +<hkern u1="X" u2="Õ" k="31" /> +<hkern u1="X" u2="Ô" k="31" /> +<hkern u1="X" u2="Ó" k="31" /> +<hkern u1="X" u2="Ò" k="31" /> +<hkern u1="X" u2="Ç" k="31" /> +<hkern u1="X" u2="»" k="63" /> +<hkern u1="X" u2="·" k="63" /> +<hkern u1="X" u2="­" k="63" /> +<hkern u1="X" u2="«" k="63" /> +<hkern u1="X" u2="y" k="68" /> +<hkern u1="X" u2="w" k="57" /> +<hkern u1="X" u2="v" k="68" /> +<hkern u1="X" u2="t" k="84" /> +<hkern u1="X" u2="q" k="37" /> +<hkern u1="X" u2="o" k="37" /> +<hkern u1="X" u2="f" k="53" /> +<hkern u1="X" u2="e" k="37" /> +<hkern u1="X" u2="d" k="37" /> +<hkern u1="X" u2="c" k="37" /> +<hkern u1="X" u2="Q" k="31" /> +<hkern u1="X" u2="O" k="31" /> +<hkern u1="X" u2="G" k="31" /> +<hkern u1="X" u2="C" k="31" /> +<hkern u1="X" u2="@" k="31" /> +<hkern u1="X" u2="-" k="63" /> +<hkern u1="Y" u2="™" k="-31" /> +<hkern u1="Y" u2="›" k="164" /> +<hkern u1="Y" u2="‹" k="164" /> +<hkern u1="Y" u2="•" k="164" /> +<hkern u1="Y" u2="„" k="156" /> +<hkern u1="Y" u2="”" k="-31" /> +<hkern u1="Y" u2="“" k="-31" /> +<hkern u1="Y" u2="‚" k="156" /> +<hkern u1="Y" u2="’" k="-31" /> +<hkern u1="Y" u2="‘" k="-31" /> +<hkern u1="Y" u2="—" k="164" /> +<hkern u1="Y" u2="–" k="164" /> +<hkern u1="Y" u2="œ" k="164" /> +<hkern u1="Y" u2="Œ" k="82" /> +<hkern u1="Y" u2="ü" k="125" /> +<hkern u1="Y" u2="û" k="125" /> +<hkern u1="Y" u2="ú" k="125" /> +<hkern u1="Y" u2="ù" k="125" /> +<hkern u1="Y" u2="ø" k="164" /> +<hkern u1="Y" u2="ö" k="164" /> +<hkern u1="Y" u2="õ" k="164" /> +<hkern u1="Y" u2="ô" k="164" /> +<hkern u1="Y" u2="ó" k="164" /> +<hkern u1="Y" u2="ò" k="164" /> +<hkern u1="Y" u2="ñ" k="125" /> +<hkern u1="Y" u2="ð" k="164" /> +<hkern u1="Y" u2="ë" k="164" /> +<hkern u1="Y" u2="ê" k="164" /> +<hkern u1="Y" u2="é" k="164" /> +<hkern u1="Y" u2="è" k="164" /> +<hkern u1="Y" u2="ç" k="164" /> +<hkern u1="Y" u2="æ" k="131" /> +<hkern u1="Y" u2="å" k="131" /> +<hkern u1="Y" u2="ä" k="131" /> +<hkern u1="Y" u2="ã" k="131" /> +<hkern u1="Y" u2="â" k="131" /> +<hkern u1="Y" u2="á" k="131" /> +<hkern u1="Y" u2="à" k="131" /> +<hkern u1="Y" u2="Ø" k="82" /> +<hkern u1="Y" u2="Ö" k="82" /> +<hkern u1="Y" u2="Õ" k="82" /> +<hkern u1="Y" u2="Ô" k="82" /> +<hkern u1="Y" u2="Ó" k="82" /> +<hkern u1="Y" u2="Ò" k="82" /> +<hkern u1="Y" u2="Ç" k="82" /> +<hkern u1="Y" u2="Æ" k="168" /> +<hkern u1="Y" u2="Å" k="168" /> +<hkern u1="Y" u2="Ä" k="168" /> +<hkern u1="Y" u2="Ã" k="168" /> +<hkern u1="Y" u2="Â" k="168" /> +<hkern u1="Y" u2="Á" k="168" /> +<hkern u1="Y" u2="À" k="168" /> +<hkern u1="Y" u2="»" k="164" /> +<hkern u1="Y" u2="º" k="-31" /> +<hkern u1="Y" u2="¹" k="-51" /> +<hkern u1="Y" u2="·" k="164" /> +<hkern u1="Y" u2="µ" k="125" /> +<hkern u1="Y" u2="³" k="-51" /> +<hkern u1="Y" u2="²" k="-51" /> +<hkern u1="Y" u2="°" k="-31" /> +<hkern u1="Y" u2="­" k="164" /> +<hkern u1="Y" u2="«" k="164" /> +<hkern u1="Y" u2="ª" k="-31" /> +<hkern u1="Y" u2="y" k="102" /> +<hkern u1="Y" u2="x" k="135" /> +<hkern u1="Y" u2="w" k="94" /> +<hkern u1="Y" u2="v" k="102" /> +<hkern u1="Y" u2="u" k="125" /> +<hkern u1="Y" u2="s" k="131" /> +<hkern u1="Y" u2="r" k="125" /> +<hkern u1="Y" u2="q" k="164" /> +<hkern u1="Y" u2="p" k="125" /> +<hkern u1="Y" u2="o" k="164" /> +<hkern u1="Y" u2="n" k="125" /> +<hkern u1="Y" u2="m" k="125" /> +<hkern u1="Y" u2="g" k="176" /> +<hkern u1="Y" u2="e" k="164" /> +<hkern u1="Y" u2="d" k="164" /> +<hkern u1="Y" u2="c" k="164" /> +<hkern u1="Y" u2="a" k="131" /> +<hkern u1="Y" u2="Q" k="82" /> +<hkern u1="Y" u2="O" k="82" /> +<hkern u1="Y" u2="J" k="205" /> +<hkern u1="Y" u2="G" k="82" /> +<hkern u1="Y" u2="C" k="82" /> +<hkern u1="Y" u2="A" k="168" /> +<hkern u1="Y" u2="@" k="82" /> +<hkern u1="Y" u2="?" k="-35" /> +<hkern u1="Y" u2=";" k="125" /> +<hkern u1="Y" u2=":" k="125" /> +<hkern u1="Y" u2="/" k="168" /> +<hkern u1="Y" u2="." k="156" /> +<hkern u1="Y" u2="-" k="164" /> +<hkern u1="Y" u2="," k="156" /> +<hkern u1="Y" u2="*" k="-31" /> +<hkern u1="Y" u2="'" k="-31" /> +<hkern u1="Y" u2="&" k="168" /> +<hkern u1="Y" u2=""" k="-31" /> +<hkern u1="Z" u2="›" k="72" /> +<hkern u1="Z" u2="‹" k="72" /> +<hkern u1="Z" u2="•" k="72" /> +<hkern u1="Z" u2="—" k="72" /> +<hkern u1="Z" u2="–" k="72" /> +<hkern u1="Z" u2="œ" k="39" /> +<hkern u1="Z" u2="Œ" k="59" /> +<hkern u1="Z" u2="ø" k="39" /> +<hkern u1="Z" u2="ö" k="39" /> +<hkern u1="Z" u2="õ" k="39" /> +<hkern u1="Z" u2="ô" k="39" /> +<hkern u1="Z" u2="ó" k="39" /> +<hkern u1="Z" u2="ò" k="39" /> +<hkern u1="Z" u2="ð" k="39" /> +<hkern u1="Z" u2="ë" k="39" /> +<hkern u1="Z" u2="ê" k="39" /> +<hkern u1="Z" u2="é" k="39" /> +<hkern u1="Z" u2="è" k="39" /> +<hkern u1="Z" u2="ç" k="39" /> +<hkern u1="Z" u2="Ø" k="59" /> +<hkern u1="Z" u2="Ö" k="59" /> +<hkern u1="Z" u2="Õ" k="59" /> +<hkern u1="Z" u2="Ô" k="59" /> +<hkern u1="Z" u2="Ó" k="59" /> +<hkern u1="Z" u2="Ò" k="59" /> +<hkern u1="Z" u2="Ç" k="59" /> +<hkern u1="Z" u2="»" k="72" /> +<hkern u1="Z" u2="·" k="72" /> +<hkern u1="Z" u2="­" k="72" /> +<hkern u1="Z" u2="«" k="72" /> +<hkern u1="Z" u2="y" k="41" /> +<hkern u1="Z" u2="v" k="41" /> +<hkern u1="Z" u2="s" k="29" /> +<hkern u1="Z" u2="q" k="39" /> +<hkern u1="Z" u2="o" k="39" /> +<hkern u1="Z" u2="e" k="39" /> +<hkern u1="Z" u2="d" k="39" /> +<hkern u1="Z" u2="c" k="39" /> +<hkern u1="Z" u2="Q" k="59" /> +<hkern u1="Z" u2="O" k="59" /> +<hkern u1="Z" u2="G" k="59" /> +<hkern u1="Z" u2="C" k="59" /> +<hkern u1="Z" u2="@" k="59" /> +<hkern u1="Z" u2="?" k="-35" /> +<hkern u1="Z" u2="-" k="72" /> +<hkern u1="[" u2="œ" k="33" /> +<hkern u1="[" u2="Œ" k="41" /> +<hkern u1="[" u2="ø" k="33" /> +<hkern u1="[" u2="ö" k="33" /> +<hkern u1="[" u2="õ" k="33" /> +<hkern u1="[" u2="ô" k="33" /> +<hkern u1="[" u2="ó" k="33" /> +<hkern u1="[" u2="ò" k="33" /> +<hkern u1="[" u2="ð" k="33" /> +<hkern u1="[" u2="ë" k="33" /> +<hkern u1="[" u2="ê" k="33" /> +<hkern u1="[" u2="é" k="33" /> +<hkern u1="[" u2="è" k="33" /> +<hkern u1="[" u2="ç" k="33" /> +<hkern u1="[" u2="Ø" k="41" /> +<hkern u1="[" u2="Ö" k="41" /> +<hkern u1="[" u2="Õ" k="41" /> +<hkern u1="[" u2="Ô" k="41" /> +<hkern u1="[" u2="Ó" k="41" /> +<hkern u1="[" u2="Ò" k="41" /> +<hkern u1="[" u2="Ç" k="41" /> +<hkern u1="[" u2="q" k="33" /> +<hkern u1="[" u2="o" k="33" /> +<hkern u1="[" u2="e" k="33" /> +<hkern u1="[" u2="d" k="33" /> +<hkern u1="[" u2="c" k="33" /> +<hkern u1="[" u2="Q" k="41" /> +<hkern u1="[" u2="O" k="41" /> +<hkern u1="[" u2="G" k="41" /> +<hkern u1="[" u2="C" k="41" /> +<hkern u1="[" u2="@" k="41" /> +<hkern u1="\" u2="™" k="186" /> +<hkern u1="\" u2="›" k="53" /> +<hkern u1="\" u2="‹" k="53" /> +<hkern u1="\" u2="•" k="53" /> +<hkern u1="\" u2="”" k="186" /> +<hkern u1="\" u2="“" k="186" /> +<hkern u1="\" u2="’" k="186" /> +<hkern u1="\" u2="‘" k="186" /> +<hkern u1="\" u2="—" k="53" /> +<hkern u1="\" u2="–" k="53" /> +<hkern u1="\" u2="Ÿ" k="168" /> +<hkern u1="\" u2="Œ" k="43" /> +<hkern u1="\" u2="Ý" k="168" /> +<hkern u1="\" u2="Ü" k="57" /> +<hkern u1="\" u2="Û" k="57" /> +<hkern u1="\" u2="Ú" k="57" /> +<hkern u1="\" u2="Ù" k="57" /> +<hkern u1="\" u2="Ø" k="43" /> +<hkern u1="\" u2="Ö" k="43" /> +<hkern u1="\" u2="Õ" k="43" /> +<hkern u1="\" u2="Ô" k="43" /> +<hkern u1="\" u2="Ó" k="43" /> +<hkern u1="\" u2="Ò" k="43" /> +<hkern u1="\" u2="Ç" k="43" /> +<hkern u1="\" u2="»" k="53" /> +<hkern u1="\" u2="º" k="186" /> +<hkern u1="\" u2="¹" k="188" /> +<hkern u1="\" u2="·" k="53" /> +<hkern u1="\" u2="³" k="188" /> +<hkern u1="\" u2="²" k="188" /> +<hkern u1="\" u2="°" k="186" /> +<hkern u1="\" u2="­" k="53" /> +<hkern u1="\" u2="«" k="53" /> +<hkern u1="\" u2="ª" k="186" /> +<hkern u1="\" u2="y" k="84" /> +<hkern u1="\" u2="v" k="84" /> +<hkern u1="\" u2="\" k="139" /> +<hkern u1="\" u2="Y" k="168" /> +<hkern u1="\" u2="W" k="86" /> +<hkern u1="\" u2="V" k="139" /> +<hkern u1="\" u2="U" k="57" /> +<hkern u1="\" u2="T" k="135" /> +<hkern u1="\" u2="Q" k="43" /> +<hkern u1="\" u2="O" k="43" /> +<hkern u1="\" u2="J" k="-51" /> +<hkern u1="\" u2="G" k="43" /> +<hkern u1="\" u2="C" k="43" /> +<hkern u1="\" u2="@" k="43" /> +<hkern u1="\" u2="?" k="57" /> +<hkern u1="\" u2="-" k="53" /> +<hkern u1="\" u2="*" k="186" /> +<hkern u1="\" u2="'" k="186" /> +<hkern u1="\" u2=""" k="186" /> +<hkern u1="a" u2="™" k="74" /> +<hkern u1="a" u2="”" k="74" /> +<hkern u1="a" u2="“" k="74" /> +<hkern u1="a" u2="’" k="74" /> +<hkern u1="a" u2="‘" k="74" /> +<hkern u1="a" u2="º" k="74" /> +<hkern u1="a" u2="¹" k="74" /> +<hkern u1="a" u2="³" k="74" /> +<hkern u1="a" u2="²" k="74" /> +<hkern u1="a" u2="°" k="74" /> +<hkern u1="a" u2="ª" k="74" /> +<hkern u1="a" u2="y" k="33" /> +<hkern u1="a" u2="w" k="16" /> +<hkern u1="a" u2="v" k="33" /> +<hkern u1="a" u2="*" k="74" /> +<hkern u1="a" u2="'" k="74" /> +<hkern u1="a" u2=""" k="74" /> +<hkern u1="b" u2="™" k="94" /> +<hkern u1="b" u2="”" k="94" /> +<hkern u1="b" u2="“" k="94" /> +<hkern u1="b" u2="’" k="94" /> +<hkern u1="b" u2="‘" k="94" /> +<hkern u1="b" u2="º" k="94" /> +<hkern u1="b" u2="°" k="94" /> +<hkern u1="b" u2="ª" k="94" /> +<hkern u1="b" u2="}" k="33" /> +<hkern u1="b" u2="y" k="27" /> +<hkern u1="b" u2="x" k="61" /> +<hkern u1="b" u2="v" k="27" /> +<hkern u1="b" u2="]" k="33" /> +<hkern u1="b" u2="\" k="119" /> +<hkern u1="b" u2="W" k="33" /> +<hkern u1="b" u2="V" k="119" /> +<hkern u1="b" u2="*" k="94" /> +<hkern u1="b" u2=")" k="33" /> +<hkern u1="b" u2="'" k="94" /> +<hkern u1="b" u2=""" k="94" /> +<hkern u1="e" u2="™" k="94" /> +<hkern u1="e" u2="”" k="94" /> +<hkern u1="e" u2="“" k="94" /> +<hkern u1="e" u2="’" k="94" /> +<hkern u1="e" u2="‘" k="94" /> +<hkern u1="e" u2="º" k="94" /> +<hkern u1="e" u2="°" k="94" /> +<hkern u1="e" u2="ª" k="94" /> +<hkern u1="e" u2="}" k="33" /> +<hkern u1="e" u2="y" k="27" /> +<hkern u1="e" u2="x" k="61" /> +<hkern u1="e" u2="v" k="27" /> +<hkern u1="e" u2="]" k="33" /> +<hkern u1="e" u2="\" k="119" /> +<hkern u1="e" u2="W" k="33" /> +<hkern u1="e" u2="V" k="119" /> +<hkern u1="e" u2="*" k="94" /> +<hkern u1="e" u2=")" k="33" /> +<hkern u1="e" u2="'" k="94" /> +<hkern u1="e" u2=""" k="94" /> +<hkern u1="f" u2="™" k="-70" /> +<hkern u1="f" u2="„" k="133" /> +<hkern u1="f" u2="”" k="-70" /> +<hkern u1="f" u2="“" k="-70" /> +<hkern u1="f" u2="‚" k="133" /> +<hkern u1="f" u2="’" k="-70" /> +<hkern u1="f" u2="‘" k="-70" /> +<hkern u1="f" u2="º" k="-70" /> +<hkern u1="f" u2="¹" k="-102" /> +<hkern u1="f" u2="³" k="-102" /> +<hkern u1="f" u2="²" k="-102" /> +<hkern u1="f" u2="°" k="-70" /> +<hkern u1="f" u2="ª" k="-70" /> +<hkern u1="f" u2="." k="133" /> +<hkern u1="f" u2="," k="133" /> +<hkern u1="f" u2="*" k="-70" /> +<hkern u1="f" u2="'" k="-70" /> +<hkern u1="f" u2=""" k="-70" /> +<hkern u1="h" u2="™" k="74" /> +<hkern u1="h" u2="”" k="74" /> +<hkern u1="h" u2="“" k="74" /> +<hkern u1="h" u2="’" k="74" /> +<hkern u1="h" u2="‘" k="74" /> +<hkern u1="h" u2="º" k="74" /> +<hkern u1="h" u2="¹" k="74" /> +<hkern u1="h" u2="³" k="74" /> +<hkern u1="h" u2="²" k="74" /> +<hkern u1="h" u2="°" k="74" /> +<hkern u1="h" u2="ª" k="74" /> +<hkern u1="h" u2="y" k="33" /> +<hkern u1="h" u2="w" k="16" /> +<hkern u1="h" u2="v" k="33" /> +<hkern u1="h" u2="*" k="74" /> +<hkern u1="h" u2="'" k="74" /> +<hkern u1="h" u2=""" k="74" /> +<hkern u1="k" u2="œ" k="61" /> +<hkern u1="k" u2="ø" k="61" /> +<hkern u1="k" u2="ö" k="61" /> +<hkern u1="k" u2="õ" k="61" /> +<hkern u1="k" u2="ô" k="61" /> +<hkern u1="k" u2="ó" k="61" /> +<hkern u1="k" u2="ò" k="61" /> +<hkern u1="k" u2="ð" k="61" /> +<hkern u1="k" u2="ë" k="61" /> +<hkern u1="k" u2="ê" k="61" /> +<hkern u1="k" u2="é" k="61" /> +<hkern u1="k" u2="è" k="61" /> +<hkern u1="k" u2="ç" k="61" /> +<hkern u1="k" u2="q" k="61" /> +<hkern u1="k" u2="o" k="61" /> +<hkern u1="k" u2="e" k="61" /> +<hkern u1="k" u2="d" k="61" /> +<hkern u1="k" u2="c" k="61" /> +<hkern u1="m" u2="™" k="74" /> +<hkern u1="m" u2="”" k="74" /> +<hkern u1="m" u2="“" k="74" /> +<hkern u1="m" u2="’" k="74" /> +<hkern u1="m" u2="‘" k="74" /> +<hkern u1="m" u2="º" k="74" /> +<hkern u1="m" u2="¹" k="74" /> +<hkern u1="m" u2="³" k="74" /> +<hkern u1="m" u2="²" k="74" /> +<hkern u1="m" u2="°" k="74" /> +<hkern u1="m" u2="ª" k="74" /> +<hkern u1="m" u2="y" k="33" /> +<hkern u1="m" u2="w" k="16" /> +<hkern u1="m" u2="v" k="33" /> +<hkern u1="m" u2="*" k="74" /> +<hkern u1="m" u2="'" k="74" /> +<hkern u1="m" u2=""" k="74" /> +<hkern u1="n" u2="™" k="74" /> +<hkern u1="n" u2="”" k="74" /> +<hkern u1="n" u2="“" k="74" /> +<hkern u1="n" u2="’" k="74" /> +<hkern u1="n" u2="‘" k="74" /> +<hkern u1="n" u2="º" k="74" /> +<hkern u1="n" u2="¹" k="74" /> +<hkern u1="n" u2="³" k="74" /> +<hkern u1="n" u2="²" k="74" /> +<hkern u1="n" u2="°" k="74" /> +<hkern u1="n" u2="ª" k="74" /> +<hkern u1="n" u2="y" k="33" /> +<hkern u1="n" u2="w" k="16" /> +<hkern u1="n" u2="v" k="33" /> +<hkern u1="n" u2="*" k="74" /> +<hkern u1="n" u2="'" k="74" /> +<hkern u1="n" u2=""" k="74" /> +<hkern u1="o" u2="™" k="94" /> +<hkern u1="o" u2="”" k="94" /> +<hkern u1="o" u2="“" k="94" /> +<hkern u1="o" u2="’" k="94" /> +<hkern u1="o" u2="‘" k="94" /> +<hkern u1="o" u2="º" k="94" /> +<hkern u1="o" u2="°" k="94" /> +<hkern u1="o" u2="ª" k="94" /> +<hkern u1="o" u2="}" k="33" /> +<hkern u1="o" u2="y" k="27" /> +<hkern u1="o" u2="x" k="61" /> +<hkern u1="o" u2="v" k="27" /> +<hkern u1="o" u2="]" k="33" /> +<hkern u1="o" u2="\" k="119" /> +<hkern u1="o" u2="W" k="33" /> +<hkern u1="o" u2="V" k="119" /> +<hkern u1="o" u2="*" k="94" /> +<hkern u1="o" u2=")" k="33" /> +<hkern u1="o" u2="'" k="94" /> +<hkern u1="o" u2=""" k="94" /> +<hkern u1="p" u2="™" k="94" /> +<hkern u1="p" u2="”" k="94" /> +<hkern u1="p" u2="“" k="94" /> +<hkern u1="p" u2="’" k="94" /> +<hkern u1="p" u2="‘" k="94" /> +<hkern u1="p" u2="º" k="94" /> +<hkern u1="p" u2="°" k="94" /> +<hkern u1="p" u2="ª" k="94" /> +<hkern u1="p" u2="}" k="33" /> +<hkern u1="p" u2="y" k="27" /> +<hkern u1="p" u2="x" k="61" /> +<hkern u1="p" u2="v" k="27" /> +<hkern u1="p" u2="]" k="33" /> +<hkern u1="p" u2="\" k="119" /> +<hkern u1="p" u2="W" k="33" /> +<hkern u1="p" u2="V" k="119" /> +<hkern u1="p" u2="*" k="94" /> +<hkern u1="p" u2=")" k="33" /> +<hkern u1="p" u2="'" k="94" /> +<hkern u1="p" u2=""" k="94" /> +<hkern u1="r" u2="„" k="135" /> +<hkern u1="r" u2="‚" k="135" /> +<hkern u1="r" u2="æ" k="39" /> +<hkern u1="r" u2="å" k="39" /> +<hkern u1="r" u2="ä" k="39" /> +<hkern u1="r" u2="ã" k="39" /> +<hkern u1="r" u2="â" k="39" /> +<hkern u1="r" u2="á" k="39" /> +<hkern u1="r" u2="à" k="39" /> +<hkern u1="r" u2="a" k="39" /> +<hkern u1="r" u2="." k="135" /> +<hkern u1="r" u2="," k="135" /> +<hkern u1="v" u2="„" k="135" /> +<hkern u1="v" u2="‚" k="135" /> +<hkern u1="v" u2="œ" k="27" /> +<hkern u1="v" u2="ø" k="27" /> +<hkern u1="v" u2="ö" k="27" /> +<hkern u1="v" u2="õ" k="27" /> +<hkern u1="v" u2="ô" k="27" /> +<hkern u1="v" u2="ó" k="27" /> +<hkern u1="v" u2="ò" k="27" /> +<hkern u1="v" u2="ð" k="27" /> +<hkern u1="v" u2="ë" k="27" /> +<hkern u1="v" u2="ê" k="27" /> +<hkern u1="v" u2="é" k="27" /> +<hkern u1="v" u2="è" k="27" /> +<hkern u1="v" u2="ç" k="27" /> +<hkern u1="v" u2="Æ" k="84" /> +<hkern u1="v" u2="Å" k="84" /> +<hkern u1="v" u2="Ä" k="84" /> +<hkern u1="v" u2="Ã" k="84" /> +<hkern u1="v" u2="Â" k="84" /> +<hkern u1="v" u2="Á" k="84" /> +<hkern u1="v" u2="À" k="84" /> +<hkern u1="v" u2="q" k="27" /> +<hkern u1="v" u2="o" k="27" /> +<hkern u1="v" u2="e" k="27" /> +<hkern u1="v" u2="d" k="27" /> +<hkern u1="v" u2="c" k="27" /> +<hkern u1="v" u2="A" k="84" /> +<hkern u1="v" u2="/" k="84" /> +<hkern u1="v" u2="." k="135" /> +<hkern u1="v" u2="," k="135" /> +<hkern u1="v" u2="&" k="84" /> +<hkern u1="w" u2="„" k="63" /> +<hkern u1="w" u2="‚" k="63" /> +<hkern u1="w" u2="." k="63" /> +<hkern u1="w" u2="," k="63" /> +<hkern u1="x" u2="œ" k="61" /> +<hkern u1="x" u2="ø" k="61" /> +<hkern u1="x" u2="ö" k="61" /> +<hkern u1="x" u2="õ" k="61" /> +<hkern u1="x" u2="ô" k="61" /> +<hkern u1="x" u2="ó" k="61" /> +<hkern u1="x" u2="ò" k="61" /> +<hkern u1="x" u2="ð" k="61" /> +<hkern u1="x" u2="ë" k="61" /> +<hkern u1="x" u2="ê" k="61" /> +<hkern u1="x" u2="é" k="61" /> +<hkern u1="x" u2="è" k="61" /> +<hkern u1="x" u2="ç" k="61" /> +<hkern u1="x" u2="q" k="61" /> +<hkern u1="x" u2="o" k="61" /> +<hkern u1="x" u2="e" k="61" /> +<hkern u1="x" u2="d" k="61" /> +<hkern u1="x" u2="c" k="61" /> +<hkern u1="y" u2="„" k="135" /> +<hkern u1="y" u2="‚" k="135" /> +<hkern u1="y" u2="œ" k="27" /> +<hkern u1="y" u2="ø" k="27" /> +<hkern u1="y" u2="ö" k="27" /> +<hkern u1="y" u2="õ" k="27" /> +<hkern u1="y" u2="ô" k="27" /> +<hkern u1="y" u2="ó" k="27" /> +<hkern u1="y" u2="ò" k="27" /> +<hkern u1="y" u2="ð" k="27" /> +<hkern u1="y" u2="ë" k="27" /> +<hkern u1="y" u2="ê" k="27" /> +<hkern u1="y" u2="é" k="27" /> +<hkern u1="y" u2="è" k="27" /> +<hkern u1="y" u2="ç" k="27" /> +<hkern u1="y" u2="Æ" k="84" /> +<hkern u1="y" u2="Å" k="84" /> +<hkern u1="y" u2="Ä" k="84" /> +<hkern u1="y" u2="Ã" k="84" /> +<hkern u1="y" u2="Â" k="84" /> +<hkern u1="y" u2="Á" k="84" /> +<hkern u1="y" u2="À" k="84" /> +<hkern u1="y" u2="q" k="27" /> +<hkern u1="y" u2="o" k="27" /> +<hkern u1="y" u2="e" k="27" /> +<hkern u1="y" u2="d" k="27" /> +<hkern u1="y" u2="c" k="27" /> +<hkern u1="y" u2="A" k="84" /> +<hkern u1="y" u2="/" k="84" /> +<hkern u1="y" u2="." k="135" /> +<hkern u1="y" u2="," k="135" /> +<hkern u1="y" u2="&" k="84" /> +<hkern u1="{" u2="œ" k="33" /> +<hkern u1="{" u2="Œ" k="41" /> +<hkern u1="{" u2="ø" k="33" /> +<hkern u1="{" u2="ö" k="33" /> +<hkern u1="{" u2="õ" k="33" /> +<hkern u1="{" u2="ô" k="33" /> +<hkern u1="{" u2="ó" k="33" /> +<hkern u1="{" u2="ò" k="33" /> +<hkern u1="{" u2="ð" k="33" /> +<hkern u1="{" u2="ë" k="33" /> +<hkern u1="{" u2="ê" k="33" /> +<hkern u1="{" u2="é" k="33" /> +<hkern u1="{" u2="è" k="33" /> +<hkern u1="{" u2="ç" k="33" /> +<hkern u1="{" u2="Ø" k="41" /> +<hkern u1="{" u2="Ö" k="41" /> +<hkern u1="{" u2="Õ" k="41" /> +<hkern u1="{" u2="Ô" k="41" /> +<hkern u1="{" u2="Ó" k="41" /> +<hkern u1="{" u2="Ò" k="41" /> +<hkern u1="{" u2="Ç" k="41" /> +<hkern u1="{" u2="q" k="33" /> +<hkern u1="{" u2="o" k="33" /> +<hkern u1="{" u2="e" k="33" /> +<hkern u1="{" u2="d" k="33" /> +<hkern u1="{" u2="c" k="33" /> +<hkern u1="{" u2="Q" k="41" /> +<hkern u1="{" u2="O" k="41" /> +<hkern u1="{" u2="G" k="41" /> +<hkern u1="{" u2="C" k="41" /> +<hkern u1="{" u2="@" k="41" /> +<hkern u1="ª" u2="›" k="182" /> +<hkern u1="ª" u2="‹" k="182" /> +<hkern u1="ª" u2="•" k="182" /> +<hkern u1="ª" u2="„" k="233" /> +<hkern u1="ª" u2="‚" k="233" /> +<hkern u1="ª" u2="—" k="182" /> +<hkern u1="ª" u2="–" k="182" /> +<hkern u1="ª" u2="Ÿ" k="-31" /> +<hkern u1="ª" u2="œ" k="94" /> +<hkern u1="ª" u2="Œ" k="47" /> +<hkern u1="ª" u2="ø" k="94" /> +<hkern u1="ª" u2="ö" k="94" /> +<hkern u1="ª" u2="õ" k="94" /> +<hkern u1="ª" u2="ô" k="94" /> +<hkern u1="ª" u2="ó" k="94" /> +<hkern u1="ª" u2="ò" k="94" /> +<hkern u1="ª" u2="ð" k="94" /> +<hkern u1="ª" u2="ë" k="94" /> +<hkern u1="ª" u2="ê" k="94" /> +<hkern u1="ª" u2="é" k="94" /> +<hkern u1="ª" u2="è" k="94" /> +<hkern u1="ª" u2="ç" k="94" /> +<hkern u1="ª" u2="æ" k="66" /> +<hkern u1="ª" u2="å" k="66" /> +<hkern u1="ª" u2="ä" k="66" /> +<hkern u1="ª" u2="ã" k="66" /> +<hkern u1="ª" u2="â" k="66" /> +<hkern u1="ª" u2="á" k="66" /> +<hkern u1="ª" u2="à" k="66" /> +<hkern u1="ª" u2="Ý" k="-31" /> +<hkern u1="ª" u2="Ø" k="47" /> +<hkern u1="ª" u2="Ö" k="47" /> +<hkern u1="ª" u2="Õ" k="47" /> +<hkern u1="ª" u2="Ô" k="47" /> +<hkern u1="ª" u2="Ó" k="47" /> +<hkern u1="ª" u2="Ò" k="47" /> +<hkern u1="ª" u2="Ç" k="47" /> +<hkern u1="ª" u2="Æ" k="186" /> +<hkern u1="ª" u2="Å" k="186" /> +<hkern u1="ª" u2="Ä" k="186" /> +<hkern u1="ª" u2="Ã" k="186" /> +<hkern u1="ª" u2="Â" k="186" /> +<hkern u1="ª" u2="Á" k="186" /> +<hkern u1="ª" u2="À" k="186" /> +<hkern u1="ª" u2="»" k="182" /> +<hkern u1="ª" u2="·" k="182" /> +<hkern u1="ª" u2="­" k="182" /> +<hkern u1="ª" u2="«" k="182" /> +<hkern u1="ª" u2="q" k="94" /> +<hkern u1="ª" u2="o" k="94" /> +<hkern u1="ª" u2="e" k="94" /> +<hkern u1="ª" u2="d" k="94" /> +<hkern u1="ª" u2="c" k="94" /> +<hkern u1="ª" u2="a" k="66" /> +<hkern u1="ª" u2="\" k="-49" /> +<hkern u1="ª" u2="Y" k="-31" /> +<hkern u1="ª" u2="W" k="-49" /> +<hkern u1="ª" u2="V" k="-49" /> +<hkern u1="ª" u2="Q" k="47" /> +<hkern u1="ª" u2="O" k="47" /> +<hkern u1="ª" u2="G" k="47" /> +<hkern u1="ª" u2="C" k="47" /> +<hkern u1="ª" u2="A" k="186" /> +<hkern u1="ª" u2="@" k="47" /> +<hkern u1="ª" u2="/" k="186" /> +<hkern u1="ª" u2="." k="233" /> +<hkern u1="ª" u2="-" k="182" /> +<hkern u1="ª" u2="," k="233" /> +<hkern u1="ª" u2="&" k="186" /> +<hkern u1="«" u2="™" k="182" /> +<hkern u1="«" u2="„" k="139" /> +<hkern u1="«" u2="”" k="182" /> +<hkern u1="«" u2="“" k="182" /> +<hkern u1="«" u2="‚" k="139" /> +<hkern u1="«" u2="’" k="182" /> +<hkern u1="«" u2="‘" k="182" /> +<hkern u1="«" u2="Ÿ" k="164" /> +<hkern u1="«" u2="Ý" k="164" /> +<hkern u1="«" u2="Æ" k="53" /> +<hkern u1="«" u2="Å" k="53" /> +<hkern u1="«" u2="Ä" k="53" /> +<hkern u1="«" u2="Ã" k="53" /> +<hkern u1="«" u2="Â" k="53" /> +<hkern u1="«" u2="Á" k="53" /> +<hkern u1="«" u2="À" k="53" /> +<hkern u1="«" u2="º" k="182" /> +<hkern u1="«" u2="°" k="182" /> +<hkern u1="«" u2="ª" k="182" /> +<hkern u1="«" u2="\" k="115" /> +<hkern u1="«" u2="Z" k="47" /> +<hkern u1="«" u2="Y" k="164" /> +<hkern u1="«" u2="X" k="63" /> +<hkern u1="«" u2="W" k="33" /> +<hkern u1="«" u2="V" k="115" /> +<hkern u1="«" u2="T" k="184" /> +<hkern u1="«" u2="A" k="53" /> +<hkern u1="«" u2="/" k="53" /> +<hkern u1="«" u2="." k="139" /> +<hkern u1="«" u2="," k="139" /> +<hkern u1="«" u2="*" k="182" /> +<hkern u1="«" u2="'" k="182" /> +<hkern u1="«" u2="&" k="53" /> +<hkern u1="«" u2=""" k="182" /> +<hkern u1="­" u2="™" k="182" /> +<hkern u1="­" u2="„" k="139" /> +<hkern u1="­" u2="”" k="182" /> +<hkern u1="­" u2="“" k="182" /> +<hkern u1="­" u2="‚" k="139" /> +<hkern u1="­" u2="’" k="182" /> +<hkern u1="­" u2="‘" k="182" /> +<hkern u1="­" u2="Ÿ" k="164" /> +<hkern u1="­" u2="Ý" k="164" /> +<hkern u1="­" u2="Æ" k="53" /> +<hkern u1="­" u2="Å" k="53" /> +<hkern u1="­" u2="Ä" k="53" /> +<hkern u1="­" u2="Ã" k="53" /> +<hkern u1="­" u2="Â" k="53" /> +<hkern u1="­" u2="Á" k="53" /> +<hkern u1="­" u2="À" k="53" /> +<hkern u1="­" u2="º" k="182" /> +<hkern u1="­" u2="°" k="182" /> +<hkern u1="­" u2="ª" k="182" /> +<hkern u1="­" u2="\" k="115" /> +<hkern u1="­" u2="Z" k="47" /> +<hkern u1="­" u2="Y" k="164" /> +<hkern u1="­" u2="X" k="63" /> +<hkern u1="­" u2="W" k="33" /> +<hkern u1="­" u2="V" k="115" /> +<hkern u1="­" u2="T" k="184" /> +<hkern u1="­" u2="A" k="53" /> +<hkern u1="­" u2="/" k="53" /> +<hkern u1="­" u2="." k="139" /> +<hkern u1="­" u2="," k="139" /> +<hkern u1="­" u2="*" k="182" /> +<hkern u1="­" u2="'" k="182" /> +<hkern u1="­" u2="&" k="53" /> +<hkern u1="­" u2=""" k="182" /> +<hkern u1="®" u2="™" k="47" /> +<hkern u1="®" u2="„" k="57" /> +<hkern u1="®" u2="”" k="47" /> +<hkern u1="®" u2="“" k="47" /> +<hkern u1="®" u2="‚" k="57" /> +<hkern u1="®" u2="’" k="47" /> +<hkern u1="®" u2="‘" k="47" /> +<hkern u1="®" u2="Ÿ" k="82" /> +<hkern u1="®" u2="Ý" k="82" /> +<hkern u1="®" u2="Æ" k="43" /> +<hkern u1="®" u2="Å" k="43" /> +<hkern u1="®" u2="Ä" k="43" /> +<hkern u1="®" u2="Ã" k="43" /> +<hkern u1="®" u2="Â" k="43" /> +<hkern u1="®" u2="Á" k="43" /> +<hkern u1="®" u2="À" k="43" /> +<hkern u1="®" u2="º" k="47" /> +<hkern u1="®" u2="°" k="47" /> +<hkern u1="®" u2="ª" k="47" /> +<hkern u1="®" u2="}" k="41" /> +<hkern u1="®" u2="]" k="41" /> +<hkern u1="®" u2="\" k="53" /> +<hkern u1="®" u2="Z" k="72" /> +<hkern u1="®" u2="Y" k="82" /> +<hkern u1="®" u2="X" k="31" /> +<hkern u1="®" u2="V" k="53" /> +<hkern u1="®" u2="T" k="100" /> +<hkern u1="®" u2="A" k="43" /> +<hkern u1="®" u2="/" k="43" /> +<hkern u1="®" u2="." k="57" /> +<hkern u1="®" u2="," k="57" /> +<hkern u1="®" u2="*" k="47" /> +<hkern u1="®" u2=")" k="41" /> +<hkern u1="®" u2="'" k="47" /> +<hkern u1="®" u2="&" k="43" /> +<hkern u1="®" u2=""" k="47" /> +<hkern u1="°" u2="›" k="182" /> +<hkern u1="°" u2="‹" k="182" /> +<hkern u1="°" u2="•" k="182" /> +<hkern u1="°" u2="„" k="233" /> +<hkern u1="°" u2="‚" k="233" /> +<hkern u1="°" u2="—" k="182" /> +<hkern u1="°" u2="–" k="182" /> +<hkern u1="°" u2="Ÿ" k="-31" /> +<hkern u1="°" u2="œ" k="94" /> +<hkern u1="°" u2="Œ" k="47" /> +<hkern u1="°" u2="ø" k="94" /> +<hkern u1="°" u2="ö" k="94" /> +<hkern u1="°" u2="õ" k="94" /> +<hkern u1="°" u2="ô" k="94" /> +<hkern u1="°" u2="ó" k="94" /> +<hkern u1="°" u2="ò" k="94" /> +<hkern u1="°" u2="ð" k="94" /> +<hkern u1="°" u2="ë" k="94" /> +<hkern u1="°" u2="ê" k="94" /> +<hkern u1="°" u2="é" k="94" /> +<hkern u1="°" u2="è" k="94" /> +<hkern u1="°" u2="ç" k="94" /> +<hkern u1="°" u2="æ" k="66" /> +<hkern u1="°" u2="å" k="66" /> +<hkern u1="°" u2="ä" k="66" /> +<hkern u1="°" u2="ã" k="66" /> +<hkern u1="°" u2="â" k="66" /> +<hkern u1="°" u2="á" k="66" /> +<hkern u1="°" u2="à" k="66" /> +<hkern u1="°" u2="Ý" k="-31" /> +<hkern u1="°" u2="Ø" k="47" /> +<hkern u1="°" u2="Ö" k="47" /> +<hkern u1="°" u2="Õ" k="47" /> +<hkern u1="°" u2="Ô" k="47" /> +<hkern u1="°" u2="Ó" k="47" /> +<hkern u1="°" u2="Ò" k="47" /> +<hkern u1="°" u2="Ç" k="47" /> +<hkern u1="°" u2="Æ" k="186" /> +<hkern u1="°" u2="Å" k="186" /> +<hkern u1="°" u2="Ä" k="186" /> +<hkern u1="°" u2="Ã" k="186" /> +<hkern u1="°" u2="Â" k="186" /> +<hkern u1="°" u2="Á" k="186" /> +<hkern u1="°" u2="À" k="186" /> +<hkern u1="°" u2="»" k="182" /> +<hkern u1="°" u2="·" k="182" /> +<hkern u1="°" u2="­" k="182" /> +<hkern u1="°" u2="«" k="182" /> +<hkern u1="°" u2="q" k="94" /> +<hkern u1="°" u2="o" k="94" /> +<hkern u1="°" u2="e" k="94" /> +<hkern u1="°" u2="d" k="94" /> +<hkern u1="°" u2="c" k="94" /> +<hkern u1="°" u2="a" k="66" /> +<hkern u1="°" u2="\" k="-49" /> +<hkern u1="°" u2="Y" k="-31" /> +<hkern u1="°" u2="W" k="-49" /> +<hkern u1="°" u2="V" k="-49" /> +<hkern u1="°" u2="Q" k="47" /> +<hkern u1="°" u2="O" k="47" /> +<hkern u1="°" u2="G" k="47" /> +<hkern u1="°" u2="C" k="47" /> +<hkern u1="°" u2="A" k="186" /> +<hkern u1="°" u2="@" k="47" /> +<hkern u1="°" u2="/" k="186" /> +<hkern u1="°" u2="." k="233" /> +<hkern u1="°" u2="-" k="182" /> +<hkern u1="°" u2="," k="233" /> +<hkern u1="°" u2="&" k="186" /> +<hkern u1="²" u2="Ÿ" k="-41" /> +<hkern u1="²" u2="Ý" k="-41" /> +<hkern u1="²" u2="Æ" k="188" /> +<hkern u1="²" u2="Å" k="188" /> +<hkern u1="²" u2="Ä" k="188" /> +<hkern u1="²" u2="Ã" k="188" /> +<hkern u1="²" u2="Â" k="188" /> +<hkern u1="²" u2="Á" k="188" /> +<hkern u1="²" u2="À" k="188" /> +<hkern u1="²" u2="\" k="-59" /> +<hkern u1="²" u2="Y" k="-41" /> +<hkern u1="²" u2="W" k="-59" /> +<hkern u1="²" u2="V" k="-59" /> +<hkern u1="²" u2="A" k="188" /> +<hkern u1="²" u2="/" k="188" /> +<hkern u1="²" u2="&" k="188" /> +<hkern u1="³" u2="Ÿ" k="-41" /> +<hkern u1="³" u2="Ý" k="-41" /> +<hkern u1="³" u2="Æ" k="188" /> +<hkern u1="³" u2="Å" k="188" /> +<hkern u1="³" u2="Ä" k="188" /> +<hkern u1="³" u2="Ã" k="188" /> +<hkern u1="³" u2="Â" k="188" /> +<hkern u1="³" u2="Á" k="188" /> +<hkern u1="³" u2="À" k="188" /> +<hkern u1="³" u2="\" k="-59" /> +<hkern u1="³" u2="Y" k="-41" /> +<hkern u1="³" u2="W" k="-59" /> +<hkern u1="³" u2="V" k="-59" /> +<hkern u1="³" u2="A" k="188" /> +<hkern u1="³" u2="/" k="188" /> +<hkern u1="³" u2="&" k="188" /> +<hkern u1="·" u2="™" k="182" /> +<hkern u1="·" u2="„" k="139" /> +<hkern u1="·" u2="”" k="182" /> +<hkern u1="·" u2="“" k="182" /> +<hkern u1="·" u2="‚" k="139" /> +<hkern u1="·" u2="’" k="182" /> +<hkern u1="·" u2="‘" k="182" /> +<hkern u1="·" u2="Ÿ" k="164" /> +<hkern u1="·" u2="Ý" k="164" /> +<hkern u1="·" u2="Æ" k="53" /> +<hkern u1="·" u2="Å" k="53" /> +<hkern u1="·" u2="Ä" k="53" /> +<hkern u1="·" u2="Ã" k="53" /> +<hkern u1="·" u2="Â" k="53" /> +<hkern u1="·" u2="Á" k="53" /> +<hkern u1="·" u2="À" k="53" /> +<hkern u1="·" u2="º" k="182" /> +<hkern u1="·" u2="°" k="182" /> +<hkern u1="·" u2="ª" k="182" /> +<hkern u1="·" u2="\" k="115" /> +<hkern u1="·" u2="Z" k="47" /> +<hkern u1="·" u2="Y" k="164" /> +<hkern u1="·" u2="X" k="63" /> +<hkern u1="·" u2="W" k="33" /> +<hkern u1="·" u2="V" k="115" /> +<hkern u1="·" u2="T" k="184" /> +<hkern u1="·" u2="A" k="53" /> +<hkern u1="·" u2="/" k="53" /> +<hkern u1="·" u2="." k="139" /> +<hkern u1="·" u2="," k="139" /> +<hkern u1="·" u2="*" k="182" /> +<hkern u1="·" u2="'" k="182" /> +<hkern u1="·" u2="&" k="53" /> +<hkern u1="·" u2=""" k="182" /> +<hkern u1="¹" u2="Ÿ" k="-41" /> +<hkern u1="¹" u2="Ý" k="-41" /> +<hkern u1="¹" u2="Æ" k="188" /> +<hkern u1="¹" u2="Å" k="188" /> +<hkern u1="¹" u2="Ä" k="188" /> +<hkern u1="¹" u2="Ã" k="188" /> +<hkern u1="¹" u2="Â" k="188" /> +<hkern u1="¹" u2="Á" k="188" /> +<hkern u1="¹" u2="À" k="188" /> +<hkern u1="¹" u2="\" k="-59" /> +<hkern u1="¹" u2="Y" k="-41" /> +<hkern u1="¹" u2="W" k="-59" /> +<hkern u1="¹" u2="V" k="-59" /> +<hkern u1="¹" u2="A" k="188" /> +<hkern u1="¹" u2="/" k="188" /> +<hkern u1="¹" u2="&" k="188" /> +<hkern u1="º" u2="›" k="182" /> +<hkern u1="º" u2="‹" k="182" /> +<hkern u1="º" u2="•" k="182" /> +<hkern u1="º" u2="„" k="233" /> +<hkern u1="º" u2="‚" k="233" /> +<hkern u1="º" u2="—" k="182" /> +<hkern u1="º" u2="–" k="182" /> +<hkern u1="º" u2="Ÿ" k="-31" /> +<hkern u1="º" u2="œ" k="94" /> +<hkern u1="º" u2="Œ" k="47" /> +<hkern u1="º" u2="ø" k="94" /> +<hkern u1="º" u2="ö" k="94" /> +<hkern u1="º" u2="õ" k="94" /> +<hkern u1="º" u2="ô" k="94" /> +<hkern u1="º" u2="ó" k="94" /> +<hkern u1="º" u2="ò" k="94" /> +<hkern u1="º" u2="ð" k="94" /> +<hkern u1="º" u2="ë" k="94" /> +<hkern u1="º" u2="ê" k="94" /> +<hkern u1="º" u2="é" k="94" /> +<hkern u1="º" u2="è" k="94" /> +<hkern u1="º" u2="ç" k="94" /> +<hkern u1="º" u2="æ" k="66" /> +<hkern u1="º" u2="å" k="66" /> +<hkern u1="º" u2="ä" k="66" /> +<hkern u1="º" u2="ã" k="66" /> +<hkern u1="º" u2="â" k="66" /> +<hkern u1="º" u2="á" k="66" /> +<hkern u1="º" u2="à" k="66" /> +<hkern u1="º" u2="Ý" k="-31" /> +<hkern u1="º" u2="Ø" k="47" /> +<hkern u1="º" u2="Ö" k="47" /> +<hkern u1="º" u2="Õ" k="47" /> +<hkern u1="º" u2="Ô" k="47" /> +<hkern u1="º" u2="Ó" k="47" /> +<hkern u1="º" u2="Ò" k="47" /> +<hkern u1="º" u2="Ç" k="47" /> +<hkern u1="º" u2="Æ" k="186" /> +<hkern u1="º" u2="Å" k="186" /> +<hkern u1="º" u2="Ä" k="186" /> +<hkern u1="º" u2="Ã" k="186" /> +<hkern u1="º" u2="Â" k="186" /> +<hkern u1="º" u2="Á" k="186" /> +<hkern u1="º" u2="À" k="186" /> +<hkern u1="º" u2="»" k="182" /> +<hkern u1="º" u2="·" k="182" /> +<hkern u1="º" u2="­" k="182" /> +<hkern u1="º" u2="«" k="182" /> +<hkern u1="º" u2="q" k="94" /> +<hkern u1="º" u2="o" k="94" /> +<hkern u1="º" u2="e" k="94" /> +<hkern u1="º" u2="d" k="94" /> +<hkern u1="º" u2="c" k="94" /> +<hkern u1="º" u2="a" k="66" /> +<hkern u1="º" u2="\" k="-49" /> +<hkern u1="º" u2="Y" k="-31" /> +<hkern u1="º" u2="W" k="-49" /> +<hkern u1="º" u2="V" k="-49" /> +<hkern u1="º" u2="Q" k="47" /> +<hkern u1="º" u2="O" k="47" /> +<hkern u1="º" u2="G" k="47" /> +<hkern u1="º" u2="C" k="47" /> +<hkern u1="º" u2="A" k="186" /> +<hkern u1="º" u2="@" k="47" /> +<hkern u1="º" u2="/" k="186" /> +<hkern u1="º" u2="." k="233" /> +<hkern u1="º" u2="-" k="182" /> +<hkern u1="º" u2="," k="233" /> +<hkern u1="º" u2="&" k="186" /> +<hkern u1="»" u2="™" k="182" /> +<hkern u1="»" u2="„" k="139" /> +<hkern u1="»" u2="”" k="182" /> +<hkern u1="»" u2="“" k="182" /> +<hkern u1="»" u2="‚" k="139" /> +<hkern u1="»" u2="’" k="182" /> +<hkern u1="»" u2="‘" k="182" /> +<hkern u1="»" u2="Ÿ" k="164" /> +<hkern u1="»" u2="Ý" k="164" /> +<hkern u1="»" u2="Æ" k="53" /> +<hkern u1="»" u2="Å" k="53" /> +<hkern u1="»" u2="Ä" k="53" /> +<hkern u1="»" u2="Ã" k="53" /> +<hkern u1="»" u2="Â" k="53" /> +<hkern u1="»" u2="Á" k="53" /> +<hkern u1="»" u2="À" k="53" /> +<hkern u1="»" u2="º" k="182" /> +<hkern u1="»" u2="°" k="182" /> +<hkern u1="»" u2="ª" k="182" /> +<hkern u1="»" u2="\" k="115" /> +<hkern u1="»" u2="Z" k="47" /> +<hkern u1="»" u2="Y" k="164" /> +<hkern u1="»" u2="X" k="63" /> +<hkern u1="»" u2="W" k="33" /> +<hkern u1="»" u2="V" k="115" /> +<hkern u1="»" u2="T" k="184" /> +<hkern u1="»" u2="A" k="53" /> +<hkern u1="»" u2="/" k="53" /> +<hkern u1="»" u2="." k="139" /> +<hkern u1="»" u2="," k="139" /> +<hkern u1="»" u2="*" k="182" /> +<hkern u1="»" u2="'" k="182" /> +<hkern u1="»" u2="&" k="53" /> +<hkern u1="»" u2=""" k="182" /> +<hkern u1="À" u2="™" k="186" /> +<hkern u1="À" u2="›" k="53" /> +<hkern u1="À" u2="‹" k="53" /> +<hkern u1="À" u2="•" k="53" /> +<hkern u1="À" u2="”" k="186" /> +<hkern u1="À" u2="“" k="186" /> +<hkern u1="À" u2="’" k="186" /> +<hkern u1="À" u2="‘" k="186" /> +<hkern u1="À" u2="—" k="53" /> +<hkern u1="À" u2="–" k="53" /> +<hkern u1="À" u2="Ÿ" k="168" /> +<hkern u1="À" u2="Œ" k="43" /> +<hkern u1="À" u2="Ý" k="168" /> +<hkern u1="À" u2="Ü" k="57" /> +<hkern u1="À" u2="Û" k="57" /> +<hkern u1="À" u2="Ú" k="57" /> +<hkern u1="À" u2="Ù" k="57" /> +<hkern u1="À" u2="Ø" k="43" /> +<hkern u1="À" u2="Ö" k="43" /> +<hkern u1="À" u2="Õ" k="43" /> +<hkern u1="À" u2="Ô" k="43" /> +<hkern u1="À" u2="Ó" k="43" /> +<hkern u1="À" u2="Ò" k="43" /> +<hkern u1="À" u2="Ç" k="43" /> +<hkern u1="À" u2="»" k="53" /> +<hkern u1="À" u2="º" k="186" /> +<hkern u1="À" u2="¹" k="188" /> +<hkern u1="À" u2="·" k="53" /> +<hkern u1="À" u2="³" k="188" /> +<hkern u1="À" u2="²" k="188" /> +<hkern u1="À" u2="°" k="186" /> +<hkern u1="À" u2="­" k="53" /> +<hkern u1="À" u2="«" k="53" /> +<hkern u1="À" u2="ª" k="186" /> +<hkern u1="À" u2="y" k="84" /> +<hkern u1="À" u2="v" k="84" /> +<hkern u1="À" u2="\" k="139" /> +<hkern u1="À" u2="Y" k="168" /> +<hkern u1="À" u2="W" k="86" /> +<hkern u1="À" u2="V" k="139" /> +<hkern u1="À" u2="U" k="57" /> +<hkern u1="À" u2="T" k="135" /> +<hkern u1="À" u2="Q" k="43" /> +<hkern u1="À" u2="O" k="43" /> +<hkern u1="À" u2="J" k="-51" /> +<hkern u1="À" u2="G" k="43" /> +<hkern u1="À" u2="C" k="43" /> +<hkern u1="À" u2="@" k="43" /> +<hkern u1="À" u2="?" k="57" /> +<hkern u1="À" u2="-" k="53" /> +<hkern u1="À" u2="*" k="186" /> +<hkern u1="À" u2="'" k="186" /> +<hkern u1="À" u2=""" k="186" /> +<hkern u1="Á" u2="™" k="186" /> +<hkern u1="Á" u2="›" k="53" /> +<hkern u1="Á" u2="‹" k="53" /> +<hkern u1="Á" u2="•" k="53" /> +<hkern u1="Á" u2="”" k="186" /> +<hkern u1="Á" u2="“" k="186" /> +<hkern u1="Á" u2="’" k="186" /> +<hkern u1="Á" u2="‘" k="186" /> +<hkern u1="Á" u2="—" k="53" /> +<hkern u1="Á" u2="–" k="53" /> +<hkern u1="Á" u2="Ÿ" k="168" /> +<hkern u1="Á" u2="Œ" k="43" /> +<hkern u1="Á" u2="Ý" k="168" /> +<hkern u1="Á" u2="Ü" k="57" /> +<hkern u1="Á" u2="Û" k="57" /> +<hkern u1="Á" u2="Ú" k="57" /> +<hkern u1="Á" u2="Ù" k="57" /> +<hkern u1="Á" u2="Ø" k="43" /> +<hkern u1="Á" u2="Ö" k="43" /> +<hkern u1="Á" u2="Õ" k="43" /> +<hkern u1="Á" u2="Ô" k="43" /> +<hkern u1="Á" u2="Ó" k="43" /> +<hkern u1="Á" u2="Ò" k="43" /> +<hkern u1="Á" u2="Ç" k="43" /> +<hkern u1="Á" u2="»" k="53" /> +<hkern u1="Á" u2="º" k="186" /> +<hkern u1="Á" u2="¹" k="188" /> +<hkern u1="Á" u2="·" k="53" /> +<hkern u1="Á" u2="³" k="188" /> +<hkern u1="Á" u2="²" k="188" /> +<hkern u1="Á" u2="°" k="186" /> +<hkern u1="Á" u2="­" k="53" /> +<hkern u1="Á" u2="«" k="53" /> +<hkern u1="Á" u2="ª" k="186" /> +<hkern u1="Á" u2="y" k="84" /> +<hkern u1="Á" u2="v" k="84" /> +<hkern u1="Á" u2="\" k="139" /> +<hkern u1="Á" u2="Y" k="168" /> +<hkern u1="Á" u2="W" k="86" /> +<hkern u1="Á" u2="V" k="139" /> +<hkern u1="Á" u2="U" k="57" /> +<hkern u1="Á" u2="T" k="135" /> +<hkern u1="Á" u2="Q" k="43" /> +<hkern u1="Á" u2="O" k="43" /> +<hkern u1="Á" u2="J" k="-51" /> +<hkern u1="Á" u2="G" k="43" /> +<hkern u1="Á" u2="C" k="43" /> +<hkern u1="Á" u2="@" k="43" /> +<hkern u1="Á" u2="?" k="57" /> +<hkern u1="Á" u2="-" k="53" /> +<hkern u1="Á" u2="*" k="186" /> +<hkern u1="Á" u2="'" k="186" /> +<hkern u1="Á" u2=""" k="186" /> +<hkern u1="Â" u2="™" k="186" /> +<hkern u1="Â" u2="›" k="53" /> +<hkern u1="Â" u2="‹" k="53" /> +<hkern u1="Â" u2="•" k="53" /> +<hkern u1="Â" u2="”" k="186" /> +<hkern u1="Â" u2="“" k="186" /> +<hkern u1="Â" u2="’" k="186" /> +<hkern u1="Â" u2="‘" k="186" /> +<hkern u1="Â" u2="—" k="53" /> +<hkern u1="Â" u2="–" k="53" /> +<hkern u1="Â" u2="Ÿ" k="168" /> +<hkern u1="Â" u2="Œ" k="43" /> +<hkern u1="Â" u2="Ý" k="168" /> +<hkern u1="Â" u2="Ü" k="57" /> +<hkern u1="Â" u2="Û" k="57" /> +<hkern u1="Â" u2="Ú" k="57" /> +<hkern u1="Â" u2="Ù" k="57" /> +<hkern u1="Â" u2="Ø" k="43" /> +<hkern u1="Â" u2="Ö" k="43" /> +<hkern u1="Â" u2="Õ" k="43" /> +<hkern u1="Â" u2="Ô" k="43" /> +<hkern u1="Â" u2="Ó" k="43" /> +<hkern u1="Â" u2="Ò" k="43" /> +<hkern u1="Â" u2="Ç" k="43" /> +<hkern u1="Â" u2="»" k="53" /> +<hkern u1="Â" u2="º" k="186" /> +<hkern u1="Â" u2="¹" k="188" /> +<hkern u1="Â" u2="·" k="53" /> +<hkern u1="Â" u2="³" k="188" /> +<hkern u1="Â" u2="²" k="188" /> +<hkern u1="Â" u2="°" k="186" /> +<hkern u1="Â" u2="­" k="53" /> +<hkern u1="Â" u2="«" k="53" /> +<hkern u1="Â" u2="ª" k="186" /> +<hkern u1="Â" u2="y" k="84" /> +<hkern u1="Â" u2="v" k="84" /> +<hkern u1="Â" u2="\" k="139" /> +<hkern u1="Â" u2="Y" k="168" /> +<hkern u1="Â" u2="W" k="86" /> +<hkern u1="Â" u2="V" k="139" /> +<hkern u1="Â" u2="U" k="57" /> +<hkern u1="Â" u2="T" k="135" /> +<hkern u1="Â" u2="Q" k="43" /> +<hkern u1="Â" u2="O" k="43" /> +<hkern u1="Â" u2="J" k="-51" /> +<hkern u1="Â" u2="G" k="43" /> +<hkern u1="Â" u2="C" k="43" /> +<hkern u1="Â" u2="@" k="43" /> +<hkern u1="Â" u2="?" k="57" /> +<hkern u1="Â" u2="-" k="53" /> +<hkern u1="Â" u2="*" k="186" /> +<hkern u1="Â" u2="'" k="186" /> +<hkern u1="Â" u2=""" k="186" /> +<hkern u1="Ã" u2="™" k="186" /> +<hkern u1="Ã" u2="›" k="53" /> +<hkern u1="Ã" u2="‹" k="53" /> +<hkern u1="Ã" u2="•" k="53" /> +<hkern u1="Ã" u2="”" k="186" /> +<hkern u1="Ã" u2="“" k="186" /> +<hkern u1="Ã" u2="’" k="186" /> +<hkern u1="Ã" u2="‘" k="186" /> +<hkern u1="Ã" u2="—" k="53" /> +<hkern u1="Ã" u2="–" k="53" /> +<hkern u1="Ã" u2="Ÿ" k="168" /> +<hkern u1="Ã" u2="Œ" k="43" /> +<hkern u1="Ã" u2="Ý" k="168" /> +<hkern u1="Ã" u2="Ü" k="57" /> +<hkern u1="Ã" u2="Û" k="57" /> +<hkern u1="Ã" u2="Ú" k="57" /> +<hkern u1="Ã" u2="Ù" k="57" /> +<hkern u1="Ã" u2="Ø" k="43" /> +<hkern u1="Ã" u2="Ö" k="43" /> +<hkern u1="Ã" u2="Õ" k="43" /> +<hkern u1="Ã" u2="Ô" k="43" /> +<hkern u1="Ã" u2="Ó" k="43" /> +<hkern u1="Ã" u2="Ò" k="43" /> +<hkern u1="Ã" u2="Ç" k="43" /> +<hkern u1="Ã" u2="»" k="53" /> +<hkern u1="Ã" u2="º" k="186" /> +<hkern u1="Ã" u2="¹" k="188" /> +<hkern u1="Ã" u2="·" k="53" /> +<hkern u1="Ã" u2="³" k="188" /> +<hkern u1="Ã" u2="²" k="188" /> +<hkern u1="Ã" u2="°" k="186" /> +<hkern u1="Ã" u2="­" k="53" /> +<hkern u1="Ã" u2="«" k="53" /> +<hkern u1="Ã" u2="ª" k="186" /> +<hkern u1="Ã" u2="y" k="84" /> +<hkern u1="Ã" u2="v" k="84" /> +<hkern u1="Ã" u2="\" k="139" /> +<hkern u1="Ã" u2="Y" k="168" /> +<hkern u1="Ã" u2="W" k="86" /> +<hkern u1="Ã" u2="V" k="139" /> +<hkern u1="Ã" u2="U" k="57" /> +<hkern u1="Ã" u2="T" k="135" /> +<hkern u1="Ã" u2="Q" k="43" /> +<hkern u1="Ã" u2="O" k="43" /> +<hkern u1="Ã" u2="J" k="-51" /> +<hkern u1="Ã" u2="G" k="43" /> +<hkern u1="Ã" u2="C" k="43" /> +<hkern u1="Ã" u2="@" k="43" /> +<hkern u1="Ã" u2="?" k="57" /> +<hkern u1="Ã" u2="-" k="53" /> +<hkern u1="Ã" u2="*" k="186" /> +<hkern u1="Ã" u2="'" k="186" /> +<hkern u1="Ã" u2=""" k="186" /> +<hkern u1="Ä" u2="™" k="186" /> +<hkern u1="Ä" u2="›" k="53" /> +<hkern u1="Ä" u2="‹" k="53" /> +<hkern u1="Ä" u2="•" k="53" /> +<hkern u1="Ä" u2="”" k="186" /> +<hkern u1="Ä" u2="“" k="186" /> +<hkern u1="Ä" u2="’" k="186" /> +<hkern u1="Ä" u2="‘" k="186" /> +<hkern u1="Ä" u2="—" k="53" /> +<hkern u1="Ä" u2="–" k="53" /> +<hkern u1="Ä" u2="Ÿ" k="168" /> +<hkern u1="Ä" u2="Œ" k="43" /> +<hkern u1="Ä" u2="Ý" k="168" /> +<hkern u1="Ä" u2="Ü" k="57" /> +<hkern u1="Ä" u2="Û" k="57" /> +<hkern u1="Ä" u2="Ú" k="57" /> +<hkern u1="Ä" u2="Ù" k="57" /> +<hkern u1="Ä" u2="Ø" k="43" /> +<hkern u1="Ä" u2="Ö" k="43" /> +<hkern u1="Ä" u2="Õ" k="43" /> +<hkern u1="Ä" u2="Ô" k="43" /> +<hkern u1="Ä" u2="Ó" k="43" /> +<hkern u1="Ä" u2="Ò" k="43" /> +<hkern u1="Ä" u2="Ç" k="43" /> +<hkern u1="Ä" u2="»" k="53" /> +<hkern u1="Ä" u2="º" k="186" /> +<hkern u1="Ä" u2="¹" k="188" /> +<hkern u1="Ä" u2="·" k="53" /> +<hkern u1="Ä" u2="³" k="188" /> +<hkern u1="Ä" u2="²" k="188" /> +<hkern u1="Ä" u2="°" k="186" /> +<hkern u1="Ä" u2="­" k="53" /> +<hkern u1="Ä" u2="«" k="53" /> +<hkern u1="Ä" u2="ª" k="186" /> +<hkern u1="Ä" u2="y" k="84" /> +<hkern u1="Ä" u2="v" k="84" /> +<hkern u1="Ä" u2="\" k="139" /> +<hkern u1="Ä" u2="Y" k="168" /> +<hkern u1="Ä" u2="W" k="86" /> +<hkern u1="Ä" u2="V" k="139" /> +<hkern u1="Ä" u2="U" k="57" /> +<hkern u1="Ä" u2="T" k="135" /> +<hkern u1="Ä" u2="Q" k="43" /> +<hkern u1="Ä" u2="O" k="43" /> +<hkern u1="Ä" u2="J" k="-51" /> +<hkern u1="Ä" u2="G" k="43" /> +<hkern u1="Ä" u2="C" k="43" /> +<hkern u1="Ä" u2="@" k="43" /> +<hkern u1="Ä" u2="?" k="57" /> +<hkern u1="Ä" u2="-" k="53" /> +<hkern u1="Ä" u2="*" k="186" /> +<hkern u1="Ä" u2="'" k="186" /> +<hkern u1="Ä" u2=""" k="186" /> +<hkern u1="Å" u2="™" k="186" /> +<hkern u1="Å" u2="›" k="53" /> +<hkern u1="Å" u2="‹" k="53" /> +<hkern u1="Å" u2="•" k="53" /> +<hkern u1="Å" u2="”" k="186" /> +<hkern u1="Å" u2="“" k="186" /> +<hkern u1="Å" u2="’" k="186" /> +<hkern u1="Å" u2="‘" k="186" /> +<hkern u1="Å" u2="—" k="53" /> +<hkern u1="Å" u2="–" k="53" /> +<hkern u1="Å" u2="Ÿ" k="168" /> +<hkern u1="Å" u2="Œ" k="43" /> +<hkern u1="Å" u2="Ý" k="168" /> +<hkern u1="Å" u2="Ü" k="57" /> +<hkern u1="Å" u2="Û" k="57" /> +<hkern u1="Å" u2="Ú" k="57" /> +<hkern u1="Å" u2="Ù" k="57" /> +<hkern u1="Å" u2="Ø" k="43" /> +<hkern u1="Å" u2="Ö" k="43" /> +<hkern u1="Å" u2="Õ" k="43" /> +<hkern u1="Å" u2="Ô" k="43" /> +<hkern u1="Å" u2="Ó" k="43" /> +<hkern u1="Å" u2="Ò" k="43" /> +<hkern u1="Å" u2="Ç" k="43" /> +<hkern u1="Å" u2="»" k="53" /> +<hkern u1="Å" u2="º" k="186" /> +<hkern u1="Å" u2="¹" k="188" /> +<hkern u1="Å" u2="·" k="53" /> +<hkern u1="Å" u2="³" k="188" /> +<hkern u1="Å" u2="²" k="188" /> +<hkern u1="Å" u2="°" k="186" /> +<hkern u1="Å" u2="­" k="53" /> +<hkern u1="Å" u2="«" k="53" /> +<hkern u1="Å" u2="ª" k="186" /> +<hkern u1="Å" u2="y" k="84" /> +<hkern u1="Å" u2="v" k="84" /> +<hkern u1="Å" u2="\" k="139" /> +<hkern u1="Å" u2="Y" k="168" /> +<hkern u1="Å" u2="W" k="86" /> +<hkern u1="Å" u2="V" k="139" /> +<hkern u1="Å" u2="U" k="57" /> +<hkern u1="Å" u2="T" k="135" /> +<hkern u1="Å" u2="Q" k="43" /> +<hkern u1="Å" u2="O" k="43" /> +<hkern u1="Å" u2="J" k="-51" /> +<hkern u1="Å" u2="G" k="43" /> +<hkern u1="Å" u2="C" k="43" /> +<hkern u1="Å" u2="@" k="43" /> +<hkern u1="Å" u2="?" k="57" /> +<hkern u1="Å" u2="-" k="53" /> +<hkern u1="Å" u2="*" k="186" /> +<hkern u1="Å" u2="'" k="186" /> +<hkern u1="Å" u2=""" k="186" /> +<hkern u1="Ç" u2="›" k="154" /> +<hkern u1="Ç" u2="‹" k="154" /> +<hkern u1="Ç" u2="•" k="154" /> +<hkern u1="Ç" u2="—" k="154" /> +<hkern u1="Ç" u2="–" k="154" /> +<hkern u1="Ç" u2="»" k="154" /> +<hkern u1="Ç" u2="·" k="154" /> +<hkern u1="Ç" u2="­" k="154" /> +<hkern u1="Ç" u2="«" k="154" /> +<hkern u1="Ç" u2="-" k="154" /> +<hkern u1="Ð" u2="™" k="47" /> +<hkern u1="Ð" u2="„" k="57" /> +<hkern u1="Ð" u2="”" k="47" /> +<hkern u1="Ð" u2="“" k="47" /> +<hkern u1="Ð" u2="‚" k="57" /> +<hkern u1="Ð" u2="’" k="47" /> +<hkern u1="Ð" u2="‘" k="47" /> +<hkern u1="Ð" u2="Ÿ" k="82" /> +<hkern u1="Ð" u2="Ý" k="82" /> +<hkern u1="Ð" u2="Æ" k="43" /> +<hkern u1="Ð" u2="Å" k="43" /> +<hkern u1="Ð" u2="Ä" k="43" /> +<hkern u1="Ð" u2="Ã" k="43" /> +<hkern u1="Ð" u2="Â" k="43" /> +<hkern u1="Ð" u2="Á" k="43" /> +<hkern u1="Ð" u2="À" k="43" /> +<hkern u1="Ð" u2="º" k="47" /> +<hkern u1="Ð" u2="°" k="47" /> +<hkern u1="Ð" u2="ª" k="47" /> +<hkern u1="Ð" u2="}" k="41" /> +<hkern u1="Ð" u2="]" k="41" /> +<hkern u1="Ð" u2="\" k="53" /> +<hkern u1="Ð" u2="Z" k="72" /> +<hkern u1="Ð" u2="Y" k="82" /> +<hkern u1="Ð" u2="X" k="31" /> +<hkern u1="Ð" u2="V" k="53" /> +<hkern u1="Ð" u2="T" k="100" /> +<hkern u1="Ð" u2="A" k="43" /> +<hkern u1="Ð" u2="/" k="43" /> +<hkern u1="Ð" u2="." k="57" /> +<hkern u1="Ð" u2="," k="57" /> +<hkern u1="Ð" u2="*" k="47" /> +<hkern u1="Ð" u2=")" k="41" /> +<hkern u1="Ð" u2="'" k="47" /> +<hkern u1="Ð" u2="&" k="43" /> +<hkern u1="Ð" u2=""" k="47" /> +<hkern u1="Ò" u2="™" k="47" /> +<hkern u1="Ò" u2="„" k="57" /> +<hkern u1="Ò" u2="”" k="47" /> +<hkern u1="Ò" u2="“" k="47" /> +<hkern u1="Ò" u2="‚" k="57" /> +<hkern u1="Ò" u2="’" k="47" /> +<hkern u1="Ò" u2="‘" k="47" /> +<hkern u1="Ò" u2="Ÿ" k="82" /> +<hkern u1="Ò" u2="Ý" k="82" /> +<hkern u1="Ò" u2="Æ" k="43" /> +<hkern u1="Ò" u2="Å" k="43" /> +<hkern u1="Ò" u2="Ä" k="43" /> +<hkern u1="Ò" u2="Ã" k="43" /> +<hkern u1="Ò" u2="Â" k="43" /> +<hkern u1="Ò" u2="Á" k="43" /> +<hkern u1="Ò" u2="À" k="43" /> +<hkern u1="Ò" u2="º" k="47" /> +<hkern u1="Ò" u2="°" k="47" /> +<hkern u1="Ò" u2="ª" k="47" /> +<hkern u1="Ò" u2="}" k="41" /> +<hkern u1="Ò" u2="]" k="41" /> +<hkern u1="Ò" u2="\" k="53" /> +<hkern u1="Ò" u2="Z" k="72" /> +<hkern u1="Ò" u2="Y" k="82" /> +<hkern u1="Ò" u2="X" k="31" /> +<hkern u1="Ò" u2="V" k="53" /> +<hkern u1="Ò" u2="T" k="100" /> +<hkern u1="Ò" u2="A" k="43" /> +<hkern u1="Ò" u2="/" k="43" /> +<hkern u1="Ò" u2="." k="57" /> +<hkern u1="Ò" u2="," k="57" /> +<hkern u1="Ò" u2="*" k="47" /> +<hkern u1="Ò" u2=")" k="41" /> +<hkern u1="Ò" u2="'" k="47" /> +<hkern u1="Ò" u2="&" k="43" /> +<hkern u1="Ò" u2=""" k="47" /> +<hkern u1="Ó" u2="™" k="47" /> +<hkern u1="Ó" u2="„" k="57" /> +<hkern u1="Ó" u2="”" k="47" /> +<hkern u1="Ó" u2="“" k="47" /> +<hkern u1="Ó" u2="‚" k="57" /> +<hkern u1="Ó" u2="’" k="47" /> +<hkern u1="Ó" u2="‘" k="47" /> +<hkern u1="Ó" u2="Ÿ" k="82" /> +<hkern u1="Ó" u2="Ý" k="82" /> +<hkern u1="Ó" u2="Æ" k="43" /> +<hkern u1="Ó" u2="Å" k="43" /> +<hkern u1="Ó" u2="Ä" k="43" /> +<hkern u1="Ó" u2="Ã" k="43" /> +<hkern u1="Ó" u2="Â" k="43" /> +<hkern u1="Ó" u2="Á" k="43" /> +<hkern u1="Ó" u2="À" k="43" /> +<hkern u1="Ó" u2="º" k="47" /> +<hkern u1="Ó" u2="°" k="47" /> +<hkern u1="Ó" u2="ª" k="47" /> +<hkern u1="Ó" u2="}" k="41" /> +<hkern u1="Ó" u2="]" k="41" /> +<hkern u1="Ó" u2="\" k="53" /> +<hkern u1="Ó" u2="Z" k="72" /> +<hkern u1="Ó" u2="Y" k="82" /> +<hkern u1="Ó" u2="X" k="31" /> +<hkern u1="Ó" u2="V" k="53" /> +<hkern u1="Ó" u2="T" k="100" /> +<hkern u1="Ó" u2="A" k="43" /> +<hkern u1="Ó" u2="/" k="43" /> +<hkern u1="Ó" u2="." k="57" /> +<hkern u1="Ó" u2="," k="57" /> +<hkern u1="Ó" u2="*" k="47" /> +<hkern u1="Ó" u2=")" k="41" /> +<hkern u1="Ó" u2="'" k="47" /> +<hkern u1="Ó" u2="&" k="43" /> +<hkern u1="Ó" u2=""" k="47" /> +<hkern u1="Ô" u2="™" k="47" /> +<hkern u1="Ô" u2="„" k="57" /> +<hkern u1="Ô" u2="”" k="47" /> +<hkern u1="Ô" u2="“" k="47" /> +<hkern u1="Ô" u2="‚" k="57" /> +<hkern u1="Ô" u2="’" k="47" /> +<hkern u1="Ô" u2="‘" k="47" /> +<hkern u1="Ô" u2="Ÿ" k="82" /> +<hkern u1="Ô" u2="Ý" k="82" /> +<hkern u1="Ô" u2="Æ" k="43" /> +<hkern u1="Ô" u2="Å" k="43" /> +<hkern u1="Ô" u2="Ä" k="43" /> +<hkern u1="Ô" u2="Ã" k="43" /> +<hkern u1="Ô" u2="Â" k="43" /> +<hkern u1="Ô" u2="Á" k="43" /> +<hkern u1="Ô" u2="À" k="43" /> +<hkern u1="Ô" u2="º" k="47" /> +<hkern u1="Ô" u2="°" k="47" /> +<hkern u1="Ô" u2="ª" k="47" /> +<hkern u1="Ô" u2="}" k="41" /> +<hkern u1="Ô" u2="]" k="41" /> +<hkern u1="Ô" u2="\" k="53" /> +<hkern u1="Ô" u2="Z" k="72" /> +<hkern u1="Ô" u2="Y" k="82" /> +<hkern u1="Ô" u2="X" k="31" /> +<hkern u1="Ô" u2="V" k="53" /> +<hkern u1="Ô" u2="T" k="100" /> +<hkern u1="Ô" u2="A" k="43" /> +<hkern u1="Ô" u2="/" k="43" /> +<hkern u1="Ô" u2="." k="57" /> +<hkern u1="Ô" u2="," k="57" /> +<hkern u1="Ô" u2="*" k="47" /> +<hkern u1="Ô" u2=")" k="41" /> +<hkern u1="Ô" u2="'" k="47" /> +<hkern u1="Ô" u2="&" k="43" /> +<hkern u1="Ô" u2=""" k="47" /> +<hkern u1="Õ" u2="™" k="47" /> +<hkern u1="Õ" u2="„" k="57" /> +<hkern u1="Õ" u2="”" k="47" /> +<hkern u1="Õ" u2="“" k="47" /> +<hkern u1="Õ" u2="‚" k="57" /> +<hkern u1="Õ" u2="’" k="47" /> +<hkern u1="Õ" u2="‘" k="47" /> +<hkern u1="Õ" u2="Ÿ" k="82" /> +<hkern u1="Õ" u2="Ý" k="82" /> +<hkern u1="Õ" u2="Æ" k="43" /> +<hkern u1="Õ" u2="Å" k="43" /> +<hkern u1="Õ" u2="Ä" k="43" /> +<hkern u1="Õ" u2="Ã" k="43" /> +<hkern u1="Õ" u2="Â" k="43" /> +<hkern u1="Õ" u2="Á" k="43" /> +<hkern u1="Õ" u2="À" k="43" /> +<hkern u1="Õ" u2="º" k="47" /> +<hkern u1="Õ" u2="°" k="47" /> +<hkern u1="Õ" u2="ª" k="47" /> +<hkern u1="Õ" u2="}" k="41" /> +<hkern u1="Õ" u2="]" k="41" /> +<hkern u1="Õ" u2="\" k="53" /> +<hkern u1="Õ" u2="Z" k="72" /> +<hkern u1="Õ" u2="Y" k="82" /> +<hkern u1="Õ" u2="X" k="31" /> +<hkern u1="Õ" u2="V" k="53" /> +<hkern u1="Õ" u2="T" k="100" /> +<hkern u1="Õ" u2="A" k="43" /> +<hkern u1="Õ" u2="/" k="43" /> +<hkern u1="Õ" u2="." k="57" /> +<hkern u1="Õ" u2="," k="57" /> +<hkern u1="Õ" u2="*" k="47" /> +<hkern u1="Õ" u2=")" k="41" /> +<hkern u1="Õ" u2="'" k="47" /> +<hkern u1="Õ" u2="&" k="43" /> +<hkern u1="Õ" u2=""" k="47" /> +<hkern u1="Ö" u2="™" k="47" /> +<hkern u1="Ö" u2="„" k="57" /> +<hkern u1="Ö" u2="”" k="47" /> +<hkern u1="Ö" u2="“" k="47" /> +<hkern u1="Ö" u2="‚" k="57" /> +<hkern u1="Ö" u2="’" k="47" /> +<hkern u1="Ö" u2="‘" k="47" /> +<hkern u1="Ö" u2="Ÿ" k="82" /> +<hkern u1="Ö" u2="Ý" k="82" /> +<hkern u1="Ö" u2="Æ" k="43" /> +<hkern u1="Ö" u2="Å" k="43" /> +<hkern u1="Ö" u2="Ä" k="43" /> +<hkern u1="Ö" u2="Ã" k="43" /> +<hkern u1="Ö" u2="Â" k="43" /> +<hkern u1="Ö" u2="Á" k="43" /> +<hkern u1="Ö" u2="À" k="43" /> +<hkern u1="Ö" u2="º" k="47" /> +<hkern u1="Ö" u2="°" k="47" /> +<hkern u1="Ö" u2="ª" k="47" /> +<hkern u1="Ö" u2="}" k="41" /> +<hkern u1="Ö" u2="]" k="41" /> +<hkern u1="Ö" u2="\" k="53" /> +<hkern u1="Ö" u2="Z" k="72" /> +<hkern u1="Ö" u2="Y" k="82" /> +<hkern u1="Ö" u2="X" k="31" /> +<hkern u1="Ö" u2="V" k="53" /> +<hkern u1="Ö" u2="T" k="100" /> +<hkern u1="Ö" u2="A" k="43" /> +<hkern u1="Ö" u2="/" k="43" /> +<hkern u1="Ö" u2="." k="57" /> +<hkern u1="Ö" u2="," k="57" /> +<hkern u1="Ö" u2="*" k="47" /> +<hkern u1="Ö" u2=")" k="41" /> +<hkern u1="Ö" u2="'" k="47" /> +<hkern u1="Ö" u2="&" k="43" /> +<hkern u1="Ö" u2=""" k="47" /> +<hkern u1="Ù" u2="„" k="51" /> +<hkern u1="Ù" u2="‚" k="51" /> +<hkern u1="Ù" u2="Æ" k="57" /> +<hkern u1="Ù" u2="Å" k="57" /> +<hkern u1="Ù" u2="Ä" k="57" /> +<hkern u1="Ù" u2="Ã" k="57" /> +<hkern u1="Ù" u2="Â" k="57" /> +<hkern u1="Ù" u2="Á" k="57" /> +<hkern u1="Ù" u2="À" k="57" /> +<hkern u1="Ù" u2="A" k="57" /> +<hkern u1="Ù" u2="/" k="57" /> +<hkern u1="Ù" u2="." k="51" /> +<hkern u1="Ù" u2="," k="51" /> +<hkern u1="Ù" u2="&" k="57" /> +<hkern u1="Ú" u2="„" k="51" /> +<hkern u1="Ú" u2="‚" k="51" /> +<hkern u1="Ú" u2="Æ" k="57" /> +<hkern u1="Ú" u2="Å" k="57" /> +<hkern u1="Ú" u2="Ä" k="57" /> +<hkern u1="Ú" u2="Ã" k="57" /> +<hkern u1="Ú" u2="Â" k="57" /> +<hkern u1="Ú" u2="Á" k="57" /> +<hkern u1="Ú" u2="À" k="57" /> +<hkern u1="Ú" u2="A" k="57" /> +<hkern u1="Ú" u2="/" k="57" /> +<hkern u1="Ú" u2="." k="51" /> +<hkern u1="Ú" u2="," k="51" /> +<hkern u1="Ú" u2="&" k="57" /> +<hkern u1="Û" u2="„" k="51" /> +<hkern u1="Û" u2="‚" k="51" /> +<hkern u1="Û" u2="Æ" k="57" /> +<hkern u1="Û" u2="Å" k="57" /> +<hkern u1="Û" u2="Ä" k="57" /> +<hkern u1="Û" u2="Ã" k="57" /> +<hkern u1="Û" u2="Â" k="57" /> +<hkern u1="Û" u2="Á" k="57" /> +<hkern u1="Û" u2="À" k="57" /> +<hkern u1="Û" u2="A" k="57" /> +<hkern u1="Û" u2="/" k="57" /> +<hkern u1="Û" u2="." k="51" /> +<hkern u1="Û" u2="," k="51" /> +<hkern u1="Û" u2="&" k="57" /> +<hkern u1="Ü" u2="„" k="51" /> +<hkern u1="Ü" u2="‚" k="51" /> +<hkern u1="Ü" u2="Æ" k="57" /> +<hkern u1="Ü" u2="Å" k="57" /> +<hkern u1="Ü" u2="Ä" k="57" /> +<hkern u1="Ü" u2="Ã" k="57" /> +<hkern u1="Ü" u2="Â" k="57" /> +<hkern u1="Ü" u2="Á" k="57" /> +<hkern u1="Ü" u2="À" k="57" /> +<hkern u1="Ü" u2="A" k="57" /> +<hkern u1="Ü" u2="/" k="57" /> +<hkern u1="Ü" u2="." k="51" /> +<hkern u1="Ü" u2="," k="51" /> +<hkern u1="Ü" u2="&" k="57" /> +<hkern u1="Ý" u2="™" k="-31" /> +<hkern u1="Ý" u2="›" k="164" /> +<hkern u1="Ý" u2="‹" k="164" /> +<hkern u1="Ý" u2="•" k="164" /> +<hkern u1="Ý" u2="„" k="156" /> +<hkern u1="Ý" u2="”" k="-31" /> +<hkern u1="Ý" u2="“" k="-31" /> +<hkern u1="Ý" u2="‚" k="156" /> +<hkern u1="Ý" u2="’" k="-31" /> +<hkern u1="Ý" u2="‘" k="-31" /> +<hkern u1="Ý" u2="—" k="164" /> +<hkern u1="Ý" u2="–" k="164" /> +<hkern u1="Ý" u2="œ" k="164" /> +<hkern u1="Ý" u2="Œ" k="82" /> +<hkern u1="Ý" u2="ü" k="125" /> +<hkern u1="Ý" u2="û" k="125" /> +<hkern u1="Ý" u2="ú" k="125" /> +<hkern u1="Ý" u2="ù" k="125" /> +<hkern u1="Ý" u2="ø" k="164" /> +<hkern u1="Ý" u2="ö" k="164" /> +<hkern u1="Ý" u2="õ" k="164" /> +<hkern u1="Ý" u2="ô" k="164" /> +<hkern u1="Ý" u2="ó" k="164" /> +<hkern u1="Ý" u2="ò" k="164" /> +<hkern u1="Ý" u2="ñ" k="125" /> +<hkern u1="Ý" u2="ð" k="164" /> +<hkern u1="Ý" u2="ë" k="164" /> +<hkern u1="Ý" u2="ê" k="164" /> +<hkern u1="Ý" u2="é" k="164" /> +<hkern u1="Ý" u2="è" k="164" /> +<hkern u1="Ý" u2="ç" k="164" /> +<hkern u1="Ý" u2="æ" k="131" /> +<hkern u1="Ý" u2="å" k="131" /> +<hkern u1="Ý" u2="ä" k="131" /> +<hkern u1="Ý" u2="ã" k="131" /> +<hkern u1="Ý" u2="â" k="131" /> +<hkern u1="Ý" u2="á" k="131" /> +<hkern u1="Ý" u2="à" k="131" /> +<hkern u1="Ý" u2="Ø" k="82" /> +<hkern u1="Ý" u2="Ö" k="82" /> +<hkern u1="Ý" u2="Õ" k="82" /> +<hkern u1="Ý" u2="Ô" k="82" /> +<hkern u1="Ý" u2="Ó" k="82" /> +<hkern u1="Ý" u2="Ò" k="82" /> +<hkern u1="Ý" u2="Ç" k="82" /> +<hkern u1="Ý" u2="Æ" k="168" /> +<hkern u1="Ý" u2="Å" k="168" /> +<hkern u1="Ý" u2="Ä" k="168" /> +<hkern u1="Ý" u2="Ã" k="168" /> +<hkern u1="Ý" u2="Â" k="168" /> +<hkern u1="Ý" u2="Á" k="168" /> +<hkern u1="Ý" u2="À" k="168" /> +<hkern u1="Ý" u2="»" k="164" /> +<hkern u1="Ý" u2="º" k="-31" /> +<hkern u1="Ý" u2="¹" k="-51" /> +<hkern u1="Ý" u2="·" k="164" /> +<hkern u1="Ý" u2="µ" k="125" /> +<hkern u1="Ý" u2="³" k="-51" /> +<hkern u1="Ý" u2="²" k="-51" /> +<hkern u1="Ý" u2="°" k="-31" /> +<hkern u1="Ý" u2="­" k="164" /> +<hkern u1="Ý" u2="«" k="164" /> +<hkern u1="Ý" u2="ª" k="-31" /> +<hkern u1="Ý" u2="y" k="102" /> +<hkern u1="Ý" u2="x" k="135" /> +<hkern u1="Ý" u2="w" k="94" /> +<hkern u1="Ý" u2="v" k="102" /> +<hkern u1="Ý" u2="u" k="125" /> +<hkern u1="Ý" u2="s" k="131" /> +<hkern u1="Ý" u2="r" k="125" /> +<hkern u1="Ý" u2="q" k="164" /> +<hkern u1="Ý" u2="p" k="125" /> +<hkern u1="Ý" u2="o" k="164" /> +<hkern u1="Ý" u2="n" k="125" /> +<hkern u1="Ý" u2="m" k="125" /> +<hkern u1="Ý" u2="g" k="176" /> +<hkern u1="Ý" u2="e" k="164" /> +<hkern u1="Ý" u2="d" k="164" /> +<hkern u1="Ý" u2="c" k="164" /> +<hkern u1="Ý" u2="a" k="131" /> +<hkern u1="Ý" u2="Q" k="82" /> +<hkern u1="Ý" u2="O" k="82" /> +<hkern u1="Ý" u2="J" k="205" /> +<hkern u1="Ý" u2="G" k="82" /> +<hkern u1="Ý" u2="C" k="82" /> +<hkern u1="Ý" u2="A" k="168" /> +<hkern u1="Ý" u2="@" k="82" /> +<hkern u1="Ý" u2="?" k="-35" /> +<hkern u1="Ý" u2=";" k="125" /> +<hkern u1="Ý" u2=":" k="125" /> +<hkern u1="Ý" u2="/" k="168" /> +<hkern u1="Ý" u2="." k="156" /> +<hkern u1="Ý" u2="-" k="164" /> +<hkern u1="Ý" u2="," k="156" /> +<hkern u1="Ý" u2="*" k="-31" /> +<hkern u1="Ý" u2="'" k="-31" /> +<hkern u1="Ý" u2="&" k="168" /> +<hkern u1="Ý" u2=""" k="-31" /> +<hkern u1="Þ" u2="™" k="47" /> +<hkern u1="Þ" u2="„" k="57" /> +<hkern u1="Þ" u2="”" k="47" /> +<hkern u1="Þ" u2="“" k="47" /> +<hkern u1="Þ" u2="‚" k="57" /> +<hkern u1="Þ" u2="’" k="47" /> +<hkern u1="Þ" u2="‘" k="47" /> +<hkern u1="Þ" u2="Ÿ" k="82" /> +<hkern u1="Þ" u2="Ý" k="82" /> +<hkern u1="Þ" u2="Æ" k="43" /> +<hkern u1="Þ" u2="Å" k="43" /> +<hkern u1="Þ" u2="Ä" k="43" /> +<hkern u1="Þ" u2="Ã" k="43" /> +<hkern u1="Þ" u2="Â" k="43" /> +<hkern u1="Þ" u2="Á" k="43" /> +<hkern u1="Þ" u2="À" k="43" /> +<hkern u1="Þ" u2="º" k="47" /> +<hkern u1="Þ" u2="°" k="47" /> +<hkern u1="Þ" u2="ª" k="47" /> +<hkern u1="Þ" u2="}" k="41" /> +<hkern u1="Þ" u2="]" k="41" /> +<hkern u1="Þ" u2="\" k="53" /> +<hkern u1="Þ" u2="Z" k="72" /> +<hkern u1="Þ" u2="Y" k="82" /> +<hkern u1="Þ" u2="X" k="31" /> +<hkern u1="Þ" u2="V" k="53" /> +<hkern u1="Þ" u2="T" k="100" /> +<hkern u1="Þ" u2="A" k="43" /> +<hkern u1="Þ" u2="/" k="43" /> +<hkern u1="Þ" u2="." k="57" /> +<hkern u1="Þ" u2="," k="57" /> +<hkern u1="Þ" u2="*" k="47" /> +<hkern u1="Þ" u2=")" k="41" /> +<hkern u1="Þ" u2="'" k="47" /> +<hkern u1="Þ" u2="&" k="43" /> +<hkern u1="Þ" u2=""" k="47" /> +<hkern u1="à" u2="™" k="74" /> +<hkern u1="à" u2="”" k="74" /> +<hkern u1="à" u2="“" k="74" /> +<hkern u1="à" u2="’" k="74" /> +<hkern u1="à" u2="‘" k="74" /> +<hkern u1="à" u2="º" k="74" /> +<hkern u1="à" u2="¹" k="74" /> +<hkern u1="à" u2="³" k="74" /> +<hkern u1="à" u2="²" k="74" /> +<hkern u1="à" u2="°" k="74" /> +<hkern u1="à" u2="ª" k="74" /> +<hkern u1="à" u2="y" k="33" /> +<hkern u1="à" u2="w" k="16" /> +<hkern u1="à" u2="v" k="33" /> +<hkern u1="à" u2="*" k="74" /> +<hkern u1="à" u2="'" k="74" /> +<hkern u1="à" u2=""" k="74" /> +<hkern u1="á" u2="™" k="74" /> +<hkern u1="á" u2="”" k="74" /> +<hkern u1="á" u2="“" k="74" /> +<hkern u1="á" u2="’" k="74" /> +<hkern u1="á" u2="‘" k="74" /> +<hkern u1="á" u2="º" k="74" /> +<hkern u1="á" u2="¹" k="74" /> +<hkern u1="á" u2="³" k="74" /> +<hkern u1="á" u2="²" k="74" /> +<hkern u1="á" u2="°" k="74" /> +<hkern u1="á" u2="ª" k="74" /> +<hkern u1="á" u2="y" k="33" /> +<hkern u1="á" u2="w" k="16" /> +<hkern u1="á" u2="v" k="33" /> +<hkern u1="á" u2="*" k="74" /> +<hkern u1="á" u2="'" k="74" /> +<hkern u1="á" u2=""" k="74" /> +<hkern u1="â" u2="™" k="74" /> +<hkern u1="â" u2="”" k="74" /> +<hkern u1="â" u2="“" k="74" /> +<hkern u1="â" u2="’" k="74" /> +<hkern u1="â" u2="‘" k="74" /> +<hkern u1="â" u2="º" k="74" /> +<hkern u1="â" u2="¹" k="74" /> +<hkern u1="â" u2="³" k="74" /> +<hkern u1="â" u2="²" k="74" /> +<hkern u1="â" u2="°" k="74" /> +<hkern u1="â" u2="ª" k="74" /> +<hkern u1="â" u2="y" k="33" /> +<hkern u1="â" u2="w" k="16" /> +<hkern u1="â" u2="v" k="33" /> +<hkern u1="â" u2="*" k="74" /> +<hkern u1="â" u2="'" k="74" /> +<hkern u1="â" u2=""" k="74" /> +<hkern u1="ã" u2="™" k="74" /> +<hkern u1="ã" u2="”" k="74" /> +<hkern u1="ã" u2="“" k="74" /> +<hkern u1="ã" u2="’" k="74" /> +<hkern u1="ã" u2="‘" k="74" /> +<hkern u1="ã" u2="º" k="74" /> +<hkern u1="ã" u2="¹" k="74" /> +<hkern u1="ã" u2="³" k="74" /> +<hkern u1="ã" u2="²" k="74" /> +<hkern u1="ã" u2="°" k="74" /> +<hkern u1="ã" u2="ª" k="74" /> +<hkern u1="ã" u2="y" k="33" /> +<hkern u1="ã" u2="w" k="16" /> +<hkern u1="ã" u2="v" k="33" /> +<hkern u1="ã" u2="*" k="74" /> +<hkern u1="ã" u2="'" k="74" /> +<hkern u1="ã" u2=""" k="74" /> +<hkern u1="ä" u2="™" k="74" /> +<hkern u1="ä" u2="”" k="74" /> +<hkern u1="ä" u2="“" k="74" /> +<hkern u1="ä" u2="’" k="74" /> +<hkern u1="ä" u2="‘" k="74" /> +<hkern u1="ä" u2="º" k="74" /> +<hkern u1="ä" u2="¹" k="74" /> +<hkern u1="ä" u2="³" k="74" /> +<hkern u1="ä" u2="²" k="74" /> +<hkern u1="ä" u2="°" k="74" /> +<hkern u1="ä" u2="ª" k="74" /> +<hkern u1="ä" u2="y" k="33" /> +<hkern u1="ä" u2="w" k="16" /> +<hkern u1="ä" u2="v" k="33" /> +<hkern u1="ä" u2="*" k="74" /> +<hkern u1="ä" u2="'" k="74" /> +<hkern u1="ä" u2=""" k="74" /> +<hkern u1="å" u2="™" k="74" /> +<hkern u1="å" u2="”" k="74" /> +<hkern u1="å" u2="“" k="74" /> +<hkern u1="å" u2="’" k="74" /> +<hkern u1="å" u2="‘" k="74" /> +<hkern u1="å" u2="º" k="74" /> +<hkern u1="å" u2="¹" k="74" /> +<hkern u1="å" u2="³" k="74" /> +<hkern u1="å" u2="²" k="74" /> +<hkern u1="å" u2="°" k="74" /> +<hkern u1="å" u2="ª" k="74" /> +<hkern u1="å" u2="y" k="33" /> +<hkern u1="å" u2="w" k="16" /> +<hkern u1="å" u2="v" k="33" /> +<hkern u1="å" u2="*" k="74" /> +<hkern u1="å" u2="'" k="74" /> +<hkern u1="å" u2=""" k="74" /> +<hkern u1="æ" u2="™" k="94" /> +<hkern u1="æ" u2="”" k="94" /> +<hkern u1="æ" u2="“" k="94" /> +<hkern u1="æ" u2="’" k="94" /> +<hkern u1="æ" u2="‘" k="94" /> +<hkern u1="æ" u2="º" k="94" /> +<hkern u1="æ" u2="°" k="94" /> +<hkern u1="æ" u2="ª" k="94" /> +<hkern u1="æ" u2="}" k="33" /> +<hkern u1="æ" u2="y" k="27" /> +<hkern u1="æ" u2="x" k="61" /> +<hkern u1="æ" u2="v" k="27" /> +<hkern u1="æ" u2="]" k="33" /> +<hkern u1="æ" u2="\" k="119" /> +<hkern u1="æ" u2="W" k="33" /> +<hkern u1="æ" u2="V" k="119" /> +<hkern u1="æ" u2="*" k="94" /> +<hkern u1="æ" u2=")" k="33" /> +<hkern u1="æ" u2="'" k="94" /> +<hkern u1="æ" u2=""" k="94" /> +<hkern u1="è" u2="™" k="94" /> +<hkern u1="è" u2="”" k="94" /> +<hkern u1="è" u2="“" k="94" /> +<hkern u1="è" u2="’" k="94" /> +<hkern u1="è" u2="‘" k="94" /> +<hkern u1="è" u2="º" k="94" /> +<hkern u1="è" u2="°" k="94" /> +<hkern u1="è" u2="ª" k="94" /> +<hkern u1="è" u2="}" k="33" /> +<hkern u1="è" u2="y" k="27" /> +<hkern u1="è" u2="x" k="61" /> +<hkern u1="è" u2="v" k="27" /> +<hkern u1="è" u2="]" k="33" /> +<hkern u1="è" u2="\" k="119" /> +<hkern u1="è" u2="W" k="33" /> +<hkern u1="è" u2="V" k="119" /> +<hkern u1="è" u2="*" k="94" /> +<hkern u1="è" u2=")" k="33" /> +<hkern u1="è" u2="'" k="94" /> +<hkern u1="è" u2=""" k="94" /> +<hkern u1="é" u2="™" k="94" /> +<hkern u1="é" u2="”" k="94" /> +<hkern u1="é" u2="“" k="94" /> +<hkern u1="é" u2="’" k="94" /> +<hkern u1="é" u2="‘" k="94" /> +<hkern u1="é" u2="º" k="94" /> +<hkern u1="é" u2="°" k="94" /> +<hkern u1="é" u2="ª" k="94" /> +<hkern u1="é" u2="}" k="33" /> +<hkern u1="é" u2="y" k="27" /> +<hkern u1="é" u2="x" k="61" /> +<hkern u1="é" u2="v" k="27" /> +<hkern u1="é" u2="]" k="33" /> +<hkern u1="é" u2="\" k="119" /> +<hkern u1="é" u2="W" k="33" /> +<hkern u1="é" u2="V" k="119" /> +<hkern u1="é" u2="*" k="94" /> +<hkern u1="é" u2=")" k="33" /> +<hkern u1="é" u2="'" k="94" /> +<hkern u1="é" u2=""" k="94" /> +<hkern u1="ê" u2="™" k="94" /> +<hkern u1="ê" u2="”" k="94" /> +<hkern u1="ê" u2="“" k="94" /> +<hkern u1="ê" u2="’" k="94" /> +<hkern u1="ê" u2="‘" k="94" /> +<hkern u1="ê" u2="º" k="94" /> +<hkern u1="ê" u2="°" k="94" /> +<hkern u1="ê" u2="ª" k="94" /> +<hkern u1="ê" u2="}" k="33" /> +<hkern u1="ê" u2="y" k="27" /> +<hkern u1="ê" u2="x" k="61" /> +<hkern u1="ê" u2="v" k="27" /> +<hkern u1="ê" u2="]" k="33" /> +<hkern u1="ê" u2="\" k="119" /> +<hkern u1="ê" u2="W" k="33" /> +<hkern u1="ê" u2="V" k="119" /> +<hkern u1="ê" u2="*" k="94" /> +<hkern u1="ê" u2=")" k="33" /> +<hkern u1="ê" u2="'" k="94" /> +<hkern u1="ê" u2=""" k="94" /> +<hkern u1="ë" u2="™" k="94" /> +<hkern u1="ë" u2="”" k="94" /> +<hkern u1="ë" u2="“" k="94" /> +<hkern u1="ë" u2="’" k="94" /> +<hkern u1="ë" u2="‘" k="94" /> +<hkern u1="ë" u2="º" k="94" /> +<hkern u1="ë" u2="°" k="94" /> +<hkern u1="ë" u2="ª" k="94" /> +<hkern u1="ë" u2="}" k="33" /> +<hkern u1="ë" u2="y" k="27" /> +<hkern u1="ë" u2="x" k="61" /> +<hkern u1="ë" u2="v" k="27" /> +<hkern u1="ë" u2="]" k="33" /> +<hkern u1="ë" u2="\" k="119" /> +<hkern u1="ë" u2="W" k="33" /> +<hkern u1="ë" u2="V" k="119" /> +<hkern u1="ë" u2="*" k="94" /> +<hkern u1="ë" u2=")" k="33" /> +<hkern u1="ë" u2="'" k="94" /> +<hkern u1="ë" u2=""" k="94" /> +<hkern u1="ñ" u2="™" k="74" /> +<hkern u1="ñ" u2="”" k="74" /> +<hkern u1="ñ" u2="“" k="74" /> +<hkern u1="ñ" u2="’" k="74" /> +<hkern u1="ñ" u2="‘" k="74" /> +<hkern u1="ñ" u2="º" k="74" /> +<hkern u1="ñ" u2="¹" k="74" /> +<hkern u1="ñ" u2="³" k="74" /> +<hkern u1="ñ" u2="²" k="74" /> +<hkern u1="ñ" u2="°" k="74" /> +<hkern u1="ñ" u2="ª" k="74" /> +<hkern u1="ñ" u2="y" k="33" /> +<hkern u1="ñ" u2="w" k="16" /> +<hkern u1="ñ" u2="v" k="33" /> +<hkern u1="ñ" u2="*" k="74" /> +<hkern u1="ñ" u2="'" k="74" /> +<hkern u1="ñ" u2=""" k="74" /> +<hkern u1="ò" u2="™" k="94" /> +<hkern u1="ò" u2="”" k="94" /> +<hkern u1="ò" u2="“" k="94" /> +<hkern u1="ò" u2="’" k="94" /> +<hkern u1="ò" u2="‘" k="94" /> +<hkern u1="ò" u2="º" k="94" /> +<hkern u1="ò" u2="°" k="94" /> +<hkern u1="ò" u2="ª" k="94" /> +<hkern u1="ò" u2="}" k="33" /> +<hkern u1="ò" u2="y" k="27" /> +<hkern u1="ò" u2="x" k="61" /> +<hkern u1="ò" u2="v" k="27" /> +<hkern u1="ò" u2="]" k="33" /> +<hkern u1="ò" u2="\" k="119" /> +<hkern u1="ò" u2="W" k="33" /> +<hkern u1="ò" u2="V" k="119" /> +<hkern u1="ò" u2="*" k="94" /> +<hkern u1="ò" u2=")" k="33" /> +<hkern u1="ò" u2="'" k="94" /> +<hkern u1="ò" u2=""" k="94" /> +<hkern u1="ó" u2="™" k="94" /> +<hkern u1="ó" u2="”" k="94" /> +<hkern u1="ó" u2="“" k="94" /> +<hkern u1="ó" u2="’" k="94" /> +<hkern u1="ó" u2="‘" k="94" /> +<hkern u1="ó" u2="º" k="94" /> +<hkern u1="ó" u2="°" k="94" /> +<hkern u1="ó" u2="ª" k="94" /> +<hkern u1="ó" u2="}" k="33" /> +<hkern u1="ó" u2="y" k="27" /> +<hkern u1="ó" u2="x" k="61" /> +<hkern u1="ó" u2="v" k="27" /> +<hkern u1="ó" u2="]" k="33" /> +<hkern u1="ó" u2="\" k="119" /> +<hkern u1="ó" u2="W" k="33" /> +<hkern u1="ó" u2="V" k="119" /> +<hkern u1="ó" u2="*" k="94" /> +<hkern u1="ó" u2=")" k="33" /> +<hkern u1="ó" u2="'" k="94" /> +<hkern u1="ó" u2=""" k="94" /> +<hkern u1="ô" u2="™" k="94" /> +<hkern u1="ô" u2="”" k="94" /> +<hkern u1="ô" u2="“" k="94" /> +<hkern u1="ô" u2="’" k="94" /> +<hkern u1="ô" u2="‘" k="94" /> +<hkern u1="ô" u2="º" k="94" /> +<hkern u1="ô" u2="°" k="94" /> +<hkern u1="ô" u2="ª" k="94" /> +<hkern u1="ô" u2="}" k="33" /> +<hkern u1="ô" u2="y" k="27" /> +<hkern u1="ô" u2="x" k="61" /> +<hkern u1="ô" u2="v" k="27" /> +<hkern u1="ô" u2="]" k="33" /> +<hkern u1="ô" u2="\" k="119" /> +<hkern u1="ô" u2="W" k="33" /> +<hkern u1="ô" u2="V" k="119" /> +<hkern u1="ô" u2="*" k="94" /> +<hkern u1="ô" u2=")" k="33" /> +<hkern u1="ô" u2="'" k="94" /> +<hkern u1="ô" u2=""" k="94" /> +<hkern u1="õ" u2="™" k="94" /> +<hkern u1="õ" u2="”" k="94" /> +<hkern u1="õ" u2="“" k="94" /> +<hkern u1="õ" u2="’" k="94" /> +<hkern u1="õ" u2="‘" k="94" /> +<hkern u1="õ" u2="º" k="94" /> +<hkern u1="õ" u2="°" k="94" /> +<hkern u1="õ" u2="ª" k="94" /> +<hkern u1="õ" u2="}" k="33" /> +<hkern u1="õ" u2="y" k="27" /> +<hkern u1="õ" u2="x" k="61" /> +<hkern u1="õ" u2="v" k="27" /> +<hkern u1="õ" u2="]" k="33" /> +<hkern u1="õ" u2="\" k="119" /> +<hkern u1="õ" u2="W" k="33" /> +<hkern u1="õ" u2="V" k="119" /> +<hkern u1="õ" u2="*" k="94" /> +<hkern u1="õ" u2=")" k="33" /> +<hkern u1="õ" u2="'" k="94" /> +<hkern u1="õ" u2=""" k="94" /> +<hkern u1="ö" u2="™" k="94" /> +<hkern u1="ö" u2="”" k="94" /> +<hkern u1="ö" u2="“" k="94" /> +<hkern u1="ö" u2="’" k="94" /> +<hkern u1="ö" u2="‘" k="94" /> +<hkern u1="ö" u2="º" k="94" /> +<hkern u1="ö" u2="°" k="94" /> +<hkern u1="ö" u2="ª" k="94" /> +<hkern u1="ö" u2="}" k="33" /> +<hkern u1="ö" u2="y" k="27" /> +<hkern u1="ö" u2="x" k="61" /> +<hkern u1="ö" u2="v" k="27" /> +<hkern u1="ö" u2="]" k="33" /> +<hkern u1="ö" u2="\" k="119" /> +<hkern u1="ö" u2="W" k="33" /> +<hkern u1="ö" u2="V" k="119" /> +<hkern u1="ö" u2="*" k="94" /> +<hkern u1="ö" u2=")" k="33" /> +<hkern u1="ö" u2="'" k="94" /> +<hkern u1="ö" u2=""" k="94" /> +<hkern u1="ø" u2="™" k="94" /> +<hkern u1="ø" u2="”" k="94" /> +<hkern u1="ø" u2="“" k="94" /> +<hkern u1="ø" u2="’" k="94" /> +<hkern u1="ø" u2="‘" k="94" /> +<hkern u1="ø" u2="º" k="94" /> +<hkern u1="ø" u2="°" k="94" /> +<hkern u1="ø" u2="ª" k="94" /> +<hkern u1="ø" u2="}" k="33" /> +<hkern u1="ø" u2="y" k="27" /> +<hkern u1="ø" u2="x" k="61" /> +<hkern u1="ø" u2="v" k="27" /> +<hkern u1="ø" u2="]" k="33" /> +<hkern u1="ø" u2="\" k="119" /> +<hkern u1="ø" u2="W" k="33" /> +<hkern u1="ø" u2="V" k="119" /> +<hkern u1="ø" u2="*" k="94" /> +<hkern u1="ø" u2=")" k="33" /> +<hkern u1="ø" u2="'" k="94" /> +<hkern u1="ø" u2=""" k="94" /> +<hkern u1="þ" u2="™" k="94" /> +<hkern u1="þ" u2="”" k="94" /> +<hkern u1="þ" u2="“" k="94" /> +<hkern u1="þ" u2="’" k="94" /> +<hkern u1="þ" u2="‘" k="94" /> +<hkern u1="þ" u2="º" k="94" /> +<hkern u1="þ" u2="°" k="94" /> +<hkern u1="þ" u2="ª" k="94" /> +<hkern u1="þ" u2="}" k="33" /> +<hkern u1="þ" u2="y" k="27" /> +<hkern u1="þ" u2="x" k="61" /> +<hkern u1="þ" u2="v" k="27" /> +<hkern u1="þ" u2="]" k="33" /> +<hkern u1="þ" u2="\" k="119" /> +<hkern u1="þ" u2="W" k="33" /> +<hkern u1="þ" u2="V" k="119" /> +<hkern u1="þ" u2="*" k="94" /> +<hkern u1="þ" u2=")" k="33" /> +<hkern u1="þ" u2="'" k="94" /> +<hkern u1="þ" u2=""" k="94" /> +<hkern u1="œ" u2="™" k="94" /> +<hkern u1="œ" u2="”" k="94" /> +<hkern u1="œ" u2="“" k="94" /> +<hkern u1="œ" u2="’" k="94" /> +<hkern u1="œ" u2="‘" k="94" /> +<hkern u1="œ" u2="º" k="94" /> +<hkern u1="œ" u2="°" k="94" /> +<hkern u1="œ" u2="ª" k="94" /> +<hkern u1="œ" u2="}" k="33" /> +<hkern u1="œ" u2="y" k="27" /> +<hkern u1="œ" u2="x" k="61" /> +<hkern u1="œ" u2="v" k="27" /> +<hkern u1="œ" u2="]" k="33" /> +<hkern u1="œ" u2="\" k="119" /> +<hkern u1="œ" u2="W" k="33" /> +<hkern u1="œ" u2="V" k="119" /> +<hkern u1="œ" u2="*" k="94" /> +<hkern u1="œ" u2=")" k="33" /> +<hkern u1="œ" u2="'" k="94" /> +<hkern u1="œ" u2=""" k="94" /> +<hkern u1="Ÿ" u2="™" k="-31" /> +<hkern u1="Ÿ" u2="›" k="164" /> +<hkern u1="Ÿ" u2="‹" k="164" /> +<hkern u1="Ÿ" u2="•" k="164" /> +<hkern u1="Ÿ" u2="„" k="156" /> +<hkern u1="Ÿ" u2="”" k="-31" /> +<hkern u1="Ÿ" u2="“" k="-31" /> +<hkern u1="Ÿ" u2="‚" k="156" /> +<hkern u1="Ÿ" u2="’" k="-31" /> +<hkern u1="Ÿ" u2="‘" k="-31" /> +<hkern u1="Ÿ" u2="—" k="164" /> +<hkern u1="Ÿ" u2="–" k="164" /> +<hkern u1="Ÿ" u2="œ" k="164" /> +<hkern u1="Ÿ" u2="Œ" k="82" /> +<hkern u1="Ÿ" u2="ü" k="125" /> +<hkern u1="Ÿ" u2="û" k="125" /> +<hkern u1="Ÿ" u2="ú" k="125" /> +<hkern u1="Ÿ" u2="ù" k="125" /> +<hkern u1="Ÿ" u2="ø" k="164" /> +<hkern u1="Ÿ" u2="ö" k="164" /> +<hkern u1="Ÿ" u2="õ" k="164" /> +<hkern u1="Ÿ" u2="ô" k="164" /> +<hkern u1="Ÿ" u2="ó" k="164" /> +<hkern u1="Ÿ" u2="ò" k="164" /> +<hkern u1="Ÿ" u2="ñ" k="125" /> +<hkern u1="Ÿ" u2="ð" k="164" /> +<hkern u1="Ÿ" u2="ë" k="164" /> +<hkern u1="Ÿ" u2="ê" k="164" /> +<hkern u1="Ÿ" u2="é" k="164" /> +<hkern u1="Ÿ" u2="è" k="164" /> +<hkern u1="Ÿ" u2="ç" k="164" /> +<hkern u1="Ÿ" u2="æ" k="131" /> +<hkern u1="Ÿ" u2="å" k="131" /> +<hkern u1="Ÿ" u2="ä" k="131" /> +<hkern u1="Ÿ" u2="ã" k="131" /> +<hkern u1="Ÿ" u2="â" k="131" /> +<hkern u1="Ÿ" u2="á" k="131" /> +<hkern u1="Ÿ" u2="à" k="131" /> +<hkern u1="Ÿ" u2="Ø" k="82" /> +<hkern u1="Ÿ" u2="Ö" k="82" /> +<hkern u1="Ÿ" u2="Õ" k="82" /> +<hkern u1="Ÿ" u2="Ô" k="82" /> +<hkern u1="Ÿ" u2="Ó" k="82" /> +<hkern u1="Ÿ" u2="Ò" k="82" /> +<hkern u1="Ÿ" u2="Ç" k="82" /> +<hkern u1="Ÿ" u2="Æ" k="168" /> +<hkern u1="Ÿ" u2="Å" k="168" /> +<hkern u1="Ÿ" u2="Ä" k="168" /> +<hkern u1="Ÿ" u2="Ã" k="168" /> +<hkern u1="Ÿ" u2="Â" k="168" /> +<hkern u1="Ÿ" u2="Á" k="168" /> +<hkern u1="Ÿ" u2="À" k="168" /> +<hkern u1="Ÿ" u2="»" k="164" /> +<hkern u1="Ÿ" u2="º" k="-31" /> +<hkern u1="Ÿ" u2="¹" k="-51" /> +<hkern u1="Ÿ" u2="·" k="164" /> +<hkern u1="Ÿ" u2="µ" k="125" /> +<hkern u1="Ÿ" u2="³" k="-51" /> +<hkern u1="Ÿ" u2="²" k="-51" /> +<hkern u1="Ÿ" u2="°" k="-31" /> +<hkern u1="Ÿ" u2="­" k="164" /> +<hkern u1="Ÿ" u2="«" k="164" /> +<hkern u1="Ÿ" u2="ª" k="-31" /> +<hkern u1="Ÿ" u2="y" k="102" /> +<hkern u1="Ÿ" u2="x" k="135" /> +<hkern u1="Ÿ" u2="w" k="94" /> +<hkern u1="Ÿ" u2="v" k="102" /> +<hkern u1="Ÿ" u2="u" k="125" /> +<hkern u1="Ÿ" u2="s" k="131" /> +<hkern u1="Ÿ" u2="r" k="125" /> +<hkern u1="Ÿ" u2="q" k="164" /> +<hkern u1="Ÿ" u2="p" k="125" /> +<hkern u1="Ÿ" u2="o" k="164" /> +<hkern u1="Ÿ" u2="n" k="125" /> +<hkern u1="Ÿ" u2="m" k="125" /> +<hkern u1="Ÿ" u2="g" k="176" /> +<hkern u1="Ÿ" u2="e" k="164" /> +<hkern u1="Ÿ" u2="d" k="164" /> +<hkern u1="Ÿ" u2="c" k="164" /> +<hkern u1="Ÿ" u2="a" k="131" /> +<hkern u1="Ÿ" u2="Q" k="82" /> +<hkern u1="Ÿ" u2="O" k="82" /> +<hkern u1="Ÿ" u2="J" k="205" /> +<hkern u1="Ÿ" u2="G" k="82" /> +<hkern u1="Ÿ" u2="C" k="82" /> +<hkern u1="Ÿ" u2="A" k="168" /> +<hkern u1="Ÿ" u2="@" k="82" /> +<hkern u1="Ÿ" u2="?" k="-35" /> +<hkern u1="Ÿ" u2=";" k="125" /> +<hkern u1="Ÿ" u2=":" k="125" /> +<hkern u1="Ÿ" u2="/" k="168" /> +<hkern u1="Ÿ" u2="." k="156" /> +<hkern u1="Ÿ" u2="-" k="164" /> +<hkern u1="Ÿ" u2="," k="156" /> +<hkern u1="Ÿ" u2="*" k="-31" /> +<hkern u1="Ÿ" u2="'" k="-31" /> +<hkern u1="Ÿ" u2="&" k="168" /> +<hkern u1="Ÿ" u2=""" k="-31" /> +<hkern u1="–" u2="™" k="182" /> +<hkern u1="–" u2="„" k="139" /> +<hkern u1="–" u2="”" k="182" /> +<hkern u1="–" u2="“" k="182" /> +<hkern u1="–" u2="‚" k="139" /> +<hkern u1="–" u2="’" k="182" /> +<hkern u1="–" u2="‘" k="182" /> +<hkern u1="–" u2="Ÿ" k="164" /> +<hkern u1="–" u2="Ý" k="164" /> +<hkern u1="–" u2="Æ" k="53" /> +<hkern u1="–" u2="Å" k="53" /> +<hkern u1="–" u2="Ä" k="53" /> +<hkern u1="–" u2="Ã" k="53" /> +<hkern u1="–" u2="Â" k="53" /> +<hkern u1="–" u2="Á" k="53" /> +<hkern u1="–" u2="À" k="53" /> +<hkern u1="–" u2="º" k="182" /> +<hkern u1="–" u2="°" k="182" /> +<hkern u1="–" u2="ª" k="182" /> +<hkern u1="–" u2="\" k="115" /> +<hkern u1="–" u2="Z" k="47" /> +<hkern u1="–" u2="Y" k="164" /> +<hkern u1="–" u2="X" k="63" /> +<hkern u1="–" u2="W" k="33" /> +<hkern u1="–" u2="V" k="115" /> +<hkern u1="–" u2="T" k="184" /> +<hkern u1="–" u2="A" k="53" /> +<hkern u1="–" u2="/" k="53" /> +<hkern u1="–" u2="." k="139" /> +<hkern u1="–" u2="," k="139" /> +<hkern u1="–" u2="*" k="182" /> +<hkern u1="–" u2="'" k="182" /> +<hkern u1="–" u2="&" k="53" /> +<hkern u1="–" u2=""" k="182" /> +<hkern u1="—" u2="™" k="182" /> +<hkern u1="—" u2="„" k="139" /> +<hkern u1="—" u2="”" k="182" /> +<hkern u1="—" u2="“" k="182" /> +<hkern u1="—" u2="‚" k="139" /> +<hkern u1="—" u2="’" k="182" /> +<hkern u1="—" u2="‘" k="182" /> +<hkern u1="—" u2="Ÿ" k="164" /> +<hkern u1="—" u2="Ý" k="164" /> +<hkern u1="—" u2="Æ" k="53" /> +<hkern u1="—" u2="Å" k="53" /> +<hkern u1="—" u2="Ä" k="53" /> +<hkern u1="—" u2="Ã" k="53" /> +<hkern u1="—" u2="Â" k="53" /> +<hkern u1="—" u2="Á" k="53" /> +<hkern u1="—" u2="À" k="53" /> +<hkern u1="—" u2="º" k="182" /> +<hkern u1="—" u2="°" k="182" /> +<hkern u1="—" u2="ª" k="182" /> +<hkern u1="—" u2="\" k="115" /> +<hkern u1="—" u2="Z" k="47" /> +<hkern u1="—" u2="Y" k="164" /> +<hkern u1="—" u2="X" k="63" /> +<hkern u1="—" u2="W" k="33" /> +<hkern u1="—" u2="V" k="115" /> +<hkern u1="—" u2="T" k="184" /> +<hkern u1="—" u2="A" k="53" /> +<hkern u1="—" u2="/" k="53" /> +<hkern u1="—" u2="." k="139" /> +<hkern u1="—" u2="," k="139" /> +<hkern u1="—" u2="*" k="182" /> +<hkern u1="—" u2="'" k="182" /> +<hkern u1="—" u2="&" k="53" /> +<hkern u1="—" u2=""" k="182" /> +<hkern u1="‘" u2="›" k="182" /> +<hkern u1="‘" u2="‹" k="182" /> +<hkern u1="‘" u2="•" k="182" /> +<hkern u1="‘" u2="„" k="233" /> +<hkern u1="‘" u2="‚" k="233" /> +<hkern u1="‘" u2="—" k="182" /> +<hkern u1="‘" u2="–" k="182" /> +<hkern u1="‘" u2="Ÿ" k="-31" /> +<hkern u1="‘" u2="œ" k="94" /> +<hkern u1="‘" u2="Œ" k="47" /> +<hkern u1="‘" u2="ø" k="94" /> +<hkern u1="‘" u2="ö" k="94" /> +<hkern u1="‘" u2="õ" k="94" /> +<hkern u1="‘" u2="ô" k="94" /> +<hkern u1="‘" u2="ó" k="94" /> +<hkern u1="‘" u2="ò" k="94" /> +<hkern u1="‘" u2="ð" k="94" /> +<hkern u1="‘" u2="ë" k="94" /> +<hkern u1="‘" u2="ê" k="94" /> +<hkern u1="‘" u2="é" k="94" /> +<hkern u1="‘" u2="è" k="94" /> +<hkern u1="‘" u2="ç" k="94" /> +<hkern u1="‘" u2="æ" k="66" /> +<hkern u1="‘" u2="å" k="66" /> +<hkern u1="‘" u2="ä" k="66" /> +<hkern u1="‘" u2="ã" k="66" /> +<hkern u1="‘" u2="â" k="66" /> +<hkern u1="‘" u2="á" k="66" /> +<hkern u1="‘" u2="à" k="66" /> +<hkern u1="‘" u2="Ý" k="-31" /> +<hkern u1="‘" u2="Ø" k="47" /> +<hkern u1="‘" u2="Ö" k="47" /> +<hkern u1="‘" u2="Õ" k="47" /> +<hkern u1="‘" u2="Ô" k="47" /> +<hkern u1="‘" u2="Ó" k="47" /> +<hkern u1="‘" u2="Ò" k="47" /> +<hkern u1="‘" u2="Ç" k="47" /> +<hkern u1="‘" u2="Æ" k="186" /> +<hkern u1="‘" u2="Å" k="186" /> +<hkern u1="‘" u2="Ä" k="186" /> +<hkern u1="‘" u2="Ã" k="186" /> +<hkern u1="‘" u2="Â" k="186" /> +<hkern u1="‘" u2="Á" k="186" /> +<hkern u1="‘" u2="À" k="186" /> +<hkern u1="‘" u2="»" k="182" /> +<hkern u1="‘" u2="·" k="182" /> +<hkern u1="‘" u2="­" k="182" /> +<hkern u1="‘" u2="«" k="182" /> +<hkern u1="‘" u2="q" k="94" /> +<hkern u1="‘" u2="o" k="94" /> +<hkern u1="‘" u2="e" k="94" /> +<hkern u1="‘" u2="d" k="94" /> +<hkern u1="‘" u2="c" k="94" /> +<hkern u1="‘" u2="a" k="66" /> +<hkern u1="‘" u2="\" k="-49" /> +<hkern u1="‘" u2="Y" k="-31" /> +<hkern u1="‘" u2="W" k="-49" /> +<hkern u1="‘" u2="V" k="-49" /> +<hkern u1="‘" u2="Q" k="47" /> +<hkern u1="‘" u2="O" k="47" /> +<hkern u1="‘" u2="G" k="47" /> +<hkern u1="‘" u2="C" k="47" /> +<hkern u1="‘" u2="A" k="186" /> +<hkern u1="‘" u2="@" k="47" /> +<hkern u1="‘" u2="/" k="186" /> +<hkern u1="‘" u2="." k="233" /> +<hkern u1="‘" u2="-" k="182" /> +<hkern u1="‘" u2="," k="233" /> +<hkern u1="‘" u2="&" k="186" /> +<hkern u1="’" u2="›" k="182" /> +<hkern u1="’" u2="‹" k="182" /> +<hkern u1="’" u2="•" k="182" /> +<hkern u1="’" u2="„" k="233" /> +<hkern u1="’" u2="‚" k="233" /> +<hkern u1="’" u2="—" k="182" /> +<hkern u1="’" u2="–" k="182" /> +<hkern u1="’" u2="Ÿ" k="-31" /> +<hkern u1="’" u2="œ" k="94" /> +<hkern u1="’" u2="Œ" k="47" /> +<hkern u1="’" u2="ø" k="94" /> +<hkern u1="’" u2="ö" k="94" /> +<hkern u1="’" u2="õ" k="94" /> +<hkern u1="’" u2="ô" k="94" /> +<hkern u1="’" u2="ó" k="94" /> +<hkern u1="’" u2="ò" k="94" /> +<hkern u1="’" u2="ð" k="94" /> +<hkern u1="’" u2="ë" k="94" /> +<hkern u1="’" u2="ê" k="94" /> +<hkern u1="’" u2="é" k="94" /> +<hkern u1="’" u2="è" k="94" /> +<hkern u1="’" u2="ç" k="94" /> +<hkern u1="’" u2="æ" k="66" /> +<hkern u1="’" u2="å" k="66" /> +<hkern u1="’" u2="ä" k="66" /> +<hkern u1="’" u2="ã" k="66" /> +<hkern u1="’" u2="â" k="66" /> +<hkern u1="’" u2="á" k="66" /> +<hkern u1="’" u2="à" k="66" /> +<hkern u1="’" u2="Ý" k="-31" /> +<hkern u1="’" u2="Ø" k="47" /> +<hkern u1="’" u2="Ö" k="47" /> +<hkern u1="’" u2="Õ" k="47" /> +<hkern u1="’" u2="Ô" k="47" /> +<hkern u1="’" u2="Ó" k="47" /> +<hkern u1="’" u2="Ò" k="47" /> +<hkern u1="’" u2="Ç" k="47" /> +<hkern u1="’" u2="Æ" k="186" /> +<hkern u1="’" u2="Å" k="186" /> +<hkern u1="’" u2="Ä" k="186" /> +<hkern u1="’" u2="Ã" k="186" /> +<hkern u1="’" u2="Â" k="186" /> +<hkern u1="’" u2="Á" k="186" /> +<hkern u1="’" u2="À" k="186" /> +<hkern u1="’" u2="»" k="182" /> +<hkern u1="’" u2="·" k="182" /> +<hkern u1="’" u2="­" k="182" /> +<hkern u1="’" u2="«" k="182" /> +<hkern u1="’" u2="q" k="94" /> +<hkern u1="’" u2="o" k="94" /> +<hkern u1="’" u2="e" k="94" /> +<hkern u1="’" u2="d" k="94" /> +<hkern u1="’" u2="c" k="94" /> +<hkern u1="’" u2="a" k="66" /> +<hkern u1="’" u2="\" k="-49" /> +<hkern u1="’" u2="Y" k="-31" /> +<hkern u1="’" u2="W" k="-49" /> +<hkern u1="’" u2="V" k="-49" /> +<hkern u1="’" u2="Q" k="47" /> +<hkern u1="’" u2="O" k="47" /> +<hkern u1="’" u2="G" k="47" /> +<hkern u1="’" u2="C" k="47" /> +<hkern u1="’" u2="A" k="186" /> +<hkern u1="’" u2="@" k="47" /> +<hkern u1="’" u2="/" k="186" /> +<hkern u1="’" u2="." k="233" /> +<hkern u1="’" u2="-" k="182" /> +<hkern u1="’" u2="," k="233" /> +<hkern u1="’" u2="&" k="186" /> +<hkern u1="‚" u2="™" k="233" /> +<hkern u1="‚" u2="›" k="139" /> +<hkern u1="‚" u2="‹" k="139" /> +<hkern u1="‚" u2="•" k="139" /> +<hkern u1="‚" u2="”" k="233" /> +<hkern u1="‚" u2="“" k="233" /> +<hkern u1="‚" u2="’" k="233" /> +<hkern u1="‚" u2="‘" k="233" /> +<hkern u1="‚" u2="—" k="139" /> +<hkern u1="‚" u2="–" k="139" /> +<hkern u1="‚" u2="Ÿ" k="156" /> +<hkern u1="‚" u2="Œ" k="57" /> +<hkern u1="‚" u2="Ý" k="156" /> +<hkern u1="‚" u2="Ø" k="57" /> +<hkern u1="‚" u2="Ö" k="57" /> +<hkern u1="‚" u2="Õ" k="57" /> +<hkern u1="‚" u2="Ô" k="57" /> +<hkern u1="‚" u2="Ó" k="57" /> +<hkern u1="‚" u2="Ò" k="57" /> +<hkern u1="‚" u2="Ç" k="57" /> +<hkern u1="‚" u2="»" k="139" /> +<hkern u1="‚" u2="º" k="233" /> +<hkern u1="‚" u2="·" k="139" /> +<hkern u1="‚" u2="°" k="233" /> +<hkern u1="‚" u2="­" k="139" /> +<hkern u1="‚" u2="«" k="139" /> +<hkern u1="‚" u2="ª" k="233" /> +<hkern u1="‚" u2="y" k="135" /> +<hkern u1="‚" u2="w" k="63" /> +<hkern u1="‚" u2="v" k="135" /> +<hkern u1="‚" u2="\" k="184" /> +<hkern u1="‚" u2="Y" k="156" /> +<hkern u1="‚" u2="W" k="125" /> +<hkern u1="‚" u2="V" k="184" /> +<hkern u1="‚" u2="T" k="184" /> +<hkern u1="‚" u2="Q" k="57" /> +<hkern u1="‚" u2="O" k="57" /> +<hkern u1="‚" u2="G" k="57" /> +<hkern u1="‚" u2="C" k="57" /> +<hkern u1="‚" u2="@" k="57" /> +<hkern u1="‚" u2="-" k="139" /> +<hkern u1="‚" u2="*" k="233" /> +<hkern u1="‚" u2="'" k="233" /> +<hkern u1="‚" u2=""" k="233" /> +<hkern u1="“" u2="›" k="182" /> +<hkern u1="“" u2="‹" k="182" /> +<hkern u1="“" u2="•" k="182" /> +<hkern u1="“" u2="„" k="233" /> +<hkern u1="“" u2="‚" k="233" /> +<hkern u1="“" u2="—" k="182" /> +<hkern u1="“" u2="–" k="182" /> +<hkern u1="“" u2="Ÿ" k="-31" /> +<hkern u1="“" u2="œ" k="94" /> +<hkern u1="“" u2="Œ" k="47" /> +<hkern u1="“" u2="ø" k="94" /> +<hkern u1="“" u2="ö" k="94" /> +<hkern u1="“" u2="õ" k="94" /> +<hkern u1="“" u2="ô" k="94" /> +<hkern u1="“" u2="ó" k="94" /> +<hkern u1="“" u2="ò" k="94" /> +<hkern u1="“" u2="ð" k="94" /> +<hkern u1="“" u2="ë" k="94" /> +<hkern u1="“" u2="ê" k="94" /> +<hkern u1="“" u2="é" k="94" /> +<hkern u1="“" u2="è" k="94" /> +<hkern u1="“" u2="ç" k="94" /> +<hkern u1="“" u2="æ" k="66" /> +<hkern u1="“" u2="å" k="66" /> +<hkern u1="“" u2="ä" k="66" /> +<hkern u1="“" u2="ã" k="66" /> +<hkern u1="“" u2="â" k="66" /> +<hkern u1="“" u2="á" k="66" /> +<hkern u1="“" u2="à" k="66" /> +<hkern u1="“" u2="Ý" k="-31" /> +<hkern u1="“" u2="Ø" k="47" /> +<hkern u1="“" u2="Ö" k="47" /> +<hkern u1="“" u2="Õ" k="47" /> +<hkern u1="“" u2="Ô" k="47" /> +<hkern u1="“" u2="Ó" k="47" /> +<hkern u1="“" u2="Ò" k="47" /> +<hkern u1="“" u2="Ç" k="47" /> +<hkern u1="“" u2="Æ" k="186" /> +<hkern u1="“" u2="Å" k="186" /> +<hkern u1="“" u2="Ä" k="186" /> +<hkern u1="“" u2="Ã" k="186" /> +<hkern u1="“" u2="Â" k="186" /> +<hkern u1="“" u2="Á" k="186" /> +<hkern u1="“" u2="À" k="186" /> +<hkern u1="“" u2="»" k="182" /> +<hkern u1="“" u2="·" k="182" /> +<hkern u1="“" u2="­" k="182" /> +<hkern u1="“" u2="«" k="182" /> +<hkern u1="“" u2="q" k="94" /> +<hkern u1="“" u2="o" k="94" /> +<hkern u1="“" u2="e" k="94" /> +<hkern u1="“" u2="d" k="94" /> +<hkern u1="“" u2="c" k="94" /> +<hkern u1="“" u2="a" k="66" /> +<hkern u1="“" u2="\" k="-49" /> +<hkern u1="“" u2="Y" k="-31" /> +<hkern u1="“" u2="W" k="-49" /> +<hkern u1="“" u2="V" k="-49" /> +<hkern u1="“" u2="Q" k="47" /> +<hkern u1="“" u2="O" k="47" /> +<hkern u1="“" u2="G" k="47" /> +<hkern u1="“" u2="C" k="47" /> +<hkern u1="“" u2="A" k="186" /> +<hkern u1="“" u2="@" k="47" /> +<hkern u1="“" u2="/" k="186" /> +<hkern u1="“" u2="." k="233" /> +<hkern u1="“" u2="-" k="182" /> +<hkern u1="“" u2="," k="233" /> +<hkern u1="“" u2="&" k="186" /> +<hkern u1="”" u2="›" k="182" /> +<hkern u1="”" u2="‹" k="182" /> +<hkern u1="”" u2="•" k="182" /> +<hkern u1="”" u2="„" k="233" /> +<hkern u1="”" u2="‚" k="233" /> +<hkern u1="”" u2="—" k="182" /> +<hkern u1="”" u2="–" k="182" /> +<hkern u1="”" u2="Ÿ" k="-31" /> +<hkern u1="”" u2="œ" k="94" /> +<hkern u1="”" u2="Œ" k="47" /> +<hkern u1="”" u2="ø" k="94" /> +<hkern u1="”" u2="ö" k="94" /> +<hkern u1="”" u2="õ" k="94" /> +<hkern u1="”" u2="ô" k="94" /> +<hkern u1="”" u2="ó" k="94" /> +<hkern u1="”" u2="ò" k="94" /> +<hkern u1="”" u2="ð" k="94" /> +<hkern u1="”" u2="ë" k="94" /> +<hkern u1="”" u2="ê" k="94" /> +<hkern u1="”" u2="é" k="94" /> +<hkern u1="”" u2="è" k="94" /> +<hkern u1="”" u2="ç" k="94" /> +<hkern u1="”" u2="æ" k="66" /> +<hkern u1="”" u2="å" k="66" /> +<hkern u1="”" u2="ä" k="66" /> +<hkern u1="”" u2="ã" k="66" /> +<hkern u1="”" u2="â" k="66" /> +<hkern u1="”" u2="á" k="66" /> +<hkern u1="”" u2="à" k="66" /> +<hkern u1="”" u2="Ý" k="-31" /> +<hkern u1="”" u2="Ø" k="47" /> +<hkern u1="”" u2="Ö" k="47" /> +<hkern u1="”" u2="Õ" k="47" /> +<hkern u1="”" u2="Ô" k="47" /> +<hkern u1="”" u2="Ó" k="47" /> +<hkern u1="”" u2="Ò" k="47" /> +<hkern u1="”" u2="Ç" k="47" /> +<hkern u1="”" u2="Æ" k="186" /> +<hkern u1="”" u2="Å" k="186" /> +<hkern u1="”" u2="Ä" k="186" /> +<hkern u1="”" u2="Ã" k="186" /> +<hkern u1="”" u2="Â" k="186" /> +<hkern u1="”" u2="Á" k="186" /> +<hkern u1="”" u2="À" k="186" /> +<hkern u1="”" u2="»" k="182" /> +<hkern u1="”" u2="·" k="182" /> +<hkern u1="”" u2="­" k="182" /> +<hkern u1="”" u2="«" k="182" /> +<hkern u1="”" u2="q" k="94" /> +<hkern u1="”" u2="o" k="94" /> +<hkern u1="”" u2="e" k="94" /> +<hkern u1="”" u2="d" k="94" /> +<hkern u1="”" u2="c" k="94" /> +<hkern u1="”" u2="a" k="66" /> +<hkern u1="”" u2="\" k="-49" /> +<hkern u1="”" u2="Y" k="-31" /> +<hkern u1="”" u2="W" k="-49" /> +<hkern u1="”" u2="V" k="-49" /> +<hkern u1="”" u2="Q" k="47" /> +<hkern u1="”" u2="O" k="47" /> +<hkern u1="”" u2="G" k="47" /> +<hkern u1="”" u2="C" k="47" /> +<hkern u1="”" u2="A" k="186" /> +<hkern u1="”" u2="@" k="47" /> +<hkern u1="”" u2="/" k="186" /> +<hkern u1="”" u2="." k="233" /> +<hkern u1="”" u2="-" k="182" /> +<hkern u1="”" u2="," k="233" /> +<hkern u1="”" u2="&" k="186" /> +<hkern u1="„" u2="™" k="233" /> +<hkern u1="„" u2="›" k="139" /> +<hkern u1="„" u2="‹" k="139" /> +<hkern u1="„" u2="•" k="139" /> +<hkern u1="„" u2="”" k="233" /> +<hkern u1="„" u2="“" k="233" /> +<hkern u1="„" u2="’" k="233" /> +<hkern u1="„" u2="‘" k="233" /> +<hkern u1="„" u2="—" k="139" /> +<hkern u1="„" u2="–" k="139" /> +<hkern u1="„" u2="Ÿ" k="156" /> +<hkern u1="„" u2="Œ" k="57" /> +<hkern u1="„" u2="Ý" k="156" /> +<hkern u1="„" u2="Ø" k="57" /> +<hkern u1="„" u2="Ö" k="57" /> +<hkern u1="„" u2="Õ" k="57" /> +<hkern u1="„" u2="Ô" k="57" /> +<hkern u1="„" u2="Ó" k="57" /> +<hkern u1="„" u2="Ò" k="57" /> +<hkern u1="„" u2="Ç" k="57" /> +<hkern u1="„" u2="»" k="139" /> +<hkern u1="„" u2="º" k="233" /> +<hkern u1="„" u2="·" k="139" /> +<hkern u1="„" u2="°" k="233" /> +<hkern u1="„" u2="­" k="139" /> +<hkern u1="„" u2="«" k="139" /> +<hkern u1="„" u2="ª" k="233" /> +<hkern u1="„" u2="y" k="135" /> +<hkern u1="„" u2="w" k="63" /> +<hkern u1="„" u2="v" k="135" /> +<hkern u1="„" u2="\" k="184" /> +<hkern u1="„" u2="Y" k="156" /> +<hkern u1="„" u2="W" k="125" /> +<hkern u1="„" u2="V" k="184" /> +<hkern u1="„" u2="T" k="184" /> +<hkern u1="„" u2="Q" k="57" /> +<hkern u1="„" u2="O" k="57" /> +<hkern u1="„" u2="G" k="57" /> +<hkern u1="„" u2="C" k="57" /> +<hkern u1="„" u2="@" k="57" /> +<hkern u1="„" u2="-" k="139" /> +<hkern u1="„" u2="*" k="233" /> +<hkern u1="„" u2="'" k="233" /> +<hkern u1="„" u2=""" k="233" /> +<hkern u1="•" u2="™" k="182" /> +<hkern u1="•" u2="„" k="139" /> +<hkern u1="•" u2="”" k="182" /> +<hkern u1="•" u2="“" k="182" /> +<hkern u1="•" u2="‚" k="139" /> +<hkern u1="•" u2="’" k="182" /> +<hkern u1="•" u2="‘" k="182" /> +<hkern u1="•" u2="Ÿ" k="164" /> +<hkern u1="•" u2="Ý" k="164" /> +<hkern u1="•" u2="Æ" k="53" /> +<hkern u1="•" u2="Å" k="53" /> +<hkern u1="•" u2="Ä" k="53" /> +<hkern u1="•" u2="Ã" k="53" /> +<hkern u1="•" u2="Â" k="53" /> +<hkern u1="•" u2="Á" k="53" /> +<hkern u1="•" u2="À" k="53" /> +<hkern u1="•" u2="º" k="182" /> +<hkern u1="•" u2="°" k="182" /> +<hkern u1="•" u2="ª" k="182" /> +<hkern u1="•" u2="\" k="115" /> +<hkern u1="•" u2="Z" k="47" /> +<hkern u1="•" u2="Y" k="164" /> +<hkern u1="•" u2="X" k="63" /> +<hkern u1="•" u2="W" k="33" /> +<hkern u1="•" u2="V" k="115" /> +<hkern u1="•" u2="T" k="184" /> +<hkern u1="•" u2="A" k="53" /> +<hkern u1="•" u2="/" k="53" /> +<hkern u1="•" u2="." k="139" /> +<hkern u1="•" u2="," k="139" /> +<hkern u1="•" u2="*" k="182" /> +<hkern u1="•" u2="'" k="182" /> +<hkern u1="•" u2="&" k="53" /> +<hkern u1="•" u2=""" k="182" /> +<hkern u1="‹" u2="™" k="182" /> +<hkern u1="‹" u2="„" k="139" /> +<hkern u1="‹" u2="”" k="182" /> +<hkern u1="‹" u2="“" k="182" /> +<hkern u1="‹" u2="‚" k="139" /> +<hkern u1="‹" u2="’" k="182" /> +<hkern u1="‹" u2="‘" k="182" /> +<hkern u1="‹" u2="Ÿ" k="164" /> +<hkern u1="‹" u2="Ý" k="164" /> +<hkern u1="‹" u2="Æ" k="53" /> +<hkern u1="‹" u2="Å" k="53" /> +<hkern u1="‹" u2="Ä" k="53" /> +<hkern u1="‹" u2="Ã" k="53" /> +<hkern u1="‹" u2="Â" k="53" /> +<hkern u1="‹" u2="Á" k="53" /> +<hkern u1="‹" u2="À" k="53" /> +<hkern u1="‹" u2="º" k="182" /> +<hkern u1="‹" u2="°" k="182" /> +<hkern u1="‹" u2="ª" k="182" /> +<hkern u1="‹" u2="\" k="115" /> +<hkern u1="‹" u2="Z" k="47" /> +<hkern u1="‹" u2="Y" k="164" /> +<hkern u1="‹" u2="X" k="63" /> +<hkern u1="‹" u2="W" k="33" /> +<hkern u1="‹" u2="V" k="115" /> +<hkern u1="‹" u2="T" k="184" /> +<hkern u1="‹" u2="A" k="53" /> +<hkern u1="‹" u2="/" k="53" /> +<hkern u1="‹" u2="." k="139" /> +<hkern u1="‹" u2="," k="139" /> +<hkern u1="‹" u2="*" k="182" /> +<hkern u1="‹" u2="'" k="182" /> +<hkern u1="‹" u2="&" k="53" /> +<hkern u1="‹" u2=""" k="182" /> +<hkern u1="›" u2="™" k="182" /> +<hkern u1="›" u2="„" k="139" /> +<hkern u1="›" u2="”" k="182" /> +<hkern u1="›" u2="“" k="182" /> +<hkern u1="›" u2="‚" k="139" /> +<hkern u1="›" u2="’" k="182" /> +<hkern u1="›" u2="‘" k="182" /> +<hkern u1="›" u2="Ÿ" k="164" /> +<hkern u1="›" u2="Ý" k="164" /> +<hkern u1="›" u2="Æ" k="53" /> +<hkern u1="›" u2="Å" k="53" /> +<hkern u1="›" u2="Ä" k="53" /> +<hkern u1="›" u2="Ã" k="53" /> +<hkern u1="›" u2="Â" k="53" /> +<hkern u1="›" u2="Á" k="53" /> +<hkern u1="›" u2="À" k="53" /> +<hkern u1="›" u2="º" k="182" /> +<hkern u1="›" u2="°" k="182" /> +<hkern u1="›" u2="ª" k="182" /> +<hkern u1="›" u2="\" k="115" /> +<hkern u1="›" u2="Z" k="47" /> +<hkern u1="›" u2="Y" k="164" /> +<hkern u1="›" u2="X" k="63" /> +<hkern u1="›" u2="W" k="33" /> +<hkern u1="›" u2="V" k="115" /> +<hkern u1="›" u2="T" k="184" /> +<hkern u1="›" u2="A" k="53" /> +<hkern u1="›" u2="/" k="53" /> +<hkern u1="›" u2="." k="139" /> +<hkern u1="›" u2="," k="139" /> +<hkern u1="›" u2="*" k="182" /> +<hkern u1="›" u2="'" k="182" /> +<hkern u1="›" u2="&" k="53" /> +<hkern u1="›" u2=""" k="182" /> +<hkern u1="™" u2="›" k="182" /> +<hkern u1="™" u2="‹" k="182" /> +<hkern u1="™" u2="•" k="182" /> +<hkern u1="™" u2="„" k="233" /> +<hkern u1="™" u2="‚" k="233" /> +<hkern u1="™" u2="—" k="182" /> +<hkern u1="™" u2="–" k="182" /> +<hkern u1="™" u2="Ÿ" k="-31" /> +<hkern u1="™" u2="œ" k="94" /> +<hkern u1="™" u2="Œ" k="47" /> +<hkern u1="™" u2="ø" k="94" /> +<hkern u1="™" u2="ö" k="94" /> +<hkern u1="™" u2="õ" k="94" /> +<hkern u1="™" u2="ô" k="94" /> +<hkern u1="™" u2="ó" k="94" /> +<hkern u1="™" u2="ò" k="94" /> +<hkern u1="™" u2="ð" k="94" /> +<hkern u1="™" u2="ë" k="94" /> +<hkern u1="™" u2="ê" k="94" /> +<hkern u1="™" u2="é" k="94" /> +<hkern u1="™" u2="è" k="94" /> +<hkern u1="™" u2="ç" k="94" /> +<hkern u1="™" u2="æ" k="66" /> +<hkern u1="™" u2="å" k="66" /> +<hkern u1="™" u2="ä" k="66" /> +<hkern u1="™" u2="ã" k="66" /> +<hkern u1="™" u2="â" k="66" /> +<hkern u1="™" u2="á" k="66" /> +<hkern u1="™" u2="à" k="66" /> +<hkern u1="™" u2="Ý" k="-31" /> +<hkern u1="™" u2="Ø" k="47" /> +<hkern u1="™" u2="Ö" k="47" /> +<hkern u1="™" u2="Õ" k="47" /> +<hkern u1="™" u2="Ô" k="47" /> +<hkern u1="™" u2="Ó" k="47" /> +<hkern u1="™" u2="Ò" k="47" /> +<hkern u1="™" u2="Ç" k="47" /> +<hkern u1="™" u2="Æ" k="186" /> +<hkern u1="™" u2="Å" k="186" /> +<hkern u1="™" u2="Ä" k="186" /> +<hkern u1="™" u2="Ã" k="186" /> +<hkern u1="™" u2="Â" k="186" /> +<hkern u1="™" u2="Á" k="186" /> +<hkern u1="™" u2="À" k="186" /> +<hkern u1="™" u2="»" k="182" /> +<hkern u1="™" u2="·" k="182" /> +<hkern u1="™" u2="­" k="182" /> +<hkern u1="™" u2="«" k="182" /> +<hkern u1="™" u2="q" k="94" /> +<hkern u1="™" u2="o" k="94" /> +<hkern u1="™" u2="e" k="94" /> +<hkern u1="™" u2="d" k="94" /> +<hkern u1="™" u2="c" k="94" /> +<hkern u1="™" u2="a" k="66" /> +<hkern u1="™" u2="\" k="-49" /> +<hkern u1="™" u2="Y" k="-31" /> +<hkern u1="™" u2="W" k="-49" /> +<hkern u1="™" u2="V" k="-49" /> +<hkern u1="™" u2="Q" k="47" /> +<hkern u1="™" u2="O" k="47" /> +<hkern u1="™" u2="G" k="47" /> +<hkern u1="™" u2="C" k="47" /> +<hkern u1="™" u2="A" k="186" /> +<hkern u1="™" u2="@" k="47" /> +<hkern u1="™" u2="/" k="186" /> +<hkern u1="™" u2="." k="233" /> +<hkern u1="™" u2="-" k="182" /> +<hkern u1="™" u2="," k="233" /> +<hkern u1="™" u2="&" k="186" /> +</font> +</defs></svg>
@@ -0,0 +1,4072 @@
+<?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="latoitalic" horiz-adv-x="1187" > +<font-face units-per-em="2048" ascent="1649" descent="-399" /> +<missing-glyph horiz-adv-x="395" /> +<glyph unicode="fi" horiz-adv-x="1080" d="M974 1017l-124 -1017h-180l109 885h-396l-104 -852l-48 -212q-17 -77 -94 -77h-71l140 1139l-102 12q-41 5 -41 41l8 81h151l7 57q11 95 48.5 174t100 135.5t148.5 87.5t196 31q18 0 38 -1.5t40 -4t38 -6t31 -8.5l-17 -92q-3 -12 -14 -16t-28 -4q-11 0 -24.5 0.5 t-29.5 0.5q-85 0 -147.5 -18.5t-106 -55t-68.5 -93t-35 -133.5l-6 -54h581z" /> +<glyph unicode="fl" horiz-adv-x="1121" d="M384 886l-105 -853l-48 -212q-17 -77 -94 -77h-71l139 1139l-101 12q-41 5 -41 39l9 83h149l7 56q10 86 44 163t90.5 134t134 90.5t177.5 33.5q73 0 144.5 -6.5t125.5 -6.5h122l-181 -1481h-177l163 1348q-46 4 -94.5 9t-92.5 5q-120 0 -194 -75.5t-90 -213.5l-6 -56h244 l-15 -131h-239z" /> +<glyph horiz-adv-x="0" /> +<glyph unicode="
" horiz-adv-x="0" /> +<glyph horiz-adv-x="0" /> +<glyph horiz-adv-x="0" /> +<glyph unicode=" " horiz-adv-x="395" /> +<glyph unicode="	" horiz-adv-x="395" /> +<glyph unicode=" " horiz-adv-x="395" /> +<glyph unicode="!" horiz-adv-x="650" d="M530 1467l-71 -587q-6 -46 -13.5 -90t-15.5 -88t-18.5 -91t-22.5 -100h-120q1 53 2.5 100t4.5 91t6.5 88t9.5 90l72 587h166zM163 113q0 27 9.5 50t26.5 40.5t40 28t51 10.5q27 0 50.5 -10.5t40.5 -28t27 -41t10 -49.5q0 -28 -10 -51t-27 -40.5t-41 -27t-50 -9.5 q-28 0 -51 9.5t-40 27t-26.5 40.5t-9.5 51z" /> +<glyph unicode=""" horiz-adv-x="753" d="M413 1465l-37 -296l-35 -158q-7 -32 -23 -49.5t-46 -17.5q-27 0 -38 17.5t-11 49.5v158l38 296h152zM732 1465l-37 -296l-35 -158q-7 -32 -22.5 -49.5t-45.5 -17.5q-27 0 -38 17.5t-11 49.5v158l38 296h151z" /> +<glyph unicode="#" d="M799 434l-141 -434h-79q-20 0 -33.5 14t-13.5 36q0 14 5 27l115 357h-256l-118 -366q-11 -36 -36 -52t-54 -16h-78l140 434h-151q-44 0 -44 41q0 7 1.5 15t3.5 18l16 56h210l108 339h-238l21 73q8 29 28 42t59 13h165l121 372q10 30 33 46t53 16h80l-142 -434h256 l142 434h79q23 0 37 -12t14 -33q0 -11 -4 -20l-121 -369h219l-22 -73q-8 -29 -28 -42t-57 -13h-147l-108 -339h186q20 0 32.5 -9.5t12.5 -31.5q0 -7 -1 -14.5t-4 -18.5l-17 -56h-244zM431 564h257l109 339h-256z" /> +<glyph unicode="$" d="M451 -12q-122 11 -218 60.5t-160 126.5l62 80q19 26 50 26q18 0 40.5 -19.5t55.5 -45t80.5 -49.5t116.5 -32l106 553q-63 19 -124.5 44.5t-109 64t-76.5 95t-29 140.5q0 85 33.5 164t97 140.5t154.5 100.5t204 43l29 148q4 19 19.5 34t35.5 15h66l-39 -201 q105 -12 178.5 -54t125.5 -102l-49 -66q-11 -15 -22.5 -22t-26.5 -7q-14 0 -33.5 13t-47 30.5t-65 34.5t-88.5 24l-95 -503q66 -22 130 -47t115 -62.5t82.5 -93t31.5 -136.5q0 -97 -35.5 -184.5t-103.5 -155.5t-164 -110.5t-216 -49.5l-35 -183q-4 -18 -18.5 -32.5 t-36.5 -14.5h-65zM908 442q0 45 -17.5 78.5t-47 58t-69.5 42.5t-85 33l-98 -520q76 7 134.5 33t99.5 66t62 93.5t21 115.5zM415 1072q0 -43 15.5 -75t43 -57.5t64 -44t78.5 -35.5l90 469q-74 -6 -129 -29t-91 -58t-53.5 -78.5t-17.5 -91.5z" /> +<glyph unicode="%" horiz-adv-x="1486" d="M750 1171q0 -101 -30.5 -180t-79.5 -133t-112 -82t-130 -28q-57 0 -105 21t-82.5 60t-53.5 96t-19 129q0 101 28 180.5t75.5 134t111.5 83.5t135 29q57 0 105.5 -21t83 -61t54 -97.5t19.5 -130.5zM611 1170q0 51 -10.5 88t-29 60.5t-43.5 35t-54 11.5q-41 0 -77.5 -17.5 t-63 -55.5t-42.5 -96.5t-16 -141.5q0 -50 10.5 -85.5t29 -58.5t43.5 -34t55 -11q40 0 76 17t63.5 53.5t43 94t15.5 140.5zM1257 1437q11 11 26 19.5t39 8.5h127l-1167 -1436q-10 -13 -25 -21t-36 -8h-129zM1405 407q0 -101 -29.5 -181t-79 -133.5t-113 -81.5t-129.5 -28 q-57 0 -105 21t-82 60t-53 95.5t-19 128.5q0 101 27.5 180.5t75 134.5t111.5 84t136 29q57 0 104.5 -21t82.5 -61t54 -97t19 -130zM1268 406q0 51 -11 87t-29.5 60t-43.5 34.5t-54 10.5q-41 0 -77 -17.5t-63 -55.5t-43 -96t-16 -141q0 -50 10 -86t28.5 -59t43.5 -34t55 -11 q40 0 76.5 17t64 54t43.5 95.5t16 141.5z" /> +<glyph unicode="&" horiz-adv-x="1328" d="M741 1482q72 0 130.5 -22.5t100.5 -62.5t65 -94.5t23 -117.5v-6t-1 -9l-104 -19q-5 -1 -8.5 -1.5t-7.5 -0.5q-30 0 -37 34q-6 30 -18.5 58.5t-33.5 51.5t-51.5 37.5t-72.5 14.5q-52 0 -94 -19.5t-72.5 -54t-46.5 -81t-16 -99.5q0 -58 24 -120t75 -126l330 -419 q42 68 69.5 140t41.5 145q4 18 13.5 29.5t28.5 11.5h122q-16 -118 -62.5 -231.5t-119.5 -212.5l244 -308h-152q-22 0 -37.5 2.5t-28 8.5t-23 16.5t-23.5 24.5l-98 125q-96 -89 -214 -141t-250 -52q-84 0 -153.5 25t-119.5 71.5t-78 113t-28 149.5q0 81 27.5 152.5t75 131.5 t111.5 107t138 80q-40 68 -59 133.5t-19 129.5q0 84 29 158.5t83 128.5t129.5 86t167.5 32zM241 366q0 -57 17.5 -102t49 -75.5t74.5 -46.5t93 -16q97 0 183 44t158 116l-341 435q-118 -63 -176 -154.5t-58 -200.5z" /> +<glyph unicode="'" horiz-adv-x="436" d="M413 1465l-37 -296l-35 -158q-7 -32 -23 -49.5t-46 -17.5q-27 0 -38 17.5t-11 49.5v158l38 296h152z" /> +<glyph unicode="(" horiz-adv-x="565" d="M281 452q0 -76 7 -157.5t21 -163.5t35.5 -161t48.5 -147q6 -15 6 -28q0 -17 -9 -28t-21 -18l-83 -47q-43 88 -73.5 181.5t-50 188t-28.5 186.5t-9 177q0 143 16.5 279t60 274t119 285t195.5 313l73 -48q8 -5 14 -13.5t6 -21.5q0 -16 -14 -38q-76 -117 -134.5 -233 t-98 -239t-60.5 -256t-21 -285z" /> +<glyph unicode=")" horiz-adv-x="565" d="M321 837q0 75 -7.5 156.5t-22.5 163.5t-36 161t-48 147q-6 15 -6 27q0 17 9 27.5t21 18.5l84 48q42 -89 72.5 -182t50 -187.5t28.5 -186.5t9 -178q0 -143 -16.5 -279t-59.5 -274t-119 -284.5t-196 -312.5l-72 47q-8 6 -14 14.5t-6 19.5q0 17 14 40q75 117 134 235.5 t99 244t61 258.5t21 276z" /> +<glyph unicode="*" horiz-adv-x="753" d="M370 886l25 203q2 18 6.5 35t12.5 32q-11 -13 -24.5 -23t-31.5 -20l-173 -102l-33 74l173 104q37 22 73 24q-37 3 -67 25l-149 104l52 75l149 -103q16 -11 28 -22.5t20 -27.5q-8 25 -8 48q0 6 0.5 12t1.5 13l26 204h86l-25 -203q-2 -19 -7 -36t-15 -34q11 14 26 25t33 21 l173 102l33 -75l-173 -103q-36 -22 -69 -25q17 -2 32 -7.5t30 -16.5l149 -105l-51 -73l-149 102q-15 10 -27.5 20.5t-20.5 24.5q7 -20 7 -43q0 -6 -0.5 -12t-1.5 -13l-24 -204h-87z" /> +<glyph unicode="+" d="M750 1193l-55 -439h420l-16 -133h-420l-54 -442h-145l55 442h-417l16 133h417l55 439h144z" /> +<glyph unicode="," horiz-adv-x="435" d="M51 126q0 48 33.5 82t88.5 34q31 0 54.5 -11.5t39.5 -31.5t24 -46t8 -57q0 -46 -13 -95.5t-38 -98t-60.5 -95t-82.5 -85.5l-31 30q-13 12 -14 29q0 12 16.5 31.5t38 46.5t41.5 62.5t27 78.5h-12q-53 0 -86.5 35.5t-33.5 90.5z" /> +<glyph unicode="-" horiz-adv-x="656" d="M118 688h468l-20 -149h-467z" /> +<glyph unicode="." horiz-adv-x="435" d="M46 113q0 27 10 50t27 40.5t40 28t51 10.5q27 0 50 -10.5t40.5 -28t27.5 -41t10 -49.5q0 -28 -10 -51t-27.5 -40.5t-40.5 -27t-50 -9.5q-28 0 -51 9.5t-40 27t-27 40.5t-10 51z" /> +<glyph unicode="/" horiz-adv-x="711" d="M95 -26q-16 -33 -46 -50t-57 -17h-75l741 1514q14 31 41 48t60 17h75z" /> +<glyph unicode="0" d="M712 1482q97 0 179 -37.5t141 -112t92 -186.5t33 -261q0 -228 -50 -398t-136 -281.5t-200.5 -166t-243.5 -54.5q-98 0 -180 37t-141 111.5t-92 186.5t-33 263q0 228 50 397t136 280.5t201 166.5t244 55zM550 133q86 0 163.5 45.5t135 138t91.5 233t34 331.5 q0 123 -23 209.5t-62 140.5t-91 78.5t-109 24.5q-86 0 -163 -45.5t-135 -138t-92 -233.5t-34 -331q0 -123 23 -209.5t62 -140.5t91 -78.5t109 -24.5z" /> +<glyph unicode="1" d="M250 135h317l126 1029l19 79l-300 -234q-18 -14 -39 -15q-15 0 -27.5 7t-17.5 15l-45 77l481 377h143l-164 -1335h291l-16 -135h-784z" /> +<glyph unicode="2" d="M732 1482q85 0 157.5 -24t124.5 -70.5t81 -112.5t29 -150q0 -93 -29 -169.5t-79 -145.5t-117.5 -133.5t-142.5 -132.5l-442 -402q42 11 84 17.5t81 6.5h502q27 0 41 -14.5t14 -37.5q0 -10 -2 -27.5t-4 -32.5l-7 -54h-975l7 60q2 17 12.5 38.5t28.5 37.5l531 474 q75 67 133 127t98.5 118.5t61.5 120t21 132.5q0 55 -18 97t-49.5 70t-75 42t-95.5 14q-115 0 -195 -60t-118 -164q-11 -30 -29 -42t-44 -12q-5 0 -11 0.5t-12 1.5l-89 15q26 100 76.5 177t119 129t153 79t178.5 27z" /> +<glyph unicode="3" d="M755 1482q86 0 157 -23.5t121 -67t78 -105t28 -136.5q0 -81 -21.5 -143t-61 -108t-95.5 -76t-124 -49q125 -36 187.5 -115t62.5 -194q0 -111 -44 -199.5t-118.5 -151.5t-173.5 -96.5t-207 -33.5q-102 0 -179 23.5t-131.5 70.5t-88 118.5t-50.5 169.5l82 30q23 8 41 8 q19 0 33 -8t19 -24q16 -59 39 -104t56.5 -74.5t81 -44.5t113.5 -15q84 0 149.5 28.5t110 75t68 104.5t23.5 119q0 49 -15 90.5t-55 71.5t-107.5 47.5t-172.5 17.5l17 126q195 4 290 83.5t95 216.5q0 54 -17.5 95t-49.5 68.5t-75 40.5t-94 13q-117 0 -196.5 -60.5 t-118.5 -163.5q-11 -30 -29 -42t-43 -12q-5 0 -10.5 0.5t-11.5 1.5l-90 15q26 100 76.5 177t119.5 129t153 79t178 27z" /> +<glyph unicode="4" d="M931 526h222l-14 -100q-2 -15 -13 -26.5t-31 -11.5h-182l-47 -388h-159l48 388h-645q-20 0 -38 11.5t-20 28.5l-6 89l831 950h170zM848 1144q2 25 8 53t14 57l-629 -728h530z" /> +<glyph unicode="5" d="M1110 1390q-5 -37 -31 -61t-83 -24h-466l-117 -395q114 25 208 25q108 0 188 -29t133.5 -80.5t80.5 -121.5t27 -153q0 -129 -48 -234t-128.5 -178.5t-188.5 -114t-228 -40.5q-65 0 -122 12t-106 33t-89 48.5t-70 58.5l62 76q22 25 50 25q19 0 43.5 -16t58.5 -35t83 -35 t117 -16q85 0 156.5 29t122.5 80.5t79 123.5t28 160q0 58 -18 106t-55 82.5t-93.5 52.5t-133.5 18q-51 0 -110 -8.5t-128 -26.5l-106 31l202 684h692z" /> +<glyph unicode="6" d="M714 897q81 0 151 -25.5t121.5 -74.5t81.5 -120t30 -160q0 -114 -43 -211t-119 -168.5t-179 -112.5t-223 -41q-100 0 -179.5 30.5t-134.5 87t-84.5 135t-29.5 176.5q0 63 14.5 124t44 123t74 126t105.5 135l437 502q15 17 41.5 29.5t57.5 12.5h156l-504 -550 q-47 -52 -85 -97q56 37 123.5 58t143.5 21zM273 407q0 -60 18.5 -111t53.5 -88t86 -57.5t117 -20.5q81 0 149 27t117.5 75.5t77.5 114t28 142.5q0 62 -20 113t-56.5 86.5t-88.5 54.5t-115 19q-81 0 -148.5 -28.5t-115.5 -77.5t-75.5 -113t-27.5 -136z" /> +<glyph unicode="7" d="M1229 1467l-7 -69q-3 -26 -10 -49t-16 -37l-784 -1267q-11 -18 -31.5 -31.5t-43.5 -13.5h-146l772 1219q15 25 31 45.5t35 40.5h-771q-17 0 -28 11t-11 27v5l15 119h995z" /> +<glyph unicode="8" d="M530 -16q-101 0 -183.5 26t-141 74t-90 116t-31.5 151q0 165 88.5 268.5t248.5 145.5q-99 39 -149 113.5t-50 175.5q0 90 37 168t102 136t155 91t198 33q92 0 165.5 -27t125.5 -73.5t79.5 -109.5t27.5 -134q0 -134 -71 -231.5t-208 -143.5q119 -36 182 -115t63 -198 q0 -108 -41.5 -194t-114.5 -147t-173.5 -93t-218.5 -32zM547 124q80 0 144.5 23.5t110.5 65.5t70.5 101.5t24.5 130.5q0 66 -23 112t-62 75.5t-89.5 43t-105.5 13.5q-68 0 -130 -18.5t-110.5 -57.5t-78 -99.5t-29.5 -145.5q0 -54 18.5 -99t54.5 -77t87 -50t118 -18zM634 830 q83 0 141 27t94 69.5t52.5 94.5t16.5 104q0 46 -15 86t-44.5 70.5t-74.5 48t-106 17.5q-74 0 -130.5 -23.5t-95.5 -62t-59 -92t-20 -112.5q0 -44 13.5 -85t42.5 -72.5t74.5 -50.5t110.5 -19z" /> +<glyph unicode="9" d="M579 603q-77 0 -143.5 24.5t-116 71.5t-77.5 115.5t-28 154.5q0 108 42 201.5t115 162.5t172.5 109t214.5 40q96 0 172.5 -30.5t129.5 -84.5t81.5 -130t28.5 -166q0 -74 -15 -138t-45.5 -124t-73.5 -120.5t-98 -128.5l-423 -518q-15 -18 -39.5 -30t-55.5 -12h-162 l517 586q27 30 50.5 57.5t43.5 53.5q-62 -46 -136 -70t-154 -24zM1002 1072q0 59 -18.5 108t-53.5 83.5t-83.5 53.5t-108.5 19q-75 0 -137.5 -25.5t-109 -71t-72.5 -108.5t-26 -139q0 -120 68 -186.5t191 -66.5q81 0 145.5 27.5t110 73.5t70 106t24.5 126z" /> +<glyph unicode=":" horiz-adv-x="435" d="M46 113q0 27 10 50t27 40.5t40 28t51 10.5q27 0 50 -10.5t40.5 -28t27.5 -41t10 -49.5q0 -28 -10 -51t-27.5 -40.5t-40.5 -27t-50 -9.5q-28 0 -51 9.5t-40 27t-27 40.5t-10 51zM148 881q0 27 10 50t27.5 40.5t40.5 28t50 10.5t50 -10.5t40.5 -28t27.5 -41t10 -49.5 q0 -28 -10 -51t-27.5 -40.5t-40.5 -27t-50 -9.5q-28 0 -50.5 9.5t-40 27t-27.5 40.5t-10 51z" /> +<glyph unicode=";" horiz-adv-x="435" d="M47 126q0 48 33.5 82t88.5 34q31 0 54.5 -11.5t39.5 -31.5t24 -46t8 -57q0 -46 -13 -95.5t-38 -98t-61 -95t-82 -85.5l-31 30q-13 12 -14 29q0 12 16.5 31.5t38 46.5t41.5 62.5t27 78.5h-12q-53 0 -86.5 35.5t-33.5 90.5zM155 881q0 27 9.5 50t27 40.5t40.5 28t51 10.5 q27 0 49.5 -10.5t40 -28t28 -41t10.5 -49.5q0 -28 -10.5 -51t-28 -40.5t-40.5 -27t-49 -9.5q-28 0 -51 9.5t-40.5 27t-27 40.5t-9.5 51z" /> +<glyph unicode="<" horiz-adv-x="1092" d="M172 727l842 411l-17 -130q-2 -17 -12 -30t-31 -24l-488 -233q-22 -11 -46 -19t-50 -14q25 -5 46.5 -13t41.5 -19l432 -232q15 -8 23 -20t8 -23q0 -1 -1.5 -14.5t-4.5 -33.5t-6 -44.5t-6 -48.5l-740 411z" /> +<glyph unicode="=" d="M161 587h878l-16 -134h-879zM204 928h876l-15 -134h-878z" /> +<glyph unicode=">" horiz-adv-x="1092" d="M970 651l-842 -410l16 130q2 17 12.5 30t30.5 23l489 233q22 11 45.5 19t50.5 14q-25 5 -47 13.5t-41 18.5l-432 232q-15 8 -23 20t-8 23q0 1 1.5 14.5t4 33.5t6 44.5t6.5 49.5l740 -412z" /> +<glyph unicode="?" horiz-adv-x="754" d="M135 1334q34 30 72.5 56.5t83 47t95 32.5t108.5 12q72 0 129.5 -21.5t98.5 -59.5t62.5 -89.5t21.5 -112.5q0 -86 -24 -146.5t-61 -105t-81.5 -76.5t-85 -62.5t-71.5 -63t-42 -76.5l-38 -158h-121l11 170q3 49 30 87t66 71t83.5 65t82 69t62.5 83.5t25 108.5 q0 80 -48.5 126t-131.5 46q-57 0 -99 -15t-72.5 -33.5t-50.5 -34t-33 -15.5q-25 0 -35 23zM187 113q0 27 10 50t27 40.5t40 28t50 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5q-28 0 -50.5 9.5t-39.5 27t-27 40.5t-10 51z" /> +<glyph unicode="@" horiz-adv-x="1532" d="M1051 190q-72 0 -114 38t-46 117q-65 -82 -133.5 -117t-142.5 -35q-49 0 -85 17.5t-60 48.5t-35.5 73t-11.5 91q0 61 16.5 125.5t48.5 124.5t78.5 113.5t107.5 93.5t135 63t160 23q65 0 111 -10.5t88 -30.5l-135 -369q-19 -53 -28 -92t-9 -68q0 -28 7.5 -45.5t20 -28.5 t29.5 -15t37 -4q52 0 101.5 36t88 101t62 155t23.5 198q0 119 -35 209t-97.5 150t-149 91t-189.5 31q-138 0 -262.5 -60t-218.5 -167.5t-149 -255t-55 -322.5q0 -144 41 -256t114 -187t174.5 -114t222.5 -39q144 0 253.5 32t187.5 81q11 7 19.5 9t16.5 2q15 0 24.5 -10 t13.5 -22l12 -52q-110 -74 -243.5 -116t-296.5 -42q-148 0 -271.5 49t-212 140.5t-137 222t-48.5 294.5q0 130 30.5 249t85.5 222t131.5 187.5t169 144.5t197 93t215.5 33q120 0 226 -40.5t185.5 -117.5t125.5 -187.5t46 -251.5q0 -130 -35.5 -240.5t-96 -190.5t-140 -126 t-168.5 -46zM666 310q28 0 58.5 10.5t60 36.5t58 70.5t53.5 113.5l110 303q-36 9 -78 9q-75 0 -141.5 -36.5t-116 -94.5t-79 -131.5t-29.5 -148.5q0 -58 26 -95t78 -37z" /> +<glyph unicode="A" horiz-adv-x="1266" d="M1208 0h-147q-26 0 -40 13t-20 33l-79 358h-598l-168 -358q-9 -18 -28 -32t-43 -14h-150l720 1467h194zM388 544h503l-135 607q-6 27 -13.5 60.5t-12.5 72.5q-14 -39 -29 -73t-28 -61z" /> +<glyph unicode="B" horiz-adv-x="1219" d="M99 0l182 1467h434q115 0 197 -23t135.5 -65.5t79 -103.5t25.5 -135q0 -66 -19 -125.5t-57 -109.5t-94.5 -89t-132.5 -62q132 -30 198.5 -104.5t66.5 -188.5q0 -101 -36.5 -186t-105 -146t-167 -95t-222.5 -34h-484zM374 671l-65 -519h289q81 0 142.5 21.5t102.5 61 t61.5 96t20.5 127.5q0 97 -65.5 155t-197.5 58h-288zM390 806h237q83 0 145 22t103 61.5t61.5 94.5t20.5 122q0 105 -63.5 158t-196.5 53h-243z" /> +<glyph unicode="C" horiz-adv-x="1263" d="M695 148q68 0 120 11.5t92 28t68.5 36.5t49.5 36t35 27.5t25 11.5q9 0 15.5 -3.5t10.5 -8.5l67 -83q-96 -104 -222 -162t-292 -58q-131 0 -235.5 47t-177 131.5t-111 201t-38.5 257.5q0 191 59.5 349.5t163.5 273t244.5 177.5t301.5 63q78 0 141.5 -13.5t116 -39 t95 -61.5t79.5 -80l-66 -80q-8 -10 -18.5 -16.5t-25.5 -6.5q-18 0 -38.5 20.5t-56 44.5t-91.5 44.5t-145 20.5q-119 0 -222 -47.5t-179 -136.5t-119.5 -214.5t-43.5 -282.5q0 -114 29.5 -204t82.5 -153t125.5 -97t159.5 -34z" /> +<glyph unicode="D" horiz-adv-x="1418" d="M1373 837q0 -187 -58 -341.5t-159.5 -264.5t-242.5 -170.5t-307 -60.5h-507l182 1467h505q135 0 244.5 -46t185 -129.5t116.5 -199.5t41 -255zM1177 833q0 111 -28.5 199.5t-81 150.5t-128.5 95.5t-171 33.5h-313l-144 -1157h314q123 0 224 46.5t174 134t113.5 213 t40.5 284.5z" /> +<glyph unicode="E" horiz-adv-x="1092" d="M1096 1311h-642l-62 -495h520l-19 -150h-519l-63 -510h644l-19 -156h-837l182 1467h834z" /> +<glyph unicode="F" horiz-adv-x="1065" d="M1096 1311h-642l-65 -523h550l-21 -155h-547l-78 -633h-194l182 1467h834z" /> +<glyph unicode="G" horiz-adv-x="1381" d="M721 138q53 0 99 6t86.5 17t78 27t74.5 36l40 332h-204q-17 0 -27 9t-10 24v5q1 5 1.5 11t0.5 11l1 6l9 80h420l-68 -560q-55 -40 -114 -69.5t-124.5 -49.5t-138.5 -29.5t-157 -9.5q-133 0 -241 47.5t-185 133t-118.5 204t-41.5 260.5q0 189 59 346.5t163 270.5 t247 175.5t312 62.5q85 0 154.5 -14.5t126 -40t102 -60.5t83.5 -76l-62 -80q-10 -13 -21 -20t-25 -7q-17 0 -34 10q-23 13 -50 34t-65 40t-92.5 33t-131.5 14q-126 0 -231 -48t-180 -137.5t-117 -215t-42 -280.5q0 -116 30 -208t85.5 -156.5t133.5 -99t174 -34.5z" /> +<glyph unicode="H" horiz-adv-x="1425" d="M1201 0h-193l83 670h-716l-82 -670h-194l182 1467h192l-81 -658h716l81 658h192z" /> +<glyph unicode="I" horiz-adv-x="579" d="M325 0h-193l179 1467h193z" /> +<glyph unicode="J" horiz-adv-x="836" d="M673 486q-30 -244 -152.5 -373t-324.5 -129q-55 0 -103.5 7t-97.5 21l14 112q2 15 12 26.5t30 11.5q10 0 23.5 -2.5t30.5 -6t39 -6.5t51 -3q53 0 100 17.5t85 57.5t64 104.5t37 158.5l120 985h192z" /> +<glyph unicode="K" horiz-adv-x="1287" d="M408 821h67q36 0 59 10t45 33l507 557q24 27 46.5 36.5t53.5 9.5h163l-586 -634q-22 -24 -41 -40t-39 -25q25 -10 42.5 -28t35.5 -45l442 -695h-165q-18 0 -31 3t-21.5 8t-14.5 13t-13 17l-385 586q-16 25 -36 36t-64 11h-83l-83 -674h-190l179 1467h191z" /> +<glyph unicode="L" horiz-adv-x="969" d="M310 162h581l-20 -162h-772l182 1467h191z" /> +<glyph unicode="M" horiz-adv-x="1736" d="M840 512q6 -22 11.5 -41.5t10.5 -41.5q18 43 43 83l577 923q14 24 29 28t40 4h143l-181 -1467h-167l134 1084q2 20 6.5 44t9.5 50l-570 -920q-27 -44 -75 -44h-27q-47 0 -64 44l-353 922q-1 -25 -2.5 -48.5t-3.5 -44.5l-133 -1087h-169l182 1467h140q26 0 40.5 -4.5 t22.5 -27.5l356 -923v0z" /> +<glyph unicode="N" horiz-adv-x="1424" d="M379 1467q26 0 37.5 -6t23.5 -26l633 -1122q2 24 4 45t4 40l131 1069h169l-180 -1467h-96q-24 0 -39 7.5t-27 28.5l-631 1122q0 -5 -0.5 -14t-2 -19.5t-2.5 -21t-2 -18.5l-133 -1085h-169l182 1467h98v0z" /> +<glyph unicode="O" horiz-adv-x="1500" d="M1456 838q0 -125 -26.5 -237t-75 -206.5t-118 -170.5t-155 -129t-185 -81.5t-209.5 -28.5q-135 0 -243 48t-184.5 133.5t-117 203t-40.5 258.5q0 187 58.5 344t161.5 271t244 177.5t305 63.5q135 0 243.5 -49t184.5 -135t116.5 -204t40.5 -258zM1260 834q0 112 -29 202 t-81.5 153.5t-129 98.5t-171.5 35q-121 0 -222.5 -48.5t-174 -138.5t-113.5 -217.5t-41 -285.5q0 -112 28.5 -202t81.5 -153.5t128.5 -98t171.5 -34.5q123 0 224 48.5t174 138t113.5 217t40.5 285.5z" /> +<glyph unicode="P" horiz-adv-x="1155" d="M375 551l-68 -551h-190l179 1467h404q117 0 203 -27.5t142 -78.5t83.5 -123t27.5 -160q0 -116 -38 -212.5t-110 -166t-178 -109t-242 -39.5h-213zM469 1317l-76 -615h213q87 0 153.5 27t111.5 74.5t69 113.5t24 144q0 59 -17.5 106t-52.5 80.5t-88 51.5t-124 18h-213z " /> +<glyph unicode="Q" horiz-adv-x="1499" d="M1456 838q0 -124 -26 -234.5t-74 -205t-116.5 -170.5t-152.5 -130l296 -402h-154q-35 0 -62 9.5t-46 35.5l-201 279q-55 -17 -113 -26t-120 -9q-135 0 -243 48t-184.5 133.5t-117 203t-40.5 258.5q0 187 58.5 344t161.5 271t244 177.5t305 63.5q135 0 243.5 -49 t184.5 -135t116.5 -204t40.5 -258zM1260 834q0 112 -29 202t-81.5 153.5t-129 98.5t-171.5 35q-121 0 -222.5 -48.5t-174 -138.5t-113.5 -217.5t-41 -285.5q0 -112 28.5 -202t81.5 -153.5t128.5 -98t171.5 -34.5q123 0 224 48.5t174 138t113.5 217t40.5 285.5z" /> +<glyph unicode="R" horiz-adv-x="1216" d="M383 615l-76 -615h-190l179 1467h386q117 0 202.5 -24.5t141 -70t83 -110.5t27.5 -145q0 -89 -27 -166t-77 -137.5t-120.5 -103t-159.5 -63.5q33 -23 54 -61l316 -586h-170q-50 0 -71 41l-277 528q-13 26 -30.5 36t-55.5 10h-135zM470 1317l-70 -562h188q87 0 153.5 24.5 t112 69t68.5 105.5t23 133q0 112 -70 171t-210 59h-195z" /> +<glyph unicode="S" horiz-adv-x="1000" d="M948 1240q-11 -14 -21.5 -22t-24.5 -8q-17 0 -36.5 18t-50 39t-73.5 39t-107 18q-66 0 -117 -20.5t-86.5 -56t-54 -82.5t-18.5 -101q0 -53 25 -89.5t64.5 -62.5t91.5 -46t105 -41t105 -46.5t92 -63.5t64.5 -91.5t24.5 -128.5q0 -104 -36 -197t-103 -162.5t-162 -110.5 t-214 -41q-131 0 -234 51.5t-170 139.5l68 91q8 11 20.5 18.5t26.5 7.5q19 0 41.5 -23t57.5 -51.5t86.5 -51.5t127.5 -23q71 0 128 22.5t96 62.5t60.5 96t21.5 123q0 56 -24.5 94t-64.5 63.5t-90.5 44.5t-104 38.5t-104.5 44t-91 62t-64.5 93t-24.5 136.5q0 90 33 173 t94.5 146.5t149.5 101.5t198 38q113 0 203 -43t149 -118z" /> +<glyph unicode="T" horiz-adv-x="1113" d="M1205 1467l-20 -160h-433l-160 -1307h-191l160 1307h-435l19 160h1060z" /> +<glyph unicode="U" horiz-adv-x="1375" d="M645 151q82 0 151 31.5t121 87.5t85 133.5t45 169.5l109 894h192l-109 -894q-15 -126 -66 -234t-130.5 -187t-185.5 -124t-232 -45q-114 0 -202 36.5t-149 102.5t-92.5 157.5t-31.5 199.5q0 46 6 94l108 894h192l-110 -893q-2 -20 -3.5 -39.5t-1.5 -37.5q0 -77 20 -140.5 t58.5 -109.5t95 -71t130.5 -25z" /> +<glyph unicode="V" horiz-adv-x="1289" d="M127 1467h153q26 0 40 -13t19 -33l245 -1048q8 -33 15.5 -72.5t12.5 -82.5q14 43 30 82t33 73l501 1048q8 16 27 31t43 15h154l-730 -1467h-173z" /> +<glyph unicode="W" horiz-adv-x="1927" d="M132 1467h150q26 0 41 -12.5t18 -33.5l158 -1038q2 -14 3.5 -34.5t3.5 -40.5l2 -46q10 33 21 63.5t22 57.5l439 1038q8 17 26.5 31.5t43.5 14.5h44q26 0 41 -12.5t19 -33.5l184 -1038q5 -27 8 -56.5t5 -62.5q10 33 19 62.5t19 56.5l412 1038q7 17 27.5 31.5t44.5 14.5 h150l-601 -1467h-174l-198 1129q-3 16 -5.5 36t-4.5 40q-7 -20 -14 -39.5t-14 -36.5l-476 -1129h-172z" /> +<glyph unicode="X" horiz-adv-x="1220" d="M512 783l-345 684h173q22 0 31 -7t16 -21l262 -553q9 19 23 38l372 514q11 14 22 21.5t27 7.5h197l-513 -675l387 -792h-172q-20 0 -32 12t-18 25l-299 640q-8 -17 -18 -31l-442 -609q-27 -37 -63 -37h-192z" /> +<glyph unicode="Y" horiz-adv-x="1192" d="M702 587l-72 -587h-192l73 585l-387 882h170q26 0 39 -12.5t21 -32.5l244 -587q10 -30 17.5 -56.5t12.5 -53.5q12 27 27 53.5t32 56.5l390 587q11 16 28 30.5t42 14.5h159z" /> +<glyph unicode="Z" horiz-adv-x="1175" d="M1224 1467l-9 -61q-2 -14 -8 -26t-15 -24l-897 -1200h756l-21 -156h-1014l9 60q2 14 7.5 25.5t14.5 24.5l897 1201h-730l19 156h991z" /> +<glyph unicode="[" horiz-adv-x="565" d="M34 -294l228 1863h351l-8 -69q-2 -20 -17.5 -33.5t-36.5 -13.5h-155l-201 -1630h156q19 0 31 -11.5t12 -28.5q0 -1 -0.5 -7t-1.5 -15t-2.5 -18.5t-2.5 -18.5l-2 -18h-351z" /> +<glyph unicode="\" horiz-adv-x="710" d="M111 1486h74q33 0 55 -17.5t30 -47.5l370 -1514h-74q-29 0 -54.5 17.5t-33.5 49.5z" /> +<glyph unicode="]" horiz-adv-x="565" d="M214 1569h352l-229 -1863h-352l9 69q2 20 17 34t37 14h156l200 1630h-155q-20 0 -32 12t-12 29l6 49z" /> +<glyph unicode="^" d="M588 1467h117l367 -661h-133q-17 0 -29.5 10t-20.5 25l-201 360q-13 24 -23 46t-17 43q-14 -45 -38 -89l-197 -360q-8 -14 -20.5 -24.5t-33.5 -10.5h-139z" /> +<glyph unicode="_" horiz-adv-x="743" d="M660 -172l-15 -119h-742l14 119h743z" /> +<glyph unicode="`" horiz-adv-x="581" d="M246 1482q32 0 46 -10.5t24 -32.5l110 -248h-101q-20 0 -32.5 6t-24.5 22l-189 263h167z" /> +<glyph unicode="a" horiz-adv-x="1034" d="M836 0h-95q-36 0 -48.5 18.5t-12.5 44.5l18 210q-37 -66 -79 -119t-90 -90t-100 -57.5t-108 -20.5q-61 0 -111.5 24t-86 70.5t-55 114.5t-19.5 156q0 92 23 179.5t65.5 165.5t102 143t132.5 112.5t157 74t177 26.5q67 0 129.5 -11t123.5 -37zM389 137q50 0 98.5 31.5 t91.5 86.5t80 131.5t66 167.5l44 356q-23 5 -45 7t-43 2q-61 0 -118.5 -20t-108 -56t-91 -85.5t-70 -109t-46 -126.5t-16.5 -138q0 -247 158 -247z" /> +<glyph unicode="b" horiz-adv-x="1075" d="M81 0l182 1508h179l-90 -733q39 62 84 114t94.5 88t102.5 56t108 20q132 0 206 -96.5t74 -281.5q0 -84 -17.5 -168t-49.5 -160.5t-78 -142.5t-101.5 -114.5t-121 -76t-137.5 -27.5q-83 0 -150 34.5t-110 99.5l-13 -67q-8 -27 -21 -40t-44 -13h-97zM673 906 q-49 0 -99.5 -30.5t-97 -85t-87.5 -129t-71 -163.5l-32 -270q39 -55 93 -78t110 -23q53 0 100.5 22.5t86.5 61t69.5 90t51.5 110.5t32.5 122t11.5 124q0 122 -44 185.5t-124 63.5z" /> +<glyph unicode="c" horiz-adv-x="886" d="M839 186q-53 -58 -101 -97t-96 -62t-100 -32t-111 -9q-90 0 -159 30.5t-115.5 86.5t-71 134t-24.5 173q0 126 39.5 241.5t110.5 204.5t168 142.5t214 53.5q102 0 172 -36.5t122 -106.5l-58 -68q-6 -8 -15 -13.5t-20 -5.5q-14 0 -28 13t-36 29t-55.5 28.5t-85.5 12.5 q-71 0 -134 -38.5t-110 -105t-74 -157.5t-27 -195q0 -63 14 -115t43 -88.5t70.5 -56.5t96.5 -20q46 0 82 9.5t63.5 24t48.5 31.5t38 31.5t30.5 24t28.5 9.5q20 0 35 -17l45 -56v0z" /> +<glyph unicode="d" horiz-adv-x="1077" d="M774 0q-36 0 -48.5 18.5t-12.5 44.5l19 217q-39 -67 -85 -121.5t-96.5 -92.5t-105.5 -59t-111 -21q-133 0 -206.5 96.5t-73.5 281.5q0 84 17.5 167.5t50 160.5t78 143t101 114t121 76t137.5 28q76 0 139 -30t107 -85l71 570h179l-187 -1508h-94zM402 132q49 0 99 30.5 t96.5 84t87 128t70.5 162.5l33 274q-39 54 -93 76.5t-109 22.5q-81 0 -146 -48t-110.5 -124t-70.5 -170.5t-25 -185.5q0 -122 44 -186t124 -64z" /> +<glyph unicode="e" horiz-adv-x="944" d="M902 815q0 -68 -27.5 -124.5t-101.5 -102t-203 -79.5t-331 -54q-1 -11 -1 -22v-22q0 -137 59.5 -209.5t180.5 -72.5q49 0 87.5 10.5t69 25t53.5 32.5t42.5 33t35.5 25t33 10q18 0 34 -17l45 -57q-52 -54 -102 -92.5t-102 -64t-109 -37t-123 -11.5q-89 0 -159.5 29.5 t-119.5 84.5t-76 132.5t-27 174.5q0 80 17 159t49.5 150.5t79 133t106.5 106t132 70.5t155 26q79 0 136.5 -22.5t94 -57.5t54.5 -77t18 -80zM589 921q-65 0 -119 -27t-96 -73.5t-72 -109.5t-46 -136q158 19 253 44.5t146.5 54.5t67.5 63t16 71q0 18 -8 38t-26 36.5 t-46.5 27.5t-69.5 11z" /> +<glyph unicode="f" horiz-adv-x="619" d="M383 886l-103 -852l-48 -212q-17 -77 -94 -77h-71l138 1138l-103 13q-17 5 -27 14.5t-10 26.5l8 80h148l12 100q11 89 44.5 158.5t84.5 117t116 72t139 24.5q63 0 116 -21l-17 -94q-2 -14 -14 -17.5t-30 -3.5q-9 0 -20 0.5t-23 0.5q-44 0 -81.5 -13t-66 -41.5t-48 -74.5 t-27.5 -113l-13 -95h259l-17 -131h-252z" /> +<glyph unicode="g" horiz-adv-x="951" d="M836 750q-1 -51 -13 -92.5t-29.5 -76t-38 -65.5t-38 -61.5t-29 -63t-11.5 -69.5q0 -43 21 -78t46 -72t46 -80.5t21 -102.5q0 -73 -34 -138t-96.5 -115t-152 -79.5t-200.5 -29.5q-89 0 -162.5 18.5t-125 52.5t-80 81.5t-28.5 104.5q0 81 42 139.5t111 96.5t156.5 55.5 t178.5 17.5q37 0 73 -3.5t72 -8.5q-9 19 -14.5 40.5t-5.5 45.5q0 32 9.5 66t32.5 76q-39 -27 -87 -41.5t-110 -14.5q-59 0 -111 19.5t-90.5 57.5t-61.5 95t-23 132q0 74 27.5 145t79.5 127t129 90t177 34q113 0 196 -54h281l-8 -60q-2 -17 -11.5 -31.5t-29.5 -17.5l-129 -23 q9 -27 14.5 -55.5t5.5 -61.5zM440 468q55 0 97.5 24t71.5 63.5t44.5 88.5t15.5 99q0 90 -45.5 136.5t-125.5 46.5q-55 0 -97.5 -22.5t-71 -60.5t-43.5 -86t-15 -101q0 -92 44.5 -140t124.5 -48zM645 -26q0 27 -5 50t-13 44q-55 9 -104 13t-92 4q-84 0 -145.5 -15 t-101.5 -39.5t-59.5 -56.5t-19.5 -67q0 -74 62 -113t176 -39q68 0 123.5 18t95 47.5t61.5 69.5t22 84z" /> +<glyph unicode="h" horiz-adv-x="1085" d="M81 0l182 1508h182l-85 -700q81 121 180 183t202 62q118 0 181.5 -78t63.5 -226q0 -20 -1 -42.5t-4 -46.5l-78 -660h-182l78 660q2 20 3.5 39.5t1.5 36.5q0 84 -31.5 125t-98.5 41q-46 0 -95 -25t-95 -71t-86 -111t-69 -145l-67 -550h-182z" /> +<glyph unicode="i" horiz-adv-x="498" d="M401 1037l-125 -1037h-179l125 1037h179zM470 1363q0 -27 -10.5 -50t-28.5 -41t-40.5 -28t-47.5 -10q-24 0 -46.5 10t-39 28t-27 41t-10.5 50t10.5 50.5t27.5 41.5t40 28.5t46 10.5q25 0 47.5 -10t40.5 -28t28 -42t10 -51z" /> +<glyph unicode="j" horiz-adv-x="486" d="M400 1037l-137 -1114q-8 -62 -31 -116t-62 -94t-92.5 -63t-122.5 -23q-36 0 -61.5 5.5t-50.5 15.5l19 98q5 13 12 17t22 4q7 0 15.5 -0.5t19.5 -0.5q73 0 108.5 37t45.5 120l136 1114h179zM465 1363q0 -27 -11 -50t-28.5 -41t-41 -28t-46.5 -10q-25 0 -47 10t-38.5 28 t-27 41t-10.5 50t10.5 50.5t27.5 41.5t39 28.5t47 10.5t47.5 -10t40 -28t28 -42t10.5 -51z" /> +<glyph unicode="k" horiz-adv-x="982" d="M444 1508l-108 -887h32q20 0 33.5 5.5t29.5 22.5l343 351q16 16 31.5 26.5t40.5 10.5h161l-401 -406q-15 -16 -30 -30t-32 -24q16 -12 27.5 -29t22.5 -36l311 -512h-156q-23 0 -37 8t-25 28l-264 425q-13 20 -26 27.5t-42 7.5h-34l-61 -496h-180l185 1508h179z" /> +<glyph unicode="l" horiz-adv-x="486" d="M90 0l183 1508h180l-184 -1508h-179z" /> +<glyph unicode="m" horiz-adv-x="1604" d="M73 0l125 1038h91q61 0 61 -61l-14 -185q77 129 168 195t192 66q105 0 155.5 -72.5t50.5 -206.5q78 142 175 210.5t203 68.5q115 0 171.5 -75t56.5 -215q0 -24 -2 -49.5t-5 -53.5l-78 -660h-179l78 660q6 50 6 92q0 77 -25.5 113t-85.5 36q-44 0 -88.5 -22t-85.5 -64.5 t-76 -105.5t-63 -145l-66 -564h-181l79 660q3 28 5 52.5t2 46.5q0 73 -24 107.5t-84 34.5q-49 0 -94.5 -24.5t-86 -71t-75.5 -113.5t-64 -151l-64 -541h-178z" /> +<glyph unicode="n" horiz-adv-x="1077" d="M73 0l124 1038h91q61 0 61 -61l-15 -201q83 137 187 207t215 70q116 0 180 -78t64 -227q0 -20 -1 -42t-4 -46l-78 -660h-182l78 660q2 20 3.5 39.5t1.5 36.5q0 84 -31.5 124.5t-97.5 40.5q-49 0 -100 -26.5t-98 -75t-87.5 -118t-69.5 -154.5l-59 -527h-182z" /> +<glyph unicode="o" horiz-adv-x="1029" d="M459 128q75 0 136 41t104 109t67 157t24 187q0 143 -56.5 215.5t-163.5 72.5q-76 0 -136.5 -40.5t-103.5 -108.5t-66.5 -157t-23.5 -186q0 -143 55.5 -216.5t163.5 -73.5zM442 -14q-85 0 -155.5 29t-121.5 84.5t-80 135t-29 182.5q0 131 41 246.5t112.5 202.5t168 137.5 t209.5 50.5q85 0 155.5 -29.5t121.5 -84.5t80 -135.5t29 -181.5q0 -130 -41 -246t-112 -203t-168.5 -137.5t-209.5 -50.5z" /> +<glyph unicode="p" horiz-adv-x="1060" d="M29 -351l169 1389h91q61 0 61 -61l-17 -221q39 68 85 122.5t96.5 93.5t106 60t112.5 21q132 0 206 -96.5t74 -281.5q0 -84 -17.5 -168t-50 -160.5t-78 -142.5t-101 -114.5t-121 -76t-137.5 -27.5q-77 0 -140.5 30t-106.5 86l-55 -453h-177zM665 906q-49 0 -100 -30.5 t-98 -86t-87.5 -131t-70.5 -164.5l-33 -265q39 -56 94 -79t111 -23q53 0 100.5 22.5t86.5 61t69.5 90t51.5 110.5t32.5 122t11.5 124q0 122 -44 185.5t-124 63.5z" /> +<glyph unicode="q" horiz-adv-x="1034" d="M792 -351h-115q-33 0 -46.5 19t-13.5 44q0 3 1.5 11.5t2.5 17t2 15.5t1 10l60 482q-36 -60 -77 -108.5t-87 -82.5t-96 -52.5t-103 -18.5q-61 0 -111.5 24t-86 70.5t-55 114.5t-19.5 156q0 92 23 179.5t65.5 165.5t102 143t132.5 112.5t157 74t177 26.5q67 0 129.5 -11 t123.5 -37zM389 137q49 0 97 31t91 85t79.5 129.5t65.5 164.5l46 363q-22 5 -44 7t-43 2q-61 0 -118.5 -20t-108 -56t-91 -85.5t-70 -109t-46 -126.5t-16.5 -138q0 -247 158 -247z" /> +<glyph unicode="r" horiz-adv-x="718" d="M73 0l125 1038h91q29 0 45 -13t16 -41q0 -4 -0.5 -11.5t-1 -16t-1 -14.5t-0.5 -7l-14 -189q67 143 149 221.5t173 78.5q43 0 86 -19l-32 -175q-48 19 -94 19q-99 0 -177 -96.5t-130 -293.5l-57 -481h-178z" /> +<glyph unicode="s" horiz-adv-x="796" d="M740 871q-8 -12 -16 -17.5t-21 -5.5q-14 0 -31 11t-41 25t-58.5 26t-84.5 12q-46 0 -83.5 -13t-65.5 -35.5t-42.5 -52.5t-14.5 -64q0 -48 31.5 -77t79.5 -50t104 -40.5t104 -49t80 -75.5t32 -120q0 -72 -28.5 -137.5t-81 -115t-127 -79t-166.5 -29.5q-99 0 -175.5 35 t-124.5 91l45 69q8 13 19.5 20.5t28.5 7.5q16 0 33 -14.5t41.5 -32.5t61.5 -32t95 -14q50 0 90.5 15t68.5 41t43 60t15 73q0 52 -32 83t-80 51.5t-103 38.5t-103.5 46t-80 73t-31.5 120q0 66 26 126.5t75 107.5t119.5 75.5t158.5 28.5q93 0 164 -31.5t122 -84.5z" /> +<glyph unicode="t" horiz-adv-x="701" d="M163 196q0 6 0.5 15.5t2 28t4.5 48t9 78.5l65 519h-116q-13 0 -22 7.5t-9 23.5q0 3 1 12.5t2.5 21.5l3 24t2.5 23l160 22l77 320q4 15 15.5 25t27.5 10h96l-45 -357h273l-16 -132h-273l-63 -510q-5 -42 -7.5 -67.5t-4 -41t-2 -21.5t-0.5 -9q0 -52 24 -77.5t66 -25.5 q27 0 47.5 7.5t35 17t25 17t18.5 7.5t13 -4t10 -13l38 -87q-49 -44 -113.5 -69t-128.5 -25q-99 0 -156.5 54.5t-59.5 157.5z" /> +<glyph unicode="u" horiz-adv-x="1075" d="M362 1037l-77 -659q-2 -20 -3.5 -38.5t-1.5 -36.5q0 -84 31 -125t99 -41q47 0 96.5 25.5t96 73t86.5 114t70 148.5l64 539h182l-125 -1037h-90q-32 0 -49.5 14.5t-17.5 43.5q0 1 1 18.5t2.5 38t3 38t1.5 18.5l7 83q-83 -132 -185 -200t-211 -68q-116 0 -180 78.5 t-64 226.5q0 20 1 41.5t4 45.5l78 659h181z" /> +<glyph unicode="v" horiz-adv-x="974" d="M77 1037h147q20 0 32.5 -11t15.5 -27l155 -667q8 -38 11.5 -76t5.5 -75q11 37 23.5 74.5t31.5 76.5l321 667q8 16 22.5 27t31.5 11h143l-520 -1037h-153z" /> +<glyph unicode="w" horiz-adv-x="1453" d="M83 1037h136q20 0 33 -10t15 -28l95 -667q5 -36 6 -69.5t2 -65.5q12 33 25 66t27 69l284 672q6 15 19.5 25t31.5 10h76q20 0 31.5 -10t13.5 -25l115 -672q6 -36 10 -70t7 -67q10 33 19.5 67t24.5 70l262 667q6 16 20.5 27t32.5 11h131l-435 -1037h-138q-24 0 -30 35 l-126 703q-3 16 -5 33l-4 34q-5 -17 -10.5 -33.5t-12.5 -34.5l-300 -702q-14 -35 -41 -35h-133z" /> +<glyph unicode="x" horiz-adv-x="959" d="M369 558l-249 479h163q20 0 29 -5.5t16 -19.5l174 -357q5 11 10.5 21.5t13.5 21.5l235 311q11 14 20.5 21t22.5 7h165l-371 -480l276 -557h-162q-20 0 -31.5 11t-18.5 25l-196 415q-10 -23 -22 -39l-282 -377q-10 -14 -22.5 -24.5t-30.5 -10.5h-160z" /> +<glyph unicode="y" horiz-adv-x="974" d="M324 -309q-22 -42 -64 -42h-133l224 412l-268 976h150q22 0 32.5 -10.5t15.5 -27.5l166 -653q5 -22 8.5 -43t5.5 -43q9 22 17.5 44t20.5 43l327 654q8 16 23 26t31 10h144z" /> +<glyph unicode="z" horiz-adv-x="878" d="M868 959q-2 -19 -11 -37t-20 -32l-598 -748h512l-17 -142h-731l9 76q2 13 11 31t21 34l601 753h-504l18 143h719z" /> +<glyph unicode="{" horiz-adv-x="565" d="M162 464q0 53 -29 87t-83 34l13 106q76 0 113.5 61t37.5 188q0 23 -1.5 50t-3 55t-3 55t-1.5 50q0 99 23 177t68.5 131.5t113 82t155.5 28.5h50l-9 -79q-2 -20 -18 -28.5t-26 -8.5h-18q-40 0 -74 -15.5t-58 -50.5t-37.5 -92t-13.5 -140v-50.5t0.5 -62.5t0.5 -63v-50 q0 -79 -17 -132t-43.5 -86t-56.5 -50t-56 -24q54 -17 87 -64t33 -111q0 -61 -15 -119.5t-33 -117.5t-33.5 -119t-15.5 -124q0 -72 34.5 -115.5t96.5 -43.5h19q10 0 22 -8t12 -25q0 -3 -1 -10t-1.5 -15t-1.5 -14t-1 -7l-4 -38h-51q-71 0 -123 20.5t-86.5 57t-52 86.5 t-17.5 110q0 68 16.5 129t36 120t36 117t16.5 118z" /> +<glyph unicode="|" horiz-adv-x="614" d="M175 1570h141v-1921h-141v1921z" /> +<glyph unicode="}" horiz-adv-x="565" d="M437 812q0 -53 29 -87t83 -34l-13 -106q-76 0 -113.5 -61t-37.5 -188q0 -23 1.5 -50t3 -55t3 -55.5t1.5 -49.5q0 -99 -23 -177t-68.5 -132t-113 -82t-155.5 -28h-50l9 79q1 10 6 17t11.5 11.5t14 6.5t12.5 2h18q40 0 74 15.5t58 50.5t37.5 92t13.5 140v50t-0.5 63 t-0.5 62.5v50.5q0 78 17 131t43.5 86.5t56.5 50.5t56 24q-54 17 -87 64t-33 111q0 61 15.5 119.5t33 117.5t33 119t15.5 124q0 72 -34.5 115.5t-96.5 43.5h-19q-10 0 -22 7.5t-12 25.5q0 3 1 10t1.5 15t1.5 14t1 7l4 38h51q71 0 123 -20.5t86.5 -57t52 -86.5t17.5 -110 q0 -68 -16.5 -129t-36 -120t-36 -117t-16.5 -118z" /> +<glyph unicode="~" d="M717 628q67 0 104 43.5t38 114.5h148q0 -69 -19 -126t-54.5 -98t-87.5 -63.5t-118 -22.5q-53 0 -105.5 16.5t-101 36.5t-92.5 37t-81 17q-67 0 -104 -43t-38 -116h-148q0 69 19 126t54.5 98t87 64t118.5 23q53 0 105.5 -17t101 -36.5t92.5 -36.5t81 -17z" /> +<glyph unicode="¡" horiz-adv-x="650" d="M152 -352l68 555q6 46 13 89.5t14.5 88t16.5 91.5t20 100h106q-2 -54 -4.5 -101t-5.5 -91t-6.5 -87.5t-9.5 -89.5l-68 -555h-144zM249 925q0 27 9.5 50t27 40.5t40.5 28t51 10.5q27 0 50 -10.5t40 -28t27.5 -41t10.5 -49.5q0 -28 -10.5 -51t-27.5 -40.5t-40.5 -27 t-49.5 -9.5q-28 0 -51 9.5t-40.5 27t-27 40.5t-9.5 51z" /> +<glyph unicode="¢" d="M515 -10q-84 9 -153 44t-118 92.5t-76 137t-27 177.5q0 129 39.5 239.5t113.5 191t181 128t242 50.5l35 185q4 19 19 34t36 15h65l-46 -240q84 -11 148 -43t113 -82l-53 -62q-8 -11 -16.5 -15.5t-23.5 -4.5q-12 0 -27.5 9t-37.5 21.5t-53 24.5t-74 19l-151 -789 q66 4 112.5 20t78.5 33.5t54 31t38 13.5q23 0 32 -15l40 -62q-34 -36 -76.5 -63.5t-92 -47t-103 -30.5t-108.5 -14l-34 -182q-4 -19 -19 -34t-36 -15h-66zM314 450q0 -135 59.5 -217.5t168.5 -104.5l149 786q-92 -6 -162 -40.5t-117.5 -95t-72.5 -144t-25 -184.5z" /> +<glyph unicode="£" d="M911 677q-2 -17 -17.5 -32t-39.5 -15h-433l-32 -262q-9 -77 -36.5 -131.5t-77.5 -97.5q30 6 61 10t60 4h703l-9 -75q-2 -13 -9 -27t-18.5 -25.5t-26.5 -18.5t-32 -7h-989l15 115q36 10 65 26t51 40t36 58t20 82l37 309h-167l8 71q2 18 18 33t39 15h116l34 271 q12 96 53 180.5t107 147t156 98.5t202 36q86 0 149 -19.5t108 -53.5t74 -80.5t48 -100.5l-77 -45q-20 -10 -41 -11q-14 0 -26.5 5.5t-20.5 19.5q-17 28 -35 52.5t-44 43t-62.5 28.5t-90.5 10q-67 0 -121.5 -22t-96 -62.5t-67.5 -97.5t-34 -128l-33 -272h484l-8 -72v0z" /> +<glyph unicode="¤" d="M268 688q0 58 17 110t47 97l-157 157l93 92l155 -156q45 32 98 49.5t113 17.5q58 0 110.5 -17t96.5 -48l156 157l92 -93l-155 -156q32 -45 49 -97.5t17 -112.5q0 -58 -16.5 -110.5t-46.5 -96.5l156 -154l-94 -95l-155 156q-45 -32 -98.5 -48.5t-111.5 -16.5t-110 16.5 t-97 46.5l-157 -157l-92 94l156 155q-32 45 -49 98t-17 112zM403 688q0 -47 18 -88.5t50 -72.5t73.5 -49.5t89.5 -18.5t90.5 18.5t73.5 49.5t49.5 72.5t18.5 88.5q0 48 -18.5 90t-49.5 74t-73.5 50t-90.5 18t-89.5 -18t-73.5 -50t-50 -74t-18 -90z" /> +<glyph unicode="¥" d="M167 639h317l-317 826h147q25 0 39.5 -11.5t21.5 -32.5l216 -586q12 -34 17 -64t9 -58q9 29 21 59t33 63l359 586q11 17 28.5 30.5t42.5 13.5h148l-522 -826h317l-11 -101h-351l-13 -108h350l-12 -101h-351l-40 -329h-176l40 329h-351l13 101h351l13 108h-351z" /> +<glyph unicode="¦" horiz-adv-x="614" d="M175 1570h141v-813h-141v813zM175 463h141v-814h-141v814z" /> +<glyph unicode="§" horiz-adv-x="949" d="M870 1297q-15 -23 -39 -22q-15 0 -32 11.5t-41 25.5t-57.5 26t-83.5 12q-48 0 -86 -14.5t-66 -38t-42.5 -55.5t-14.5 -66q0 -47 34.5 -80.5t87 -62t112.5 -57.5t112.5 -67t87.5 -89t35 -125q0 -93 -46 -166t-143 -115q38 -34 61 -77.5t23 -102.5q0 -76 -27.5 -141.5 t-80 -115t-127.5 -77.5t-171 -28q-99 0 -177.5 35t-128.5 90l50 68q9 13 20 19t30 6q18 0 35 -14.5t41.5 -31.5t62 -31.5t96.5 -14.5q51 0 91.5 15t69 41t43 61.5t14.5 77.5t-21 72.5t-54.5 55t-77 45t-89 42t-89 46t-77.5 57t-55 74.5t-21 99q0 91 49.5 163t155.5 111 q-38 35 -61.5 80t-23.5 109q0 67 26 127t75.5 106t121 73.5t160.5 27.5q93 0 164.5 -32t119.5 -87zM290 728q0 -48 29.5 -82t75.5 -62.5t102.5 -54t108.5 -56.5q59 30 85 74t26 98q0 50 -27.5 85t-71.5 63t-96.5 52.5t-102.5 53.5q-71 -36 -100 -77t-29 -94z" /> +<glyph unicode="¨" horiz-adv-x="581" d="M327 1342q0 -24 -9.5 -44t-26 -35.5t-37.5 -24.5t-44 -9q-24 0 -44.5 9t-35.5 24.5t-24.5 36t-9.5 43.5q0 24 9.5 45.5t24.5 37.5t35.5 25t44.5 9t44.5 -9t37 -25t26 -37.5t9.5 -45.5zM694 1342q0 -24 -9 -44t-25 -35.5t-37 -24.5t-44 -9q-24 0 -45 9t-36.5 24.5 t-24.5 36t-9 43.5q0 24 9 45.5t24.5 37.5t36.5 25t45 9t44.5 -9t36.5 -25t25 -37.5t9 -45.5z" /> +<glyph unicode="©" horiz-adv-x="1635" d="M1109 485q9 0 13.5 -3t10.5 -8l61 -65q-58 -68 -142.5 -105.5t-203.5 -37.5q-100 0 -182.5 35t-141.5 97.5t-91.5 148.5t-32.5 188q0 103 35 190t97.5 149t148 96t185.5 34q112 0 189.5 -34t135.5 -92l-47 -66q-5 -6 -13.5 -12.5t-19.5 -6.5q-14 0 -30 11.5t-41.5 25 t-65 25.5t-98.5 12q-73 0 -130.5 -23t-98.5 -66t-62.5 -104.5t-21.5 -138.5q0 -79 21.5 -141t60 -103.5t91 -64t116.5 -22.5q65 0 109 13t73 28t46 27.5t29 12.5zM95 733q0 103 26.5 199t76 179.5t117.5 151.5t151 117.5t178 76t199 26.5q103 0 199 -26.5t179 -76 t151.5 -117.5t117 -151.5t75 -179t26.5 -199.5q0 -102 -26.5 -198t-75 -179t-117 -151t-151.5 -117t-179 -75.5t-199 -26.5q-102 0 -198 26.5t-179 75.5t-151 117t-117.5 151t-76 178.5t-26.5 198.5zM199 733q0 -91 22.5 -175t64 -157t100 -132.5t130 -102t154.5 -65.5 t173 -23t173.5 23t155.5 65.5t131 102t101 132.5t65 157t23 175q0 137 -50.5 257.5t-138.5 210t-206.5 141.5t-253.5 52q-90 0 -173 -23.5t-154.5 -66t-130 -103t-100 -134t-64 -158.5t-22.5 -176z" /> +<glyph unicode="ª" horiz-adv-x="647" d="M549 860q-17 0 -27.5 4.5t-12.5 24.5l-5 50q-26 -22 -49.5 -38t-48 -27.5t-51 -17t-58.5 -5.5q-67 0 -109 35.5t-42 104.5q0 41 19 79.5t63 68.5t117 49.5t181 22.5l5 39q1 7 1 13.5v12.5q0 47 -20 74.5t-70 27.5q-35 0 -59.5 -9t-42.5 -20t-33.5 -20t-31.5 -9 q-14 0 -22 7t-12 18l-18 40q55 51 116.5 75t131.5 24q45 0 80 -16t59 -42.5t36 -63t12 -77.5q0 -8 -0.5 -17.5t-1.5 -17.5l-48 -390h-59zM347 942q47 0 83.5 19.5t73.5 55.5l13 111q-68 -2 -115 -11t-76 -24.5t-42 -37t-13 -47.5q0 -35 21.5 -50.5t54.5 -15.5z" /> +<glyph unicode="«" horiz-adv-x="896" d="M136 530l3 23l285 397l53 -27q24 -12 24 -35q0 -20 -16 -40l-179 -269q-16 -26 -33 -37q10 -10 24 -37l114 -269q6 -14 6 -28q0 -33 -33 -48l-60 -28zM419 530l3 23l285 397l53 -27q24 -12 23 -35q0 -20 -15 -40l-179 -269q-16 -26 -33 -37q10 -10 24 -37l113 -269 q6 -14 6 -28q0 -33 -32 -48l-61 -28z" /> +<glyph unicode="¬" d="M184 754h880l-53 -428h-151l37 295h-728z" /> +<glyph unicode="­" horiz-adv-x="656" d="M118 688h468l-20 -149h-467z" /> +<glyph unicode="®" horiz-adv-x="1635" d="M96 733q0 103 27 199t76 179.5t117 151.5t151.5 117.5t178.5 76t199 26.5q103 0 198.5 -26.5t179 -76t151.5 -117.5t117 -151.5t75.5 -179t26.5 -199.5q0 -102 -26.5 -198t-75.5 -179t-117 -151t-151.5 -117t-179 -75.5t-198.5 -26.5t-198.5 26.5t-179 75.5t-151.5 117 t-117 151t-76 178.5t-27 198.5zM200 733q0 -91 22.5 -175t64.5 -157t100 -132.5t130 -102t155 -65.5t173 -23t173 23t155 65.5t131 102t101 132.5t65 157t23 175q0 137 -50.5 257.5t-138 210t-206 141.5t-253.5 52t-253 -52t-205 -141.5t-137 -210t-50 -257.5zM697 641v-362 h-159v913h295q176 0 261 -64t85 -189q0 -96 -55 -163.5t-163 -93.5q17 -10 29 -26t26 -35l232 -342h-151q-34 0 -50 25l-206 309q-9 14 -22 21t-40 7h-82zM697 758h118q57 0 96.5 10.5t63.5 31t35 50.5t11 69q0 38 -10 66.5t-32 47t-57.5 27.5t-88.5 9h-136v-311z" /> +<glyph unicode="¯" horiz-adv-x="581" d="M129 1377h543l-15 -115h-542z" /> +<glyph unicode="°" horiz-adv-x="791" d="M145 1155q0 69 26.5 129.5t71.5 105t105.5 70t129.5 25.5q71 0 132 -25.5t106 -70t70.5 -105t25.5 -129.5q0 -68 -25.5 -127.5t-70.5 -104t-106 -71t-132 -26.5q-70 0 -130 26.5t-105 71t-71.5 104t-26.5 127.5zM273 1154q0 -43 16 -80.5t43.5 -65t65 -43.5t80.5 -16 t80.5 16t65 43.5t43 65t15.5 80.5t-15.5 81t-43 66t-65 44t-80.5 16t-80.5 -16t-65 -44t-43.5 -66t-16 -81z" /> +<glyph unicode="±" d="M753 1228l-48 -388h420l-16 -134h-421l-46 -379h-143l46 379h-416l15 134h417l48 388h144zM68 216h980l-17 -134h-979z" /> +<glyph unicode="²" horiz-adv-x="679" d="M494 1675q98 0 153.5 -51t55.5 -136q0 -45 -14 -82t-38.5 -70t-57 -64t-67.5 -63l-203 -185q51 14 94 14h207q18 0 28 -9t10 -24q0 -11 -1.5 -26t-3.5 -28q-2 -15 -4 -29h-521l5 43q2 12 8.5 26.5t19.5 25.5l256 225q32 28 59.5 56.5t48 57.5t32 59t11.5 61 q0 46 -27.5 70.5t-70.5 24.5t-76 -22t-57 -73q-14 -31 -48 -31q-4 0 -8 0.5t-10 1.5l-68 12q30 109 106.5 162.5t180.5 53.5z" /> +<glyph unicode="³" horiz-adv-x="679" d="M514 1675q47 0 85.5 -13t65.5 -36t41.5 -55t14.5 -69q0 -143 -142 -189q58 -17 86.5 -52.5t28.5 -92.5q0 -61 -24.5 -108.5t-64.5 -80t-91 -49.5t-104 -17q-57 0 -99 13t-70 38t-45.5 61.5t-26.5 84.5l59 25q15 6 29 6q29 0 37 -24q4 -14 11 -31t20.5 -31.5t35.5 -24 t56 -9.5q35 0 62 11t46 30t29 43.5t10 51.5q0 50 -35.5 75t-124.5 25l12 92q93 2 135.5 33t42.5 95q0 45 -27 68t-72 23q-51 0 -82.5 -23.5t-52.5 -67.5q-14 -32 -44 -32q-4 0 -8 0.5t-9 1.5l-66 12q14 53 41.5 94t64.5 68t81.5 40.5t93.5 13.5z" /> +<glyph unicode="´" horiz-adv-x="581" d="M692 1482l-254 -263q-14 -15 -29 -21.5t-35 -6.5h-105l170 248q14 23 31.5 33t49.5 10h172z" /> +<glyph unicode="µ" horiz-adv-x="1050" d="M356 1035l-85 -695q-2 -11 -2 -21v-20q0 -84 44 -129.5t127 -45.5q72 0 139.5 38t130.5 105l95 768h175l-127 -1035h-105q-18 0 -30 9t-12 28v110q-72 -74 -141 -108t-151 -34q-67 0 -115 24t-79 68v-16q0 -37 -2.5 -74t-6.5 -69l-36 -290h-87q-33 0 -52 16.5t-19 45.5 v6.5t1 7.5l162 1311h176z" /> +<glyph unicode="¶" horiz-adv-x="1371" d="M1451 1467l-19 -156h-226l-185 -1517h-161l187 1517h-284l-186 -1517h-161l108 882q-95 0 -172 25.5t-130.5 71.5t-82.5 110.5t-29 143.5q0 92 36.5 172.5t103.5 140t161.5 93.5t210.5 34h829z" /> +<glyph unicode="·" horiz-adv-x="560" d="M152 607q0 32 11.5 60.5t32.5 49t48.5 33t58.5 12.5q32 0 60 -12.5t48.5 -33t33 -49t12.5 -60.5q0 -31 -12.5 -58.5t-33 -48.5t-48.5 -32.5t-60 -11.5q-31 0 -58.5 11.5t-48.5 32.5t-32.5 48.5t-11.5 58.5z" /> +<glyph unicode="¸" horiz-adv-x="581" d="M71 -255q6 0 13 -4t17.5 -8.5t23.5 -9t34 -4.5q41 0 63 20.5t22 51.5q0 36 -36.5 51t-104.5 24l60 144h109l-32 -84q76 -17 110 -49.5t34 -79.5q0 -37 -17 -66t-47 -49t-71.5 -30.5t-90.5 -10.5q-39 0 -73 8.5t-61 23.5l23 55q9 17 24 17z" /> +<glyph unicode="¹" horiz-adv-x="679" d="M246 1017h150l56 446l10 45l-124 -94q-12 -9 -27 -9q-11 0 -18.5 4.5t-11.5 10.5l-33 56l251 193h106l-80 -652h124l-11 -95h-405z" /> +<glyph unicode="º" horiz-adv-x="720" d="M481 1483q59 0 107 -19t81 -54.5t50.5 -85t17.5 -111.5q0 -84 -24.5 -151.5t-68 -115t-105 -73t-135.5 -25.5q-60 0 -108 19t-81.5 54t-51.5 85.5t-18 111.5q0 83 25 150.5t69.5 115.5t106 73.5t135.5 25.5zM418 953q92 0 137.5 70.5t45.5 189.5q0 77 -33 120.5t-98 43.5 q-51 0 -86.5 -19.5t-57.5 -53.5t-32 -82t-10 -106q0 -77 32.5 -120t101.5 -43z" /> +<glyph unicode="»" horiz-adv-x="896" d="M485 553l-2 -23l-283 -398l-55 28q-24 11 -23 36q0 16 13 40l182 269q16 25 31 36q-13 12 -22 38l-115 269q-6 13 -6 26q0 33 34 49l60 27zM768 553l-2 -23l-284 -398l-54 28q-24 11 -24 36q0 16 14 40l182 269q16 25 31 36q-13 12 -23 38l-114 269q-6 13 -7 26 q0 33 34 49l61 27z" /> +<glyph unicode="¼" horiz-adv-x="1510" d="M1308 283h112l-8 -75q-2 -11 -9 -19t-21 -8h-87l-21 -181h-109l23 181h-315q-17 0 -26.5 8.5t-10.5 20.5l-5 63l412 472h122zM452 54q-22 -33 -46 -43.5t-54 -10.5h-71l946 1404q20 30 45 45.5t59 15.5h73zM213 815h151l55 447l10 45l-124 -95q-14 -9 -26 -9 q-11 0 -19 4.5t-12 11.5l-33 55l251 193h106l-79 -652h123l-11 -95h-404zM1231 526q2 19 6 42t10 47l-284 -332h237z" /> +<glyph unicode="½" horiz-adv-x="1510" d="M413 54q-22 -33 -46 -43.5t-54 -10.5h-71l946 1404q20 30 45 45.5t59 15.5h73zM1195 754q98 0 154 -51.5t56 -136.5q0 -46 -16 -85t-42 -73t-60.5 -66t-71.5 -66l-191 -174q51 14 94 15h207q18 0 28 -9.5t10 -24.5v-5.5t-2 -20.5l-6 -57h-521l5 43q2 12 8 26.5t19 25.5 l256 226q32 28 59.5 56.5t48 57.5t32.5 58.5t12 60.5q0 46 -27.5 70.5t-70.5 24.5q-48 0 -79.5 -26.5t-54.5 -68.5q-9 -16 -20 -23t-29 -7q-4 0 -10.5 0.5t-30.5 4.5l-44 9q30 109 106.5 162.5t180.5 53.5zM218 815h151l55 447l10 45l-124 -95q-12 -9 -26 -9q-11 0 -19 4.5 t-12 11.5l-33 55l251 193h107l-80 -652h124l-12 -95h-404z" /> +<glyph unicode="¾" horiz-adv-x="1510" d="M1323 283h113l-9 -75q-2 -11 -9 -19t-20 -8h-87l-22 -181h-108l22 181h-314q-17 0 -27 8.5t-11 20.5l-4 63l411 472h122zM472 54q-22 -33 -46 -43.5t-53 -10.5h-72l946 1404q20 30 45.5 45.5t59.5 15.5h72zM496 1474q47 0 85.5 -13.5t65.5 -36.5t41 -55t14 -69 q0 -143 -142 -189q58 -17 87 -52.5t29 -91.5q0 -61 -24.5 -109t-64.5 -80.5t-91.5 -49t-104.5 -16.5q-57 0 -98.5 12.5t-69.5 37.5t-45.5 61.5t-26.5 84.5l59 25q15 6 29 6q29 0 36 -24q14 -45 41 -70.5t82 -25.5q35 0 62 11.5t46 30.5t29.5 43.5t10.5 50.5q0 50 -36 75.5 t-124 25.5l11 91q93 2 135.5 33t42.5 95q0 45 -27 68t-72 23q-51 0 -84 -24.5t-48 -62.5q-8 -20 -20.5 -27.5t-26.5 -7.5q-4 0 -9.5 0.5t-22.5 3.5l-50 9q14 53 41.5 94.5t64 68t81.5 40.5t94 14zM1246 526q2 19 6 42t11 47l-285 -332h237z" /> +<glyph unicode="¿" horiz-adv-x="754" d="M644 -218q-34 -30 -73 -56.5t-83.5 -46.5t-94.5 -32.5t-107 -12.5q-70 0 -127 20t-98.5 57t-64 90t-22.5 119q0 83 24.5 142t61.5 101.5t81.5 73t84.5 58t70 55t39 64.5l37 158h120l-10 -172q-3 -46 -28 -79.5t-62 -63.5t-79.5 -58.5t-78 -63t-59.5 -78.5t-24 -104 q0 -42 13 -74.5t36 -54.5t53.5 -33t63.5 -11q56 0 99 15.5t73.5 33.5t50.5 33.5t32 15.5q23 0 34 -21zM343 925q0 27 9.5 50t26.5 40.5t40 28t51 10.5q27 0 50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5q-28 0 -51 9.5t-40 27 t-26.5 40.5t-9.5 51z" /> +<glyph unicode="À" horiz-adv-x="1266" d="M1208 0h-147q-26 0 -40 13t-20 33l-79 358h-598l-168 -358q-9 -18 -28 -32t-43 -14h-150l720 1467h194zM388 544h503l-135 607q-6 27 -13.5 60.5t-12.5 72.5q-14 -39 -29 -73t-28 -61zM629 1824q32 0 46 -7t30 -26l172 -208h-148q-20 0 -31.5 6.5t-26.5 19.5l-241 215 h199z" /> +<glyph unicode="Á" horiz-adv-x="1266" d="M1208 0h-147q-26 0 -40 13t-20 33l-79 358h-598l-168 -358q-9 -18 -28 -32t-43 -14h-150l720 1467h194zM388 544h503l-135 607q-6 27 -13.5 60.5t-12.5 72.5q-14 -39 -29 -73t-28 -61zM1152 1824l-295 -215q-17 -12 -30 -19t-34 -7h-148l223 208q10 9 19 16t18 10.5 t20.5 5t27.5 1.5h199z" /> +<glyph unicode="Â" horiz-adv-x="1266" d="M1208 0h-147q-26 0 -40 13t-20 33l-79 358h-598l-168 -358q-9 -18 -28 -32t-43 -14h-150l720 1467h194zM388 544h503l-135 607q-6 27 -13.5 60.5t-12.5 72.5q-14 -39 -29 -73t-28 -61zM1071 1583h-134q-11 0 -24 3t-21 10l-117 110l-145 -110q-9 -7 -23 -10t-26 -3h-134 l252 214h173z" /> +<glyph unicode="Ã" horiz-adv-x="1266" d="M1208 0h-147q-26 0 -40 13t-20 33l-79 358h-598l-168 -358q-9 -18 -28 -32t-43 -14h-150l720 1467h194zM388 544h503l-135 607q-6 27 -13.5 60.5t-12.5 72.5q-14 -39 -29 -73t-28 -61zM895 1700q31 0 52 21.5t26 59.5h96q-5 -43 -20.5 -79.5t-39 -63.5t-55 -42t-69.5 -15 q-33 0 -61.5 14t-54.5 30t-49.5 30t-44.5 14q-31 0 -51 -23t-25 -61h-99q5 43 21 80t39.5 64t55 42t69.5 15q34 0 62.5 -13.5t54 -30t48.5 -29.5t45 -13z" /> +<glyph unicode="Ä" horiz-adv-x="1266" d="M1208 0h-147q-26 0 -40 13t-20 33l-79 358h-598l-168 -358q-9 -18 -28 -32t-43 -14h-150l720 1467h194zM388 544h503l-135 607q-6 27 -13.5 60.5t-12.5 72.5q-14 -39 -29 -73t-28 -61zM687 1705q0 -20 -8.5 -38.5t-23 -32.5t-33.5 -21.5t-40 -7.5q-20 0 -38.5 7.5 t-32.5 21.5t-22.5 32t-8.5 39q0 22 8.5 40.5t22.5 33.5t32 23t39 8q22 0 40.5 -8t33 -23t23 -33.5t8.5 -40.5zM1039 1705q0 -20 -8 -38.5t-22.5 -32.5t-33 -21.5t-39.5 -7.5q-22 0 -40 7.5t-32.5 21.5t-23 32t-8.5 39q0 22 8.5 40.5t23 33.5t32.5 23t40 8t40 -8t32.5 -23 t22.5 -33.5t8 -40.5z" /> +<glyph unicode="Å" horiz-adv-x="1266" d="M1208 0h-147q-26 0 -40 13t-20 33l-79 358h-598l-168 -358q-9 -18 -28 -32t-43 -14h-150l720 1467h194zM388 544h503l-135 607q-6 27 -13.5 60.5t-12.5 72.5q-14 -39 -29 -73t-28 -61zM568 1699q0 40 15.5 73.5t42 57.5t61.5 37.5t74 13.5q40 0 75 -13.5t62 -37.5 t42.5 -57.5t15.5 -73.5q0 -39 -15.5 -72t-42.5 -56.5t-62 -36.5t-75 -13q-39 0 -74 13t-61.5 36.5t-42 56.5t-15.5 72zM659 1699q0 -44 28 -73.5t76 -29.5q46 0 74 29.5t28 73.5q0 46 -28 74.5t-74 28.5q-48 0 -76 -28.5t-28 -74.5z" /> +<glyph unicode="Æ" horiz-adv-x="1745" d="M791 1467h976l-18 -156h-709v-496h525l-20 -150h-505v-509h568l-21 -156h-727v404h-517l-210 -358q-11 -18 -30.5 -32t-44.5 -14h-148zM425 544h435v767q-14 -37 -29.5 -70t-32.5 -62z" /> +<glyph unicode="Ç" horiz-adv-x="1263" d="M519 -255q6 0 13.5 -4t17.5 -8.5t23.5 -9t33.5 -4.5q41 0 63 20.5t22 51.5q0 36 -36 51t-104 24l49 121q-117 11 -209.5 62t-157 134t-98.5 194.5t-34 243.5q0 191 59.5 349.5t163.5 273t244.5 177.5t301.5 63q78 0 141.5 -13.5t116 -39t95 -61.5t79.5 -80l-66 -80 q-8 -10 -18.5 -16.5t-25.5 -6.5q-18 0 -38.5 20.5t-56 44.5t-91.5 44.5t-145 20.5q-119 0 -222 -47.5t-179 -136.5t-119.5 -214.5t-43.5 -282.5q0 -114 29.5 -204t82.5 -153t125.5 -97t159.5 -34q68 0 120 11.5t92 28t68.5 36.5t49.5 36t35 27.5t25 11.5q9 0 15.5 -3.5 t10.5 -8.5l67 -83q-89 -96 -203.5 -153t-263.5 -65l-23 -60q76 -17 110.5 -49.5t34.5 -79.5q0 -37 -17 -66t-47.5 -49t-72 -30.5t-90.5 -10.5q-39 0 -72.5 8.5t-61.5 23.5l24 55q8 17 23 17z" /> +<glyph unicode="È" horiz-adv-x="1092" d="M1096 1311h-642l-62 -495h520l-19 -150h-519l-63 -510h644l-19 -156h-837l182 1467h834zM585 1824q32 0 46 -7t30 -26l172 -208h-148q-20 0 -31.5 6.5t-26.5 19.5l-241 215h199z" /> +<glyph unicode="É" horiz-adv-x="1092" d="M1096 1311h-642l-62 -495h520l-19 -150h-519l-63 -510h644l-19 -156h-837l182 1467h834zM1092 1824l-295 -215q-17 -12 -30 -19t-34 -7h-148l223 208q10 9 19 16t18 10.5t20.5 5t27.5 1.5h199z" /> +<glyph unicode="Ê" horiz-adv-x="1092" d="M1096 1311h-642l-62 -495h520l-19 -150h-519l-63 -510h644l-19 -156h-837l182 1467h834zM1027 1583h-134q-11 0 -24 3t-21 10l-117 110l-145 -110q-9 -7 -23 -10t-26 -3h-134l252 214h173z" /> +<glyph unicode="Ë" horiz-adv-x="1092" d="M1096 1311h-642l-62 -495h520l-19 -150h-519l-63 -510h644l-19 -156h-837l182 1467h834zM643 1705q0 -20 -8.5 -38.5t-23 -32.5t-33.5 -21.5t-40 -7.5q-20 0 -38.5 7.5t-32.5 21.5t-22.5 32t-8.5 39q0 22 8.5 40.5t22.5 33.5t32 23t39 8q22 0 40.5 -8t33 -23t23 -33.5 t8.5 -40.5zM995 1705q0 -20 -8 -38.5t-22.5 -32.5t-33 -21.5t-39.5 -7.5q-22 0 -40 7.5t-32.5 21.5t-23 32t-8.5 39q0 22 8.5 40.5t23 33.5t32.5 23t40 8t40 -8t32.5 -23t22.5 -33.5t8 -40.5z" /> +<glyph unicode="Ì" horiz-adv-x="579" d="M325 0h-193l179 1467h193zM287 1824q32 0 46 -7t30 -26l172 -208h-148q-20 0 -31.5 6.5t-26.5 19.5l-241 215h199z" /> +<glyph unicode="Í" horiz-adv-x="579" d="M325 0h-193l179 1467h193zM794 1824l-295 -215q-17 -12 -30 -19t-34 -7h-148l223 208q10 9 19 16t18 10.5t20.5 5t27.5 1.5h199z" /> +<glyph unicode="Î" horiz-adv-x="579" d="M325 0h-193l179 1467h193zM729 1583h-134q-11 0 -24 3t-21 10l-117 110l-145 -110q-9 -7 -23 -10t-26 -3h-134l252 214h173z" /> +<glyph unicode="Ï" horiz-adv-x="579" d="M325 0h-193l179 1467h193zM345 1705q0 -20 -8.5 -38.5t-23 -32.5t-33.5 -21.5t-40 -7.5q-20 0 -38.5 7.5t-32.5 21.5t-22.5 32t-8.5 39q0 22 8.5 40.5t22.5 33.5t32 23t39 8q22 0 40.5 -8t33 -23t23 -33.5t8.5 -40.5zM697 1705q0 -20 -8 -38.5t-22.5 -32.5t-33 -21.5 t-39.5 -7.5q-22 0 -40 7.5t-32.5 21.5t-23 32t-8.5 39q0 22 8.5 40.5t23 33.5t32.5 23t40 8t40 -8t32.5 -23t22.5 -33.5t8 -40.5z" /> +<glyph unicode="Ð" horiz-adv-x="1486" d="M85 796h183l82 671h506q135 0 243.5 -46t185 -129.5t117 -199.5t40.5 -255q0 -187 -57.5 -341.5t-160 -264.5t-242 -170.5t-305.5 -60.5h-506l83 683h-183zM1245 833q0 111 -28 199.5t-80.5 150.5t-128 95.5t-170.5 33.5h-315l-63 -516h356l-13 -113h-357l-64 -528h313 q123 0 224 46.5t173.5 134t112.5 213t40 284.5z" /> +<glyph unicode="Ñ" horiz-adv-x="1424" d="M379 1467q26 0 37.5 -6t23.5 -26l633 -1122q2 24 4 45t4 40l131 1069h169l-180 -1467h-96q-24 0 -39 7.5t-27 28.5l-631 1122q0 -5 -0.5 -14t-2 -19.5t-2.5 -21t-2 -18.5l-133 -1085h-169l182 1467h98v0zM972 1700q31 0 52 21.5t26 59.5h96q-5 -43 -20.5 -79.5t-39 -63.5 t-55 -42t-69.5 -15q-33 0 -61.5 14t-54.5 30t-49.5 30t-44.5 14q-31 0 -51 -23t-25 -61h-99q5 43 21 80t39.5 64t55 42t69.5 15q34 0 62.5 -13.5t54 -30t48.5 -29.5t45 -13z" /> +<glyph unicode="Ò" horiz-adv-x="1500" d="M1456 838q0 -125 -26.5 -237t-75 -206.5t-118 -170.5t-155 -129t-185 -81.5t-209.5 -28.5q-135 0 -243 48t-184.5 133.5t-117 203t-40.5 258.5q0 187 58.5 344t161.5 271t244 177.5t305 63.5q135 0 243.5 -49t184.5 -135t116.5 -204t40.5 -258zM1260 834q0 112 -29 202 t-81.5 153.5t-129 98.5t-171.5 35q-121 0 -222.5 -48.5t-174 -138.5t-113.5 -217.5t-41 -285.5q0 -112 28.5 -202t81.5 -153.5t128.5 -98t171.5 -34.5q123 0 224 48.5t174 138t113.5 217t40.5 285.5zM743 1824q32 0 46 -7t30 -26l172 -208h-148q-20 0 -31.5 6.5t-26.5 19.5 l-241 215h199z" /> +<glyph unicode="Ó" horiz-adv-x="1500" d="M1456 838q0 -125 -26.5 -237t-75 -206.5t-118 -170.5t-155 -129t-185 -81.5t-209.5 -28.5q-135 0 -243 48t-184.5 133.5t-117 203t-40.5 258.5q0 187 58.5 344t161.5 271t244 177.5t305 63.5q135 0 243.5 -49t184.5 -135t116.5 -204t40.5 -258zM1260 834q0 112 -29 202 t-81.5 153.5t-129 98.5t-171.5 35q-121 0 -222.5 -48.5t-174 -138.5t-113.5 -217.5t-41 -285.5q0 -112 28.5 -202t81.5 -153.5t128.5 -98t171.5 -34.5q123 0 224 48.5t174 138t113.5 217t40.5 285.5zM1250 1824l-295 -215q-17 -12 -30 -19t-34 -7h-148l223 208q10 9 19 16 t18 10.5t20.5 5t27.5 1.5h199z" /> +<glyph unicode="Ô" horiz-adv-x="1500" d="M1456 838q0 -125 -26.5 -237t-75 -206.5t-118 -170.5t-155 -129t-185 -81.5t-209.5 -28.5q-135 0 -243 48t-184.5 133.5t-117 203t-40.5 258.5q0 187 58.5 344t161.5 271t244 177.5t305 63.5q135 0 243.5 -49t184.5 -135t116.5 -204t40.5 -258zM1260 834q0 112 -29 202 t-81.5 153.5t-129 98.5t-171.5 35q-121 0 -222.5 -48.5t-174 -138.5t-113.5 -217.5t-41 -285.5q0 -112 28.5 -202t81.5 -153.5t128.5 -98t171.5 -34.5q123 0 224 48.5t174 138t113.5 217t40.5 285.5zM1185 1583h-134q-11 0 -24 3t-21 10l-117 110l-145 -110q-9 -7 -23 -10 t-26 -3h-134l252 214h173z" /> +<glyph unicode="Õ" horiz-adv-x="1500" d="M1456 838q0 -125 -26.5 -237t-75 -206.5t-118 -170.5t-155 -129t-185 -81.5t-209.5 -28.5q-135 0 -243 48t-184.5 133.5t-117 203t-40.5 258.5q0 187 58.5 344t161.5 271t244 177.5t305 63.5q135 0 243.5 -49t184.5 -135t116.5 -204t40.5 -258zM1260 834q0 112 -29 202 t-81.5 153.5t-129 98.5t-171.5 35q-121 0 -222.5 -48.5t-174 -138.5t-113.5 -217.5t-41 -285.5q0 -112 28.5 -202t81.5 -153.5t128.5 -98t171.5 -34.5q123 0 224 48.5t174 138t113.5 217t40.5 285.5zM1009 1700q31 0 52 21.5t26 59.5h96q-5 -43 -20.5 -79.5t-39 -63.5 t-55 -42t-69.5 -15q-33 0 -61.5 14t-54.5 30t-49.5 30t-44.5 14q-31 0 -51 -23t-25 -61h-99q5 43 21 80t39.5 64t55 42t69.5 15q34 0 62.5 -13.5t54 -30t48.5 -29.5t45 -13z" /> +<glyph unicode="Ö" horiz-adv-x="1500" d="M1456 838q0 -125 -26.5 -237t-75 -206.5t-118 -170.5t-155 -129t-185 -81.5t-209.5 -28.5q-135 0 -243 48t-184.5 133.5t-117 203t-40.5 258.5q0 187 58.5 344t161.5 271t244 177.5t305 63.5q135 0 243.5 -49t184.5 -135t116.5 -204t40.5 -258zM1260 834q0 112 -29 202 t-81.5 153.5t-129 98.5t-171.5 35q-121 0 -222.5 -48.5t-174 -138.5t-113.5 -217.5t-41 -285.5q0 -112 28.5 -202t81.5 -153.5t128.5 -98t171.5 -34.5q123 0 224 48.5t174 138t113.5 217t40.5 285.5zM801 1705q0 -20 -8.5 -38.5t-23 -32.5t-33.5 -21.5t-40 -7.5 q-20 0 -38.5 7.5t-32.5 21.5t-22.5 32t-8.5 39q0 22 8.5 40.5t22.5 33.5t32 23t39 8q22 0 40.5 -8t33 -23t23 -33.5t8.5 -40.5zM1153 1705q0 -20 -8 -38.5t-22.5 -32.5t-33 -21.5t-39.5 -7.5q-22 0 -40 7.5t-32.5 21.5t-23 32t-8.5 39q0 22 8.5 40.5t23 33.5t32.5 23t40 8 t40 -8t32.5 -23t22.5 -33.5t8 -40.5z" /> +<glyph unicode="×" d="M1107 1040l-397 -353l319 -363l-104 -96l-321 365l-411 -367l-82 96l410 365l-311 355l105 96l312 -357l397 355z" /> +<glyph unicode="Ø" horiz-adv-x="1499" d="M1456 838q0 -125 -26.5 -237t-75 -206.5t-118 -170.5t-155 -129t-185 -81.5t-209.5 -28.5q-99 0 -183 25.5t-153 73.5l-111 -140q-25 -31 -56 -43.5t-59 -12.5h-76l216 272q-79 86 -121 205t-42 263q0 187 58.5 344t161.5 271t244 177.5t305 63.5q106 0 196 -30.5 t161 -85.5l91 115q11 14 20.5 24t19 15.5t21.5 8t28 2.5h98l-196 -246q71 -86 108.5 -200t37.5 -249zM298 633q0 -99 22 -180.5t64 -143.5l730 917q-51 47 -117.5 72t-147.5 25q-121 0 -222.5 -48.5t-174 -138.5t-113.5 -217.5t-41 -285.5zM1260 834q0 90 -18.5 165 t-53.5 136l-725 -911q49 -39 110 -59t135 -20q123 0 224 48.5t174 138t113.5 217t40.5 285.5z" /> +<glyph unicode="Ù" horiz-adv-x="1375" d="M645 151q82 0 151 31.5t121 87.5t85 133.5t45 169.5l109 894h192l-109 -894q-15 -126 -66 -234t-130.5 -187t-185.5 -124t-232 -45q-114 0 -202 36.5t-149 102.5t-92.5 157.5t-31.5 199.5q0 46 6 94l108 894h192l-110 -893q-2 -20 -3.5 -39.5t-1.5 -37.5q0 -77 20 -140.5 t58.5 -109.5t95 -71t130.5 -25zM685 1824q32 0 46 -7t30 -26l172 -208h-148q-20 0 -31.5 6.5t-26.5 19.5l-241 215h199z" /> +<glyph unicode="Ú" horiz-adv-x="1375" d="M645 151q82 0 151 31.5t121 87.5t85 133.5t45 169.5l109 894h192l-109 -894q-15 -126 -66 -234t-130.5 -187t-185.5 -124t-232 -45q-114 0 -202 36.5t-149 102.5t-92.5 157.5t-31.5 199.5q0 46 6 94l108 894h192l-110 -893q-2 -20 -3.5 -39.5t-1.5 -37.5q0 -77 20 -140.5 t58.5 -109.5t95 -71t130.5 -25zM1192 1824l-295 -215q-17 -12 -30 -19t-34 -7h-148l223 208q10 9 19 16t18 10.5t20.5 5t27.5 1.5h199z" /> +<glyph unicode="Û" horiz-adv-x="1375" d="M645 151q82 0 151 31.5t121 87.5t85 133.5t45 169.5l109 894h192l-109 -894q-15 -126 -66 -234t-130.5 -187t-185.5 -124t-232 -45q-114 0 -202 36.5t-149 102.5t-92.5 157.5t-31.5 199.5q0 46 6 94l108 894h192l-110 -893q-2 -20 -3.5 -39.5t-1.5 -37.5q0 -77 20 -140.5 t58.5 -109.5t95 -71t130.5 -25zM1127 1583h-134q-11 0 -24 3t-21 10l-117 110l-145 -110q-9 -7 -23 -10t-26 -3h-134l252 214h173z" /> +<glyph unicode="Ü" horiz-adv-x="1375" d="M645 151q82 0 151 31.5t121 87.5t85 133.5t45 169.5l109 894h192l-109 -894q-15 -126 -66 -234t-130.5 -187t-185.5 -124t-232 -45q-114 0 -202 36.5t-149 102.5t-92.5 157.5t-31.5 199.5q0 46 6 94l108 894h192l-110 -893q-2 -20 -3.5 -39.5t-1.5 -37.5q0 -77 20 -140.5 t58.5 -109.5t95 -71t130.5 -25zM743 1705q0 -20 -8.5 -38.5t-23 -32.5t-33.5 -21.5t-40 -7.5q-20 0 -38.5 7.5t-32.5 21.5t-22.5 32t-8.5 39q0 22 8.5 40.5t22.5 33.5t32 23t39 8q22 0 40.5 -8t33 -23t23 -33.5t8.5 -40.5zM1095 1705q0 -20 -8 -38.5t-22.5 -32.5t-33 -21.5 t-39.5 -7.5q-22 0 -40 7.5t-32.5 21.5t-23 32t-8.5 39q0 22 8.5 40.5t23 33.5t32.5 23t40 8t40 -8t32.5 -23t22.5 -33.5t8 -40.5z" /> +<glyph unicode="Ý" horiz-adv-x="1192" d="M702 587l-72 -587h-192l73 585l-387 882h170q26 0 39 -12.5t21 -32.5l244 -587q10 -30 17.5 -56.5t12.5 -53.5q12 27 27 53.5t32 56.5l390 587q11 16 28 30.5t42 14.5h159zM1117 1823l-295 -215q-17 -12 -30 -19t-34 -7h-148l223 208q10 9 19 16t18 10.5t20.5 5t27.5 1.5 h199z" /> +<glyph unicode="Þ" horiz-adv-x="1155" d="M515 1193h214q117 0 202.5 -27.5t141.5 -78.5t84 -122t28 -158q0 -116 -38 -212.5t-110.5 -167t-178 -109t-242.5 -38.5h-214l-33 -280h-191l179 1467h192zM497 1042l-76 -611h214q87 0 153.5 26.5t111.5 74.5t68.5 114t23.5 144q0 119 -69.5 185.5t-212.5 66.5h-213z " /> +<glyph unicode="ß" horiz-adv-x="1123" d="M745 1488q91 0 156 -27.5t106.5 -70t60.5 -94.5t19 -100q0 -70 -24 -119t-59.5 -86t-77 -64.5t-77.5 -53.5t-60 -54.5t-24 -67.5q0 -36 22 -60t54.5 -45t71 -43t71.5 -53.5t55 -76.5t22 -112q0 -88 -32 -158t-85.5 -118.5t-125.5 -74.5t-152 -26q-91 0 -162 35t-121 91 l49 67q9 12 21 19.5t29 7.5t35 -15t41 -32.5t55.5 -32t81.5 -14.5q43 0 79.5 15.5t62.5 43.5t41 65t15 80q0 49 -23.5 81.5t-58.5 56t-76.5 44t-76 47t-58 63.5t-23.5 94q0 63 25 108.5t62.5 81t82.5 65t82.5 62.5t63 74t25.5 98q0 29 -11 59t-34 54.5t-60.5 40t-90.5 15.5 q-63 0 -119 -34.5t-99.5 -94t-73.5 -137.5t-40 -165l-110 -893l-48 -212q-17 -77 -94 -77h-71l139 1138l-113 14q-41 5 -41 39l8 79h167q24 94 72 179.5t115.5 151t151.5 104t179 38.5z" /> +<glyph unicode="à" horiz-adv-x="1034" d="M836 0h-95q-36 0 -48.5 18.5t-12.5 44.5l18 210q-37 -66 -79 -119t-90 -90t-100 -57.5t-108 -20.5q-61 0 -111.5 24t-86 70.5t-55 114.5t-19.5 156q0 92 23 179.5t65.5 165.5t102 143t132.5 112.5t157 74t177 26.5q67 0 129.5 -11t123.5 -37zM389 137q50 0 98.5 31.5 t91.5 86.5t80 131.5t66 167.5l44 356q-23 5 -45 7t-43 2q-61 0 -118.5 -20t-108 -56t-91 -85.5t-70 -109t-46 -126.5t-16.5 -138q0 -247 158 -247zM616 1482q32 0 46 -10.5t24 -32.5l110 -248h-101q-20 0 -32.5 6t-24.5 22l-189 263h167z" /> +<glyph unicode="á" horiz-adv-x="1034" d="M836 0h-95q-36 0 -48.5 18.5t-12.5 44.5l18 210q-37 -66 -79 -119t-90 -90t-100 -57.5t-108 -20.5q-61 0 -111.5 24t-86 70.5t-55 114.5t-19.5 156q0 92 23 179.5t65.5 165.5t102 143t132.5 112.5t157 74t177 26.5q67 0 129.5 -11t123.5 -37zM389 137q50 0 98.5 31.5 t91.5 86.5t80 131.5t66 167.5l44 356q-23 5 -45 7t-43 2q-61 0 -118.5 -20t-108 -56t-91 -85.5t-70 -109t-46 -126.5t-16.5 -138q0 -247 158 -247zM998 1482l-254 -263q-14 -15 -29 -21.5t-35 -6.5h-105l170 248q14 23 31.5 33t49.5 10h172z" /> +<glyph unicode="â" horiz-adv-x="1034" d="M836 0h-95q-36 0 -48.5 18.5t-12.5 44.5l18 210q-37 -66 -79 -119t-90 -90t-100 -57.5t-108 -20.5q-61 0 -111.5 24t-86 70.5t-55 114.5t-19.5 156q0 92 23 179.5t65.5 165.5t102 143t132.5 112.5t157 74t177 26.5q67 0 129.5 -11t123.5 -37zM389 137q50 0 98.5 31.5 t91.5 86.5t80 131.5t66 167.5l44 356q-23 5 -45 7t-43 2q-61 0 -118.5 -20t-108 -56t-91 -85.5t-70 -109t-46 -126.5t-16.5 -138q0 -247 158 -247zM966 1197h-117q-11 0 -21.5 4t-15.5 10l-102 131l-7 7t-7 9q-5 -5 -9 -8.5t-8 -7.5l-136 -131q-6 -5 -17.5 -9.5t-23.5 -4.5 h-122l245 268h164z" /> +<glyph unicode="ã" horiz-adv-x="1034" d="M836 0h-95q-36 0 -48.5 18.5t-12.5 44.5l18 210q-37 -66 -79 -119t-90 -90t-100 -57.5t-108 -20.5q-61 0 -111.5 24t-86 70.5t-55 114.5t-19.5 156q0 92 23 179.5t65.5 165.5t102 143t132.5 112.5t157 74t177 26.5q67 0 129.5 -11t123.5 -37zM389 137q50 0 98.5 31.5 t91.5 86.5t80 131.5t66 167.5l44 356q-23 5 -45 7t-43 2q-61 0 -118.5 -20t-108 -56t-91 -85.5t-70 -109t-46 -126.5t-16.5 -138q0 -247 158 -247zM797 1353q67 0 81 90h107q-6 -48 -23 -87.5t-42.5 -67.5t-59.5 -44t-71 -16q-33 0 -60.5 14.5t-50.5 32.5t-44 33t-42 15 q-33 0 -53.5 -23t-26.5 -68h-109q6 47 23.5 87t44 68.5t59.5 44.5t71 16q34 0 60.5 -15t49.5 -33t43.5 -32.5t42.5 -14.5z" /> +<glyph unicode="ä" horiz-adv-x="1034" d="M836 0h-95q-36 0 -48.5 18.5t-12.5 44.5l18 210q-37 -66 -79 -119t-90 -90t-100 -57.5t-108 -20.5q-61 0 -111.5 24t-86 70.5t-55 114.5t-19.5 156q0 92 23 179.5t65.5 165.5t102 143t132.5 112.5t157 74t177 26.5q67 0 129.5 -11t123.5 -37zM389 137q50 0 98.5 31.5 t91.5 86.5t80 131.5t66 167.5l44 356q-23 5 -45 7t-43 2q-61 0 -118.5 -20t-108 -56t-91 -85.5t-70 -109t-46 -126.5t-16.5 -138q0 -247 158 -247zM624 1342q0 -24 -9.5 -44t-26 -35.5t-37.5 -24.5t-44 -9q-24 0 -44.5 9t-35.5 24.5t-24.5 36t-9.5 43.5q0 24 9.5 45.5 t24.5 37.5t35.5 25t44.5 9t44.5 -9t37 -25t26 -37.5t9.5 -45.5zM991 1342q0 -24 -9 -44t-25 -35.5t-37 -24.5t-44 -9q-24 0 -45 9t-36.5 24.5t-24.5 36t-9 43.5q0 24 9 45.5t24.5 37.5t36.5 25t45 9t44.5 -9t36.5 -25t25 -37.5t9 -45.5z" /> +<glyph unicode="å" horiz-adv-x="1034" d="M836 0h-95q-36 0 -48.5 18.5t-12.5 44.5l18 210q-37 -66 -79 -119t-90 -90t-100 -57.5t-108 -20.5q-61 0 -111.5 24t-86 70.5t-55 114.5t-19.5 156q0 92 23 179.5t65.5 165.5t102 143t132.5 112.5t157 74t177 26.5q67 0 129.5 -11t123.5 -37zM389 137q50 0 98.5 31.5 t91.5 86.5t80 131.5t66 167.5l44 356q-23 5 -45 7t-43 2q-61 0 -118.5 -20t-108 -56t-91 -85.5t-70 -109t-46 -126.5t-16.5 -138q0 -247 158 -247zM506 1347q0 43 16.5 77.5t45 60t65 39.5t77.5 14q42 0 79.5 -14t66 -39.5t45 -60t16.5 -77.5q0 -42 -16.5 -77t-45 -59.5 t-66 -38.5t-79.5 -14q-41 0 -77.5 14t-65 38.5t-45 59.5t-16.5 77zM609 1347q0 -45 27.5 -74t75.5 -29q46 0 74.5 29t28.5 74q0 46 -28.5 74.5t-74.5 28.5q-48 0 -75.5 -28.5t-27.5 -74.5z" /> +<glyph unicode="æ" horiz-adv-x="1480" d="M1144 1052q61 0 113.5 -19t90.5 -53t60 -79.5t22 -97.5q0 -58 -28.5 -113.5t-98.5 -99t-190 -72t-302 -31.5q-1 -10 -1 -20v-21q0 -159 62.5 -238t173.5 -79q50 0 88 10.5t68.5 25t53.5 32.5t42.5 33t35.5 25t32 10q20 0 35 -17l45 -57q-52 -53 -102 -92t-102 -64 t-109 -37t-122 -12q-108 0 -189.5 58t-121.5 175q-33 -63 -78 -107.5t-96.5 -73.5t-105.5 -41.5t-105 -12.5q-136 0 -209.5 60.5t-73.5 183.5q0 73 32.5 138.5t106.5 116.5t193.5 82.5t294.5 36.5q4 32 7 52.5t4 34t1.5 22.5t0.5 16q0 183 -158 183q-61 0 -104.5 -16.5 t-76 -37.5t-57 -38t-47.5 -17q-18 0 -30.5 9t-18.5 24l-23 56q89 83 179.5 124t197.5 41q111 0 173 -49.5t85 -136.5q61 86 149.5 134.5t202.5 48.5zM646 490q-123 -5 -208 -24t-137.5 -49.5t-75.5 -72t-23 -92.5q0 -74 40 -109t106 -35q53 0 101 18.5t86 56.5t65 95t36 133 zM1121 922q-61 0 -111.5 -23t-87.5 -66t-62.5 -103.5t-38.5 -134.5q133 7 219.5 25.5t137.5 44.5t71.5 59t20.5 70q0 58 -38.5 93t-110.5 35z" /> +<glyph unicode="ç" horiz-adv-x="886" d="M287 -255q6 0 13 -4t17.5 -8.5t23.5 -9t34 -4.5q41 0 63 20.5t22 51.5q0 36 -36.5 51t-104.5 24l52 124q-76 10 -134 44.5t-97 89t-59 127.5t-20 159q0 126 39.5 241.5t110.5 204.5t168 142.5t214 53.5q102 0 172 -36.5t122 -106.5l-58 -68q-6 -8 -15 -13.5t-20 -5.5 q-14 0 -28 13t-36 29t-55.5 28.5t-85.5 12.5q-71 0 -134 -38.5t-110 -105t-74 -157.5t-27 -195q0 -63 14 -115t43 -88.5t70.5 -56.5t96.5 -20q46 0 82 9.5t63.5 24t48.5 31.5t38 31.5t30.5 24t28.5 9.5q20 0 35 -17l45 -56q-48 -52 -91 -89t-86.5 -60t-88 -34.5t-94.5 -14.5 l-23 -62q76 -17 110 -49.5t34 -79.5q0 -37 -17 -66t-47 -49t-71.5 -30.5t-90.5 -10.5q-39 0 -73 8.5t-61 23.5l23 55q9 17 24 17z" /> +<glyph unicode="è" horiz-adv-x="944" d="M902 815q0 -68 -27.5 -124.5t-101.5 -102t-203 -79.5t-331 -54q-1 -11 -1 -22v-22q0 -137 59.5 -209.5t180.5 -72.5q49 0 87.5 10.5t69 25t53.5 32.5t42.5 33t35.5 25t33 10q18 0 34 -17l45 -57q-52 -54 -102 -92.5t-102 -64t-109 -37t-123 -11.5q-89 0 -159.5 29.5 t-119.5 84.5t-76 132.5t-27 174.5q0 80 17 159t49.5 150.5t79 133t106.5 106t132 70.5t155 26q79 0 136.5 -22.5t94 -57.5t54.5 -77t18 -80zM589 921q-65 0 -119 -27t-96 -73.5t-72 -109.5t-46 -136q158 19 253 44.5t146.5 54.5t67.5 63t16 71q0 18 -8 38t-26 36.5 t-46.5 27.5t-69.5 11zM504 1482q32 0 46 -10.5t24 -32.5l110 -248h-101q-20 0 -32.5 6t-24.5 22l-189 263h167z" /> +<glyph unicode="é" horiz-adv-x="944" d="M902 815q0 -68 -27.5 -124.5t-101.5 -102t-203 -79.5t-331 -54q-1 -11 -1 -22v-22q0 -137 59.5 -209.5t180.5 -72.5q49 0 87.5 10.5t69 25t53.5 32.5t42.5 33t35.5 25t33 10q18 0 34 -17l45 -57q-52 -54 -102 -92.5t-102 -64t-109 -37t-123 -11.5q-89 0 -159.5 29.5 t-119.5 84.5t-76 132.5t-27 174.5q0 80 17 159t49.5 150.5t79 133t106.5 106t132 70.5t155 26q79 0 136.5 -22.5t94 -57.5t54.5 -77t18 -80zM589 921q-65 0 -119 -27t-96 -73.5t-72 -109.5t-46 -136q158 19 253 44.5t146.5 54.5t67.5 63t16 71q0 18 -8 38t-26 36.5 t-46.5 27.5t-69.5 11zM918 1482l-254 -263q-14 -15 -29 -21.5t-35 -6.5h-105l170 248q14 23 31.5 33t49.5 10h172z" /> +<glyph unicode="ê" horiz-adv-x="944" d="M902 815q0 -68 -27.5 -124.5t-101.5 -102t-203 -79.5t-331 -54q-1 -11 -1 -22v-22q0 -137 59.5 -209.5t180.5 -72.5q49 0 87.5 10.5t69 25t53.5 32.5t42.5 33t35.5 25t33 10q18 0 34 -17l45 -57q-52 -54 -102 -92.5t-102 -64t-109 -37t-123 -11.5q-89 0 -159.5 29.5 t-119.5 84.5t-76 132.5t-27 174.5q0 80 17 159t49.5 150.5t79 133t106.5 106t132 70.5t155 26q79 0 136.5 -22.5t94 -57.5t54.5 -77t18 -80zM589 921q-65 0 -119 -27t-96 -73.5t-72 -109.5t-46 -136q158 19 253 44.5t146.5 54.5t67.5 63t16 71q0 18 -8 38t-26 36.5 t-46.5 27.5t-69.5 11zM895 1197h-117q-11 0 -21.5 4t-15.5 10l-102 131l-7 7t-7 9q-5 -5 -9 -8.5t-8 -7.5l-136 -131q-6 -5 -17.5 -9.5t-23.5 -4.5h-122l245 268h164z" /> +<glyph unicode="ë" horiz-adv-x="944" d="M902 815q0 -68 -27.5 -124.5t-101.5 -102t-203 -79.5t-331 -54q-1 -11 -1 -22v-22q0 -137 59.5 -209.5t180.5 -72.5q49 0 87.5 10.5t69 25t53.5 32.5t42.5 33t35.5 25t33 10q18 0 34 -17l45 -57q-52 -54 -102 -92.5t-102 -64t-109 -37t-123 -11.5q-89 0 -159.5 29.5 t-119.5 84.5t-76 132.5t-27 174.5q0 80 17 159t49.5 150.5t79 133t106.5 106t132 70.5t155 26q79 0 136.5 -22.5t94 -57.5t54.5 -77t18 -80zM589 921q-65 0 -119 -27t-96 -73.5t-72 -109.5t-46 -136q158 19 253 44.5t146.5 54.5t67.5 63t16 71q0 18 -8 38t-26 36.5 t-46.5 27.5t-69.5 11zM553 1342q0 -24 -9.5 -44t-26 -35.5t-37.5 -24.5t-44 -9q-24 0 -44.5 9t-35.5 24.5t-24.5 36t-9.5 43.5q0 24 9.5 45.5t24.5 37.5t35.5 25t44.5 9t44.5 -9t37 -25t26 -37.5t9.5 -45.5zM920 1342q0 -24 -9 -44t-25 -35.5t-37 -24.5t-44 -9q-24 0 -45 9 t-36.5 24.5t-24.5 36t-9 43.5q0 24 9 45.5t24.5 37.5t36.5 25t45 9t44.5 -9t36.5 -25t25 -37.5t9 -45.5z" /> +<glyph unicode="ì" horiz-adv-x="498" d="M401 1037l-125 -1037h-179l125 1037h179zM230 1482q32 0 46 -10.5t24 -32.5l110 -248h-101q-20 0 -32.5 6t-24.5 22l-189 263h167z" /> +<glyph unicode="í" horiz-adv-x="498" d="M401 1037l-125 -1037h-179l125 1037h179zM644 1482l-254 -263q-14 -15 -29 -21.5t-35 -6.5h-105l170 248q14 23 31.5 33t49.5 10h172z" /> +<glyph unicode="î" horiz-adv-x="498" d="M401 1037l-125 -1037h-179l125 1037h179zM621 1197h-117q-11 0 -21.5 4t-15.5 10l-102 131l-7 7t-7 9q-5 -5 -9 -8.5t-8 -7.5l-136 -131q-6 -5 -17.5 -9.5t-23.5 -4.5h-122l245 268h164z" /> +<glyph unicode="ï" horiz-adv-x="498" d="M401 1037l-125 -1037h-179l125 1037h179zM279 1342q0 -24 -9.5 -44t-26 -35.5t-37.5 -24.5t-44 -9q-24 0 -44.5 9t-35.5 24.5t-24.5 36t-9.5 43.5q0 24 9.5 45.5t24.5 37.5t35.5 25t44.5 9t44.5 -9t37 -25t26 -37.5t9.5 -45.5zM646 1342q0 -24 -9 -44t-25 -35.5 t-37 -24.5t-44 -9q-24 0 -45 9t-36.5 24.5t-24.5 36t-9 43.5q0 24 9 45.5t24.5 37.5t36.5 25t45 9t44.5 -9t36.5 -25t25 -37.5t9 -45.5z" /> +<glyph unicode="ð" horiz-adv-x="1044" d="M468 1091q-3 5 -4 9.5t-1 9.5q0 19 15 29l132 96q-42 25 -91 43.5t-105 36.5q-38 11 -38 42q0 13 8 33l26 56q90 -16 173.5 -49t154.5 -85l178 127l30 -59q6 -9 6 -21q0 -16 -19 -31l-116 -85q83 -86 131 -209.5t48 -292.5t-35.5 -307.5t-105.5 -238t-172 -154 t-236 -54.5q-84 0 -154.5 29t-122 84t-80.5 132t-29 175q0 111 35.5 209.5t99.5 172t153 117t197 43.5q99 0 179 -46.5t129 -140.5q-2 139 -41 240t-117 172l-194 -142zM468 124q67 0 123.5 26t101.5 81.5t77 142t48 207.5q-9 45 -28.5 86.5t-50 73.5t-74 51.5t-102.5 19.5 q-77 0 -137.5 -30.5t-102.5 -84.5t-64 -126t-22 -155q0 -69 17 -123t48.5 -91.5t74 -57.5t91.5 -20z" /> +<glyph unicode="ñ" horiz-adv-x="1077" d="M73 0l124 1038h91q61 0 61 -61l-15 -201q83 137 187 207t215 70q116 0 180 -78t64 -227q0 -20 -1 -42t-4 -46l-78 -660h-182l78 660q2 20 3.5 39.5t1.5 36.5q0 84 -31.5 124.5t-97.5 40.5q-49 0 -100 -26.5t-98 -75t-87.5 -118t-69.5 -154.5l-59 -527h-182zM763 1355 q67 0 81 90h107q-6 -48 -23 -87.5t-42.5 -67.5t-59.5 -44t-71 -16q-33 0 -60.5 14.5t-50.5 32.5t-44 33t-42 15q-33 0 -53.5 -23t-26.5 -68h-109q6 47 23.5 87t44 68.5t59.5 44.5t71 16q34 0 60.5 -15t49.5 -33t43.5 -32.5t42.5 -14.5z" /> +<glyph unicode="ò" horiz-adv-x="1029" d="M459 128q75 0 136 41t104 109t67 157t24 187q0 143 -56.5 215.5t-163.5 72.5q-76 0 -136.5 -40.5t-103.5 -108.5t-66.5 -157t-23.5 -186q0 -143 55.5 -216.5t163.5 -73.5zM442 -14q-85 0 -155.5 29t-121.5 84.5t-80 135t-29 182.5q0 131 41 246.5t112.5 202.5t168 137.5 t209.5 50.5q85 0 155.5 -29.5t121.5 -84.5t80 -135.5t29 -181.5q0 -130 -41 -246t-112 -203t-168.5 -137.5t-209.5 -50.5zM497 1484q32 0 46 -10.5t24 -32.5l110 -248h-101q-20 0 -32.5 6t-24.5 22l-189 263h167z" /> +<glyph unicode="ó" horiz-adv-x="1029" d="M459 128q75 0 136 41t104 109t67 157t24 187q0 143 -56.5 215.5t-163.5 72.5q-76 0 -136.5 -40.5t-103.5 -108.5t-66.5 -157t-23.5 -186q0 -143 55.5 -216.5t163.5 -73.5zM442 -14q-85 0 -155.5 29t-121.5 84.5t-80 135t-29 182.5q0 131 41 246.5t112.5 202.5t168 137.5 t209.5 50.5q85 0 155.5 -29.5t121.5 -84.5t80 -135.5t29 -181.5q0 -130 -41 -246t-112 -203t-168.5 -137.5t-209.5 -50.5zM910 1484l-254 -263q-14 -15 -29 -21.5t-35 -6.5h-105l170 248q14 23 31.5 33t49.5 10h172z" /> +<glyph unicode="ô" horiz-adv-x="1029" d="M459 128q75 0 136 41t104 109t67 157t24 187q0 143 -56.5 215.5t-163.5 72.5q-76 0 -136.5 -40.5t-103.5 -108.5t-66.5 -157t-23.5 -186q0 -143 55.5 -216.5t163.5 -73.5zM442 -14q-85 0 -155.5 29t-121.5 84.5t-80 135t-29 182.5q0 131 41 246.5t112.5 202.5t168 137.5 t209.5 50.5q85 0 155.5 -29.5t121.5 -84.5t80 -135.5t29 -181.5q0 -130 -41 -246t-112 -203t-168.5 -137.5t-209.5 -50.5zM887 1199h-117q-11 0 -21.5 4t-15.5 10l-102 131l-7 7t-7 9q-5 -5 -9 -8.5t-8 -7.5l-136 -131q-6 -5 -17.5 -9.5t-23.5 -4.5h-122l245 268h164z" /> +<glyph unicode="õ" horiz-adv-x="1029" d="M459 128q75 0 136 41t104 109t67 157t24 187q0 143 -56.5 215.5t-163.5 72.5q-76 0 -136.5 -40.5t-103.5 -108.5t-66.5 -157t-23.5 -186q0 -143 55.5 -216.5t163.5 -73.5zM442 -14q-85 0 -155.5 29t-121.5 84.5t-80 135t-29 182.5q0 131 41 246.5t112.5 202.5t168 137.5 t209.5 50.5q85 0 155.5 -29.5t121.5 -84.5t80 -135.5t29 -181.5q0 -130 -41 -246t-112 -203t-168.5 -137.5t-209.5 -50.5zM718 1355q67 0 81 90h107q-6 -48 -23 -87.5t-42.5 -67.5t-59.5 -44t-71 -16q-33 0 -60.5 14.5t-50.5 32.5t-44 33t-42 15q-33 0 -53.5 -23t-26.5 -68 h-109q6 47 23.5 87t44 68.5t59.5 44.5t71 16q34 0 60.5 -15t49.5 -33t43.5 -32.5t42.5 -14.5z" /> +<glyph unicode="ö" horiz-adv-x="1029" d="M459 128q75 0 136 41t104 109t67 157t24 187q0 143 -56.5 215.5t-163.5 72.5q-76 0 -136.5 -40.5t-103.5 -108.5t-66.5 -157t-23.5 -186q0 -143 55.5 -216.5t163.5 -73.5zM442 -14q-85 0 -155.5 29t-121.5 84.5t-80 135t-29 182.5q0 131 41 246.5t112.5 202.5t168 137.5 t209.5 50.5q85 0 155.5 -29.5t121.5 -84.5t80 -135.5t29 -181.5q0 -130 -41 -246t-112 -203t-168.5 -137.5t-209.5 -50.5zM545 1344q0 -24 -9.5 -44t-26 -35.5t-37.5 -24.5t-44 -9q-24 0 -44.5 9t-35.5 24.5t-24.5 36t-9.5 43.5q0 24 9.5 45.5t24.5 37.5t35.5 25t44.5 9 t44.5 -9t37 -25t26 -37.5t9.5 -45.5zM912 1344q0 -24 -9 -44t-25 -35.5t-37 -24.5t-44 -9q-24 0 -45 9t-36.5 24.5t-24.5 36t-9 43.5q0 24 9 45.5t24.5 37.5t36.5 25t45 9t44.5 -9t36.5 -25t25 -37.5t9 -45.5z" /> +<glyph unicode="÷" d="M134 754h981l-16 -133h-981zM535 1036q0 29 11 54.5t30.5 45t45 31t54.5 11.5q25 0 44.5 -9.5t34.5 -25t23 -36t8 -43.5q0 -30 -11.5 -55t-31 -43.5t-45 -29t-53.5 -10.5q-50 0 -80 31.5t-30 78.5zM444 307q0 29 11.5 54.5t31 45t45 31t54.5 11.5q25 0 44.5 -9.5 t34.5 -25t23 -36t8 -43.5q0 -30 -11.5 -55t-31 -43.5t-45 -29t-53.5 -10.5q-49 0 -80 31.5t-31 78.5z" /> +<glyph unicode="ø" horiz-adv-x="1029" d="M442 -14q-127 0 -219 62l-37 -50q-23 -31 -52.5 -43.5t-58.5 -12.5h-69l135 185q-41 54 -63 127t-22 163q0 131 41 246.5t112.5 202.5t168 137.5t209.5 50.5q128 0 221 -66l35 47q19 29 35.5 40t49.5 11h92l-131 -177q40 -54 62 -125.5t22 -160.5q0 -130 -41 -246 t-112 -203t-168.5 -137.5t-209.5 -50.5zM228 418q0 -91 27 -159l453 617q-57 46 -138 46q-76 0 -138 -39t-107.5 -107t-71 -160.5t-25.5 -197.5zM459 117q75 0 137.5 39.5t108.5 107.5t71 160t25 198q0 45 -7 83t-19 71l-452 -614q56 -45 136 -45z" /> +<glyph unicode="ù" horiz-adv-x="1075" d="M362 1037l-77 -659q-2 -20 -3.5 -38.5t-1.5 -36.5q0 -84 31 -125t99 -41q47 0 96.5 25.5t96 73t86.5 114t70 148.5l64 539h182l-125 -1037h-90q-32 0 -49.5 14.5t-17.5 43.5q0 1 1 18.5t2.5 38t3 38t1.5 18.5l7 83q-83 -132 -185 -200t-211 -68q-116 0 -180 78.5 t-64 226.5q0 20 1 41.5t4 45.5l78 659h181zM504 1484q32 0 46 -10.5t24 -32.5l110 -248h-101q-20 0 -32.5 6t-24.5 22l-189 263h167z" /> +<glyph unicode="ú" horiz-adv-x="1075" d="M362 1037l-77 -659q-2 -20 -3.5 -38.5t-1.5 -36.5q0 -84 31 -125t99 -41q47 0 96.5 25.5t96 73t86.5 114t70 148.5l64 539h182l-125 -1037h-90q-32 0 -49.5 14.5t-17.5 43.5q0 1 1 18.5t2.5 38t3 38t1.5 18.5l7 83q-83 -132 -185 -200t-211 -68q-116 0 -180 78.5 t-64 226.5q0 20 1 41.5t4 45.5l78 659h181zM918 1484l-254 -263q-14 -15 -29 -21.5t-35 -6.5h-105l170 248q14 23 31.5 33t49.5 10h172z" /> +<glyph unicode="û" horiz-adv-x="1075" d="M362 1037l-77 -659q-2 -20 -3.5 -38.5t-1.5 -36.5q0 -84 31 -125t99 -41q47 0 96.5 25.5t96 73t86.5 114t70 148.5l64 539h182l-125 -1037h-90q-32 0 -49.5 14.5t-17.5 43.5q0 1 1 18.5t2.5 38t3 38t1.5 18.5l7 83q-83 -132 -185 -200t-211 -68q-116 0 -180 78.5 t-64 226.5q0 20 1 41.5t4 45.5l78 659h181zM895 1199h-117q-11 0 -21.5 4t-15.5 10l-102 131l-7 7t-7 9q-5 -5 -9 -8.5t-8 -7.5l-136 -131q-6 -5 -17.5 -9.5t-23.5 -4.5h-122l245 268h164z" /> +<glyph unicode="ü" horiz-adv-x="1075" d="M362 1037l-77 -659q-2 -20 -3.5 -38.5t-1.5 -36.5q0 -84 31 -125t99 -41q47 0 96.5 25.5t96 73t86.5 114t70 148.5l64 539h182l-125 -1037h-90q-32 0 -49.5 14.5t-17.5 43.5q0 1 1 18.5t2.5 38t3 38t1.5 18.5l7 83q-83 -132 -185 -200t-211 -68q-116 0 -180 78.5 t-64 226.5q0 20 1 41.5t4 45.5l78 659h181zM553 1344q0 -24 -9.5 -44t-26 -35.5t-37.5 -24.5t-44 -9q-24 0 -44.5 9t-35.5 24.5t-24.5 36t-9.5 43.5q0 24 9.5 45.5t24.5 37.5t35.5 25t44.5 9t44.5 -9t37 -25t26 -37.5t9.5 -45.5zM920 1344q0 -24 -9 -44t-25 -35.5t-37 -24.5 t-44 -9q-24 0 -45 9t-36.5 24.5t-24.5 36t-9 43.5q0 24 9 45.5t24.5 37.5t36.5 25t45 9t44.5 -9t36.5 -25t25 -37.5t9 -45.5z" /> +<glyph unicode="ý" horiz-adv-x="974" d="M324 -309q-22 -42 -64 -42h-133l224 412l-268 976h150q22 0 32.5 -10.5t15.5 -27.5l166 -653q5 -22 8.5 -43t5.5 -43q9 22 17.5 44t20.5 43l327 654q8 16 23 26t31 10h144zM883 1484l-254 -263q-14 -15 -29 -21.5t-35 -6.5h-105l170 248q14 23 31.5 33t49.5 10h172z" /> +<glyph unicode="þ" horiz-adv-x="1070" d="M38 -351l226 1859h180l-91 -733q39 62 84 114t94.5 88t102.5 56t108 20q132 0 206 -96.5t74 -281.5q0 -84 -17.5 -168t-49.5 -160.5t-78 -142.5t-101.5 -114.5t-121 -76t-137.5 -27.5q-77 0 -140 30t-107 85l-47 -387q-3 -27 -23 -46t-50 -19h-112zM674 906 q-49 0 -99.5 -30.5t-97.5 -85t-87.5 -129t-70.5 -163.5l-33 -271q39 -55 93.5 -77.5t110.5 -22.5q53 0 100.5 22.5t86.5 61t69.5 90t51.5 110.5t32.5 122t11.5 124q0 122 -44 185.5t-124 63.5z" /> +<glyph unicode="ÿ" horiz-adv-x="974" d="M324 -309q-22 -42 -64 -42h-133l224 412l-268 976h150q22 0 32.5 -10.5t15.5 -27.5l166 -653q5 -22 8.5 -43t5.5 -43q9 22 17.5 44t20.5 43l327 654q8 16 23 26t31 10h144zM518 1344q0 -24 -9.5 -44t-26 -35.5t-37.5 -24.5t-44 -9q-24 0 -44.5 9t-35.5 24.5t-24.5 36 t-9.5 43.5q0 24 9.5 45.5t24.5 37.5t35.5 25t44.5 9t44.5 -9t37 -25t26 -37.5t9.5 -45.5zM885 1344q0 -24 -9 -44t-25 -35.5t-37 -24.5t-44 -9q-24 0 -45 9t-36.5 24.5t-24.5 36t-9 43.5q0 24 9 45.5t24.5 37.5t36.5 25t45 9t44.5 -9t36.5 -25t25 -37.5t9 -45.5z" /> +<glyph unicode="ı" horiz-adv-x="498" d="M401 1037l-125 -1037h-179l125 1037h179z" /> +<glyph unicode="Œ" horiz-adv-x="2059" d="M2082 1467l-19 -156h-641l-60 -496h515l-17 -150h-517l-62 -509h640l-19 -156h-811l28 231q-92 -117 -218.5 -181t-279.5 -64q-120 0 -216.5 47t-163.5 130.5t-103 199.5t-36 254q0 189 53.5 348t147.5 274.5t222.5 180t278.5 64.5q77 0 143 -19.5t120.5 -56t97 -88 t73.5 -116.5l33 263h811zM1164 844q0 109 -24 198.5t-70 152.5t-112.5 98t-151.5 35q-112 0 -205 -50.5t-160.5 -143.5t-105 -223t-37.5 -288q0 -110 24.5 -198.5t71 -152t113.5 -98t152 -34.5q112 0 204.5 50.5t160 142.5t104 221.5t36.5 289.5z" /> +<glyph unicode="œ" horiz-adv-x="1581" d="M1257 1052q67 0 120.5 -17.5t91 -50t57.5 -77.5t20 -99q0 -42 -11.5 -81t-40.5 -73t-76 -64.5t-118.5 -55t-169 -44t-226.5 -32.5v-12q0 -159 62 -238t174 -79q49 0 87.5 10.5t68.5 25t53 32.5t42.5 33t35.5 25t32 10q19 0 35 -17l45 -57q-51 -53 -100.5 -92t-102 -64 t-110 -37t-122.5 -12q-108 0 -189 59t-121 177q-71 -113 -176.5 -174.5t-237.5 -61.5q-83 0 -145.5 30t-104 82t-62.5 119.5t-21 140.5q0 168 43.5 297.5t118 218t172 133.5t207.5 45t183 -52t109 -145q65 92 159.5 144.5t217.5 52.5zM423 124q83 0 147 40t107.5 111.5 t65.5 169t22 212.5q0 118 -47.5 187t-147.5 69q-80 0 -143 -38.5t-108.5 -110t-69.5 -171.5t-24 -224q0 -48 10.5 -92.5t34 -78t61.5 -54t92 -20.5zM1229 923q-60 0 -112.5 -23.5t-93.5 -69.5t-69.5 -111t-41.5 -148q148 18 242 44.5t147.5 56t73 63t19.5 67.5q0 25 -10 46 t-30 38t-51 27t-74 10z" /> +<glyph unicode="Ÿ" horiz-adv-x="1192" d="M702 587l-72 -587h-192l73 585l-387 882h170q26 0 39 -12.5t21 -32.5l244 -587q10 -30 17.5 -56.5t12.5 -53.5q12 27 27 53.5t32 56.5l390 587q11 16 28 30.5t42 14.5h159zM668 1704q0 -20 -8.5 -38.5t-23 -32.5t-33.5 -21.5t-40 -7.5q-20 0 -38.5 7.5t-32.5 21.5 t-22.5 32t-8.5 39q0 22 8.5 40.5t22.5 33.5t32 23t39 8q22 0 40.5 -8t33 -23t23 -33.5t8.5 -40.5zM1020 1704q0 -20 -8 -38.5t-22.5 -32.5t-33 -21.5t-39.5 -7.5q-22 0 -40 7.5t-32.5 21.5t-23 32t-8.5 39q0 22 8.5 40.5t23 33.5t32.5 23t40 8t40 -8t32.5 -23t22.5 -33.5 t8 -40.5z" /> +<glyph unicode="ˆ" horiz-adv-x="581" d="M669 1197h-117q-11 0 -21.5 4t-15.5 10l-102 131l-7 7t-7 9q-5 -5 -9 -8.5t-8 -7.5l-136 -131q-6 -5 -17.5 -9.5t-23.5 -4.5h-122l245 268h164z" /> +<glyph unicode="˚" horiz-adv-x="581" d="M189 1347q0 43 16.5 77.5t45 60t65 39.5t77.5 14q42 0 79.5 -14t66 -39.5t45 -60t16.5 -77.5q0 -42 -16.5 -77t-45 -59.5t-66 -38.5t-79.5 -14q-41 0 -77.5 14t-65 38.5t-45 59.5t-16.5 77zM292 1347q0 -45 27.5 -74t75.5 -29q46 0 74.5 29t28.5 74q0 46 -28.5 74.5 t-74.5 28.5q-48 0 -75.5 -28.5t-27.5 -74.5z" /> +<glyph unicode="˜" horiz-adv-x="581" d="M500 1353q67 0 81 90h107q-6 -48 -23 -87.5t-42.5 -67.5t-59.5 -44t-71 -16q-33 0 -60.5 14.5t-50.5 32.5t-44 33t-42 15q-33 0 -53.5 -23t-26.5 -68h-109q6 47 23.5 87t44 68.5t59.5 44.5t71 16q34 0 60.5 -15t49.5 -33t43.5 -32.5t42.5 -14.5z" /> +<glyph unicode=" " horiz-adv-x="940" /> +<glyph unicode=" " horiz-adv-x="1881" /> +<glyph unicode=" " horiz-adv-x="940" /> +<glyph unicode=" " horiz-adv-x="1881" /> +<glyph unicode=" " horiz-adv-x="627" /> +<glyph unicode=" " horiz-adv-x="470" /> +<glyph unicode=" " horiz-adv-x="313" /> +<glyph unicode=" " horiz-adv-x="313" /> +<glyph unicode=" " horiz-adv-x="235" /> +<glyph unicode=" " horiz-adv-x="376" /> +<glyph unicode=" " horiz-adv-x="104" /> +<glyph unicode="‐" horiz-adv-x="656" d="M118 688h468l-20 -149h-467z" /> +<glyph unicode="‑" horiz-adv-x="656" d="M118 688h468l-20 -149h-467z" /> +<glyph unicode="‒" horiz-adv-x="656" d="M118 688h468l-20 -149h-467z" /> +<glyph unicode="–" horiz-adv-x="1050" d="M169 668h755l-16 -128h-754z" /> +<glyph unicode="—" horiz-adv-x="1552" d="M169 668h1255l-16 -128h-1254z" /> +<glyph unicode="‘" horiz-adv-x="403" d="M224 1040q-17 38 -25 76t-8 76q0 102 54.5 197.5t150.5 173.5l48 -32q12 -9 13 -23q0 -8 -5 -15t-16 -19q-16 -19 -33 -44t-30.5 -54t-22 -62t-8.5 -68q0 -27 5 -54.5t19 -55.5q3 -8 3 -15q0 -25 -31 -38z" /> +<glyph unicode="’" horiz-adv-x="403" d="M377 1539q17 -38 25 -76t8 -75q0 -102 -54.5 -197.5t-150.5 -173.5l-49 32q-11 9 -12 22q0 8 5 15.5t16 19.5q16 19 33 44t30.5 53.5t22 61t8.5 68.5q0 27 -5 54.5t-18 56.5q-3 7 -4 14q0 25 31 38z" /> +<glyph unicode="‚" horiz-adv-x="437" d="M233 242q17 -38 25 -76t8 -76q0 -102 -54 -197.5t-151 -173.5l-49 32q-11 9 -11 23q0 8 4.5 15t16.5 20q16 19 33 43.5t30 53t22 61.5t9 69q0 27 -5.5 54.5t-18.5 55.5q-3 7 -3 15q0 25 31 38z" /> +<glyph unicode="“" horiz-adv-x="692" d="M224 1040q-17 38 -25 76t-8 76q0 102 54.5 197.5t150.5 173.5l48 -32q12 -9 13 -23q0 -8 -5 -15t-16 -19q-16 -19 -33 -44t-30.5 -54t-22 -62t-8.5 -68q0 -27 5 -54.5t19 -55.5q3 -8 3 -15q0 -25 -31 -38zM515 1040q-17 38 -25 76t-8 76q0 102 54.5 197.5t150.5 173.5 l48 -32q12 -9 13 -23q0 -8 -5 -15t-16 -19q-16 -19 -33 -44t-30.5 -54t-22 -62t-8.5 -68q0 -27 5 -54.5t18 -55.5q3 -8 3 -15q0 -25 -30 -38z" /> +<glyph unicode="”" horiz-adv-x="692" d="M386 1539q17 -38 25 -76t8 -75q0 -102 -54.5 -197.5t-150.5 -173.5l-49 32q-11 9 -11 22q0 8 4.5 15.5t15.5 19.5q16 19 33 44t30.5 53.5t22 61t8.5 68.5q0 27 -5 54.5t-18 56.5q-3 7 -3 14q0 25 30 38zM676 1539q17 -38 25 -76t8 -75q0 -102 -54.5 -197.5t-150.5 -173.5 l-49 32q-11 9 -12 22q0 8 5 15.5t16 19.5q16 19 33 44t30.5 53.5t22 61t8.5 68.5q0 27 -5 54.5t-18 56.5q-3 7 -4 14q0 25 31 38z" /> +<glyph unicode="„" horiz-adv-x="692" d="M196 242q17 -38 24.5 -76t7.5 -76q0 -102 -54 -197.5t-150 -173.5l-50 32q-11 9 -11 23q0 8 4.5 15t16.5 20q16 19 33 43.5t30 53t22 61.5t9 69q0 27 -5 54.5t-19 55.5q-3 7 -3 15q0 25 31 38zM486 242q17 -38 25 -76t8 -76q0 -102 -54 -197.5t-151 -173.5l-49 32 q-11 9 -11 23q0 8 4.5 15t15.5 20q16 19 33.5 43.5t30.5 53t22 61.5t9 69q0 27 -5.5 54.5t-18.5 55.5q-3 7 -3 15q0 25 31 38z" /> +<glyph unicode="•" d="M237 609q0 79 29.5 148.5t81 121.5t120.5 82t146 30q79 0 149 -30t121.5 -82t81.5 -121.5t30 -148.5t-30 -148t-81.5 -120t-121.5 -81.5t-149 -30.5q-78 0 -146.5 30.5t-120 81.5t-81 120t-29.5 148z" /> +<glyph unicode="…" horiz-adv-x="1488" d="M46 113q0 27 10 50t27 40.5t40 28t51 10.5q27 0 50 -10.5t40.5 -28t27.5 -41t10 -49.5q0 -28 -10 -51t-27.5 -40.5t-40.5 -27t-50 -9.5q-28 0 -51 9.5t-40 27t-27 40.5t-10 51zM572 113q0 27 10 50t27.5 40.5t40.5 28t50 10.5t50 -10.5t40.5 -28t27.5 -41t10 -49.5 q0 -28 -10 -51t-27.5 -40.5t-40.5 -27t-50 -9.5q-28 0 -50.5 9.5t-40 27t-27.5 40.5t-10 51zM1100 113q0 27 9.5 50t26.5 40.5t40.5 28t50.5 10.5t50 -10.5t40.5 -28t28 -41t10.5 -49.5q0 -28 -10.5 -51t-28 -40.5t-41 -27t-49.5 -9.5q-27 0 -50.5 9.5t-40.5 27t-26.5 40.5 t-9.5 51z" /> +<glyph unicode=" " horiz-adv-x="376" /> +<glyph unicode="‹" horiz-adv-x="612" d="M136 530l3 23l285 397l53 -27q24 -12 24 -35q0 -20 -16 -40l-179 -269q-16 -26 -33 -37q10 -10 24 -37l114 -269q6 -14 6 -28q0 -33 -33 -48l-60 -28z" /> +<glyph unicode="›" horiz-adv-x="612" d="M485 553l-2 -23l-283 -398l-55 28q-24 11 -23 36q0 16 13 40l182 269q16 25 31 36q-13 12 -22 38l-115 269q-6 13 -6 26q0 33 34 49l60 27z" /> +<glyph unicode=" " horiz-adv-x="470" /> +<glyph unicode="€" d="M86 919h144q34 130 95 234t143.5 177t183.5 112t215 39q136 0 227.5 -51t151.5 -140l-68 -67q-12 -12 -19.5 -16.5t-21.5 -4.5q-11 0 -21.5 9.5t-24.5 23t-33.5 30t-47 30.5t-65.5 23t-90 9q-79 0 -148.5 -26.5t-126.5 -79t-100 -128.5t-69 -174h573l-6 -57 q-3 -17 -18 -31t-40 -14h-531q-6 -36 -9.5 -72.5t-5.5 -75.5h485l-7 -56q-2 -17 -18 -31.5t-39 -14.5h-422q7 -209 92.5 -319t233.5 -110q84 0 141 23t94.5 51t61 51t41.5 23q8 0 14 -2t12 -11l66 -69q-85 -103 -198.5 -161t-258.5 -58q-116 0 -204.5 42t-149 118t-92 183.5 t-35.5 238.5h-148l12 102h139q3 76 15 148h-135z" /> +<glyph unicode="™" horiz-adv-x="1358" d="M985 1130q8 -28 12 -51q6 13 13 25.5t15 25.5l194 315q9 14 17.5 17t25.5 3h104l-73 -604h-109l47 379l16 73l-211 -345q-16 -28 -46 -28h-17q-29 0 -39 28l-128 346v-74l-47 -379h-108l73 604h105q16 0 25 -3t14 -17zM637 1465l-13 -103h-168l-62 -501h-123l61 501h-168 l14 103h459z" /> +<glyph unicode="◼" horiz-adv-x="1038" d="M0 1039h1039v-1039h-1039v1039z" /> +<glyph horiz-adv-x="581" d="M286 1824q32 0 46 -7t30 -26l172 -208h-148q-20 0 -31.5 6.5t-26.5 19.5l-241 215h199z" /> +<glyph horiz-adv-x="581" d="M344 1705q0 -20 -8.5 -38.5t-23 -32.5t-33.5 -21.5t-40 -7.5q-20 0 -38.5 7.5t-32.5 21.5t-22.5 32t-8.5 39q0 22 8.5 40.5t22.5 33.5t32 23t39 8q22 0 40.5 -8t33 -23t23 -33.5t8.5 -40.5zM696 1705q0 -20 -8 -38.5t-22.5 -32.5t-33 -21.5t-39.5 -7.5q-22 0 -40 7.5 t-32.5 21.5t-23 32t-8.5 39q0 22 8.5 40.5t23 33.5t32.5 23t40 8t40 -8t32.5 -23t22.5 -33.5t8 -40.5z" /> +<glyph horiz-adv-x="581" d="M793 1824l-295 -215q-17 -12 -30 -19t-34 -7h-148l223 208q10 9 19 16t18 10.5t20.5 5t27.5 1.5h199z" /> +<glyph horiz-adv-x="581" d="M728 1583h-134q-11 0 -24 3t-21 10l-117 110l-145 -110q-9 -7 -23 -10t-26 -3h-134l252 214h173z" /> +<glyph horiz-adv-x="581" d="M224 1699q0 40 15.5 73.5t42 57.5t61.5 37.5t74 13.5q40 0 75 -13.5t62 -37.5t42.5 -57.5t15.5 -73.5q0 -39 -15.5 -72t-42.5 -56.5t-62 -36.5t-75 -13q-39 0 -74 13t-61.5 36.5t-42 56.5t-15.5 72zM315 1699q0 -44 28 -73.5t76 -29.5q46 0 74 29.5t28 73.5 q0 46 -28 74.5t-74 28.5q-48 0 -76 -28.5t-28 -74.5z" /> +<glyph horiz-adv-x="581" d="M552 1700q31 0 52 21.5t26 59.5h96q-5 -43 -20.5 -79.5t-39 -63.5t-55 -42t-69.5 -15q-33 0 -61.5 14t-54.5 30t-49.5 30t-44.5 14q-31 0 -51 -23t-25 -61h-99q5 43 21 80t39.5 64t55 42t69.5 15q34 0 62.5 -13.5t54 -30t48.5 -29.5t45 -13z" /> +<hkern u1=""" u2="›" k="85" /> +<hkern u1=""" u2="‹" k="85" /> +<hkern u1=""" u2="…" k="94" /> +<hkern u1=""" u2="•" k="85" /> +<hkern u1=""" u2="„" k="94" /> +<hkern u1=""" u2="‚" k="94" /> +<hkern u1=""" u2="—" k="85" /> +<hkern u1=""" u2="–" k="85" /> +<hkern u1=""" u2="Ÿ" k="-46" /> +<hkern u1=""" u2="œ" k="93" /> +<hkern u1=""" u2="ø" k="93" /> +<hkern u1=""" u2="ö" k="93" /> +<hkern u1=""" u2="õ" k="93" /> +<hkern u1=""" u2="ô" k="93" /> +<hkern u1=""" u2="ó" k="93" /> +<hkern u1=""" u2="ò" k="93" /> +<hkern u1=""" u2="ð" k="93" /> +<hkern u1=""" u2="ë" k="93" /> +<hkern u1=""" u2="ê" k="93" /> +<hkern u1=""" u2="é" k="93" /> +<hkern u1=""" u2="è" k="93" /> +<hkern u1=""" u2="ç" k="93" /> +<hkern u1=""" u2="æ" k="93" /> +<hkern u1=""" u2="å" k="93" /> +<hkern u1=""" u2="ä" k="93" /> +<hkern u1=""" u2="ã" k="93" /> +<hkern u1=""" u2="â" k="93" /> +<hkern u1=""" u2="á" k="93" /> +<hkern u1=""" u2="à" k="93" /> +<hkern u1=""" u2="Ý" k="-46" /> +<hkern u1=""" u2="Æ" k="175" /> +<hkern u1=""" u2="Å" k="175" /> +<hkern u1=""" u2="Ä" k="175" /> +<hkern u1=""" u2="Ã" k="175" /> +<hkern u1=""" u2="Â" k="175" /> +<hkern u1=""" u2="Á" k="175" /> +<hkern u1=""" u2="À" k="175" /> +<hkern u1=""" u2="»" k="85" /> +<hkern u1=""" u2="·" k="85" /> +<hkern u1=""" u2="­" k="85" /> +<hkern u1=""" u2="«" k="85" /> +<hkern u1=""" u2="q" k="93" /> +<hkern u1=""" u2="o" k="93" /> +<hkern u1=""" u2="e" k="93" /> +<hkern u1=""" u2="d" k="93" /> +<hkern u1=""" u2="c" k="93" /> +<hkern u1=""" u2="a" k="93" /> +<hkern u1=""" u2="\" k="-55" /> +<hkern u1=""" u2="Y" k="-46" /> +<hkern u1=""" u2="W" k="-49" /> +<hkern u1=""" u2="V" k="-55" /> +<hkern u1=""" u2="A" k="175" /> +<hkern u1=""" u2="/" k="175" /> +<hkern u1=""" u2="." k="94" /> +<hkern u1=""" u2="-" k="85" /> +<hkern u1=""" u2="," k="94" /> +<hkern u1=""" u2="&" k="175" /> +<hkern u1="'" u2="›" k="85" /> +<hkern u1="'" u2="‹" k="85" /> +<hkern u1="'" u2="…" k="94" /> +<hkern u1="'" u2="•" k="85" /> +<hkern u1="'" u2="„" k="94" /> +<hkern u1="'" u2="‚" k="94" /> +<hkern u1="'" u2="—" k="85" /> +<hkern u1="'" u2="–" k="85" /> +<hkern u1="'" u2="Ÿ" k="-46" /> +<hkern u1="'" u2="œ" k="93" /> +<hkern u1="'" u2="ø" k="93" /> +<hkern u1="'" u2="ö" k="93" /> +<hkern u1="'" u2="õ" k="93" /> +<hkern u1="'" u2="ô" k="93" /> +<hkern u1="'" u2="ó" k="93" /> +<hkern u1="'" u2="ò" k="93" /> +<hkern u1="'" u2="ð" k="93" /> +<hkern u1="'" u2="ë" k="93" /> +<hkern u1="'" u2="ê" k="93" /> +<hkern u1="'" u2="é" k="93" /> +<hkern u1="'" u2="è" k="93" /> +<hkern u1="'" u2="ç" k="93" /> +<hkern u1="'" u2="æ" k="93" /> +<hkern u1="'" u2="å" k="93" /> +<hkern u1="'" u2="ä" k="93" /> +<hkern u1="'" u2="ã" k="93" /> +<hkern u1="'" u2="â" k="93" /> +<hkern u1="'" u2="á" k="93" /> +<hkern u1="'" u2="à" k="93" /> +<hkern u1="'" u2="Ý" k="-46" /> +<hkern u1="'" u2="Æ" k="175" /> +<hkern u1="'" u2="Å" k="175" /> +<hkern u1="'" u2="Ä" k="175" /> +<hkern u1="'" u2="Ã" k="175" /> +<hkern u1="'" u2="Â" k="175" /> +<hkern u1="'" u2="Á" k="175" /> +<hkern u1="'" u2="À" k="175" /> +<hkern u1="'" u2="»" k="85" /> +<hkern u1="'" u2="·" k="85" /> +<hkern u1="'" u2="­" k="85" /> +<hkern u1="'" u2="«" k="85" /> +<hkern u1="'" u2="q" k="93" /> +<hkern u1="'" u2="o" k="93" /> +<hkern u1="'" u2="e" k="93" /> +<hkern u1="'" u2="d" k="93" /> +<hkern u1="'" u2="c" k="93" /> +<hkern u1="'" u2="a" k="93" /> +<hkern u1="'" u2="\" k="-55" /> +<hkern u1="'" u2="Y" k="-46" /> +<hkern u1="'" u2="W" k="-49" /> +<hkern u1="'" u2="V" k="-55" /> +<hkern u1="'" u2="A" k="175" /> +<hkern u1="'" u2="/" k="175" /> +<hkern u1="'" u2="." k="94" /> +<hkern u1="'" u2="-" k="85" /> +<hkern u1="'" u2="," k="94" /> +<hkern u1="'" u2="&" k="175" /> +<hkern u1="(" u2="œ" k="32" /> +<hkern u1="(" u2="Œ" k="41" /> +<hkern u1="(" u2="ø" k="32" /> +<hkern u1="(" u2="ö" k="32" /> +<hkern u1="(" u2="õ" k="32" /> +<hkern u1="(" u2="ô" k="32" /> +<hkern u1="(" u2="ó" k="32" /> +<hkern u1="(" u2="ò" k="32" /> +<hkern u1="(" u2="ð" k="32" /> +<hkern u1="(" u2="ë" k="32" /> +<hkern u1="(" u2="ê" k="32" /> +<hkern u1="(" u2="é" k="32" /> +<hkern u1="(" u2="è" k="32" /> +<hkern u1="(" u2="ç" k="32" /> +<hkern u1="(" u2="æ" k="32" /> +<hkern u1="(" u2="å" k="32" /> +<hkern u1="(" u2="ä" k="32" /> +<hkern u1="(" u2="ã" k="32" /> +<hkern u1="(" u2="â" k="32" /> +<hkern u1="(" u2="á" k="32" /> +<hkern u1="(" u2="à" k="32" /> +<hkern u1="(" u2="Ø" k="41" /> +<hkern u1="(" u2="Ö" k="41" /> +<hkern u1="(" u2="Õ" k="41" /> +<hkern u1="(" u2="Ô" k="41" /> +<hkern u1="(" u2="Ó" k="41" /> +<hkern u1="(" u2="Ò" k="41" /> +<hkern u1="(" u2="Ç" k="41" /> +<hkern u1="(" u2="®" k="41" /> +<hkern u1="(" u2="©" k="41" /> +<hkern u1="(" u2="q" k="32" /> +<hkern u1="(" u2="o" k="32" /> +<hkern u1="(" u2="e" k="32" /> +<hkern u1="(" u2="d" k="32" /> +<hkern u1="(" u2="c" k="32" /> +<hkern u1="(" u2="a" k="32" /> +<hkern u1="(" u2="Q" k="41" /> +<hkern u1="(" u2="O" k="41" /> +<hkern u1="(" u2="G" k="41" /> +<hkern u1="(" u2="C" k="41" /> +<hkern u1="(" u2="@" k="41" /> +<hkern u1="*" u2="›" k="85" /> +<hkern u1="*" u2="‹" k="85" /> +<hkern u1="*" u2="…" k="94" /> +<hkern u1="*" u2="•" k="85" /> +<hkern u1="*" u2="„" k="94" /> +<hkern u1="*" u2="‚" k="94" /> +<hkern u1="*" u2="—" k="85" /> +<hkern u1="*" u2="–" k="85" /> +<hkern u1="*" u2="Ÿ" k="-46" /> +<hkern u1="*" u2="œ" k="93" /> +<hkern u1="*" u2="ø" k="93" /> +<hkern u1="*" u2="ö" k="93" /> +<hkern u1="*" u2="õ" k="93" /> +<hkern u1="*" u2="ô" k="93" /> +<hkern u1="*" u2="ó" k="93" /> +<hkern u1="*" u2="ò" k="93" /> +<hkern u1="*" u2="ð" k="93" /> +<hkern u1="*" u2="ë" k="93" /> +<hkern u1="*" u2="ê" k="93" /> +<hkern u1="*" u2="é" k="93" /> +<hkern u1="*" u2="è" k="93" /> +<hkern u1="*" u2="ç" k="93" /> +<hkern u1="*" u2="æ" k="93" /> +<hkern u1="*" u2="å" k="93" /> +<hkern u1="*" u2="ä" k="93" /> +<hkern u1="*" u2="ã" k="93" /> +<hkern u1="*" u2="â" k="93" /> +<hkern u1="*" u2="á" k="93" /> +<hkern u1="*" u2="à" k="93" /> +<hkern u1="*" u2="Ý" k="-46" /> +<hkern u1="*" u2="Æ" k="175" /> +<hkern u1="*" u2="Å" k="175" /> +<hkern u1="*" u2="Ä" k="175" /> +<hkern u1="*" u2="Ã" k="175" /> +<hkern u1="*" u2="Â" k="175" /> +<hkern u1="*" u2="Á" k="175" /> +<hkern u1="*" u2="À" k="175" /> +<hkern u1="*" u2="»" k="85" /> +<hkern u1="*" u2="·" k="85" /> +<hkern u1="*" u2="­" k="85" /> +<hkern u1="*" u2="«" k="85" /> +<hkern u1="*" u2="q" k="93" /> +<hkern u1="*" u2="o" k="93" /> +<hkern u1="*" u2="e" k="93" /> +<hkern u1="*" u2="d" k="93" /> +<hkern u1="*" u2="c" k="93" /> +<hkern u1="*" u2="a" k="93" /> +<hkern u1="*" u2="\" k="-55" /> +<hkern u1="*" u2="Y" k="-46" /> +<hkern u1="*" u2="W" k="-49" /> +<hkern u1="*" u2="V" k="-55" /> +<hkern u1="*" u2="A" k="175" /> +<hkern u1="*" u2="/" k="175" /> +<hkern u1="*" u2="." k="94" /> +<hkern u1="*" u2="-" k="85" /> +<hkern u1="*" u2="," k="94" /> +<hkern u1="*" u2="&" k="175" /> +<hkern u1="," u2="›" k="202" /> +<hkern u1="," u2="‹" k="202" /> +<hkern u1="," u2="•" k="202" /> +<hkern u1="," u2="”" k="123" /> +<hkern u1="," u2="“" k="123" /> +<hkern u1="," u2="’" k="123" /> +<hkern u1="," u2="‘" k="123" /> +<hkern u1="," u2="—" k="202" /> +<hkern u1="," u2="–" k="202" /> +<hkern u1="," u2="Ÿ" k="202" /> +<hkern u1="," u2="Œ" k="56" /> +<hkern u1="," u2="ÿ" k="145" /> +<hkern u1="," u2="ý" k="145" /> +<hkern u1="," u2="Ý" k="202" /> +<hkern u1="," u2="Ø" k="56" /> +<hkern u1="," u2="Ö" k="56" /> +<hkern u1="," u2="Õ" k="56" /> +<hkern u1="," u2="Ô" k="56" /> +<hkern u1="," u2="Ó" k="56" /> +<hkern u1="," u2="Ò" k="56" /> +<hkern u1="," u2="Ç" k="56" /> +<hkern u1="," u2="»" k="202" /> +<hkern u1="," u2="º" k="123" /> +<hkern u1="," u2="·" k="202" /> +<hkern u1="," u2="°" k="123" /> +<hkern u1="," u2="®" k="56" /> +<hkern u1="," u2="­" k="202" /> +<hkern u1="," u2="«" k="202" /> +<hkern u1="," u2="ª" k="123" /> +<hkern u1="," u2="©" k="56" /> +<hkern u1="," u2="y" k="135" /> +<hkern u1="," u2="w" k="74" /> +<hkern u1="," u2="v" k="145" /> +<hkern u1="," u2="\" k="217" /> +<hkern u1="," u2="Y" k="202" /> +<hkern u1="," u2="W" k="135" /> +<hkern u1="," u2="V" k="217" /> +<hkern u1="," u2="T" k="208" /> +<hkern u1="," u2="Q" k="56" /> +<hkern u1="," u2="O" k="56" /> +<hkern u1="," u2="G" k="56" /> +<hkern u1="," u2="C" k="56" /> +<hkern u1="," u2="@" k="56" /> +<hkern u1="," u2="-" k="202" /> +<hkern u1="," u2="*" k="123" /> +<hkern u1="," u2="'" k="123" /> +<hkern u1="," u2=""" k="123" /> +<hkern u1="-" u2="…" k="166" /> +<hkern u1="-" u2="„" k="166" /> +<hkern u1="-" u2="”" k="85" /> +<hkern u1="-" u2="“" k="85" /> +<hkern u1="-" u2="‚" k="166" /> +<hkern u1="-" u2="’" k="85" /> +<hkern u1="-" u2="‘" k="85" /> +<hkern u1="-" u2="Ÿ" k="197" /> +<hkern u1="-" u2="Ý" k="197" /> +<hkern u1="-" u2="Æ" k="53" /> +<hkern u1="-" u2="Å" k="53" /> +<hkern u1="-" u2="Ä" k="53" /> +<hkern u1="-" u2="Ã" k="53" /> +<hkern u1="-" u2="Â" k="53" /> +<hkern u1="-" u2="Á" k="53" /> +<hkern u1="-" u2="À" k="53" /> +<hkern u1="-" u2="º" k="85" /> +<hkern u1="-" u2="°" k="85" /> +<hkern u1="-" u2="ª" k="85" /> +<hkern u1="-" u2="\" k="125" /> +<hkern u1="-" u2="Z" k="56" /> +<hkern u1="-" u2="Y" k="197" /> +<hkern u1="-" u2="X" k="72" /> +<hkern u1="-" u2="V" k="125" /> +<hkern u1="-" u2="T" k="196" /> +<hkern u1="-" u2="A" k="53" /> +<hkern u1="-" u2="/" k="53" /> +<hkern u1="-" u2="." k="166" /> +<hkern u1="-" u2="," k="166" /> +<hkern u1="-" u2="*" k="85" /> +<hkern u1="-" u2="'" k="85" /> +<hkern u1="-" u2="&" k="53" /> +<hkern u1="-" u2=""" k="85" /> +<hkern u1="." u2="›" k="202" /> +<hkern u1="." u2="‹" k="202" /> +<hkern u1="." u2="•" k="202" /> +<hkern u1="." u2="”" k="123" /> +<hkern u1="." u2="“" k="123" /> +<hkern u1="." u2="’" k="123" /> +<hkern u1="." u2="‘" k="123" /> +<hkern u1="." u2="—" k="202" /> +<hkern u1="." u2="–" k="202" /> +<hkern u1="." u2="Ÿ" k="202" /> +<hkern u1="." u2="Œ" k="56" /> +<hkern u1="." u2="ÿ" k="145" /> +<hkern u1="." u2="ý" k="145" /> +<hkern u1="." u2="Ý" k="202" /> +<hkern u1="." u2="Ø" k="56" /> +<hkern u1="." u2="Ö" k="56" /> +<hkern u1="." u2="Õ" k="56" /> +<hkern u1="." u2="Ô" k="56" /> +<hkern u1="." u2="Ó" k="56" /> +<hkern u1="." u2="Ò" k="56" /> +<hkern u1="." u2="Ç" k="56" /> +<hkern u1="." u2="»" k="202" /> +<hkern u1="." u2="º" k="123" /> +<hkern u1="." u2="·" k="202" /> +<hkern u1="." u2="°" k="123" /> +<hkern u1="." u2="®" k="56" /> +<hkern u1="." u2="­" k="202" /> +<hkern u1="." u2="«" k="202" /> +<hkern u1="." u2="ª" k="123" /> +<hkern u1="." u2="©" k="56" /> +<hkern u1="." u2="y" k="135" /> +<hkern u1="." u2="w" k="74" /> +<hkern u1="." u2="v" k="145" /> +<hkern u1="." u2="\" k="217" /> +<hkern u1="." u2="Y" k="202" /> +<hkern u1="." u2="W" k="135" /> +<hkern u1="." u2="V" k="217" /> +<hkern u1="." u2="T" k="208" /> +<hkern u1="." u2="Q" k="56" /> +<hkern u1="." u2="O" k="56" /> +<hkern u1="." u2="G" k="56" /> +<hkern u1="." u2="C" k="56" /> +<hkern u1="." u2="@" k="56" /> +<hkern u1="." u2="-" k="202" /> +<hkern u1="." u2="*" k="123" /> +<hkern u1="." u2="'" k="123" /> +<hkern u1="." u2=""" k="123" /> +<hkern u1="/" u2="›" k="125" /> +<hkern u1="/" u2="‹" k="125" /> +<hkern u1="/" u2="…" k="196" /> +<hkern u1="/" u2="•" k="125" /> +<hkern u1="/" u2="„" k="196" /> +<hkern u1="/" u2="”" k="-55" /> +<hkern u1="/" u2="“" k="-55" /> +<hkern u1="/" u2="‚" k="196" /> +<hkern u1="/" u2="’" k="-55" /> +<hkern u1="/" u2="‘" k="-55" /> +<hkern u1="/" u2="—" k="125" /> +<hkern u1="/" u2="–" k="125" /> +<hkern u1="/" u2="œ" k="120" /> +<hkern u1="/" u2="Œ" k="41" /> +<hkern u1="/" u2="ÿ" k="37" /> +<hkern u1="/" u2="ý" k="37" /> +<hkern u1="/" u2="ü" k="87" /> +<hkern u1="/" u2="û" k="87" /> +<hkern u1="/" u2="ú" k="87" /> +<hkern u1="/" u2="ù" k="87" /> +<hkern u1="/" u2="ø" k="120" /> +<hkern u1="/" u2="ö" k="120" /> +<hkern u1="/" u2="õ" k="120" /> +<hkern u1="/" u2="ô" k="120" /> +<hkern u1="/" u2="ó" k="120" /> +<hkern u1="/" u2="ò" k="120" /> +<hkern u1="/" u2="ñ" k="87" /> +<hkern u1="/" u2="ð" k="120" /> +<hkern u1="/" u2="ë" k="120" /> +<hkern u1="/" u2="ê" k="120" /> +<hkern u1="/" u2="é" k="120" /> +<hkern u1="/" u2="è" k="120" /> +<hkern u1="/" u2="ç" k="120" /> +<hkern u1="/" u2="æ" k="120" /> +<hkern u1="/" u2="å" k="120" /> +<hkern u1="/" u2="ä" k="120" /> +<hkern u1="/" u2="ã" k="120" /> +<hkern u1="/" u2="â" k="120" /> +<hkern u1="/" u2="á" k="120" /> +<hkern u1="/" u2="à" k="120" /> +<hkern u1="/" u2="Ø" k="41" /> +<hkern u1="/" u2="Ö" k="41" /> +<hkern u1="/" u2="Õ" k="41" /> +<hkern u1="/" u2="Ô" k="41" /> +<hkern u1="/" u2="Ó" k="41" /> +<hkern u1="/" u2="Ò" k="41" /> +<hkern u1="/" u2="Ç" k="41" /> +<hkern u1="/" u2="Æ" k="117" /> +<hkern u1="/" u2="Å" k="117" /> +<hkern u1="/" u2="Ä" k="117" /> +<hkern u1="/" u2="Ã" k="117" /> +<hkern u1="/" u2="Â" k="117" /> +<hkern u1="/" u2="Á" k="117" /> +<hkern u1="/" u2="À" k="117" /> +<hkern u1="/" u2="»" k="125" /> +<hkern u1="/" u2="º" k="-55" /> +<hkern u1="/" u2="¹" k="-82" /> +<hkern u1="/" u2="·" k="125" /> +<hkern u1="/" u2="µ" k="87" /> +<hkern u1="/" u2="³" k="-82" /> +<hkern u1="/" u2="²" k="-82" /> +<hkern u1="/" u2="°" k="-55" /> +<hkern u1="/" u2="®" k="41" /> +<hkern u1="/" u2="­" k="125" /> +<hkern u1="/" u2="«" k="125" /> +<hkern u1="/" u2="ª" k="-55" /> +<hkern u1="/" u2="©" k="41" /> +<hkern u1="/" u2="z" k="74" /> +<hkern u1="/" u2="y" k="37" /> +<hkern u1="/" u2="w" k="37" /> +<hkern u1="/" u2="v" k="37" /> +<hkern u1="/" u2="u" k="87" /> +<hkern u1="/" u2="s" k="115" /> +<hkern u1="/" u2="r" k="87" /> +<hkern u1="/" u2="q" k="120" /> +<hkern u1="/" u2="p" k="87" /> +<hkern u1="/" u2="o" k="120" /> +<hkern u1="/" u2="n" k="87" /> +<hkern u1="/" u2="m" k="87" /> +<hkern u1="/" u2="e" k="120" /> +<hkern u1="/" u2="d" k="120" /> +<hkern u1="/" u2="c" k="120" /> +<hkern u1="/" u2="a" k="120" /> +<hkern u1="/" u2="Q" k="41" /> +<hkern u1="/" u2="O" k="41" /> +<hkern u1="/" u2="J" k="155" /> +<hkern u1="/" u2="G" k="41" /> +<hkern u1="/" u2="C" k="41" /> +<hkern u1="/" u2="A" k="117" /> +<hkern u1="/" u2="@" k="41" /> +<hkern u1="/" u2="?" k="-59" /> +<hkern u1="/" u2=";" k="87" /> +<hkern u1="/" u2=":" k="87" /> +<hkern u1="/" u2="/" k="117" /> +<hkern u1="/" u2="." k="196" /> +<hkern u1="/" u2="-" k="125" /> +<hkern u1="/" u2="," k="196" /> +<hkern u1="/" u2="*" k="-55" /> +<hkern u1="/" u2="'" k="-55" /> +<hkern u1="/" u2="&" k="117" /> +<hkern u1="/" u2=""" k="-55" /> +<hkern u1="@" u2="”" k="56" /> +<hkern u1="@" u2="“" k="56" /> +<hkern u1="@" u2="’" k="56" /> +<hkern u1="@" u2="‘" k="56" /> +<hkern u1="@" u2="Ÿ" k="82" /> +<hkern u1="@" u2="Ý" k="82" /> +<hkern u1="@" u2="Æ" k="37" /> +<hkern u1="@" u2="Å" k="37" /> +<hkern u1="@" u2="Ä" k="37" /> +<hkern u1="@" u2="Ã" k="37" /> +<hkern u1="@" u2="Â" k="37" /> +<hkern u1="@" u2="Á" k="37" /> +<hkern u1="@" u2="À" k="37" /> +<hkern u1="@" u2="º" k="56" /> +<hkern u1="@" u2="°" k="56" /> +<hkern u1="@" u2="ª" k="56" /> +<hkern u1="@" u2="}" k="41" /> +<hkern u1="@" u2="]" k="41" /> +<hkern u1="@" u2="\" k="52" /> +<hkern u1="@" u2="Z" k="71" /> +<hkern u1="@" u2="Y" k="82" /> +<hkern u1="@" u2="X" k="70" /> +<hkern u1="@" u2="V" k="52" /> +<hkern u1="@" u2="T" k="99" /> +<hkern u1="@" u2="A" k="37" /> +<hkern u1="@" u2="/" k="37" /> +<hkern u1="@" u2="*" k="56" /> +<hkern u1="@" u2=")" k="41" /> +<hkern u1="@" u2="'" k="56" /> +<hkern u1="@" u2="&" k="37" /> +<hkern u1="@" u2=""" k="56" /> +<hkern u1="A" u2="›" k="53" /> +<hkern u1="A" u2="‹" k="53" /> +<hkern u1="A" u2="•" k="53" /> +<hkern u1="A" u2="”" k="186" /> +<hkern u1="A" u2="“" k="186" /> +<hkern u1="A" u2="’" k="186" /> +<hkern u1="A" u2="‘" k="186" /> +<hkern u1="A" u2="—" k="53" /> +<hkern u1="A" u2="–" k="53" /> +<hkern u1="A" u2="Ÿ" k="156" /> +<hkern u1="A" u2="Œ" k="48" /> +<hkern u1="A" u2="ÿ" k="48" /> +<hkern u1="A" u2="ý" k="48" /> +<hkern u1="A" u2="Ý" k="156" /> +<hkern u1="A" u2="Ü" k="41" /> +<hkern u1="A" u2="Û" k="41" /> +<hkern u1="A" u2="Ú" k="41" /> +<hkern u1="A" u2="Ù" k="41" /> +<hkern u1="A" u2="Ø" k="48" /> +<hkern u1="A" u2="Ö" k="48" /> +<hkern u1="A" u2="Õ" k="48" /> +<hkern u1="A" u2="Ô" k="48" /> +<hkern u1="A" u2="Ó" k="48" /> +<hkern u1="A" u2="Ò" k="48" /> +<hkern u1="A" u2="Ç" k="48" /> +<hkern u1="A" u2="»" k="53" /> +<hkern u1="A" u2="º" k="186" /> +<hkern u1="A" u2="¹" k="187" /> +<hkern u1="A" u2="·" k="53" /> +<hkern u1="A" u2="³" k="187" /> +<hkern u1="A" u2="²" k="187" /> +<hkern u1="A" u2="°" k="186" /> +<hkern u1="A" u2="®" k="48" /> +<hkern u1="A" u2="­" k="53" /> +<hkern u1="A" u2="«" k="53" /> +<hkern u1="A" u2="ª" k="186" /> +<hkern u1="A" u2="©" k="48" /> +<hkern u1="A" u2="y" k="48" /> +<hkern u1="A" u2="w" k="33" /> +<hkern u1="A" u2="v" k="48" /> +<hkern u1="A" u2="t" k="58" /> +<hkern u1="A" u2="\" k="117" /> +<hkern u1="A" u2="Y" k="156" /> +<hkern u1="A" u2="W" k="85" /> +<hkern u1="A" u2="V" k="117" /> +<hkern u1="A" u2="U" k="41" /> +<hkern u1="A" u2="T" k="135" /> +<hkern u1="A" u2="Q" k="48" /> +<hkern u1="A" u2="O" k="48" /> +<hkern u1="A" u2="J" k="-63" /> +<hkern u1="A" u2="G" k="48" /> +<hkern u1="A" u2="C" k="48" /> +<hkern u1="A" u2="@" k="48" /> +<hkern u1="A" u2="-" k="53" /> +<hkern u1="A" u2="*" k="186" /> +<hkern u1="A" u2="'" k="186" /> +<hkern u1="A" u2=""" k="186" /> +<hkern u1="C" u2="›" k="131" /> +<hkern u1="C" u2="‹" k="131" /> +<hkern u1="C" u2="•" k="131" /> +<hkern u1="C" u2="—" k="131" /> +<hkern u1="C" u2="–" k="131" /> +<hkern u1="C" u2="»" k="131" /> +<hkern u1="C" u2="·" k="131" /> +<hkern u1="C" u2="­" k="131" /> +<hkern u1="C" u2="«" k="131" /> +<hkern u1="C" u2="-" k="131" /> +<hkern u1="D" u2="”" k="56" /> +<hkern u1="D" u2="“" k="56" /> +<hkern u1="D" u2="’" k="56" /> +<hkern u1="D" u2="‘" k="56" /> +<hkern u1="D" u2="Ÿ" k="82" /> +<hkern u1="D" u2="Ý" k="82" /> +<hkern u1="D" u2="Æ" k="37" /> +<hkern u1="D" u2="Å" k="37" /> +<hkern u1="D" u2="Ä" k="37" /> +<hkern u1="D" u2="Ã" k="37" /> +<hkern u1="D" u2="Â" k="37" /> +<hkern u1="D" u2="Á" k="37" /> +<hkern u1="D" u2="À" k="37" /> +<hkern u1="D" u2="º" k="56" /> +<hkern u1="D" u2="°" k="56" /> +<hkern u1="D" u2="ª" k="56" /> +<hkern u1="D" u2="}" k="41" /> +<hkern u1="D" u2="]" k="41" /> +<hkern u1="D" u2="\" k="52" /> +<hkern u1="D" u2="Z" k="71" /> +<hkern u1="D" u2="Y" k="82" /> +<hkern u1="D" u2="X" k="70" /> +<hkern u1="D" u2="V" k="52" /> +<hkern u1="D" u2="T" k="99" /> +<hkern u1="D" u2="A" k="37" /> +<hkern u1="D" u2="/" k="37" /> +<hkern u1="D" u2="*" k="56" /> +<hkern u1="D" u2=")" k="41" /> +<hkern u1="D" u2="'" k="56" /> +<hkern u1="D" u2="&" k="37" /> +<hkern u1="D" u2=""" k="56" /> +<hkern u1="F" u2="…" k="184" /> +<hkern u1="F" u2="„" k="184" /> +<hkern u1="F" u2="‚" k="184" /> +<hkern u1="F" u2="œ" k="71" /> +<hkern u1="F" u2="ü" k="61" /> +<hkern u1="F" u2="û" k="61" /> +<hkern u1="F" u2="ú" k="61" /> +<hkern u1="F" u2="ù" k="61" /> +<hkern u1="F" u2="ø" k="71" /> +<hkern u1="F" u2="ö" k="71" /> +<hkern u1="F" u2="õ" k="71" /> +<hkern u1="F" u2="ô" k="71" /> +<hkern u1="F" u2="ó" k="71" /> +<hkern u1="F" u2="ò" k="71" /> +<hkern u1="F" u2="ñ" k="61" /> +<hkern u1="F" u2="ð" k="71" /> +<hkern u1="F" u2="ë" k="71" /> +<hkern u1="F" u2="ê" k="71" /> +<hkern u1="F" u2="é" k="71" /> +<hkern u1="F" u2="è" k="71" /> +<hkern u1="F" u2="ç" k="71" /> +<hkern u1="F" u2="æ" k="71" /> +<hkern u1="F" u2="å" k="71" /> +<hkern u1="F" u2="ä" k="71" /> +<hkern u1="F" u2="ã" k="71" /> +<hkern u1="F" u2="â" k="71" /> +<hkern u1="F" u2="á" k="71" /> +<hkern u1="F" u2="à" k="71" /> +<hkern u1="F" u2="Æ" k="135" /> +<hkern u1="F" u2="Å" k="135" /> +<hkern u1="F" u2="Ä" k="135" /> +<hkern u1="F" u2="Ã" k="135" /> +<hkern u1="F" u2="Â" k="135" /> +<hkern u1="F" u2="Á" k="135" /> +<hkern u1="F" u2="À" k="135" /> +<hkern u1="F" u2="µ" k="61" /> +<hkern u1="F" u2="u" k="61" /> +<hkern u1="F" u2="r" k="61" /> +<hkern u1="F" u2="q" k="71" /> +<hkern u1="F" u2="p" k="61" /> +<hkern u1="F" u2="o" k="71" /> +<hkern u1="F" u2="n" k="61" /> +<hkern u1="F" u2="m" k="61" /> +<hkern u1="F" u2="e" k="71" /> +<hkern u1="F" u2="d" k="71" /> +<hkern u1="F" u2="c" k="71" /> +<hkern u1="F" u2="a" k="71" /> +<hkern u1="F" u2="J" k="203" /> +<hkern u1="F" u2="A" k="135" /> +<hkern u1="F" u2="?" k="-20" /> +<hkern u1="F" u2=";" k="61" /> +<hkern u1="F" u2=":" k="61" /> +<hkern u1="F" u2="/" k="135" /> +<hkern u1="F" u2="." k="184" /> +<hkern u1="F" u2="," k="184" /> +<hkern u1="F" u2="&" k="135" /> +<hkern u1="J" u2="Æ" k="41" /> +<hkern u1="J" u2="Å" k="41" /> +<hkern u1="J" u2="Ä" k="41" /> +<hkern u1="J" u2="Ã" k="41" /> +<hkern u1="J" u2="Â" k="41" /> +<hkern u1="J" u2="Á" k="41" /> +<hkern u1="J" u2="À" k="41" /> +<hkern u1="J" u2="A" k="41" /> +<hkern u1="J" u2="/" k="41" /> +<hkern u1="J" u2="&" k="41" /> +<hkern u1="K" u2="›" k="72" /> +<hkern u1="K" u2="‹" k="72" /> +<hkern u1="K" u2="•" k="72" /> +<hkern u1="K" u2="”" k="-32" /> +<hkern u1="K" u2="“" k="-32" /> +<hkern u1="K" u2="’" k="-32" /> +<hkern u1="K" u2="‘" k="-32" /> +<hkern u1="K" u2="—" k="72" /> +<hkern u1="K" u2="–" k="72" /> +<hkern u1="K" u2="Œ" k="104" /> +<hkern u1="K" u2="ÿ" k="63" /> +<hkern u1="K" u2="ý" k="63" /> +<hkern u1="K" u2="Ø" k="104" /> +<hkern u1="K" u2="Ö" k="104" /> +<hkern u1="K" u2="Õ" k="104" /> +<hkern u1="K" u2="Ô" k="104" /> +<hkern u1="K" u2="Ó" k="104" /> +<hkern u1="K" u2="Ò" k="104" /> +<hkern u1="K" u2="Ç" k="104" /> +<hkern u1="K" u2="»" k="72" /> +<hkern u1="K" u2="º" k="-32" /> +<hkern u1="K" u2="·" k="72" /> +<hkern u1="K" u2="°" k="-32" /> +<hkern u1="K" u2="®" k="104" /> +<hkern u1="K" u2="­" k="72" /> +<hkern u1="K" u2="«" k="72" /> +<hkern u1="K" u2="ª" k="-32" /> +<hkern u1="K" u2="©" k="104" /> +<hkern u1="K" u2="y" k="63" /> +<hkern u1="K" u2="w" k="46" /> +<hkern u1="K" u2="v" k="63" /> +<hkern u1="K" u2="t" k="115" /> +<hkern u1="K" u2="f" k="52" /> +<hkern u1="K" u2="Q" k="104" /> +<hkern u1="K" u2="O" k="104" /> +<hkern u1="K" u2="G" k="104" /> +<hkern u1="K" u2="C" k="104" /> +<hkern u1="K" u2="@" k="104" /> +<hkern u1="K" u2="-" k="72" /> +<hkern u1="K" u2="*" k="-32" /> +<hkern u1="K" u2="'" k="-32" /> +<hkern u1="K" u2=""" k="-32" /> +<hkern u1="L" u2="›" k="202" /> +<hkern u1="L" u2="‹" k="202" /> +<hkern u1="L" u2="•" k="202" /> +<hkern u1="L" u2="”" k="263" /> +<hkern u1="L" u2="“" k="263" /> +<hkern u1="L" u2="’" k="263" /> +<hkern u1="L" u2="‘" k="263" /> +<hkern u1="L" u2="—" k="202" /> +<hkern u1="L" u2="–" k="202" /> +<hkern u1="L" u2="Ÿ" k="217" /> +<hkern u1="L" u2="Œ" k="93" /> +<hkern u1="L" u2="ÿ" k="135" /> +<hkern u1="L" u2="ý" k="135" /> +<hkern u1="L" u2="Ý" k="217" /> +<hkern u1="L" u2="Ø" k="93" /> +<hkern u1="L" u2="Ö" k="93" /> +<hkern u1="L" u2="Õ" k="93" /> +<hkern u1="L" u2="Ô" k="93" /> +<hkern u1="L" u2="Ó" k="93" /> +<hkern u1="L" u2="Ò" k="93" /> +<hkern u1="L" u2="Ç" k="93" /> +<hkern u1="L" u2="»" k="202" /> +<hkern u1="L" u2="º" k="263" /> +<hkern u1="L" u2="¹" k="217" /> +<hkern u1="L" u2="·" k="202" /> +<hkern u1="L" u2="³" k="217" /> +<hkern u1="L" u2="²" k="217" /> +<hkern u1="L" u2="°" k="263" /> +<hkern u1="L" u2="®" k="93" /> +<hkern u1="L" u2="­" k="202" /> +<hkern u1="L" u2="«" k="202" /> +<hkern u1="L" u2="ª" k="263" /> +<hkern u1="L" u2="©" k="93" /> +<hkern u1="L" u2="y" k="135" /> +<hkern u1="L" u2="w" k="87" /> +<hkern u1="L" u2="v" k="135" /> +<hkern u1="L" u2="\" k="186" /> +<hkern u1="L" u2="Y" k="217" /> +<hkern u1="L" u2="W" k="156" /> +<hkern u1="L" u2="V" k="186" /> +<hkern u1="L" u2="T" k="205" /> +<hkern u1="L" u2="Q" k="93" /> +<hkern u1="L" u2="O" k="93" /> +<hkern u1="L" u2="G" k="93" /> +<hkern u1="L" u2="C" k="93" /> +<hkern u1="L" u2="@" k="93" /> +<hkern u1="L" u2="-" k="202" /> +<hkern u1="L" u2="*" k="263" /> +<hkern u1="L" u2="'" k="263" /> +<hkern u1="L" u2=""" k="263" /> +<hkern u1="O" u2="”" k="56" /> +<hkern u1="O" u2="“" k="56" /> +<hkern u1="O" u2="’" k="56" /> +<hkern u1="O" u2="‘" k="56" /> +<hkern u1="O" u2="Ÿ" k="82" /> +<hkern u1="O" u2="Ý" k="82" /> +<hkern u1="O" u2="Æ" k="37" /> +<hkern u1="O" u2="Å" k="37" /> +<hkern u1="O" u2="Ä" k="37" /> +<hkern u1="O" u2="Ã" k="37" /> +<hkern u1="O" u2="Â" k="37" /> +<hkern u1="O" u2="Á" k="37" /> +<hkern u1="O" u2="À" k="37" /> +<hkern u1="O" u2="º" k="56" /> +<hkern u1="O" u2="°" k="56" /> +<hkern u1="O" u2="ª" k="56" /> +<hkern u1="O" u2="}" k="41" /> +<hkern u1="O" u2="]" k="41" /> +<hkern u1="O" u2="\" k="52" /> +<hkern u1="O" u2="Z" k="71" /> +<hkern u1="O" u2="Y" k="82" /> +<hkern u1="O" u2="X" k="70" /> +<hkern u1="O" u2="V" k="52" /> +<hkern u1="O" u2="T" k="99" /> +<hkern u1="O" u2="A" k="37" /> +<hkern u1="O" u2="/" k="37" /> +<hkern u1="O" u2="*" k="56" /> +<hkern u1="O" u2=")" k="41" /> +<hkern u1="O" u2="'" k="56" /> +<hkern u1="O" u2="&" k="37" /> +<hkern u1="O" u2=""" k="56" /> +<hkern u1="P" u2="…" k="194" /> +<hkern u1="P" u2="„" k="194" /> +<hkern u1="P" u2="‚" k="194" /> +<hkern u1="P" u2="œ" k="31" /> +<hkern u1="P" u2="ø" k="31" /> +<hkern u1="P" u2="ö" k="31" /> +<hkern u1="P" u2="õ" k="31" /> +<hkern u1="P" u2="ô" k="31" /> +<hkern u1="P" u2="ó" k="31" /> +<hkern u1="P" u2="ò" k="31" /> +<hkern u1="P" u2="ð" k="31" /> +<hkern u1="P" u2="ë" k="31" /> +<hkern u1="P" u2="ê" k="31" /> +<hkern u1="P" u2="é" k="31" /> +<hkern u1="P" u2="è" k="31" /> +<hkern u1="P" u2="ç" k="31" /> +<hkern u1="P" u2="æ" k="31" /> +<hkern u1="P" u2="å" k="31" /> +<hkern u1="P" u2="ä" k="31" /> +<hkern u1="P" u2="ã" k="31" /> +<hkern u1="P" u2="â" k="31" /> +<hkern u1="P" u2="á" k="31" /> +<hkern u1="P" u2="à" k="31" /> +<hkern u1="P" u2="Æ" k="141" /> +<hkern u1="P" u2="Å" k="141" /> +<hkern u1="P" u2="Ä" k="141" /> +<hkern u1="P" u2="Ã" k="141" /> +<hkern u1="P" u2="Â" k="141" /> +<hkern u1="P" u2="Á" k="141" /> +<hkern u1="P" u2="À" k="141" /> +<hkern u1="P" u2="q" k="31" /> +<hkern u1="P" u2="o" k="31" /> +<hkern u1="P" u2="e" k="31" /> +<hkern u1="P" u2="d" k="31" /> +<hkern u1="P" u2="c" k="31" /> +<hkern u1="P" u2="a" k="31" /> +<hkern u1="P" u2="J" k="186" /> +<hkern u1="P" u2="A" k="141" /> +<hkern u1="P" u2="/" k="141" /> +<hkern u1="P" u2="." k="194" /> +<hkern u1="P" u2="," k="194" /> +<hkern u1="P" u2="&" k="141" /> +<hkern u1="Q" u2="”" k="56" /> +<hkern u1="Q" u2="“" k="56" /> +<hkern u1="Q" u2="’" k="56" /> +<hkern u1="Q" u2="‘" k="56" /> +<hkern u1="Q" u2="Ÿ" k="82" /> +<hkern u1="Q" u2="Ý" k="82" /> +<hkern u1="Q" u2="Æ" k="37" /> +<hkern u1="Q" u2="Å" k="37" /> +<hkern u1="Q" u2="Ä" k="37" /> +<hkern u1="Q" u2="Ã" k="37" /> +<hkern u1="Q" u2="Â" k="37" /> +<hkern u1="Q" u2="Á" k="37" /> +<hkern u1="Q" u2="À" k="37" /> +<hkern u1="Q" u2="º" k="56" /> +<hkern u1="Q" u2="°" k="56" /> +<hkern u1="Q" u2="ª" k="56" /> +<hkern u1="Q" u2="}" k="41" /> +<hkern u1="Q" u2="]" k="41" /> +<hkern u1="Q" u2="\" k="52" /> +<hkern u1="Q" u2="Z" k="71" /> +<hkern u1="Q" u2="Y" k="82" /> +<hkern u1="Q" u2="X" k="70" /> +<hkern u1="Q" u2="V" k="52" /> +<hkern u1="Q" u2="T" k="99" /> +<hkern u1="Q" u2="A" k="37" /> +<hkern u1="Q" u2="/" k="37" /> +<hkern u1="Q" u2="*" k="56" /> +<hkern u1="Q" u2=")" k="41" /> +<hkern u1="Q" u2="'" k="56" /> +<hkern u1="Q" u2="&" k="37" /> +<hkern u1="Q" u2=""" k="56" /> +<hkern u1="R" u2="Œ" k="41" /> +<hkern u1="R" u2="Ü" k="43" /> +<hkern u1="R" u2="Û" k="43" /> +<hkern u1="R" u2="Ú" k="43" /> +<hkern u1="R" u2="Ù" k="43" /> +<hkern u1="R" u2="Ø" k="41" /> +<hkern u1="R" u2="Ö" k="41" /> +<hkern u1="R" u2="Õ" k="41" /> +<hkern u1="R" u2="Ô" k="41" /> +<hkern u1="R" u2="Ó" k="41" /> +<hkern u1="R" u2="Ò" k="41" /> +<hkern u1="R" u2="Ç" k="41" /> +<hkern u1="R" u2="®" k="41" /> +<hkern u1="R" u2="©" k="41" /> +<hkern u1="R" u2="U" k="43" /> +<hkern u1="R" u2="T" k="52" /> +<hkern u1="R" u2="Q" k="41" /> +<hkern u1="R" u2="O" k="41" /> +<hkern u1="R" u2="G" k="41" /> +<hkern u1="R" u2="C" k="41" /> +<hkern u1="R" u2="@" k="41" /> +<hkern u1="T" u2="›" k="184" /> +<hkern u1="T" u2="‹" k="184" /> +<hkern u1="T" u2="…" k="184" /> +<hkern u1="T" u2="•" k="184" /> +<hkern u1="T" u2="„" k="184" /> +<hkern u1="T" u2="‚" k="184" /> +<hkern u1="T" u2="—" k="184" /> +<hkern u1="T" u2="–" k="184" /> +<hkern u1="T" u2="œ" k="214" /> +<hkern u1="T" u2="Œ" k="99" /> +<hkern u1="T" u2="ÿ" k="173" /> +<hkern u1="T" u2="ý" k="173" /> +<hkern u1="T" u2="ü" k="158" /> +<hkern u1="T" u2="û" k="158" /> +<hkern u1="T" u2="ú" k="158" /> +<hkern u1="T" u2="ù" k="158" /> +<hkern u1="T" u2="ø" k="214" /> +<hkern u1="T" u2="ö" k="214" /> +<hkern u1="T" u2="õ" k="214" /> +<hkern u1="T" u2="ô" k="214" /> +<hkern u1="T" u2="ó" k="214" /> +<hkern u1="T" u2="ò" k="214" /> +<hkern u1="T" u2="ñ" k="158" /> +<hkern u1="T" u2="ð" k="214" /> +<hkern u1="T" u2="ë" k="214" /> +<hkern u1="T" u2="ê" k="214" /> +<hkern u1="T" u2="é" k="214" /> +<hkern u1="T" u2="è" k="214" /> +<hkern u1="T" u2="ç" k="214" /> +<hkern u1="T" u2="æ" k="214" /> +<hkern u1="T" u2="å" k="214" /> +<hkern u1="T" u2="ä" k="214" /> +<hkern u1="T" u2="ã" k="214" /> +<hkern u1="T" u2="â" k="214" /> +<hkern u1="T" u2="á" k="214" /> +<hkern u1="T" u2="à" k="214" /> +<hkern u1="T" u2="Ø" k="99" /> +<hkern u1="T" u2="Ö" k="99" /> +<hkern u1="T" u2="Õ" k="99" /> +<hkern u1="T" u2="Ô" k="99" /> +<hkern u1="T" u2="Ó" k="99" /> +<hkern u1="T" u2="Ò" k="99" /> +<hkern u1="T" u2="Ç" k="99" /> +<hkern u1="T" u2="Æ" k="135" /> +<hkern u1="T" u2="Å" k="135" /> +<hkern u1="T" u2="Ä" k="135" /> +<hkern u1="T" u2="Ã" k="135" /> +<hkern u1="T" u2="Â" k="135" /> +<hkern u1="T" u2="Á" k="135" /> +<hkern u1="T" u2="À" k="135" /> +<hkern u1="T" u2="»" k="184" /> +<hkern u1="T" u2="·" k="184" /> +<hkern u1="T" u2="µ" k="158" /> +<hkern u1="T" u2="®" k="99" /> +<hkern u1="T" u2="­" k="184" /> +<hkern u1="T" u2="«" k="184" /> +<hkern u1="T" u2="©" k="99" /> +<hkern u1="T" u2="z" k="165" /> +<hkern u1="T" u2="y" k="184" /> +<hkern u1="T" u2="x" k="170" /> +<hkern u1="T" u2="w" k="132" /> +<hkern u1="T" u2="v" k="173" /> +<hkern u1="T" u2="u" k="158" /> +<hkern u1="T" u2="s" k="186" /> +<hkern u1="T" u2="r" k="158" /> +<hkern u1="T" u2="q" k="214" /> +<hkern u1="T" u2="p" k="158" /> +<hkern u1="T" u2="o" k="214" /> +<hkern u1="T" u2="n" k="158" /> +<hkern u1="T" u2="m" k="158" /> +<hkern u1="T" u2="g" k="191" /> +<hkern u1="T" u2="e" k="214" /> +<hkern u1="T" u2="d" k="214" /> +<hkern u1="T" u2="c" k="214" /> +<hkern u1="T" u2="a" k="214" /> +<hkern u1="T" u2="Q" k="99" /> +<hkern u1="T" u2="O" k="99" /> +<hkern u1="T" u2="J" k="205" /> +<hkern u1="T" u2="G" k="99" /> +<hkern u1="T" u2="C" k="99" /> +<hkern u1="T" u2="A" k="135" /> +<hkern u1="T" u2="@" k="99" /> +<hkern u1="T" u2="?" k="-40" /> +<hkern u1="T" u2=";" k="158" /> +<hkern u1="T" u2=":" k="158" /> +<hkern u1="T" u2="/" k="135" /> +<hkern u1="T" u2="." k="184" /> +<hkern u1="T" u2="-" k="184" /> +<hkern u1="T" u2="," k="184" /> +<hkern u1="T" u2="&" k="135" /> +<hkern u1="U" u2="Æ" k="41" /> +<hkern u1="U" u2="Å" k="41" /> +<hkern u1="U" u2="Ä" k="41" /> +<hkern u1="U" u2="Ã" k="41" /> +<hkern u1="U" u2="Â" k="41" /> +<hkern u1="U" u2="Á" k="41" /> +<hkern u1="U" u2="À" k="41" /> +<hkern u1="U" u2="A" k="41" /> +<hkern u1="U" u2="/" k="41" /> +<hkern u1="U" u2="&" k="41" /> +<hkern u1="V" u2="›" k="125" /> +<hkern u1="V" u2="‹" k="125" /> +<hkern u1="V" u2="…" k="196" /> +<hkern u1="V" u2="•" k="125" /> +<hkern u1="V" u2="„" k="196" /> +<hkern u1="V" u2="”" k="-55" /> +<hkern u1="V" u2="“" k="-55" /> +<hkern u1="V" u2="‚" k="196" /> +<hkern u1="V" u2="’" k="-55" /> +<hkern u1="V" u2="‘" k="-55" /> +<hkern u1="V" u2="—" k="125" /> +<hkern u1="V" u2="–" k="125" /> +<hkern u1="V" u2="œ" k="120" /> +<hkern u1="V" u2="Œ" k="41" /> +<hkern u1="V" u2="ÿ" k="37" /> +<hkern u1="V" u2="ý" k="37" /> +<hkern u1="V" u2="ü" k="87" /> +<hkern u1="V" u2="û" k="87" /> +<hkern u1="V" u2="ú" k="87" /> +<hkern u1="V" u2="ù" k="87" /> +<hkern u1="V" u2="ø" k="120" /> +<hkern u1="V" u2="ö" k="120" /> +<hkern u1="V" u2="õ" k="120" /> +<hkern u1="V" u2="ô" k="120" /> +<hkern u1="V" u2="ó" k="120" /> +<hkern u1="V" u2="ò" k="120" /> +<hkern u1="V" u2="ñ" k="87" /> +<hkern u1="V" u2="ð" k="120" /> +<hkern u1="V" u2="ë" k="120" /> +<hkern u1="V" u2="ê" k="120" /> +<hkern u1="V" u2="é" k="120" /> +<hkern u1="V" u2="è" k="120" /> +<hkern u1="V" u2="ç" k="120" /> +<hkern u1="V" u2="æ" k="120" /> +<hkern u1="V" u2="å" k="120" /> +<hkern u1="V" u2="ä" k="120" /> +<hkern u1="V" u2="ã" k="120" /> +<hkern u1="V" u2="â" k="120" /> +<hkern u1="V" u2="á" k="120" /> +<hkern u1="V" u2="à" k="120" /> +<hkern u1="V" u2="Ø" k="41" /> +<hkern u1="V" u2="Ö" k="41" /> +<hkern u1="V" u2="Õ" k="41" /> +<hkern u1="V" u2="Ô" k="41" /> +<hkern u1="V" u2="Ó" k="41" /> +<hkern u1="V" u2="Ò" k="41" /> +<hkern u1="V" u2="Ç" k="41" /> +<hkern u1="V" u2="Æ" k="117" /> +<hkern u1="V" u2="Å" k="117" /> +<hkern u1="V" u2="Ä" k="117" /> +<hkern u1="V" u2="Ã" k="117" /> +<hkern u1="V" u2="Â" k="117" /> +<hkern u1="V" u2="Á" k="117" /> +<hkern u1="V" u2="À" k="117" /> +<hkern u1="V" u2="»" k="125" /> +<hkern u1="V" u2="º" k="-55" /> +<hkern u1="V" u2="¹" k="-82" /> +<hkern u1="V" u2="·" k="125" /> +<hkern u1="V" u2="µ" k="87" /> +<hkern u1="V" u2="³" k="-82" /> +<hkern u1="V" u2="²" k="-82" /> +<hkern u1="V" u2="°" k="-55" /> +<hkern u1="V" u2="®" k="41" /> +<hkern u1="V" u2="­" k="125" /> +<hkern u1="V" u2="«" k="125" /> +<hkern u1="V" u2="ª" k="-55" /> +<hkern u1="V" u2="©" k="41" /> +<hkern u1="V" u2="z" k="74" /> +<hkern u1="V" u2="y" k="37" /> +<hkern u1="V" u2="w" k="37" /> +<hkern u1="V" u2="v" k="37" /> +<hkern u1="V" u2="u" k="87" /> +<hkern u1="V" u2="s" k="115" /> +<hkern u1="V" u2="r" k="87" /> +<hkern u1="V" u2="q" k="120" /> +<hkern u1="V" u2="p" k="87" /> +<hkern u1="V" u2="o" k="120" /> +<hkern u1="V" u2="n" k="87" /> +<hkern u1="V" u2="m" k="87" /> +<hkern u1="V" u2="e" k="120" /> +<hkern u1="V" u2="d" k="120" /> +<hkern u1="V" u2="c" k="120" /> +<hkern u1="V" u2="a" k="120" /> +<hkern u1="V" u2="Q" k="41" /> +<hkern u1="V" u2="O" k="41" /> +<hkern u1="V" u2="J" k="155" /> +<hkern u1="V" u2="G" k="41" /> +<hkern u1="V" u2="C" k="41" /> +<hkern u1="V" u2="A" k="117" /> +<hkern u1="V" u2="@" k="41" /> +<hkern u1="V" u2="?" k="-59" /> +<hkern u1="V" u2=";" k="87" /> +<hkern u1="V" u2=":" k="87" /> +<hkern u1="V" u2="/" k="117" /> +<hkern u1="V" u2="." k="196" /> +<hkern u1="V" u2="-" k="125" /> +<hkern u1="V" u2="," k="196" /> +<hkern u1="V" u2="*" k="-55" /> +<hkern u1="V" u2="'" k="-55" /> +<hkern u1="V" u2="&" k="117" /> +<hkern u1="V" u2=""" k="-55" /> +<hkern u1="W" u2="…" k="102" /> +<hkern u1="W" u2="„" k="102" /> +<hkern u1="W" u2="”" k="-59" /> +<hkern u1="W" u2="“" k="-59" /> +<hkern u1="W" u2="‚" k="102" /> +<hkern u1="W" u2="’" k="-59" /> +<hkern u1="W" u2="‘" k="-59" /> +<hkern u1="W" u2="œ" k="108" /> +<hkern u1="W" u2="ü" k="68" /> +<hkern u1="W" u2="û" k="68" /> +<hkern u1="W" u2="ú" k="68" /> +<hkern u1="W" u2="ù" k="68" /> +<hkern u1="W" u2="ø" k="108" /> +<hkern u1="W" u2="ö" k="108" /> +<hkern u1="W" u2="õ" k="108" /> +<hkern u1="W" u2="ô" k="108" /> +<hkern u1="W" u2="ó" k="108" /> +<hkern u1="W" u2="ò" k="108" /> +<hkern u1="W" u2="ñ" k="68" /> +<hkern u1="W" u2="ð" k="108" /> +<hkern u1="W" u2="ë" k="108" /> +<hkern u1="W" u2="ê" k="108" /> +<hkern u1="W" u2="é" k="108" /> +<hkern u1="W" u2="è" k="108" /> +<hkern u1="W" u2="ç" k="108" /> +<hkern u1="W" u2="æ" k="108" /> +<hkern u1="W" u2="å" k="108" /> +<hkern u1="W" u2="ä" k="108" /> +<hkern u1="W" u2="ã" k="108" /> +<hkern u1="W" u2="â" k="108" /> +<hkern u1="W" u2="á" k="108" /> +<hkern u1="W" u2="à" k="108" /> +<hkern u1="W" u2="Æ" k="74" /> +<hkern u1="W" u2="Å" k="74" /> +<hkern u1="W" u2="Ä" k="74" /> +<hkern u1="W" u2="Ã" k="74" /> +<hkern u1="W" u2="Â" k="74" /> +<hkern u1="W" u2="Á" k="74" /> +<hkern u1="W" u2="À" k="74" /> +<hkern u1="W" u2="º" k="-59" /> +<hkern u1="W" u2="¹" k="-61" /> +<hkern u1="W" u2="µ" k="68" /> +<hkern u1="W" u2="³" k="-61" /> +<hkern u1="W" u2="²" k="-61" /> +<hkern u1="W" u2="°" k="-59" /> +<hkern u1="W" u2="ª" k="-59" /> +<hkern u1="W" u2="u" k="68" /> +<hkern u1="W" u2="s" k="88" /> +<hkern u1="W" u2="r" k="68" /> +<hkern u1="W" u2="q" k="108" /> +<hkern u1="W" u2="p" k="68" /> +<hkern u1="W" u2="o" k="108" /> +<hkern u1="W" u2="n" k="68" /> +<hkern u1="W" u2="m" k="68" /> +<hkern u1="W" u2="g" k="86" /> +<hkern u1="W" u2="e" k="108" /> +<hkern u1="W" u2="d" k="108" /> +<hkern u1="W" u2="c" k="108" /> +<hkern u1="W" u2="a" k="108" /> +<hkern u1="W" u2="J" k="104" /> +<hkern u1="W" u2="A" k="74" /> +<hkern u1="W" u2=";" k="68" /> +<hkern u1="W" u2=":" k="68" /> +<hkern u1="W" u2="/" k="74" /> +<hkern u1="W" u2="." k="102" /> +<hkern u1="W" u2="," k="102" /> +<hkern u1="W" u2="*" k="-59" /> +<hkern u1="W" u2="'" k="-59" /> +<hkern u1="W" u2="&" k="74" /> +<hkern u1="W" u2=""" k="-59" /> +<hkern u1="X" u2="›" k="72" /> +<hkern u1="X" u2="‹" k="72" /> +<hkern u1="X" u2="•" k="72" /> +<hkern u1="X" u2="”" k="-32" /> +<hkern u1="X" u2="“" k="-32" /> +<hkern u1="X" u2="’" k="-32" /> +<hkern u1="X" u2="‘" k="-32" /> +<hkern u1="X" u2="—" k="72" /> +<hkern u1="X" u2="–" k="72" /> +<hkern u1="X" u2="Œ" k="104" /> +<hkern u1="X" u2="ÿ" k="63" /> +<hkern u1="X" u2="ý" k="63" /> +<hkern u1="X" u2="Ø" k="104" /> +<hkern u1="X" u2="Ö" k="104" /> +<hkern u1="X" u2="Õ" k="104" /> +<hkern u1="X" u2="Ô" k="104" /> +<hkern u1="X" u2="Ó" k="104" /> +<hkern u1="X" u2="Ò" k="104" /> +<hkern u1="X" u2="Ç" k="104" /> +<hkern u1="X" u2="»" k="72" /> +<hkern u1="X" u2="º" k="-32" /> +<hkern u1="X" u2="·" k="72" /> +<hkern u1="X" u2="°" k="-32" /> +<hkern u1="X" u2="®" k="104" /> +<hkern u1="X" u2="­" k="72" /> +<hkern u1="X" u2="«" k="72" /> +<hkern u1="X" u2="ª" k="-32" /> +<hkern u1="X" u2="©" k="104" /> +<hkern u1="X" u2="y" k="63" /> +<hkern u1="X" u2="w" k="46" /> +<hkern u1="X" u2="v" k="63" /> +<hkern u1="X" u2="t" k="115" /> +<hkern u1="X" u2="f" k="52" /> +<hkern u1="X" u2="Q" k="104" /> +<hkern u1="X" u2="O" k="104" /> +<hkern u1="X" u2="G" k="104" /> +<hkern u1="X" u2="C" k="104" /> +<hkern u1="X" u2="@" k="104" /> +<hkern u1="X" u2="-" k="72" /> +<hkern u1="X" u2="*" k="-32" /> +<hkern u1="X" u2="'" k="-32" /> +<hkern u1="X" u2=""" k="-32" /> +<hkern u1="Y" u2="›" k="186" /> +<hkern u1="Y" u2="‹" k="186" /> +<hkern u1="Y" u2="…" k="222" /> +<hkern u1="Y" u2="•" k="186" /> +<hkern u1="Y" u2="„" k="222" /> +<hkern u1="Y" u2="”" k="-56" /> +<hkern u1="Y" u2="“" k="-56" /> +<hkern u1="Y" u2="‚" k="222" /> +<hkern u1="Y" u2="’" k="-56" /> +<hkern u1="Y" u2="‘" k="-56" /> +<hkern u1="Y" u2="—" k="186" /> +<hkern u1="Y" u2="–" k="186" /> +<hkern u1="Y" u2="œ" k="196" /> +<hkern u1="Y" u2="Œ" k="71" /> +<hkern u1="Y" u2="ü" k="118" /> +<hkern u1="Y" u2="û" k="118" /> +<hkern u1="Y" u2="ú" k="118" /> +<hkern u1="Y" u2="ù" k="118" /> +<hkern u1="Y" u2="ø" k="196" /> +<hkern u1="Y" u2="ö" k="196" /> +<hkern u1="Y" u2="õ" k="196" /> +<hkern u1="Y" u2="ô" k="196" /> +<hkern u1="Y" u2="ó" k="196" /> +<hkern u1="Y" u2="ò" k="196" /> +<hkern u1="Y" u2="ñ" k="118" /> +<hkern u1="Y" u2="ð" k="196" /> +<hkern u1="Y" u2="ë" k="196" /> +<hkern u1="Y" u2="ê" k="196" /> +<hkern u1="Y" u2="é" k="196" /> +<hkern u1="Y" u2="è" k="196" /> +<hkern u1="Y" u2="ç" k="196" /> +<hkern u1="Y" u2="æ" k="196" /> +<hkern u1="Y" u2="å" k="196" /> +<hkern u1="Y" u2="ä" k="196" /> +<hkern u1="Y" u2="ã" k="196" /> +<hkern u1="Y" u2="â" k="196" /> +<hkern u1="Y" u2="á" k="196" /> +<hkern u1="Y" u2="à" k="196" /> +<hkern u1="Y" u2="Ø" k="71" /> +<hkern u1="Y" u2="Ö" k="71" /> +<hkern u1="Y" u2="Õ" k="71" /> +<hkern u1="Y" u2="Ô" k="71" /> +<hkern u1="Y" u2="Ó" k="71" /> +<hkern u1="Y" u2="Ò" k="71" /> +<hkern u1="Y" u2="Ç" k="71" /> +<hkern u1="Y" u2="Æ" k="145" /> +<hkern u1="Y" u2="Å" k="145" /> +<hkern u1="Y" u2="Ä" k="145" /> +<hkern u1="Y" u2="Ã" k="145" /> +<hkern u1="Y" u2="Â" k="145" /> +<hkern u1="Y" u2="Á" k="145" /> +<hkern u1="Y" u2="À" k="145" /> +<hkern u1="Y" u2="»" k="186" /> +<hkern u1="Y" u2="º" k="-56" /> +<hkern u1="Y" u2="¹" k="-63" /> +<hkern u1="Y" u2="·" k="186" /> +<hkern u1="Y" u2="µ" k="118" /> +<hkern u1="Y" u2="³" k="-63" /> +<hkern u1="Y" u2="²" k="-63" /> +<hkern u1="Y" u2="°" k="-56" /> +<hkern u1="Y" u2="®" k="71" /> +<hkern u1="Y" u2="­" k="186" /> +<hkern u1="Y" u2="«" k="186" /> +<hkern u1="Y" u2="ª" k="-56" /> +<hkern u1="Y" u2="©" k="71" /> +<hkern u1="Y" u2="z" k="102" /> +<hkern u1="Y" u2="u" k="118" /> +<hkern u1="Y" u2="s" k="196" /> +<hkern u1="Y" u2="r" k="118" /> +<hkern u1="Y" u2="q" k="196" /> +<hkern u1="Y" u2="p" k="118" /> +<hkern u1="Y" u2="o" k="196" /> +<hkern u1="Y" u2="n" k="118" /> +<hkern u1="Y" u2="m" k="118" /> +<hkern u1="Y" u2="g" k="173" /> +<hkern u1="Y" u2="e" k="196" /> +<hkern u1="Y" u2="d" k="196" /> +<hkern u1="Y" u2="c" k="196" /> +<hkern u1="Y" u2="a" k="196" /> +<hkern u1="Y" u2="Q" k="71" /> +<hkern u1="Y" u2="O" k="71" /> +<hkern u1="Y" u2="J" k="205" /> +<hkern u1="Y" u2="G" k="71" /> +<hkern u1="Y" u2="C" k="71" /> +<hkern u1="Y" u2="A" k="145" /> +<hkern u1="Y" u2="@" k="71" /> +<hkern u1="Y" u2="?" k="-51" /> +<hkern u1="Y" u2=";" k="118" /> +<hkern u1="Y" u2=":" k="118" /> +<hkern u1="Y" u2="/" k="145" /> +<hkern u1="Y" u2="." k="222" /> +<hkern u1="Y" u2="-" k="186" /> +<hkern u1="Y" u2="," k="222" /> +<hkern u1="Y" u2="*" k="-56" /> +<hkern u1="Y" u2="'" k="-56" /> +<hkern u1="Y" u2="&" k="145" /> +<hkern u1="Y" u2=""" k="-56" /> +<hkern u1="Z" u2="›" k="87" /> +<hkern u1="Z" u2="‹" k="87" /> +<hkern u1="Z" u2="•" k="87" /> +<hkern u1="Z" u2="—" k="87" /> +<hkern u1="Z" u2="–" k="87" /> +<hkern u1="Z" u2="Œ" k="59" /> +<hkern u1="Z" u2="Ø" k="59" /> +<hkern u1="Z" u2="Ö" k="59" /> +<hkern u1="Z" u2="Õ" k="59" /> +<hkern u1="Z" u2="Ô" k="59" /> +<hkern u1="Z" u2="Ó" k="59" /> +<hkern u1="Z" u2="Ò" k="59" /> +<hkern u1="Z" u2="Ç" k="59" /> +<hkern u1="Z" u2="»" k="87" /> +<hkern u1="Z" u2="·" k="87" /> +<hkern u1="Z" u2="®" k="59" /> +<hkern u1="Z" u2="­" k="87" /> +<hkern u1="Z" u2="«" k="87" /> +<hkern u1="Z" u2="©" k="59" /> +<hkern u1="Z" u2="Q" k="59" /> +<hkern u1="Z" u2="O" k="59" /> +<hkern u1="Z" u2="G" k="59" /> +<hkern u1="Z" u2="C" k="59" /> +<hkern u1="Z" u2="@" k="59" /> +<hkern u1="Z" u2="?" k="-36" /> +<hkern u1="Z" u2="-" k="87" /> +<hkern u1="[" u2="œ" k="32" /> +<hkern u1="[" u2="Œ" k="41" /> +<hkern u1="[" u2="ø" k="32" /> +<hkern u1="[" u2="ö" k="32" /> +<hkern u1="[" u2="õ" k="32" /> +<hkern u1="[" u2="ô" k="32" /> +<hkern u1="[" u2="ó" k="32" /> +<hkern u1="[" u2="ò" k="32" /> +<hkern u1="[" u2="ð" k="32" /> +<hkern u1="[" u2="ë" k="32" /> +<hkern u1="[" u2="ê" k="32" /> +<hkern u1="[" u2="é" k="32" /> +<hkern u1="[" u2="è" k="32" /> +<hkern u1="[" u2="ç" k="32" /> +<hkern u1="[" u2="æ" k="32" /> +<hkern u1="[" u2="å" k="32" /> +<hkern u1="[" u2="ä" k="32" /> +<hkern u1="[" u2="ã" k="32" /> +<hkern u1="[" u2="â" k="32" /> +<hkern u1="[" u2="á" k="32" /> +<hkern u1="[" u2="à" k="32" /> +<hkern u1="[" u2="Ø" k="41" /> +<hkern u1="[" u2="Ö" k="41" /> +<hkern u1="[" u2="Õ" k="41" /> +<hkern u1="[" u2="Ô" k="41" /> +<hkern u1="[" u2="Ó" k="41" /> +<hkern u1="[" u2="Ò" k="41" /> +<hkern u1="[" u2="Ç" k="41" /> +<hkern u1="[" u2="®" k="41" /> +<hkern u1="[" u2="©" k="41" /> +<hkern u1="[" u2="q" k="32" /> +<hkern u1="[" u2="o" k="32" /> +<hkern u1="[" u2="e" k="32" /> +<hkern u1="[" u2="d" k="32" /> +<hkern u1="[" u2="c" k="32" /> +<hkern u1="[" u2="a" k="32" /> +<hkern u1="[" u2="Q" k="41" /> +<hkern u1="[" u2="O" k="41" /> +<hkern u1="[" u2="G" k="41" /> +<hkern u1="[" u2="C" k="41" /> +<hkern u1="[" u2="@" k="41" /> +<hkern u1="\" u2="›" k="53" /> +<hkern u1="\" u2="‹" k="53" /> +<hkern u1="\" u2="•" k="53" /> +<hkern u1="\" u2="”" k="186" /> +<hkern u1="\" u2="“" k="186" /> +<hkern u1="\" u2="’" k="186" /> +<hkern u1="\" u2="‘" k="186" /> +<hkern u1="\" u2="—" k="53" /> +<hkern u1="\" u2="–" k="53" /> +<hkern u1="\" u2="Ÿ" k="156" /> +<hkern u1="\" u2="Œ" k="48" /> +<hkern u1="\" u2="ÿ" k="48" /> +<hkern u1="\" u2="ý" k="48" /> +<hkern u1="\" u2="Ý" k="156" /> +<hkern u1="\" u2="Ü" k="41" /> +<hkern u1="\" u2="Û" k="41" /> +<hkern u1="\" u2="Ú" k="41" /> +<hkern u1="\" u2="Ù" k="41" /> +<hkern u1="\" u2="Ø" k="48" /> +<hkern u1="\" u2="Ö" k="48" /> +<hkern u1="\" u2="Õ" k="48" /> +<hkern u1="\" u2="Ô" k="48" /> +<hkern u1="\" u2="Ó" k="48" /> +<hkern u1="\" u2="Ò" k="48" /> +<hkern u1="\" u2="Ç" k="48" /> +<hkern u1="\" u2="»" k="53" /> +<hkern u1="\" u2="º" k="186" /> +<hkern u1="\" u2="¹" k="187" /> +<hkern u1="\" u2="·" k="53" /> +<hkern u1="\" u2="³" k="187" /> +<hkern u1="\" u2="²" k="187" /> +<hkern u1="\" u2="°" k="186" /> +<hkern u1="\" u2="®" k="48" /> +<hkern u1="\" u2="­" k="53" /> +<hkern u1="\" u2="«" k="53" /> +<hkern u1="\" u2="ª" k="186" /> +<hkern u1="\" u2="©" k="48" /> +<hkern u1="\" u2="y" k="48" /> +<hkern u1="\" u2="w" k="33" /> +<hkern u1="\" u2="v" k="48" /> +<hkern u1="\" u2="t" k="58" /> +<hkern u1="\" u2="\" k="117" /> +<hkern u1="\" u2="Y" k="156" /> +<hkern u1="\" u2="W" k="85" /> +<hkern u1="\" u2="V" k="117" /> +<hkern u1="\" u2="U" k="41" /> +<hkern u1="\" u2="T" k="135" /> +<hkern u1="\" u2="Q" k="48" /> +<hkern u1="\" u2="O" k="48" /> +<hkern u1="\" u2="J" k="-63" /> +<hkern u1="\" u2="G" k="48" /> +<hkern u1="\" u2="C" k="48" /> +<hkern u1="\" u2="@" k="48" /> +<hkern u1="\" u2="-" k="53" /> +<hkern u1="\" u2="*" k="186" /> +<hkern u1="\" u2="'" k="186" /> +<hkern u1="\" u2=""" k="186" /> +<hkern u1="b" u2="”" k="82" /> +<hkern u1="b" u2="“" k="82" /> +<hkern u1="b" u2="’" k="82" /> +<hkern u1="b" u2="‘" k="82" /> +<hkern u1="b" u2="º" k="82" /> +<hkern u1="b" u2="°" k="82" /> +<hkern u1="b" u2="ª" k="82" /> +<hkern u1="b" u2="}" k="32" /> +<hkern u1="b" u2="x" k="52" /> +<hkern u1="b" u2="]" k="32" /> +<hkern u1="b" u2="*" k="82" /> +<hkern u1="b" u2=")" k="32" /> +<hkern u1="b" u2="'" k="82" /> +<hkern u1="b" u2=""" k="82" /> +<hkern u1="e" u2="”" k="82" /> +<hkern u1="e" u2="“" k="82" /> +<hkern u1="e" u2="’" k="82" /> +<hkern u1="e" u2="‘" k="82" /> +<hkern u1="e" u2="º" k="82" /> +<hkern u1="e" u2="°" k="82" /> +<hkern u1="e" u2="ª" k="82" /> +<hkern u1="e" u2="}" k="32" /> +<hkern u1="e" u2="x" k="52" /> +<hkern u1="e" u2="]" k="32" /> +<hkern u1="e" u2="*" k="82" /> +<hkern u1="e" u2=")" k="32" /> +<hkern u1="e" u2="'" k="82" /> +<hkern u1="e" u2=""" k="82" /> +<hkern u1="f" u2="…" k="132" /> +<hkern u1="f" u2="„" k="132" /> +<hkern u1="f" u2="”" k="-71" /> +<hkern u1="f" u2="“" k="-71" /> +<hkern u1="f" u2="‚" k="132" /> +<hkern u1="f" u2="’" k="-71" /> +<hkern u1="f" u2="‘" k="-71" /> +<hkern u1="f" u2="º" k="-71" /> +<hkern u1="f" u2="¹" k="-102" /> +<hkern u1="f" u2="³" k="-102" /> +<hkern u1="f" u2="²" k="-102" /> +<hkern u1="f" u2="°" k="-71" /> +<hkern u1="f" u2="ª" k="-71" /> +<hkern u1="f" u2="." k="132" /> +<hkern u1="f" u2="," k="132" /> +<hkern u1="f" u2="*" k="-71" /> +<hkern u1="f" u2="'" k="-71" /> +<hkern u1="f" u2=""" k="-71" /> +<hkern u1="h" u2="”" k="61" /> +<hkern u1="h" u2="“" k="61" /> +<hkern u1="h" u2="’" k="61" /> +<hkern u1="h" u2="‘" k="61" /> +<hkern u1="h" u2="ÿ" k="32" /> +<hkern u1="h" u2="ý" k="32" /> +<hkern u1="h" u2="º" k="61" /> +<hkern u1="h" u2="¹" k="105" /> +<hkern u1="h" u2="³" k="105" /> +<hkern u1="h" u2="²" k="105" /> +<hkern u1="h" u2="°" k="61" /> +<hkern u1="h" u2="ª" k="61" /> +<hkern u1="h" u2="y" k="43" /> +<hkern u1="h" u2="v" k="32" /> +<hkern u1="h" u2="*" k="61" /> +<hkern u1="h" u2="'" k="61" /> +<hkern u1="h" u2=""" k="61" /> +<hkern u1="k" u2="œ" k="52" /> +<hkern u1="k" u2="ø" k="52" /> +<hkern u1="k" u2="ö" k="52" /> +<hkern u1="k" u2="õ" k="52" /> +<hkern u1="k" u2="ô" k="52" /> +<hkern u1="k" u2="ó" k="52" /> +<hkern u1="k" u2="ò" k="52" /> +<hkern u1="k" u2="ð" k="52" /> +<hkern u1="k" u2="ë" k="52" /> +<hkern u1="k" u2="ê" k="52" /> +<hkern u1="k" u2="é" k="52" /> +<hkern u1="k" u2="è" k="52" /> +<hkern u1="k" u2="ç" k="52" /> +<hkern u1="k" u2="æ" k="52" /> +<hkern u1="k" u2="å" k="52" /> +<hkern u1="k" u2="ä" k="52" /> +<hkern u1="k" u2="ã" k="52" /> +<hkern u1="k" u2="â" k="52" /> +<hkern u1="k" u2="á" k="52" /> +<hkern u1="k" u2="à" k="52" /> +<hkern u1="k" u2="q" k="52" /> +<hkern u1="k" u2="o" k="52" /> +<hkern u1="k" u2="e" k="52" /> +<hkern u1="k" u2="d" k="52" /> +<hkern u1="k" u2="c" k="52" /> +<hkern u1="k" u2="a" k="52" /> +<hkern u1="m" u2="”" k="61" /> +<hkern u1="m" u2="“" k="61" /> +<hkern u1="m" u2="’" k="61" /> +<hkern u1="m" u2="‘" k="61" /> +<hkern u1="m" u2="ÿ" k="32" /> +<hkern u1="m" u2="ý" k="32" /> +<hkern u1="m" u2="º" k="61" /> +<hkern u1="m" u2="¹" k="105" /> +<hkern u1="m" u2="³" k="105" /> +<hkern u1="m" u2="²" k="105" /> +<hkern u1="m" u2="°" k="61" /> +<hkern u1="m" u2="ª" k="61" /> +<hkern u1="m" u2="y" k="43" /> +<hkern u1="m" u2="v" k="32" /> +<hkern u1="m" u2="*" k="61" /> +<hkern u1="m" u2="'" k="61" /> +<hkern u1="m" u2=""" k="61" /> +<hkern u1="n" u2="”" k="61" /> +<hkern u1="n" u2="“" k="61" /> +<hkern u1="n" u2="’" k="61" /> +<hkern u1="n" u2="‘" k="61" /> +<hkern u1="n" u2="ÿ" k="32" /> +<hkern u1="n" u2="ý" k="32" /> +<hkern u1="n" u2="º" k="61" /> +<hkern u1="n" u2="¹" k="105" /> +<hkern u1="n" u2="³" k="105" /> +<hkern u1="n" u2="²" k="105" /> +<hkern u1="n" u2="°" k="61" /> +<hkern u1="n" u2="ª" k="61" /> +<hkern u1="n" u2="y" k="43" /> +<hkern u1="n" u2="v" k="32" /> +<hkern u1="n" u2="*" k="61" /> +<hkern u1="n" u2="'" k="61" /> +<hkern u1="n" u2=""" k="61" /> +<hkern u1="o" u2="”" k="82" /> +<hkern u1="o" u2="“" k="82" /> +<hkern u1="o" u2="’" k="82" /> +<hkern u1="o" u2="‘" k="82" /> +<hkern u1="o" u2="º" k="82" /> +<hkern u1="o" u2="°" k="82" /> +<hkern u1="o" u2="ª" k="82" /> +<hkern u1="o" u2="}" k="32" /> +<hkern u1="o" u2="x" k="52" /> +<hkern u1="o" u2="]" k="32" /> +<hkern u1="o" u2="*" k="82" /> +<hkern u1="o" u2=")" k="32" /> +<hkern u1="o" u2="'" k="82" /> +<hkern u1="o" u2=""" k="82" /> +<hkern u1="p" u2="”" k="82" /> +<hkern u1="p" u2="“" k="82" /> +<hkern u1="p" u2="’" k="82" /> +<hkern u1="p" u2="‘" k="82" /> +<hkern u1="p" u2="º" k="82" /> +<hkern u1="p" u2="°" k="82" /> +<hkern u1="p" u2="ª" k="82" /> +<hkern u1="p" u2="}" k="32" /> +<hkern u1="p" u2="x" k="52" /> +<hkern u1="p" u2="]" k="32" /> +<hkern u1="p" u2="*" k="82" /> +<hkern u1="p" u2=")" k="32" /> +<hkern u1="p" u2="'" k="82" /> +<hkern u1="p" u2=""" k="82" /> +<hkern u1="r" u2="…" k="156" /> +<hkern u1="r" u2="„" k="156" /> +<hkern u1="r" u2="‚" k="156" /> +<hkern u1="r" u2="œ" k="41" /> +<hkern u1="r" u2="ø" k="41" /> +<hkern u1="r" u2="ö" k="41" /> +<hkern u1="r" u2="õ" k="41" /> +<hkern u1="r" u2="ô" k="41" /> +<hkern u1="r" u2="ó" k="41" /> +<hkern u1="r" u2="ò" k="41" /> +<hkern u1="r" u2="ð" k="41" /> +<hkern u1="r" u2="ë" k="41" /> +<hkern u1="r" u2="ê" k="41" /> +<hkern u1="r" u2="é" k="41" /> +<hkern u1="r" u2="è" k="41" /> +<hkern u1="r" u2="ç" k="41" /> +<hkern u1="r" u2="æ" k="41" /> +<hkern u1="r" u2="å" k="41" /> +<hkern u1="r" u2="ä" k="41" /> +<hkern u1="r" u2="ã" k="41" /> +<hkern u1="r" u2="â" k="41" /> +<hkern u1="r" u2="á" k="41" /> +<hkern u1="r" u2="à" k="41" /> +<hkern u1="r" u2="q" k="41" /> +<hkern u1="r" u2="o" k="41" /> +<hkern u1="r" u2="e" k="41" /> +<hkern u1="r" u2="d" k="41" /> +<hkern u1="r" u2="c" k="41" /> +<hkern u1="r" u2="a" k="41" /> +<hkern u1="r" u2="." k="156" /> +<hkern u1="r" u2="," k="156" /> +<hkern u1="v" u2="…" k="145" /> +<hkern u1="v" u2="„" k="145" /> +<hkern u1="v" u2="‚" k="145" /> +<hkern u1="v" u2="œ" k="27" /> +<hkern u1="v" u2="ø" k="27" /> +<hkern u1="v" u2="ö" k="27" /> +<hkern u1="v" u2="õ" k="27" /> +<hkern u1="v" u2="ô" k="27" /> +<hkern u1="v" u2="ó" k="27" /> +<hkern u1="v" u2="ò" k="27" /> +<hkern u1="v" u2="ð" k="27" /> +<hkern u1="v" u2="ë" k="27" /> +<hkern u1="v" u2="ê" k="27" /> +<hkern u1="v" u2="é" k="27" /> +<hkern u1="v" u2="è" k="27" /> +<hkern u1="v" u2="ç" k="27" /> +<hkern u1="v" u2="æ" k="27" /> +<hkern u1="v" u2="å" k="27" /> +<hkern u1="v" u2="ä" k="27" /> +<hkern u1="v" u2="ã" k="27" /> +<hkern u1="v" u2="â" k="27" /> +<hkern u1="v" u2="á" k="27" /> +<hkern u1="v" u2="à" k="27" /> +<hkern u1="v" u2="Æ" k="48" /> +<hkern u1="v" u2="Å" k="48" /> +<hkern u1="v" u2="Ä" k="48" /> +<hkern u1="v" u2="Ã" k="48" /> +<hkern u1="v" u2="Â" k="48" /> +<hkern u1="v" u2="Á" k="48" /> +<hkern u1="v" u2="À" k="48" /> +<hkern u1="v" u2="q" k="27" /> +<hkern u1="v" u2="o" k="27" /> +<hkern u1="v" u2="e" k="27" /> +<hkern u1="v" u2="d" k="27" /> +<hkern u1="v" u2="c" k="27" /> +<hkern u1="v" u2="a" k="27" /> +<hkern u1="v" u2="A" k="48" /> +<hkern u1="v" u2="/" k="48" /> +<hkern u1="v" u2="." k="145" /> +<hkern u1="v" u2="," k="145" /> +<hkern u1="v" u2="&" k="48" /> +<hkern u1="w" u2="…" k="85" /> +<hkern u1="w" u2="„" k="85" /> +<hkern u1="w" u2="‚" k="85" /> +<hkern u1="w" u2="Æ" k="33" /> +<hkern u1="w" u2="Å" k="33" /> +<hkern u1="w" u2="Ä" k="33" /> +<hkern u1="w" u2="Ã" k="33" /> +<hkern u1="w" u2="Â" k="33" /> +<hkern u1="w" u2="Á" k="33" /> +<hkern u1="w" u2="À" k="33" /> +<hkern u1="w" u2="A" k="33" /> +<hkern u1="w" u2="/" k="33" /> +<hkern u1="w" u2="." k="85" /> +<hkern u1="w" u2="," k="85" /> +<hkern u1="w" u2="&" k="33" /> +<hkern u1="x" u2="œ" k="52" /> +<hkern u1="x" u2="ø" k="52" /> +<hkern u1="x" u2="ö" k="52" /> +<hkern u1="x" u2="õ" k="52" /> +<hkern u1="x" u2="ô" k="52" /> +<hkern u1="x" u2="ó" k="52" /> +<hkern u1="x" u2="ò" k="52" /> +<hkern u1="x" u2="ð" k="52" /> +<hkern u1="x" u2="ë" k="52" /> +<hkern u1="x" u2="ê" k="52" /> +<hkern u1="x" u2="é" k="52" /> +<hkern u1="x" u2="è" k="52" /> +<hkern u1="x" u2="ç" k="52" /> +<hkern u1="x" u2="æ" k="52" /> +<hkern u1="x" u2="å" k="52" /> +<hkern u1="x" u2="ä" k="52" /> +<hkern u1="x" u2="ã" k="52" /> +<hkern u1="x" u2="â" k="52" /> +<hkern u1="x" u2="á" k="52" /> +<hkern u1="x" u2="à" k="52" /> +<hkern u1="x" u2="q" k="52" /> +<hkern u1="x" u2="o" k="52" /> +<hkern u1="x" u2="e" k="52" /> +<hkern u1="x" u2="d" k="52" /> +<hkern u1="x" u2="c" k="52" /> +<hkern u1="x" u2="a" k="52" /> +<hkern u1="y" u2="…" k="156" /> +<hkern u1="y" u2="„" k="156" /> +<hkern u1="y" u2="‚" k="156" /> +<hkern u1="y" u2="œ" k="27" /> +<hkern u1="y" u2="ø" k="27" /> +<hkern u1="y" u2="ö" k="27" /> +<hkern u1="y" u2="õ" k="27" /> +<hkern u1="y" u2="ô" k="27" /> +<hkern u1="y" u2="ó" k="27" /> +<hkern u1="y" u2="ò" k="27" /> +<hkern u1="y" u2="ð" k="27" /> +<hkern u1="y" u2="ë" k="27" /> +<hkern u1="y" u2="ê" k="27" /> +<hkern u1="y" u2="é" k="27" /> +<hkern u1="y" u2="è" k="27" /> +<hkern u1="y" u2="ç" k="27" /> +<hkern u1="y" u2="æ" k="27" /> +<hkern u1="y" u2="å" k="27" /> +<hkern u1="y" u2="ä" k="27" /> +<hkern u1="y" u2="ã" k="27" /> +<hkern u1="y" u2="â" k="27" /> +<hkern u1="y" u2="á" k="27" /> +<hkern u1="y" u2="à" k="27" /> +<hkern u1="y" u2="Æ" k="48" /> +<hkern u1="y" u2="Å" k="48" /> +<hkern u1="y" u2="Ä" k="48" /> +<hkern u1="y" u2="Ã" k="48" /> +<hkern u1="y" u2="Â" k="48" /> +<hkern u1="y" u2="Á" k="48" /> +<hkern u1="y" u2="À" k="48" /> +<hkern u1="y" u2="q" k="27" /> +<hkern u1="y" u2="o" k="27" /> +<hkern u1="y" u2="e" k="27" /> +<hkern u1="y" u2="d" k="27" /> +<hkern u1="y" u2="c" k="27" /> +<hkern u1="y" u2="a" k="27" /> +<hkern u1="y" u2="A" k="48" /> +<hkern u1="y" u2="/" k="48" /> +<hkern u1="y" u2="." k="156" /> +<hkern u1="y" u2="," k="156" /> +<hkern u1="y" u2="&" k="48" /> +<hkern u1="{" u2="œ" k="32" /> +<hkern u1="{" u2="Œ" k="41" /> +<hkern u1="{" u2="ø" k="32" /> +<hkern u1="{" u2="ö" k="32" /> +<hkern u1="{" u2="õ" k="32" /> +<hkern u1="{" u2="ô" k="32" /> +<hkern u1="{" u2="ó" k="32" /> +<hkern u1="{" u2="ò" k="32" /> +<hkern u1="{" u2="ð" k="32" /> +<hkern u1="{" u2="ë" k="32" /> +<hkern u1="{" u2="ê" k="32" /> +<hkern u1="{" u2="é" k="32" /> +<hkern u1="{" u2="è" k="32" /> +<hkern u1="{" u2="ç" k="32" /> +<hkern u1="{" u2="æ" k="32" /> +<hkern u1="{" u2="å" k="32" /> +<hkern u1="{" u2="ä" k="32" /> +<hkern u1="{" u2="ã" k="32" /> +<hkern u1="{" u2="â" k="32" /> +<hkern u1="{" u2="á" k="32" /> +<hkern u1="{" u2="à" k="32" /> +<hkern u1="{" u2="Ø" k="41" /> +<hkern u1="{" u2="Ö" k="41" /> +<hkern u1="{" u2="Õ" k="41" /> +<hkern u1="{" u2="Ô" k="41" /> +<hkern u1="{" u2="Ó" k="41" /> +<hkern u1="{" u2="Ò" k="41" /> +<hkern u1="{" u2="Ç" k="41" /> +<hkern u1="{" u2="®" k="41" /> +<hkern u1="{" u2="©" k="41" /> +<hkern u1="{" u2="q" k="32" /> +<hkern u1="{" u2="o" k="32" /> +<hkern u1="{" u2="e" k="32" /> +<hkern u1="{" u2="d" k="32" /> +<hkern u1="{" u2="c" k="32" /> +<hkern u1="{" u2="a" k="32" /> +<hkern u1="{" u2="Q" k="41" /> +<hkern u1="{" u2="O" k="41" /> +<hkern u1="{" u2="G" k="41" /> +<hkern u1="{" u2="C" k="41" /> +<hkern u1="{" u2="@" k="41" /> +<hkern u1="©" u2="”" k="56" /> +<hkern u1="©" u2="“" k="56" /> +<hkern u1="©" u2="’" k="56" /> +<hkern u1="©" u2="‘" k="56" /> +<hkern u1="©" u2="Ÿ" k="82" /> +<hkern u1="©" u2="Ý" k="82" /> +<hkern u1="©" u2="Æ" k="37" /> +<hkern u1="©" u2="Å" k="37" /> +<hkern u1="©" u2="Ä" k="37" /> +<hkern u1="©" u2="Ã" k="37" /> +<hkern u1="©" u2="Â" k="37" /> +<hkern u1="©" u2="Á" k="37" /> +<hkern u1="©" u2="À" k="37" /> +<hkern u1="©" u2="º" k="56" /> +<hkern u1="©" u2="°" k="56" /> +<hkern u1="©" u2="ª" k="56" /> +<hkern u1="©" u2="}" k="41" /> +<hkern u1="©" u2="]" k="41" /> +<hkern u1="©" u2="\" k="52" /> +<hkern u1="©" u2="Z" k="71" /> +<hkern u1="©" u2="Y" k="82" /> +<hkern u1="©" u2="X" k="70" /> +<hkern u1="©" u2="V" k="52" /> +<hkern u1="©" u2="T" k="99" /> +<hkern u1="©" u2="A" k="37" /> +<hkern u1="©" u2="/" k="37" /> +<hkern u1="©" u2="*" k="56" /> +<hkern u1="©" u2=")" k="41" /> +<hkern u1="©" u2="'" k="56" /> +<hkern u1="©" u2="&" k="37" /> +<hkern u1="©" u2=""" k="56" /> +<hkern u1="ª" u2="›" k="85" /> +<hkern u1="ª" u2="‹" k="85" /> +<hkern u1="ª" u2="…" k="94" /> +<hkern u1="ª" u2="•" k="85" /> +<hkern u1="ª" u2="„" k="94" /> +<hkern u1="ª" u2="‚" k="94" /> +<hkern u1="ª" u2="—" k="85" /> +<hkern u1="ª" u2="–" k="85" /> +<hkern u1="ª" u2="Ÿ" k="-46" /> +<hkern u1="ª" u2="œ" k="93" /> +<hkern u1="ª" u2="ø" k="93" /> +<hkern u1="ª" u2="ö" k="93" /> +<hkern u1="ª" u2="õ" k="93" /> +<hkern u1="ª" u2="ô" k="93" /> +<hkern u1="ª" u2="ó" k="93" /> +<hkern u1="ª" u2="ò" k="93" /> +<hkern u1="ª" u2="ð" k="93" /> +<hkern u1="ª" u2="ë" k="93" /> +<hkern u1="ª" u2="ê" k="93" /> +<hkern u1="ª" u2="é" k="93" /> +<hkern u1="ª" u2="è" k="93" /> +<hkern u1="ª" u2="ç" k="93" /> +<hkern u1="ª" u2="æ" k="93" /> +<hkern u1="ª" u2="å" k="93" /> +<hkern u1="ª" u2="ä" k="93" /> +<hkern u1="ª" u2="ã" k="93" /> +<hkern u1="ª" u2="â" k="93" /> +<hkern u1="ª" u2="á" k="93" /> +<hkern u1="ª" u2="à" k="93" /> +<hkern u1="ª" u2="Ý" k="-46" /> +<hkern u1="ª" u2="Æ" k="175" /> +<hkern u1="ª" u2="Å" k="175" /> +<hkern u1="ª" u2="Ä" k="175" /> +<hkern u1="ª" u2="Ã" k="175" /> +<hkern u1="ª" u2="Â" k="175" /> +<hkern u1="ª" u2="Á" k="175" /> +<hkern u1="ª" u2="À" k="175" /> +<hkern u1="ª" u2="»" k="85" /> +<hkern u1="ª" u2="·" k="85" /> +<hkern u1="ª" u2="­" k="85" /> +<hkern u1="ª" u2="«" k="85" /> +<hkern u1="ª" u2="q" k="93" /> +<hkern u1="ª" u2="o" k="93" /> +<hkern u1="ª" u2="e" k="93" /> +<hkern u1="ª" u2="d" k="93" /> +<hkern u1="ª" u2="c" k="93" /> +<hkern u1="ª" u2="a" k="93" /> +<hkern u1="ª" u2="\" k="-55" /> +<hkern u1="ª" u2="Y" k="-46" /> +<hkern u1="ª" u2="W" k="-49" /> +<hkern u1="ª" u2="V" k="-55" /> +<hkern u1="ª" u2="A" k="175" /> +<hkern u1="ª" u2="/" k="175" /> +<hkern u1="ª" u2="." k="94" /> +<hkern u1="ª" u2="-" k="85" /> +<hkern u1="ª" u2="," k="94" /> +<hkern u1="ª" u2="&" k="175" /> +<hkern u1="«" u2="…" k="166" /> +<hkern u1="«" u2="„" k="166" /> +<hkern u1="«" u2="”" k="85" /> +<hkern u1="«" u2="“" k="85" /> +<hkern u1="«" u2="‚" k="166" /> +<hkern u1="«" u2="’" k="85" /> +<hkern u1="«" u2="‘" k="85" /> +<hkern u1="«" u2="Ÿ" k="197" /> +<hkern u1="«" u2="Ý" k="197" /> +<hkern u1="«" u2="Æ" k="53" /> +<hkern u1="«" u2="Å" k="53" /> +<hkern u1="«" u2="Ä" k="53" /> +<hkern u1="«" u2="Ã" k="53" /> +<hkern u1="«" u2="Â" k="53" /> +<hkern u1="«" u2="Á" k="53" /> +<hkern u1="«" u2="À" k="53" /> +<hkern u1="«" u2="º" k="85" /> +<hkern u1="«" u2="°" k="85" /> +<hkern u1="«" u2="ª" k="85" /> +<hkern u1="«" u2="\" k="125" /> +<hkern u1="«" u2="Z" k="56" /> +<hkern u1="«" u2="Y" k="197" /> +<hkern u1="«" u2="X" k="72" /> +<hkern u1="«" u2="V" k="125" /> +<hkern u1="«" u2="T" k="196" /> +<hkern u1="«" u2="A" k="53" /> +<hkern u1="«" u2="/" k="53" /> +<hkern u1="«" u2="." k="166" /> +<hkern u1="«" u2="," k="166" /> +<hkern u1="«" u2="*" k="85" /> +<hkern u1="«" u2="'" k="85" /> +<hkern u1="«" u2="&" k="53" /> +<hkern u1="«" u2=""" k="85" /> +<hkern u1="­" u2="…" k="166" /> +<hkern u1="­" u2="„" k="166" /> +<hkern u1="­" u2="”" k="85" /> +<hkern u1="­" u2="“" k="85" /> +<hkern u1="­" u2="‚" k="166" /> +<hkern u1="­" u2="’" k="85" /> +<hkern u1="­" u2="‘" k="85" /> +<hkern u1="­" u2="Ÿ" k="197" /> +<hkern u1="­" u2="Ý" k="197" /> +<hkern u1="­" u2="Æ" k="53" /> +<hkern u1="­" u2="Å" k="53" /> +<hkern u1="­" u2="Ä" k="53" /> +<hkern u1="­" u2="Ã" k="53" /> +<hkern u1="­" u2="Â" k="53" /> +<hkern u1="­" u2="Á" k="53" /> +<hkern u1="­" u2="À" k="53" /> +<hkern u1="­" u2="º" k="85" /> +<hkern u1="­" u2="°" k="85" /> +<hkern u1="­" u2="ª" k="85" /> +<hkern u1="­" u2="\" k="125" /> +<hkern u1="­" u2="Z" k="56" /> +<hkern u1="­" u2="Y" k="197" /> +<hkern u1="­" u2="X" k="72" /> +<hkern u1="­" u2="V" k="125" /> +<hkern u1="­" u2="T" k="196" /> +<hkern u1="­" u2="A" k="53" /> +<hkern u1="­" u2="/" k="53" /> +<hkern u1="­" u2="." k="166" /> +<hkern u1="­" u2="," k="166" /> +<hkern u1="­" u2="*" k="85" /> +<hkern u1="­" u2="'" k="85" /> +<hkern u1="­" u2="&" k="53" /> +<hkern u1="­" u2=""" k="85" /> +<hkern u1="®" u2="”" k="56" /> +<hkern u1="®" u2="“" k="56" /> +<hkern u1="®" u2="’" k="56" /> +<hkern u1="®" u2="‘" k="56" /> +<hkern u1="®" u2="Ÿ" k="82" /> +<hkern u1="®" u2="Ý" k="82" /> +<hkern u1="®" u2="Æ" k="37" /> +<hkern u1="®" u2="Å" k="37" /> +<hkern u1="®" u2="Ä" k="37" /> +<hkern u1="®" u2="Ã" k="37" /> +<hkern u1="®" u2="Â" k="37" /> +<hkern u1="®" u2="Á" k="37" /> +<hkern u1="®" u2="À" k="37" /> +<hkern u1="®" u2="º" k="56" /> +<hkern u1="®" u2="°" k="56" /> +<hkern u1="®" u2="ª" k="56" /> +<hkern u1="®" u2="}" k="41" /> +<hkern u1="®" u2="]" k="41" /> +<hkern u1="®" u2="\" k="52" /> +<hkern u1="®" u2="Z" k="71" /> +<hkern u1="®" u2="Y" k="82" /> +<hkern u1="®" u2="X" k="70" /> +<hkern u1="®" u2="V" k="52" /> +<hkern u1="®" u2="T" k="99" /> +<hkern u1="®" u2="A" k="37" /> +<hkern u1="®" u2="/" k="37" /> +<hkern u1="®" u2="*" k="56" /> +<hkern u1="®" u2=")" k="41" /> +<hkern u1="®" u2="'" k="56" /> +<hkern u1="®" u2="&" k="37" /> +<hkern u1="®" u2=""" k="56" /> +<hkern u1="°" u2="›" k="85" /> +<hkern u1="°" u2="‹" k="85" /> +<hkern u1="°" u2="…" k="94" /> +<hkern u1="°" u2="•" k="85" /> +<hkern u1="°" u2="„" k="94" /> +<hkern u1="°" u2="‚" k="94" /> +<hkern u1="°" u2="—" k="85" /> +<hkern u1="°" u2="–" k="85" /> +<hkern u1="°" u2="Ÿ" k="-46" /> +<hkern u1="°" u2="œ" k="93" /> +<hkern u1="°" u2="ø" k="93" /> +<hkern u1="°" u2="ö" k="93" /> +<hkern u1="°" u2="õ" k="93" /> +<hkern u1="°" u2="ô" k="93" /> +<hkern u1="°" u2="ó" k="93" /> +<hkern u1="°" u2="ò" k="93" /> +<hkern u1="°" u2="ð" k="93" /> +<hkern u1="°" u2="ë" k="93" /> +<hkern u1="°" u2="ê" k="93" /> +<hkern u1="°" u2="é" k="93" /> +<hkern u1="°" u2="è" k="93" /> +<hkern u1="°" u2="ç" k="93" /> +<hkern u1="°" u2="æ" k="93" /> +<hkern u1="°" u2="å" k="93" /> +<hkern u1="°" u2="ä" k="93" /> +<hkern u1="°" u2="ã" k="93" /> +<hkern u1="°" u2="â" k="93" /> +<hkern u1="°" u2="á" k="93" /> +<hkern u1="°" u2="à" k="93" /> +<hkern u1="°" u2="Ý" k="-46" /> +<hkern u1="°" u2="Æ" k="175" /> +<hkern u1="°" u2="Å" k="175" /> +<hkern u1="°" u2="Ä" k="175" /> +<hkern u1="°" u2="Ã" k="175" /> +<hkern u1="°" u2="Â" k="175" /> +<hkern u1="°" u2="Á" k="175" /> +<hkern u1="°" u2="À" k="175" /> +<hkern u1="°" u2="»" k="85" /> +<hkern u1="°" u2="·" k="85" /> +<hkern u1="°" u2="­" k="85" /> +<hkern u1="°" u2="«" k="85" /> +<hkern u1="°" u2="q" k="93" /> +<hkern u1="°" u2="o" k="93" /> +<hkern u1="°" u2="e" k="93" /> +<hkern u1="°" u2="d" k="93" /> +<hkern u1="°" u2="c" k="93" /> +<hkern u1="°" u2="a" k="93" /> +<hkern u1="°" u2="\" k="-55" /> +<hkern u1="°" u2="Y" k="-46" /> +<hkern u1="°" u2="W" k="-49" /> +<hkern u1="°" u2="V" k="-55" /> +<hkern u1="°" u2="A" k="175" /> +<hkern u1="°" u2="/" k="175" /> +<hkern u1="°" u2="." k="94" /> +<hkern u1="°" u2="-" k="85" /> +<hkern u1="°" u2="," k="94" /> +<hkern u1="°" u2="&" k="175" /> +<hkern u1="²" u2="Ÿ" k="-41" /> +<hkern u1="²" u2="Ý" k="-41" /> +<hkern u1="²" u2="Æ" k="176" /> +<hkern u1="²" u2="Å" k="176" /> +<hkern u1="²" u2="Ä" k="176" /> +<hkern u1="²" u2="Ã" k="176" /> +<hkern u1="²" u2="Â" k="176" /> +<hkern u1="²" u2="Á" k="176" /> +<hkern u1="²" u2="À" k="176" /> +<hkern u1="²" u2="\" k="-59" /> +<hkern u1="²" u2="Y" k="-41" /> +<hkern u1="²" u2="W" k="-59" /> +<hkern u1="²" u2="V" k="-59" /> +<hkern u1="²" u2="A" k="176" /> +<hkern u1="²" u2="/" k="176" /> +<hkern u1="²" u2="&" k="176" /> +<hkern u1="³" u2="Ÿ" k="-41" /> +<hkern u1="³" u2="Ý" k="-41" /> +<hkern u1="³" u2="Æ" k="176" /> +<hkern u1="³" u2="Å" k="176" /> +<hkern u1="³" u2="Ä" k="176" /> +<hkern u1="³" u2="Ã" k="176" /> +<hkern u1="³" u2="Â" k="176" /> +<hkern u1="³" u2="Á" k="176" /> +<hkern u1="³" u2="À" k="176" /> +<hkern u1="³" u2="\" k="-59" /> +<hkern u1="³" u2="Y" k="-41" /> +<hkern u1="³" u2="W" k="-59" /> +<hkern u1="³" u2="V" k="-59" /> +<hkern u1="³" u2="A" k="176" /> +<hkern u1="³" u2="/" k="176" /> +<hkern u1="³" u2="&" k="176" /> +<hkern u1="·" u2="…" k="166" /> +<hkern u1="·" u2="„" k="166" /> +<hkern u1="·" u2="”" k="85" /> +<hkern u1="·" u2="“" k="85" /> +<hkern u1="·" u2="‚" k="166" /> +<hkern u1="·" u2="’" k="85" /> +<hkern u1="·" u2="‘" k="85" /> +<hkern u1="·" u2="Ÿ" k="197" /> +<hkern u1="·" u2="Ý" k="197" /> +<hkern u1="·" u2="Æ" k="53" /> +<hkern u1="·" u2="Å" k="53" /> +<hkern u1="·" u2="Ä" k="53" /> +<hkern u1="·" u2="Ã" k="53" /> +<hkern u1="·" u2="Â" k="53" /> +<hkern u1="·" u2="Á" k="53" /> +<hkern u1="·" u2="À" k="53" /> +<hkern u1="·" u2="º" k="85" /> +<hkern u1="·" u2="°" k="85" /> +<hkern u1="·" u2="ª" k="85" /> +<hkern u1="·" u2="\" k="125" /> +<hkern u1="·" u2="Z" k="56" /> +<hkern u1="·" u2="Y" k="197" /> +<hkern u1="·" u2="X" k="72" /> +<hkern u1="·" u2="V" k="125" /> +<hkern u1="·" u2="T" k="196" /> +<hkern u1="·" u2="A" k="53" /> +<hkern u1="·" u2="/" k="53" /> +<hkern u1="·" u2="." k="166" /> +<hkern u1="·" u2="," k="166" /> +<hkern u1="·" u2="*" k="85" /> +<hkern u1="·" u2="'" k="85" /> +<hkern u1="·" u2="&" k="53" /> +<hkern u1="·" u2=""" k="85" /> +<hkern u1="¹" u2="Ÿ" k="-41" /> +<hkern u1="¹" u2="Ý" k="-41" /> +<hkern u1="¹" u2="Æ" k="176" /> +<hkern u1="¹" u2="Å" k="176" /> +<hkern u1="¹" u2="Ä" k="176" /> +<hkern u1="¹" u2="Ã" k="176" /> +<hkern u1="¹" u2="Â" k="176" /> +<hkern u1="¹" u2="Á" k="176" /> +<hkern u1="¹" u2="À" k="176" /> +<hkern u1="¹" u2="\" k="-59" /> +<hkern u1="¹" u2="Y" k="-41" /> +<hkern u1="¹" u2="W" k="-59" /> +<hkern u1="¹" u2="V" k="-59" /> +<hkern u1="¹" u2="A" k="176" /> +<hkern u1="¹" u2="/" k="176" /> +<hkern u1="¹" u2="&" k="176" /> +<hkern u1="º" u2="›" k="85" /> +<hkern u1="º" u2="‹" k="85" /> +<hkern u1="º" u2="…" k="94" /> +<hkern u1="º" u2="•" k="85" /> +<hkern u1="º" u2="„" k="94" /> +<hkern u1="º" u2="‚" k="94" /> +<hkern u1="º" u2="—" k="85" /> +<hkern u1="º" u2="–" k="85" /> +<hkern u1="º" u2="Ÿ" k="-46" /> +<hkern u1="º" u2="œ" k="93" /> +<hkern u1="º" u2="ø" k="93" /> +<hkern u1="º" u2="ö" k="93" /> +<hkern u1="º" u2="õ" k="93" /> +<hkern u1="º" u2="ô" k="93" /> +<hkern u1="º" u2="ó" k="93" /> +<hkern u1="º" u2="ò" k="93" /> +<hkern u1="º" u2="ð" k="93" /> +<hkern u1="º" u2="ë" k="93" /> +<hkern u1="º" u2="ê" k="93" /> +<hkern u1="º" u2="é" k="93" /> +<hkern u1="º" u2="è" k="93" /> +<hkern u1="º" u2="ç" k="93" /> +<hkern u1="º" u2="æ" k="93" /> +<hkern u1="º" u2="å" k="93" /> +<hkern u1="º" u2="ä" k="93" /> +<hkern u1="º" u2="ã" k="93" /> +<hkern u1="º" u2="â" k="93" /> +<hkern u1="º" u2="á" k="93" /> +<hkern u1="º" u2="à" k="93" /> +<hkern u1="º" u2="Ý" k="-46" /> +<hkern u1="º" u2="Æ" k="175" /> +<hkern u1="º" u2="Å" k="175" /> +<hkern u1="º" u2="Ä" k="175" /> +<hkern u1="º" u2="Ã" k="175" /> +<hkern u1="º" u2="Â" k="175" /> +<hkern u1="º" u2="Á" k="175" /> +<hkern u1="º" u2="À" k="175" /> +<hkern u1="º" u2="»" k="85" /> +<hkern u1="º" u2="·" k="85" /> +<hkern u1="º" u2="­" k="85" /> +<hkern u1="º" u2="«" k="85" /> +<hkern u1="º" u2="q" k="93" /> +<hkern u1="º" u2="o" k="93" /> +<hkern u1="º" u2="e" k="93" /> +<hkern u1="º" u2="d" k="93" /> +<hkern u1="º" u2="c" k="93" /> +<hkern u1="º" u2="a" k="93" /> +<hkern u1="º" u2="\" k="-55" /> +<hkern u1="º" u2="Y" k="-46" /> +<hkern u1="º" u2="W" k="-49" /> +<hkern u1="º" u2="V" k="-55" /> +<hkern u1="º" u2="A" k="175" /> +<hkern u1="º" u2="/" k="175" /> +<hkern u1="º" u2="." k="94" /> +<hkern u1="º" u2="-" k="85" /> +<hkern u1="º" u2="," k="94" /> +<hkern u1="º" u2="&" k="175" /> +<hkern u1="»" u2="…" k="166" /> +<hkern u1="»" u2="„" k="166" /> +<hkern u1="»" u2="”" k="85" /> +<hkern u1="»" u2="“" k="85" /> +<hkern u1="»" u2="‚" k="166" /> +<hkern u1="»" u2="’" k="85" /> +<hkern u1="»" u2="‘" k="85" /> +<hkern u1="»" u2="Ÿ" k="197" /> +<hkern u1="»" u2="Ý" k="197" /> +<hkern u1="»" u2="Æ" k="53" /> +<hkern u1="»" u2="Å" k="53" /> +<hkern u1="»" u2="Ä" k="53" /> +<hkern u1="»" u2="Ã" k="53" /> +<hkern u1="»" u2="Â" k="53" /> +<hkern u1="»" u2="Á" k="53" /> +<hkern u1="»" u2="À" k="53" /> +<hkern u1="»" u2="º" k="85" /> +<hkern u1="»" u2="°" k="85" /> +<hkern u1="»" u2="ª" k="85" /> +<hkern u1="»" u2="\" k="125" /> +<hkern u1="»" u2="Z" k="56" /> +<hkern u1="»" u2="Y" k="197" /> +<hkern u1="»" u2="X" k="72" /> +<hkern u1="»" u2="V" k="125" /> +<hkern u1="»" u2="T" k="196" /> +<hkern u1="»" u2="A" k="53" /> +<hkern u1="»" u2="/" k="53" /> +<hkern u1="»" u2="." k="166" /> +<hkern u1="»" u2="," k="166" /> +<hkern u1="»" u2="*" k="85" /> +<hkern u1="»" u2="'" k="85" /> +<hkern u1="»" u2="&" k="53" /> +<hkern u1="»" u2=""" k="85" /> +<hkern u1="À" u2="›" k="53" /> +<hkern u1="À" u2="‹" k="53" /> +<hkern u1="À" u2="•" k="53" /> +<hkern u1="À" u2="”" k="186" /> +<hkern u1="À" u2="“" k="186" /> +<hkern u1="À" u2="’" k="186" /> +<hkern u1="À" u2="‘" k="186" /> +<hkern u1="À" u2="—" k="53" /> +<hkern u1="À" u2="–" k="53" /> +<hkern u1="À" u2="Ÿ" k="156" /> +<hkern u1="À" u2="Œ" k="48" /> +<hkern u1="À" u2="ÿ" k="48" /> +<hkern u1="À" u2="ý" k="48" /> +<hkern u1="À" u2="Ý" k="156" /> +<hkern u1="À" u2="Ü" k="41" /> +<hkern u1="À" u2="Û" k="41" /> +<hkern u1="À" u2="Ú" k="41" /> +<hkern u1="À" u2="Ù" k="41" /> +<hkern u1="À" u2="Ø" k="48" /> +<hkern u1="À" u2="Ö" k="48" /> +<hkern u1="À" u2="Õ" k="48" /> +<hkern u1="À" u2="Ô" k="48" /> +<hkern u1="À" u2="Ó" k="48" /> +<hkern u1="À" u2="Ò" k="48" /> +<hkern u1="À" u2="Ç" k="48" /> +<hkern u1="À" u2="»" k="53" /> +<hkern u1="À" u2="º" k="186" /> +<hkern u1="À" u2="¹" k="187" /> +<hkern u1="À" u2="·" k="53" /> +<hkern u1="À" u2="³" k="187" /> +<hkern u1="À" u2="²" k="187" /> +<hkern u1="À" u2="°" k="186" /> +<hkern u1="À" u2="®" k="48" /> +<hkern u1="À" u2="­" k="53" /> +<hkern u1="À" u2="«" k="53" /> +<hkern u1="À" u2="ª" k="186" /> +<hkern u1="À" u2="©" k="48" /> +<hkern u1="À" u2="y" k="48" /> +<hkern u1="À" u2="w" k="33" /> +<hkern u1="À" u2="v" k="48" /> +<hkern u1="À" u2="t" k="58" /> +<hkern u1="À" u2="\" k="117" /> +<hkern u1="À" u2="Y" k="156" /> +<hkern u1="À" u2="W" k="85" /> +<hkern u1="À" u2="V" k="117" /> +<hkern u1="À" u2="U" k="41" /> +<hkern u1="À" u2="T" k="135" /> +<hkern u1="À" u2="Q" k="48" /> +<hkern u1="À" u2="O" k="48" /> +<hkern u1="À" u2="J" k="-63" /> +<hkern u1="À" u2="G" k="48" /> +<hkern u1="À" u2="C" k="48" /> +<hkern u1="À" u2="@" k="48" /> +<hkern u1="À" u2="-" k="53" /> +<hkern u1="À" u2="*" k="186" /> +<hkern u1="À" u2="'" k="186" /> +<hkern u1="À" u2=""" k="186" /> +<hkern u1="Á" u2="›" k="53" /> +<hkern u1="Á" u2="‹" k="53" /> +<hkern u1="Á" u2="•" k="53" /> +<hkern u1="Á" u2="”" k="186" /> +<hkern u1="Á" u2="“" k="186" /> +<hkern u1="Á" u2="’" k="186" /> +<hkern u1="Á" u2="‘" k="186" /> +<hkern u1="Á" u2="—" k="53" /> +<hkern u1="Á" u2="–" k="53" /> +<hkern u1="Á" u2="Ÿ" k="156" /> +<hkern u1="Á" u2="Œ" k="48" /> +<hkern u1="Á" u2="ÿ" k="48" /> +<hkern u1="Á" u2="ý" k="48" /> +<hkern u1="Á" u2="Ý" k="156" /> +<hkern u1="Á" u2="Ü" k="41" /> +<hkern u1="Á" u2="Û" k="41" /> +<hkern u1="Á" u2="Ú" k="41" /> +<hkern u1="Á" u2="Ù" k="41" /> +<hkern u1="Á" u2="Ø" k="48" /> +<hkern u1="Á" u2="Ö" k="48" /> +<hkern u1="Á" u2="Õ" k="48" /> +<hkern u1="Á" u2="Ô" k="48" /> +<hkern u1="Á" u2="Ó" k="48" /> +<hkern u1="Á" u2="Ò" k="48" /> +<hkern u1="Á" u2="Ç" k="48" /> +<hkern u1="Á" u2="»" k="53" /> +<hkern u1="Á" u2="º" k="186" /> +<hkern u1="Á" u2="¹" k="187" /> +<hkern u1="Á" u2="·" k="53" /> +<hkern u1="Á" u2="³" k="187" /> +<hkern u1="Á" u2="²" k="187" /> +<hkern u1="Á" u2="°" k="186" /> +<hkern u1="Á" u2="®" k="48" /> +<hkern u1="Á" u2="­" k="53" /> +<hkern u1="Á" u2="«" k="53" /> +<hkern u1="Á" u2="ª" k="186" /> +<hkern u1="Á" u2="©" k="48" /> +<hkern u1="Á" u2="y" k="48" /> +<hkern u1="Á" u2="w" k="33" /> +<hkern u1="Á" u2="v" k="48" /> +<hkern u1="Á" u2="t" k="58" /> +<hkern u1="Á" u2="\" k="117" /> +<hkern u1="Á" u2="Y" k="156" /> +<hkern u1="Á" u2="W" k="85" /> +<hkern u1="Á" u2="V" k="117" /> +<hkern u1="Á" u2="U" k="41" /> +<hkern u1="Á" u2="T" k="135" /> +<hkern u1="Á" u2="Q" k="48" /> +<hkern u1="Á" u2="O" k="48" /> +<hkern u1="Á" u2="J" k="-63" /> +<hkern u1="Á" u2="G" k="48" /> +<hkern u1="Á" u2="C" k="48" /> +<hkern u1="Á" u2="@" k="48" /> +<hkern u1="Á" u2="-" k="53" /> +<hkern u1="Á" u2="*" k="186" /> +<hkern u1="Á" u2="'" k="186" /> +<hkern u1="Á" u2=""" k="186" /> +<hkern u1="Â" u2="›" k="53" /> +<hkern u1="Â" u2="‹" k="53" /> +<hkern u1="Â" u2="•" k="53" /> +<hkern u1="Â" u2="”" k="186" /> +<hkern u1="Â" u2="“" k="186" /> +<hkern u1="Â" u2="’" k="186" /> +<hkern u1="Â" u2="‘" k="186" /> +<hkern u1="Â" u2="—" k="53" /> +<hkern u1="Â" u2="–" k="53" /> +<hkern u1="Â" u2="Ÿ" k="156" /> +<hkern u1="Â" u2="Œ" k="48" /> +<hkern u1="Â" u2="ÿ" k="48" /> +<hkern u1="Â" u2="ý" k="48" /> +<hkern u1="Â" u2="Ý" k="156" /> +<hkern u1="Â" u2="Ü" k="41" /> +<hkern u1="Â" u2="Û" k="41" /> +<hkern u1="Â" u2="Ú" k="41" /> +<hkern u1="Â" u2="Ù" k="41" /> +<hkern u1="Â" u2="Ø" k="48" /> +<hkern u1="Â" u2="Ö" k="48" /> +<hkern u1="Â" u2="Õ" k="48" /> +<hkern u1="Â" u2="Ô" k="48" /> +<hkern u1="Â" u2="Ó" k="48" /> +<hkern u1="Â" u2="Ò" k="48" /> +<hkern u1="Â" u2="Ç" k="48" /> +<hkern u1="Â" u2="»" k="53" /> +<hkern u1="Â" u2="º" k="186" /> +<hkern u1="Â" u2="¹" k="187" /> +<hkern u1="Â" u2="·" k="53" /> +<hkern u1="Â" u2="³" k="187" /> +<hkern u1="Â" u2="²" k="187" /> +<hkern u1="Â" u2="°" k="186" /> +<hkern u1="Â" u2="®" k="48" /> +<hkern u1="Â" u2="­" k="53" /> +<hkern u1="Â" u2="«" k="53" /> +<hkern u1="Â" u2="ª" k="186" /> +<hkern u1="Â" u2="©" k="48" /> +<hkern u1="Â" u2="y" k="48" /> +<hkern u1="Â" u2="w" k="33" /> +<hkern u1="Â" u2="v" k="48" /> +<hkern u1="Â" u2="t" k="58" /> +<hkern u1="Â" u2="\" k="117" /> +<hkern u1="Â" u2="Y" k="156" /> +<hkern u1="Â" u2="W" k="85" /> +<hkern u1="Â" u2="V" k="117" /> +<hkern u1="Â" u2="U" k="41" /> +<hkern u1="Â" u2="T" k="135" /> +<hkern u1="Â" u2="Q" k="48" /> +<hkern u1="Â" u2="O" k="48" /> +<hkern u1="Â" u2="J" k="-63" /> +<hkern u1="Â" u2="G" k="48" /> +<hkern u1="Â" u2="C" k="48" /> +<hkern u1="Â" u2="@" k="48" /> +<hkern u1="Â" u2="-" k="53" /> +<hkern u1="Â" u2="*" k="186" /> +<hkern u1="Â" u2="'" k="186" /> +<hkern u1="Â" u2=""" k="186" /> +<hkern u1="Ã" u2="›" k="53" /> +<hkern u1="Ã" u2="‹" k="53" /> +<hkern u1="Ã" u2="•" k="53" /> +<hkern u1="Ã" u2="”" k="186" /> +<hkern u1="Ã" u2="“" k="186" /> +<hkern u1="Ã" u2="’" k="186" /> +<hkern u1="Ã" u2="‘" k="186" /> +<hkern u1="Ã" u2="—" k="53" /> +<hkern u1="Ã" u2="–" k="53" /> +<hkern u1="Ã" u2="Ÿ" k="156" /> +<hkern u1="Ã" u2="Œ" k="48" /> +<hkern u1="Ã" u2="ÿ" k="48" /> +<hkern u1="Ã" u2="ý" k="48" /> +<hkern u1="Ã" u2="Ý" k="156" /> +<hkern u1="Ã" u2="Ü" k="41" /> +<hkern u1="Ã" u2="Û" k="41" /> +<hkern u1="Ã" u2="Ú" k="41" /> +<hkern u1="Ã" u2="Ù" k="41" /> +<hkern u1="Ã" u2="Ø" k="48" /> +<hkern u1="Ã" u2="Ö" k="48" /> +<hkern u1="Ã" u2="Õ" k="48" /> +<hkern u1="Ã" u2="Ô" k="48" /> +<hkern u1="Ã" u2="Ó" k="48" /> +<hkern u1="Ã" u2="Ò" k="48" /> +<hkern u1="Ã" u2="Ç" k="48" /> +<hkern u1="Ã" u2="»" k="53" /> +<hkern u1="Ã" u2="º" k="186" /> +<hkern u1="Ã" u2="¹" k="187" /> +<hkern u1="Ã" u2="·" k="53" /> +<hkern u1="Ã" u2="³" k="187" /> +<hkern u1="Ã" u2="²" k="187" /> +<hkern u1="Ã" u2="°" k="186" /> +<hkern u1="Ã" u2="®" k="48" /> +<hkern u1="Ã" u2="­" k="53" /> +<hkern u1="Ã" u2="«" k="53" /> +<hkern u1="Ã" u2="ª" k="186" /> +<hkern u1="Ã" u2="©" k="48" /> +<hkern u1="Ã" u2="y" k="48" /> +<hkern u1="Ã" u2="w" k="33" /> +<hkern u1="Ã" u2="v" k="48" /> +<hkern u1="Ã" u2="t" k="58" /> +<hkern u1="Ã" u2="\" k="117" /> +<hkern u1="Ã" u2="Y" k="156" /> +<hkern u1="Ã" u2="W" k="85" /> +<hkern u1="Ã" u2="V" k="117" /> +<hkern u1="Ã" u2="U" k="41" /> +<hkern u1="Ã" u2="T" k="135" /> +<hkern u1="Ã" u2="Q" k="48" /> +<hkern u1="Ã" u2="O" k="48" /> +<hkern u1="Ã" u2="J" k="-63" /> +<hkern u1="Ã" u2="G" k="48" /> +<hkern u1="Ã" u2="C" k="48" /> +<hkern u1="Ã" u2="@" k="48" /> +<hkern u1="Ã" u2="-" k="53" /> +<hkern u1="Ã" u2="*" k="186" /> +<hkern u1="Ã" u2="'" k="186" /> +<hkern u1="Ã" u2=""" k="186" /> +<hkern u1="Ä" u2="›" k="53" /> +<hkern u1="Ä" u2="‹" k="53" /> +<hkern u1="Ä" u2="•" k="53" /> +<hkern u1="Ä" u2="”" k="186" /> +<hkern u1="Ä" u2="“" k="186" /> +<hkern u1="Ä" u2="’" k="186" /> +<hkern u1="Ä" u2="‘" k="186" /> +<hkern u1="Ä" u2="—" k="53" /> +<hkern u1="Ä" u2="–" k="53" /> +<hkern u1="Ä" u2="Ÿ" k="156" /> +<hkern u1="Ä" u2="Œ" k="48" /> +<hkern u1="Ä" u2="ÿ" k="48" /> +<hkern u1="Ä" u2="ý" k="48" /> +<hkern u1="Ä" u2="Ý" k="156" /> +<hkern u1="Ä" u2="Ü" k="41" /> +<hkern u1="Ä" u2="Û" k="41" /> +<hkern u1="Ä" u2="Ú" k="41" /> +<hkern u1="Ä" u2="Ù" k="41" /> +<hkern u1="Ä" u2="Ø" k="48" /> +<hkern u1="Ä" u2="Ö" k="48" /> +<hkern u1="Ä" u2="Õ" k="48" /> +<hkern u1="Ä" u2="Ô" k="48" /> +<hkern u1="Ä" u2="Ó" k="48" /> +<hkern u1="Ä" u2="Ò" k="48" /> +<hkern u1="Ä" u2="Ç" k="48" /> +<hkern u1="Ä" u2="»" k="53" /> +<hkern u1="Ä" u2="º" k="186" /> +<hkern u1="Ä" u2="¹" k="187" /> +<hkern u1="Ä" u2="·" k="53" /> +<hkern u1="Ä" u2="³" k="187" /> +<hkern u1="Ä" u2="²" k="187" /> +<hkern u1="Ä" u2="°" k="186" /> +<hkern u1="Ä" u2="®" k="48" /> +<hkern u1="Ä" u2="­" k="53" /> +<hkern u1="Ä" u2="«" k="53" /> +<hkern u1="Ä" u2="ª" k="186" /> +<hkern u1="Ä" u2="©" k="48" /> +<hkern u1="Ä" u2="y" k="48" /> +<hkern u1="Ä" u2="w" k="33" /> +<hkern u1="Ä" u2="v" k="48" /> +<hkern u1="Ä" u2="t" k="58" /> +<hkern u1="Ä" u2="\" k="117" /> +<hkern u1="Ä" u2="Y" k="156" /> +<hkern u1="Ä" u2="W" k="85" /> +<hkern u1="Ä" u2="V" k="117" /> +<hkern u1="Ä" u2="U" k="41" /> +<hkern u1="Ä" u2="T" k="135" /> +<hkern u1="Ä" u2="Q" k="48" /> +<hkern u1="Ä" u2="O" k="48" /> +<hkern u1="Ä" u2="J" k="-63" /> +<hkern u1="Ä" u2="G" k="48" /> +<hkern u1="Ä" u2="C" k="48" /> +<hkern u1="Ä" u2="@" k="48" /> +<hkern u1="Ä" u2="-" k="53" /> +<hkern u1="Ä" u2="*" k="186" /> +<hkern u1="Ä" u2="'" k="186" /> +<hkern u1="Ä" u2=""" k="186" /> +<hkern u1="Å" u2="›" k="53" /> +<hkern u1="Å" u2="‹" k="53" /> +<hkern u1="Å" u2="•" k="53" /> +<hkern u1="Å" u2="”" k="186" /> +<hkern u1="Å" u2="“" k="186" /> +<hkern u1="Å" u2="’" k="186" /> +<hkern u1="Å" u2="‘" k="186" /> +<hkern u1="Å" u2="—" k="53" /> +<hkern u1="Å" u2="–" k="53" /> +<hkern u1="Å" u2="Ÿ" k="156" /> +<hkern u1="Å" u2="Œ" k="48" /> +<hkern u1="Å" u2="ÿ" k="48" /> +<hkern u1="Å" u2="ý" k="48" /> +<hkern u1="Å" u2="Ý" k="156" /> +<hkern u1="Å" u2="Ü" k="41" /> +<hkern u1="Å" u2="Û" k="41" /> +<hkern u1="Å" u2="Ú" k="41" /> +<hkern u1="Å" u2="Ù" k="41" /> +<hkern u1="Å" u2="Ø" k="48" /> +<hkern u1="Å" u2="Ö" k="48" /> +<hkern u1="Å" u2="Õ" k="48" /> +<hkern u1="Å" u2="Ô" k="48" /> +<hkern u1="Å" u2="Ó" k="48" /> +<hkern u1="Å" u2="Ò" k="48" /> +<hkern u1="Å" u2="Ç" k="48" /> +<hkern u1="Å" u2="»" k="53" /> +<hkern u1="Å" u2="º" k="186" /> +<hkern u1="Å" u2="¹" k="187" /> +<hkern u1="Å" u2="·" k="53" /> +<hkern u1="Å" u2="³" k="187" /> +<hkern u1="Å" u2="²" k="187" /> +<hkern u1="Å" u2="°" k="186" /> +<hkern u1="Å" u2="®" k="48" /> +<hkern u1="Å" u2="­" k="53" /> +<hkern u1="Å" u2="«" k="53" /> +<hkern u1="Å" u2="ª" k="186" /> +<hkern u1="Å" u2="©" k="48" /> +<hkern u1="Å" u2="y" k="48" /> +<hkern u1="Å" u2="w" k="33" /> +<hkern u1="Å" u2="v" k="48" /> +<hkern u1="Å" u2="t" k="58" /> +<hkern u1="Å" u2="\" k="117" /> +<hkern u1="Å" u2="Y" k="156" /> +<hkern u1="Å" u2="W" k="85" /> +<hkern u1="Å" u2="V" k="117" /> +<hkern u1="Å" u2="U" k="41" /> +<hkern u1="Å" u2="T" k="135" /> +<hkern u1="Å" u2="Q" k="48" /> +<hkern u1="Å" u2="O" k="48" /> +<hkern u1="Å" u2="J" k="-63" /> +<hkern u1="Å" u2="G" k="48" /> +<hkern u1="Å" u2="C" k="48" /> +<hkern u1="Å" u2="@" k="48" /> +<hkern u1="Å" u2="-" k="53" /> +<hkern u1="Å" u2="*" k="186" /> +<hkern u1="Å" u2="'" k="186" /> +<hkern u1="Å" u2=""" k="186" /> +<hkern u1="Ç" u2="›" k="131" /> +<hkern u1="Ç" u2="‹" k="131" /> +<hkern u1="Ç" u2="•" k="131" /> +<hkern u1="Ç" u2="—" k="131" /> +<hkern u1="Ç" u2="–" k="131" /> +<hkern u1="Ç" u2="»" k="131" /> +<hkern u1="Ç" u2="·" k="131" /> +<hkern u1="Ç" u2="­" k="131" /> +<hkern u1="Ç" u2="«" k="131" /> +<hkern u1="Ç" u2="-" k="131" /> +<hkern u1="Ð" u2="”" k="56" /> +<hkern u1="Ð" u2="“" k="56" /> +<hkern u1="Ð" u2="’" k="56" /> +<hkern u1="Ð" u2="‘" k="56" /> +<hkern u1="Ð" u2="Ÿ" k="82" /> +<hkern u1="Ð" u2="Ý" k="82" /> +<hkern u1="Ð" u2="Æ" k="37" /> +<hkern u1="Ð" u2="Å" k="37" /> +<hkern u1="Ð" u2="Ä" k="37" /> +<hkern u1="Ð" u2="Ã" k="37" /> +<hkern u1="Ð" u2="Â" k="37" /> +<hkern u1="Ð" u2="Á" k="37" /> +<hkern u1="Ð" u2="À" k="37" /> +<hkern u1="Ð" u2="º" k="56" /> +<hkern u1="Ð" u2="°" k="56" /> +<hkern u1="Ð" u2="ª" k="56" /> +<hkern u1="Ð" u2="}" k="41" /> +<hkern u1="Ð" u2="]" k="41" /> +<hkern u1="Ð" u2="\" k="52" /> +<hkern u1="Ð" u2="Z" k="71" /> +<hkern u1="Ð" u2="Y" k="82" /> +<hkern u1="Ð" u2="X" k="70" /> +<hkern u1="Ð" u2="V" k="52" /> +<hkern u1="Ð" u2="T" k="99" /> +<hkern u1="Ð" u2="A" k="37" /> +<hkern u1="Ð" u2="/" k="37" /> +<hkern u1="Ð" u2="*" k="56" /> +<hkern u1="Ð" u2=")" k="41" /> +<hkern u1="Ð" u2="'" k="56" /> +<hkern u1="Ð" u2="&" k="37" /> +<hkern u1="Ð" u2=""" k="56" /> +<hkern u1="Ò" u2="”" k="56" /> +<hkern u1="Ò" u2="“" k="56" /> +<hkern u1="Ò" u2="’" k="56" /> +<hkern u1="Ò" u2="‘" k="56" /> +<hkern u1="Ò" u2="Ÿ" k="82" /> +<hkern u1="Ò" u2="Ý" k="82" /> +<hkern u1="Ò" u2="Æ" k="37" /> +<hkern u1="Ò" u2="Å" k="37" /> +<hkern u1="Ò" u2="Ä" k="37" /> +<hkern u1="Ò" u2="Ã" k="37" /> +<hkern u1="Ò" u2="Â" k="37" /> +<hkern u1="Ò" u2="Á" k="37" /> +<hkern u1="Ò" u2="À" k="37" /> +<hkern u1="Ò" u2="º" k="56" /> +<hkern u1="Ò" u2="°" k="56" /> +<hkern u1="Ò" u2="ª" k="56" /> +<hkern u1="Ò" u2="}" k="41" /> +<hkern u1="Ò" u2="]" k="41" /> +<hkern u1="Ò" u2="\" k="52" /> +<hkern u1="Ò" u2="Z" k="71" /> +<hkern u1="Ò" u2="Y" k="82" /> +<hkern u1="Ò" u2="X" k="70" /> +<hkern u1="Ò" u2="V" k="52" /> +<hkern u1="Ò" u2="T" k="99" /> +<hkern u1="Ò" u2="A" k="37" /> +<hkern u1="Ò" u2="/" k="37" /> +<hkern u1="Ò" u2="*" k="56" /> +<hkern u1="Ò" u2=")" k="41" /> +<hkern u1="Ò" u2="'" k="56" /> +<hkern u1="Ò" u2="&" k="37" /> +<hkern u1="Ò" u2=""" k="56" /> +<hkern u1="Ó" u2="”" k="56" /> +<hkern u1="Ó" u2="“" k="56" /> +<hkern u1="Ó" u2="’" k="56" /> +<hkern u1="Ó" u2="‘" k="56" /> +<hkern u1="Ó" u2="Ÿ" k="82" /> +<hkern u1="Ó" u2="Ý" k="82" /> +<hkern u1="Ó" u2="Æ" k="37" /> +<hkern u1="Ó" u2="Å" k="37" /> +<hkern u1="Ó" u2="Ä" k="37" /> +<hkern u1="Ó" u2="Ã" k="37" /> +<hkern u1="Ó" u2="Â" k="37" /> +<hkern u1="Ó" u2="Á" k="37" /> +<hkern u1="Ó" u2="À" k="37" /> +<hkern u1="Ó" u2="º" k="56" /> +<hkern u1="Ó" u2="°" k="56" /> +<hkern u1="Ó" u2="ª" k="56" /> +<hkern u1="Ó" u2="}" k="41" /> +<hkern u1="Ó" u2="]" k="41" /> +<hkern u1="Ó" u2="\" k="52" /> +<hkern u1="Ó" u2="Z" k="71" /> +<hkern u1="Ó" u2="Y" k="82" /> +<hkern u1="Ó" u2="X" k="70" /> +<hkern u1="Ó" u2="V" k="52" /> +<hkern u1="Ó" u2="T" k="99" /> +<hkern u1="Ó" u2="A" k="37" /> +<hkern u1="Ó" u2="/" k="37" /> +<hkern u1="Ó" u2="*" k="56" /> +<hkern u1="Ó" u2=")" k="41" /> +<hkern u1="Ó" u2="'" k="56" /> +<hkern u1="Ó" u2="&" k="37" /> +<hkern u1="Ó" u2=""" k="56" /> +<hkern u1="Ô" u2="”" k="56" /> +<hkern u1="Ô" u2="“" k="56" /> +<hkern u1="Ô" u2="’" k="56" /> +<hkern u1="Ô" u2="‘" k="56" /> +<hkern u1="Ô" u2="Ÿ" k="82" /> +<hkern u1="Ô" u2="Ý" k="82" /> +<hkern u1="Ô" u2="Æ" k="37" /> +<hkern u1="Ô" u2="Å" k="37" /> +<hkern u1="Ô" u2="Ä" k="37" /> +<hkern u1="Ô" u2="Ã" k="37" /> +<hkern u1="Ô" u2="Â" k="37" /> +<hkern u1="Ô" u2="Á" k="37" /> +<hkern u1="Ô" u2="À" k="37" /> +<hkern u1="Ô" u2="º" k="56" /> +<hkern u1="Ô" u2="°" k="56" /> +<hkern u1="Ô" u2="ª" k="56" /> +<hkern u1="Ô" u2="}" k="41" /> +<hkern u1="Ô" u2="]" k="41" /> +<hkern u1="Ô" u2="\" k="52" /> +<hkern u1="Ô" u2="Z" k="71" /> +<hkern u1="Ô" u2="Y" k="82" /> +<hkern u1="Ô" u2="X" k="70" /> +<hkern u1="Ô" u2="V" k="52" /> +<hkern u1="Ô" u2="T" k="99" /> +<hkern u1="Ô" u2="A" k="37" /> +<hkern u1="Ô" u2="/" k="37" /> +<hkern u1="Ô" u2="*" k="56" /> +<hkern u1="Ô" u2=")" k="41" /> +<hkern u1="Ô" u2="'" k="56" /> +<hkern u1="Ô" u2="&" k="37" /> +<hkern u1="Ô" u2=""" k="56" /> +<hkern u1="Õ" u2="”" k="56" /> +<hkern u1="Õ" u2="“" k="56" /> +<hkern u1="Õ" u2="’" k="56" /> +<hkern u1="Õ" u2="‘" k="56" /> +<hkern u1="Õ" u2="Ÿ" k="82" /> +<hkern u1="Õ" u2="Ý" k="82" /> +<hkern u1="Õ" u2="Æ" k="37" /> +<hkern u1="Õ" u2="Å" k="37" /> +<hkern u1="Õ" u2="Ä" k="37" /> +<hkern u1="Õ" u2="Ã" k="37" /> +<hkern u1="Õ" u2="Â" k="37" /> +<hkern u1="Õ" u2="Á" k="37" /> +<hkern u1="Õ" u2="À" k="37" /> +<hkern u1="Õ" u2="º" k="56" /> +<hkern u1="Õ" u2="°" k="56" /> +<hkern u1="Õ" u2="ª" k="56" /> +<hkern u1="Õ" u2="}" k="41" /> +<hkern u1="Õ" u2="]" k="41" /> +<hkern u1="Õ" u2="\" k="52" /> +<hkern u1="Õ" u2="Z" k="71" /> +<hkern u1="Õ" u2="Y" k="82" /> +<hkern u1="Õ" u2="X" k="70" /> +<hkern u1="Õ" u2="V" k="52" /> +<hkern u1="Õ" u2="T" k="99" /> +<hkern u1="Õ" u2="A" k="37" /> +<hkern u1="Õ" u2="/" k="37" /> +<hkern u1="Õ" u2="*" k="56" /> +<hkern u1="Õ" u2=")" k="41" /> +<hkern u1="Õ" u2="'" k="56" /> +<hkern u1="Õ" u2="&" k="37" /> +<hkern u1="Õ" u2=""" k="56" /> +<hkern u1="Ö" u2="”" k="56" /> +<hkern u1="Ö" u2="“" k="56" /> +<hkern u1="Ö" u2="’" k="56" /> +<hkern u1="Ö" u2="‘" k="56" /> +<hkern u1="Ö" u2="Ÿ" k="82" /> +<hkern u1="Ö" u2="Ý" k="82" /> +<hkern u1="Ö" u2="Æ" k="37" /> +<hkern u1="Ö" u2="Å" k="37" /> +<hkern u1="Ö" u2="Ä" k="37" /> +<hkern u1="Ö" u2="Ã" k="37" /> +<hkern u1="Ö" u2="Â" k="37" /> +<hkern u1="Ö" u2="Á" k="37" /> +<hkern u1="Ö" u2="À" k="37" /> +<hkern u1="Ö" u2="º" k="56" /> +<hkern u1="Ö" u2="°" k="56" /> +<hkern u1="Ö" u2="ª" k="56" /> +<hkern u1="Ö" u2="}" k="41" /> +<hkern u1="Ö" u2="]" k="41" /> +<hkern u1="Ö" u2="\" k="52" /> +<hkern u1="Ö" u2="Z" k="71" /> +<hkern u1="Ö" u2="Y" k="82" /> +<hkern u1="Ö" u2="X" k="70" /> +<hkern u1="Ö" u2="V" k="52" /> +<hkern u1="Ö" u2="T" k="99" /> +<hkern u1="Ö" u2="A" k="37" /> +<hkern u1="Ö" u2="/" k="37" /> +<hkern u1="Ö" u2="*" k="56" /> +<hkern u1="Ö" u2=")" k="41" /> +<hkern u1="Ö" u2="'" k="56" /> +<hkern u1="Ö" u2="&" k="37" /> +<hkern u1="Ö" u2=""" k="56" /> +<hkern u1="Ù" u2="Æ" k="41" /> +<hkern u1="Ù" u2="Å" k="41" /> +<hkern u1="Ù" u2="Ä" k="41" /> +<hkern u1="Ù" u2="Ã" k="41" /> +<hkern u1="Ù" u2="Â" k="41" /> +<hkern u1="Ù" u2="Á" k="41" /> +<hkern u1="Ù" u2="À" k="41" /> +<hkern u1="Ù" u2="A" k="41" /> +<hkern u1="Ù" u2="/" k="41" /> +<hkern u1="Ù" u2="&" k="41" /> +<hkern u1="Ú" u2="Æ" k="41" /> +<hkern u1="Ú" u2="Å" k="41" /> +<hkern u1="Ú" u2="Ä" k="41" /> +<hkern u1="Ú" u2="Ã" k="41" /> +<hkern u1="Ú" u2="Â" k="41" /> +<hkern u1="Ú" u2="Á" k="41" /> +<hkern u1="Ú" u2="À" k="41" /> +<hkern u1="Ú" u2="A" k="41" /> +<hkern u1="Ú" u2="/" k="41" /> +<hkern u1="Ú" u2="&" k="41" /> +<hkern u1="Û" u2="Æ" k="41" /> +<hkern u1="Û" u2="Å" k="41" /> +<hkern u1="Û" u2="Ä" k="41" /> +<hkern u1="Û" u2="Ã" k="41" /> +<hkern u1="Û" u2="Â" k="41" /> +<hkern u1="Û" u2="Á" k="41" /> +<hkern u1="Û" u2="À" k="41" /> +<hkern u1="Û" u2="A" k="41" /> +<hkern u1="Û" u2="/" k="41" /> +<hkern u1="Û" u2="&" k="41" /> +<hkern u1="Ü" u2="Æ" k="41" /> +<hkern u1="Ü" u2="Å" k="41" /> +<hkern u1="Ü" u2="Ä" k="41" /> +<hkern u1="Ü" u2="Ã" k="41" /> +<hkern u1="Ü" u2="Â" k="41" /> +<hkern u1="Ü" u2="Á" k="41" /> +<hkern u1="Ü" u2="À" k="41" /> +<hkern u1="Ü" u2="A" k="41" /> +<hkern u1="Ü" u2="/" k="41" /> +<hkern u1="Ü" u2="&" k="41" /> +<hkern u1="Ý" u2="›" k="186" /> +<hkern u1="Ý" u2="‹" k="186" /> +<hkern u1="Ý" u2="…" k="222" /> +<hkern u1="Ý" u2="•" k="186" /> +<hkern u1="Ý" u2="„" k="222" /> +<hkern u1="Ý" u2="”" k="-56" /> +<hkern u1="Ý" u2="“" k="-56" /> +<hkern u1="Ý" u2="‚" k="222" /> +<hkern u1="Ý" u2="’" k="-56" /> +<hkern u1="Ý" u2="‘" k="-56" /> +<hkern u1="Ý" u2="—" k="186" /> +<hkern u1="Ý" u2="–" k="186" /> +<hkern u1="Ý" u2="œ" k="196" /> +<hkern u1="Ý" u2="Œ" k="71" /> +<hkern u1="Ý" u2="ü" k="118" /> +<hkern u1="Ý" u2="û" k="118" /> +<hkern u1="Ý" u2="ú" k="118" /> +<hkern u1="Ý" u2="ù" k="118" /> +<hkern u1="Ý" u2="ø" k="196" /> +<hkern u1="Ý" u2="ö" k="196" /> +<hkern u1="Ý" u2="õ" k="196" /> +<hkern u1="Ý" u2="ô" k="196" /> +<hkern u1="Ý" u2="ó" k="196" /> +<hkern u1="Ý" u2="ò" k="196" /> +<hkern u1="Ý" u2="ñ" k="118" /> +<hkern u1="Ý" u2="ð" k="196" /> +<hkern u1="Ý" u2="ë" k="196" /> +<hkern u1="Ý" u2="ê" k="196" /> +<hkern u1="Ý" u2="é" k="196" /> +<hkern u1="Ý" u2="è" k="196" /> +<hkern u1="Ý" u2="ç" k="196" /> +<hkern u1="Ý" u2="æ" k="196" /> +<hkern u1="Ý" u2="å" k="196" /> +<hkern u1="Ý" u2="ä" k="196" /> +<hkern u1="Ý" u2="ã" k="196" /> +<hkern u1="Ý" u2="â" k="196" /> +<hkern u1="Ý" u2="á" k="196" /> +<hkern u1="Ý" u2="à" k="196" /> +<hkern u1="Ý" u2="Ø" k="71" /> +<hkern u1="Ý" u2="Ö" k="71" /> +<hkern u1="Ý" u2="Õ" k="71" /> +<hkern u1="Ý" u2="Ô" k="71" /> +<hkern u1="Ý" u2="Ó" k="71" /> +<hkern u1="Ý" u2="Ò" k="71" /> +<hkern u1="Ý" u2="Ç" k="71" /> +<hkern u1="Ý" u2="Æ" k="145" /> +<hkern u1="Ý" u2="Å" k="145" /> +<hkern u1="Ý" u2="Ä" k="145" /> +<hkern u1="Ý" u2="Ã" k="145" /> +<hkern u1="Ý" u2="Â" k="145" /> +<hkern u1="Ý" u2="Á" k="145" /> +<hkern u1="Ý" u2="À" k="145" /> +<hkern u1="Ý" u2="»" k="186" /> +<hkern u1="Ý" u2="º" k="-56" /> +<hkern u1="Ý" u2="¹" k="-63" /> +<hkern u1="Ý" u2="·" k="186" /> +<hkern u1="Ý" u2="µ" k="118" /> +<hkern u1="Ý" u2="³" k="-63" /> +<hkern u1="Ý" u2="²" k="-63" /> +<hkern u1="Ý" u2="°" k="-56" /> +<hkern u1="Ý" u2="®" k="71" /> +<hkern u1="Ý" u2="­" k="186" /> +<hkern u1="Ý" u2="«" k="186" /> +<hkern u1="Ý" u2="ª" k="-56" /> +<hkern u1="Ý" u2="©" k="71" /> +<hkern u1="Ý" u2="z" k="102" /> +<hkern u1="Ý" u2="u" k="118" /> +<hkern u1="Ý" u2="s" k="196" /> +<hkern u1="Ý" u2="r" k="118" /> +<hkern u1="Ý" u2="q" k="196" /> +<hkern u1="Ý" u2="p" k="118" /> +<hkern u1="Ý" u2="o" k="196" /> +<hkern u1="Ý" u2="n" k="118" /> +<hkern u1="Ý" u2="m" k="118" /> +<hkern u1="Ý" u2="g" k="173" /> +<hkern u1="Ý" u2="e" k="196" /> +<hkern u1="Ý" u2="d" k="196" /> +<hkern u1="Ý" u2="c" k="196" /> +<hkern u1="Ý" u2="a" k="196" /> +<hkern u1="Ý" u2="Q" k="71" /> +<hkern u1="Ý" u2="O" k="71" /> +<hkern u1="Ý" u2="J" k="205" /> +<hkern u1="Ý" u2="G" k="71" /> +<hkern u1="Ý" u2="C" k="71" /> +<hkern u1="Ý" u2="A" k="145" /> +<hkern u1="Ý" u2="@" k="71" /> +<hkern u1="Ý" u2="?" k="-51" /> +<hkern u1="Ý" u2=";" k="118" /> +<hkern u1="Ý" u2=":" k="118" /> +<hkern u1="Ý" u2="/" k="145" /> +<hkern u1="Ý" u2="." k="222" /> +<hkern u1="Ý" u2="-" k="186" /> +<hkern u1="Ý" u2="," k="222" /> +<hkern u1="Ý" u2="*" k="-56" /> +<hkern u1="Ý" u2="'" k="-56" /> +<hkern u1="Ý" u2="&" k="145" /> +<hkern u1="Ý" u2=""" k="-56" /> +<hkern u1="Þ" u2="”" k="56" /> +<hkern u1="Þ" u2="“" k="56" /> +<hkern u1="Þ" u2="’" k="56" /> +<hkern u1="Þ" u2="‘" k="56" /> +<hkern u1="Þ" u2="Ÿ" k="82" /> +<hkern u1="Þ" u2="Ý" k="82" /> +<hkern u1="Þ" u2="Æ" k="37" /> +<hkern u1="Þ" u2="Å" k="37" /> +<hkern u1="Þ" u2="Ä" k="37" /> +<hkern u1="Þ" u2="Ã" k="37" /> +<hkern u1="Þ" u2="Â" k="37" /> +<hkern u1="Þ" u2="Á" k="37" /> +<hkern u1="Þ" u2="À" k="37" /> +<hkern u1="Þ" u2="º" k="56" /> +<hkern u1="Þ" u2="°" k="56" /> +<hkern u1="Þ" u2="ª" k="56" /> +<hkern u1="Þ" u2="}" k="41" /> +<hkern u1="Þ" u2="]" k="41" /> +<hkern u1="Þ" u2="\" k="52" /> +<hkern u1="Þ" u2="Z" k="71" /> +<hkern u1="Þ" u2="Y" k="82" /> +<hkern u1="Þ" u2="X" k="70" /> +<hkern u1="Þ" u2="V" k="52" /> +<hkern u1="Þ" u2="T" k="99" /> +<hkern u1="Þ" u2="A" k="37" /> +<hkern u1="Þ" u2="/" k="37" /> +<hkern u1="Þ" u2="*" k="56" /> +<hkern u1="Þ" u2=")" k="41" /> +<hkern u1="Þ" u2="'" k="56" /> +<hkern u1="Þ" u2="&" k="37" /> +<hkern u1="Þ" u2=""" k="56" /> +<hkern u1="æ" u2="”" k="82" /> +<hkern u1="æ" u2="“" k="82" /> +<hkern u1="æ" u2="’" k="82" /> +<hkern u1="æ" u2="‘" k="82" /> +<hkern u1="æ" u2="º" k="82" /> +<hkern u1="æ" u2="°" k="82" /> +<hkern u1="æ" u2="ª" k="82" /> +<hkern u1="æ" u2="}" k="32" /> +<hkern u1="æ" u2="x" k="52" /> +<hkern u1="æ" u2="]" k="32" /> +<hkern u1="æ" u2="*" k="82" /> +<hkern u1="æ" u2=")" k="32" /> +<hkern u1="æ" u2="'" k="82" /> +<hkern u1="æ" u2=""" k="82" /> +<hkern u1="è" u2="”" k="82" /> +<hkern u1="è" u2="“" k="82" /> +<hkern u1="è" u2="’" k="82" /> +<hkern u1="è" u2="‘" k="82" /> +<hkern u1="è" u2="º" k="82" /> +<hkern u1="è" u2="°" k="82" /> +<hkern u1="è" u2="ª" k="82" /> +<hkern u1="è" u2="}" k="32" /> +<hkern u1="è" u2="x" k="52" /> +<hkern u1="è" u2="]" k="32" /> +<hkern u1="è" u2="*" k="82" /> +<hkern u1="è" u2=")" k="32" /> +<hkern u1="è" u2="'" k="82" /> +<hkern u1="è" u2=""" k="82" /> +<hkern u1="é" u2="”" k="82" /> +<hkern u1="é" u2="“" k="82" /> +<hkern u1="é" u2="’" k="82" /> +<hkern u1="é" u2="‘" k="82" /> +<hkern u1="é" u2="º" k="82" /> +<hkern u1="é" u2="°" k="82" /> +<hkern u1="é" u2="ª" k="82" /> +<hkern u1="é" u2="}" k="32" /> +<hkern u1="é" u2="x" k="52" /> +<hkern u1="é" u2="]" k="32" /> +<hkern u1="é" u2="*" k="82" /> +<hkern u1="é" u2=")" k="32" /> +<hkern u1="é" u2="'" k="82" /> +<hkern u1="é" u2=""" k="82" /> +<hkern u1="ê" u2="”" k="82" /> +<hkern u1="ê" u2="“" k="82" /> +<hkern u1="ê" u2="’" k="82" /> +<hkern u1="ê" u2="‘" k="82" /> +<hkern u1="ê" u2="º" k="82" /> +<hkern u1="ê" u2="°" k="82" /> +<hkern u1="ê" u2="ª" k="82" /> +<hkern u1="ê" u2="}" k="32" /> +<hkern u1="ê" u2="x" k="52" /> +<hkern u1="ê" u2="]" k="32" /> +<hkern u1="ê" u2="*" k="82" /> +<hkern u1="ê" u2=")" k="32" /> +<hkern u1="ê" u2="'" k="82" /> +<hkern u1="ê" u2=""" k="82" /> +<hkern u1="ë" u2="”" k="82" /> +<hkern u1="ë" u2="“" k="82" /> +<hkern u1="ë" u2="’" k="82" /> +<hkern u1="ë" u2="‘" k="82" /> +<hkern u1="ë" u2="º" k="82" /> +<hkern u1="ë" u2="°" k="82" /> +<hkern u1="ë" u2="ª" k="82" /> +<hkern u1="ë" u2="}" k="32" /> +<hkern u1="ë" u2="x" k="52" /> +<hkern u1="ë" u2="]" k="32" /> +<hkern u1="ë" u2="*" k="82" /> +<hkern u1="ë" u2=")" k="32" /> +<hkern u1="ë" u2="'" k="82" /> +<hkern u1="ë" u2=""" k="82" /> +<hkern u1="ñ" u2="”" k="61" /> +<hkern u1="ñ" u2="“" k="61" /> +<hkern u1="ñ" u2="’" k="61" /> +<hkern u1="ñ" u2="‘" k="61" /> +<hkern u1="ñ" u2="ÿ" k="32" /> +<hkern u1="ñ" u2="ý" k="32" /> +<hkern u1="ñ" u2="º" k="61" /> +<hkern u1="ñ" u2="¹" k="105" /> +<hkern u1="ñ" u2="³" k="105" /> +<hkern u1="ñ" u2="²" k="105" /> +<hkern u1="ñ" u2="°" k="61" /> +<hkern u1="ñ" u2="ª" k="61" /> +<hkern u1="ñ" u2="y" k="43" /> +<hkern u1="ñ" u2="v" k="32" /> +<hkern u1="ñ" u2="*" k="61" /> +<hkern u1="ñ" u2="'" k="61" /> +<hkern u1="ñ" u2=""" k="61" /> +<hkern u1="ò" u2="”" k="82" /> +<hkern u1="ò" u2="“" k="82" /> +<hkern u1="ò" u2="’" k="82" /> +<hkern u1="ò" u2="‘" k="82" /> +<hkern u1="ò" u2="º" k="82" /> +<hkern u1="ò" u2="°" k="82" /> +<hkern u1="ò" u2="ª" k="82" /> +<hkern u1="ò" u2="}" k="32" /> +<hkern u1="ò" u2="x" k="52" /> +<hkern u1="ò" u2="]" k="32" /> +<hkern u1="ò" u2="*" k="82" /> +<hkern u1="ò" u2=")" k="32" /> +<hkern u1="ò" u2="'" k="82" /> +<hkern u1="ò" u2=""" k="82" /> +<hkern u1="ó" u2="”" k="82" /> +<hkern u1="ó" u2="“" k="82" /> +<hkern u1="ó" u2="’" k="82" /> +<hkern u1="ó" u2="‘" k="82" /> +<hkern u1="ó" u2="º" k="82" /> +<hkern u1="ó" u2="°" k="82" /> +<hkern u1="ó" u2="ª" k="82" /> +<hkern u1="ó" u2="}" k="32" /> +<hkern u1="ó" u2="x" k="52" /> +<hkern u1="ó" u2="]" k="32" /> +<hkern u1="ó" u2="*" k="82" /> +<hkern u1="ó" u2=")" k="32" /> +<hkern u1="ó" u2="'" k="82" /> +<hkern u1="ó" u2=""" k="82" /> +<hkern u1="ô" u2="”" k="82" /> +<hkern u1="ô" u2="“" k="82" /> +<hkern u1="ô" u2="’" k="82" /> +<hkern u1="ô" u2="‘" k="82" /> +<hkern u1="ô" u2="º" k="82" /> +<hkern u1="ô" u2="°" k="82" /> +<hkern u1="ô" u2="ª" k="82" /> +<hkern u1="ô" u2="}" k="32" /> +<hkern u1="ô" u2="x" k="52" /> +<hkern u1="ô" u2="]" k="32" /> +<hkern u1="ô" u2="*" k="82" /> +<hkern u1="ô" u2=")" k="32" /> +<hkern u1="ô" u2="'" k="82" /> +<hkern u1="ô" u2=""" k="82" /> +<hkern u1="õ" u2="”" k="82" /> +<hkern u1="õ" u2="“" k="82" /> +<hkern u1="õ" u2="’" k="82" /> +<hkern u1="õ" u2="‘" k="82" /> +<hkern u1="õ" u2="º" k="82" /> +<hkern u1="õ" u2="°" k="82" /> +<hkern u1="õ" u2="ª" k="82" /> +<hkern u1="õ" u2="}" k="32" /> +<hkern u1="õ" u2="x" k="52" /> +<hkern u1="õ" u2="]" k="32" /> +<hkern u1="õ" u2="*" k="82" /> +<hkern u1="õ" u2=")" k="32" /> +<hkern u1="õ" u2="'" k="82" /> +<hkern u1="õ" u2=""" k="82" /> +<hkern u1="ö" u2="”" k="82" /> +<hkern u1="ö" u2="“" k="82" /> +<hkern u1="ö" u2="’" k="82" /> +<hkern u1="ö" u2="‘" k="82" /> +<hkern u1="ö" u2="º" k="82" /> +<hkern u1="ö" u2="°" k="82" /> +<hkern u1="ö" u2="ª" k="82" /> +<hkern u1="ö" u2="}" k="32" /> +<hkern u1="ö" u2="x" k="52" /> +<hkern u1="ö" u2="]" k="32" /> +<hkern u1="ö" u2="*" k="82" /> +<hkern u1="ö" u2=")" k="32" /> +<hkern u1="ö" u2="'" k="82" /> +<hkern u1="ö" u2=""" k="82" /> +<hkern u1="ø" u2="”" k="82" /> +<hkern u1="ø" u2="“" k="82" /> +<hkern u1="ø" u2="’" k="82" /> +<hkern u1="ø" u2="‘" k="82" /> +<hkern u1="ø" u2="º" k="82" /> +<hkern u1="ø" u2="°" k="82" /> +<hkern u1="ø" u2="ª" k="82" /> +<hkern u1="ø" u2="}" k="32" /> +<hkern u1="ø" u2="x" k="52" /> +<hkern u1="ø" u2="]" k="32" /> +<hkern u1="ø" u2="*" k="82" /> +<hkern u1="ø" u2=")" k="32" /> +<hkern u1="ø" u2="'" k="82" /> +<hkern u1="ø" u2=""" k="82" /> +<hkern u1="ý" u2="…" k="145" /> +<hkern u1="ý" u2="„" k="145" /> +<hkern u1="ý" u2="‚" k="145" /> +<hkern u1="ý" u2="œ" k="27" /> +<hkern u1="ý" u2="ø" k="27" /> +<hkern u1="ý" u2="ö" k="27" /> +<hkern u1="ý" u2="õ" k="27" /> +<hkern u1="ý" u2="ô" k="27" /> +<hkern u1="ý" u2="ó" k="27" /> +<hkern u1="ý" u2="ò" k="27" /> +<hkern u1="ý" u2="ð" k="27" /> +<hkern u1="ý" u2="ë" k="27" /> +<hkern u1="ý" u2="ê" k="27" /> +<hkern u1="ý" u2="é" k="27" /> +<hkern u1="ý" u2="è" k="27" /> +<hkern u1="ý" u2="ç" k="27" /> +<hkern u1="ý" u2="æ" k="27" /> +<hkern u1="ý" u2="å" k="27" /> +<hkern u1="ý" u2="ä" k="27" /> +<hkern u1="ý" u2="ã" k="27" /> +<hkern u1="ý" u2="â" k="27" /> +<hkern u1="ý" u2="á" k="27" /> +<hkern u1="ý" u2="à" k="27" /> +<hkern u1="ý" u2="Æ" k="48" /> +<hkern u1="ý" u2="Å" k="48" /> +<hkern u1="ý" u2="Ä" k="48" /> +<hkern u1="ý" u2="Ã" k="48" /> +<hkern u1="ý" u2="Â" k="48" /> +<hkern u1="ý" u2="Á" k="48" /> +<hkern u1="ý" u2="À" k="48" /> +<hkern u1="ý" u2="q" k="27" /> +<hkern u1="ý" u2="o" k="27" /> +<hkern u1="ý" u2="e" k="27" /> +<hkern u1="ý" u2="d" k="27" /> +<hkern u1="ý" u2="c" k="27" /> +<hkern u1="ý" u2="a" k="27" /> +<hkern u1="ý" u2="A" k="48" /> +<hkern u1="ý" u2="/" k="48" /> +<hkern u1="ý" u2="." k="145" /> +<hkern u1="ý" u2="," k="145" /> +<hkern u1="ý" u2="&" k="48" /> +<hkern u1="þ" u2="”" k="82" /> +<hkern u1="þ" u2="“" k="82" /> +<hkern u1="þ" u2="’" k="82" /> +<hkern u1="þ" u2="‘" k="82" /> +<hkern u1="þ" u2="º" k="82" /> +<hkern u1="þ" u2="°" k="82" /> +<hkern u1="þ" u2="ª" k="82" /> +<hkern u1="þ" u2="}" k="32" /> +<hkern u1="þ" u2="x" k="52" /> +<hkern u1="þ" u2="]" k="32" /> +<hkern u1="þ" u2="*" k="82" /> +<hkern u1="þ" u2=")" k="32" /> +<hkern u1="þ" u2="'" k="82" /> +<hkern u1="þ" u2=""" k="82" /> +<hkern u1="ÿ" u2="…" k="145" /> +<hkern u1="ÿ" u2="„" k="145" /> +<hkern u1="ÿ" u2="‚" k="145" /> +<hkern u1="ÿ" u2="œ" k="27" /> +<hkern u1="ÿ" u2="ø" k="27" /> +<hkern u1="ÿ" u2="ö" k="27" /> +<hkern u1="ÿ" u2="õ" k="27" /> +<hkern u1="ÿ" u2="ô" k="27" /> +<hkern u1="ÿ" u2="ó" k="27" /> +<hkern u1="ÿ" u2="ò" k="27" /> +<hkern u1="ÿ" u2="ð" k="27" /> +<hkern u1="ÿ" u2="ë" k="27" /> +<hkern u1="ÿ" u2="ê" k="27" /> +<hkern u1="ÿ" u2="é" k="27" /> +<hkern u1="ÿ" u2="è" k="27" /> +<hkern u1="ÿ" u2="ç" k="27" /> +<hkern u1="ÿ" u2="æ" k="27" /> +<hkern u1="ÿ" u2="å" k="27" /> +<hkern u1="ÿ" u2="ä" k="27" /> +<hkern u1="ÿ" u2="ã" k="27" /> +<hkern u1="ÿ" u2="â" k="27" /> +<hkern u1="ÿ" u2="á" k="27" /> +<hkern u1="ÿ" u2="à" k="27" /> +<hkern u1="ÿ" u2="Æ" k="48" /> +<hkern u1="ÿ" u2="Å" k="48" /> +<hkern u1="ÿ" u2="Ä" k="48" /> +<hkern u1="ÿ" u2="Ã" k="48" /> +<hkern u1="ÿ" u2="Â" k="48" /> +<hkern u1="ÿ" u2="Á" k="48" /> +<hkern u1="ÿ" u2="À" k="48" /> +<hkern u1="ÿ" u2="q" k="27" /> +<hkern u1="ÿ" u2="o" k="27" /> +<hkern u1="ÿ" u2="e" k="27" /> +<hkern u1="ÿ" u2="d" k="27" /> +<hkern u1="ÿ" u2="c" k="27" /> +<hkern u1="ÿ" u2="a" k="27" /> +<hkern u1="ÿ" u2="A" k="48" /> +<hkern u1="ÿ" u2="/" k="48" /> +<hkern u1="ÿ" u2="." k="145" /> +<hkern u1="ÿ" u2="," k="145" /> +<hkern u1="ÿ" u2="&" k="48" /> +<hkern u1="œ" u2="”" k="82" /> +<hkern u1="œ" u2="“" k="82" /> +<hkern u1="œ" u2="’" k="82" /> +<hkern u1="œ" u2="‘" k="82" /> +<hkern u1="œ" u2="º" k="82" /> +<hkern u1="œ" u2="°" k="82" /> +<hkern u1="œ" u2="ª" k="82" /> +<hkern u1="œ" u2="}" k="32" /> +<hkern u1="œ" u2="x" k="52" /> +<hkern u1="œ" u2="]" k="32" /> +<hkern u1="œ" u2="*" k="82" /> +<hkern u1="œ" u2=")" k="32" /> +<hkern u1="œ" u2="'" k="82" /> +<hkern u1="œ" u2=""" k="82" /> +<hkern u1="Ÿ" u2="›" k="186" /> +<hkern u1="Ÿ" u2="‹" k="186" /> +<hkern u1="Ÿ" u2="…" k="222" /> +<hkern u1="Ÿ" u2="•" k="186" /> +<hkern u1="Ÿ" u2="„" k="222" /> +<hkern u1="Ÿ" u2="”" k="-56" /> +<hkern u1="Ÿ" u2="“" k="-56" /> +<hkern u1="Ÿ" u2="‚" k="222" /> +<hkern u1="Ÿ" u2="’" k="-56" /> +<hkern u1="Ÿ" u2="‘" k="-56" /> +<hkern u1="Ÿ" u2="—" k="186" /> +<hkern u1="Ÿ" u2="–" k="186" /> +<hkern u1="Ÿ" u2="œ" k="196" /> +<hkern u1="Ÿ" u2="Œ" k="71" /> +<hkern u1="Ÿ" u2="ü" k="118" /> +<hkern u1="Ÿ" u2="û" k="118" /> +<hkern u1="Ÿ" u2="ú" k="118" /> +<hkern u1="Ÿ" u2="ù" k="118" /> +<hkern u1="Ÿ" u2="ø" k="196" /> +<hkern u1="Ÿ" u2="ö" k="196" /> +<hkern u1="Ÿ" u2="õ" k="196" /> +<hkern u1="Ÿ" u2="ô" k="196" /> +<hkern u1="Ÿ" u2="ó" k="196" /> +<hkern u1="Ÿ" u2="ò" k="196" /> +<hkern u1="Ÿ" u2="ñ" k="118" /> +<hkern u1="Ÿ" u2="ð" k="196" /> +<hkern u1="Ÿ" u2="ë" k="196" /> +<hkern u1="Ÿ" u2="ê" k="196" /> +<hkern u1="Ÿ" u2="é" k="196" /> +<hkern u1="Ÿ" u2="è" k="196" /> +<hkern u1="Ÿ" u2="ç" k="196" /> +<hkern u1="Ÿ" u2="æ" k="196" /> +<hkern u1="Ÿ" u2="å" k="196" /> +<hkern u1="Ÿ" u2="ä" k="196" /> +<hkern u1="Ÿ" u2="ã" k="196" /> +<hkern u1="Ÿ" u2="â" k="196" /> +<hkern u1="Ÿ" u2="á" k="196" /> +<hkern u1="Ÿ" u2="à" k="196" /> +<hkern u1="Ÿ" u2="Ø" k="71" /> +<hkern u1="Ÿ" u2="Ö" k="71" /> +<hkern u1="Ÿ" u2="Õ" k="71" /> +<hkern u1="Ÿ" u2="Ô" k="71" /> +<hkern u1="Ÿ" u2="Ó" k="71" /> +<hkern u1="Ÿ" u2="Ò" k="71" /> +<hkern u1="Ÿ" u2="Ç" k="71" /> +<hkern u1="Ÿ" u2="Æ" k="145" /> +<hkern u1="Ÿ" u2="Å" k="145" /> +<hkern u1="Ÿ" u2="Ä" k="145" /> +<hkern u1="Ÿ" u2="Ã" k="145" /> +<hkern u1="Ÿ" u2="Â" k="145" /> +<hkern u1="Ÿ" u2="Á" k="145" /> +<hkern u1="Ÿ" u2="À" k="145" /> +<hkern u1="Ÿ" u2="»" k="186" /> +<hkern u1="Ÿ" u2="º" k="-56" /> +<hkern u1="Ÿ" u2="¹" k="-63" /> +<hkern u1="Ÿ" u2="·" k="186" /> +<hkern u1="Ÿ" u2="µ" k="118" /> +<hkern u1="Ÿ" u2="³" k="-63" /> +<hkern u1="Ÿ" u2="²" k="-63" /> +<hkern u1="Ÿ" u2="°" k="-56" /> +<hkern u1="Ÿ" u2="®" k="71" /> +<hkern u1="Ÿ" u2="­" k="186" /> +<hkern u1="Ÿ" u2="«" k="186" /> +<hkern u1="Ÿ" u2="ª" k="-56" /> +<hkern u1="Ÿ" u2="©" k="71" /> +<hkern u1="Ÿ" u2="z" k="102" /> +<hkern u1="Ÿ" u2="u" k="118" /> +<hkern u1="Ÿ" u2="s" k="196" /> +<hkern u1="Ÿ" u2="r" k="118" /> +<hkern u1="Ÿ" u2="q" k="196" /> +<hkern u1="Ÿ" u2="p" k="118" /> +<hkern u1="Ÿ" u2="o" k="196" /> +<hkern u1="Ÿ" u2="n" k="118" /> +<hkern u1="Ÿ" u2="m" k="118" /> +<hkern u1="Ÿ" u2="g" k="173" /> +<hkern u1="Ÿ" u2="e" k="196" /> +<hkern u1="Ÿ" u2="d" k="196" /> +<hkern u1="Ÿ" u2="c" k="196" /> +<hkern u1="Ÿ" u2="a" k="196" /> +<hkern u1="Ÿ" u2="Q" k="71" /> +<hkern u1="Ÿ" u2="O" k="71" /> +<hkern u1="Ÿ" u2="J" k="205" /> +<hkern u1="Ÿ" u2="G" k="71" /> +<hkern u1="Ÿ" u2="C" k="71" /> +<hkern u1="Ÿ" u2="A" k="145" /> +<hkern u1="Ÿ" u2="@" k="71" /> +<hkern u1="Ÿ" u2="?" k="-51" /> +<hkern u1="Ÿ" u2=";" k="118" /> +<hkern u1="Ÿ" u2=":" k="118" /> +<hkern u1="Ÿ" u2="/" k="145" /> +<hkern u1="Ÿ" u2="." k="222" /> +<hkern u1="Ÿ" u2="-" k="186" /> +<hkern u1="Ÿ" u2="," k="222" /> +<hkern u1="Ÿ" u2="*" k="-56" /> +<hkern u1="Ÿ" u2="'" k="-56" /> +<hkern u1="Ÿ" u2="&" k="145" /> +<hkern u1="Ÿ" u2=""" k="-56" /> +<hkern u1="–" u2="…" k="166" /> +<hkern u1="–" u2="„" k="166" /> +<hkern u1="–" u2="”" k="85" /> +<hkern u1="–" u2="“" k="85" /> +<hkern u1="–" u2="‚" k="166" /> +<hkern u1="–" u2="’" k="85" /> +<hkern u1="–" u2="‘" k="85" /> +<hkern u1="–" u2="Ÿ" k="197" /> +<hkern u1="–" u2="Ý" k="197" /> +<hkern u1="–" u2="Æ" k="53" /> +<hkern u1="–" u2="Å" k="53" /> +<hkern u1="–" u2="Ä" k="53" /> +<hkern u1="–" u2="Ã" k="53" /> +<hkern u1="–" u2="Â" k="53" /> +<hkern u1="–" u2="Á" k="53" /> +<hkern u1="–" u2="À" k="53" /> +<hkern u1="–" u2="º" k="85" /> +<hkern u1="–" u2="°" k="85" /> +<hkern u1="–" u2="ª" k="85" /> +<hkern u1="–" u2="\" k="125" /> +<hkern u1="–" u2="Z" k="56" /> +<hkern u1="–" u2="Y" k="197" /> +<hkern u1="–" u2="X" k="72" /> +<hkern u1="–" u2="V" k="125" /> +<hkern u1="–" u2="T" k="196" /> +<hkern u1="–" u2="A" k="53" /> +<hkern u1="–" u2="/" k="53" /> +<hkern u1="–" u2="." k="166" /> +<hkern u1="–" u2="," k="166" /> +<hkern u1="–" u2="*" k="85" /> +<hkern u1="–" u2="'" k="85" /> +<hkern u1="–" u2="&" k="53" /> +<hkern u1="–" u2=""" k="85" /> +<hkern u1="—" u2="…" k="166" /> +<hkern u1="—" u2="„" k="166" /> +<hkern u1="—" u2="”" k="85" /> +<hkern u1="—" u2="“" k="85" /> +<hkern u1="—" u2="‚" k="166" /> +<hkern u1="—" u2="’" k="85" /> +<hkern u1="—" u2="‘" k="85" /> +<hkern u1="—" u2="Ÿ" k="197" /> +<hkern u1="—" u2="Ý" k="197" /> +<hkern u1="—" u2="Æ" k="53" /> +<hkern u1="—" u2="Å" k="53" /> +<hkern u1="—" u2="Ä" k="53" /> +<hkern u1="—" u2="Ã" k="53" /> +<hkern u1="—" u2="Â" k="53" /> +<hkern u1="—" u2="Á" k="53" /> +<hkern u1="—" u2="À" k="53" /> +<hkern u1="—" u2="º" k="85" /> +<hkern u1="—" u2="°" k="85" /> +<hkern u1="—" u2="ª" k="85" /> +<hkern u1="—" u2="\" k="125" /> +<hkern u1="—" u2="Z" k="56" /> +<hkern u1="—" u2="Y" k="197" /> +<hkern u1="—" u2="X" k="72" /> +<hkern u1="—" u2="V" k="125" /> +<hkern u1="—" u2="T" k="196" /> +<hkern u1="—" u2="A" k="53" /> +<hkern u1="—" u2="/" k="53" /> +<hkern u1="—" u2="." k="166" /> +<hkern u1="—" u2="," k="166" /> +<hkern u1="—" u2="*" k="85" /> +<hkern u1="—" u2="'" k="85" /> +<hkern u1="—" u2="&" k="53" /> +<hkern u1="—" u2=""" k="85" /> +<hkern u1="‘" u2="›" k="85" /> +<hkern u1="‘" u2="‹" k="85" /> +<hkern u1="‘" u2="…" k="94" /> +<hkern u1="‘" u2="•" k="85" /> +<hkern u1="‘" u2="„" k="94" /> +<hkern u1="‘" u2="‚" k="94" /> +<hkern u1="‘" u2="—" k="85" /> +<hkern u1="‘" u2="–" k="85" /> +<hkern u1="‘" u2="Ÿ" k="-46" /> +<hkern u1="‘" u2="œ" k="93" /> +<hkern u1="‘" u2="ø" k="93" /> +<hkern u1="‘" u2="ö" k="93" /> +<hkern u1="‘" u2="õ" k="93" /> +<hkern u1="‘" u2="ô" k="93" /> +<hkern u1="‘" u2="ó" k="93" /> +<hkern u1="‘" u2="ò" k="93" /> +<hkern u1="‘" u2="ð" k="93" /> +<hkern u1="‘" u2="ë" k="93" /> +<hkern u1="‘" u2="ê" k="93" /> +<hkern u1="‘" u2="é" k="93" /> +<hkern u1="‘" u2="è" k="93" /> +<hkern u1="‘" u2="ç" k="93" /> +<hkern u1="‘" u2="æ" k="93" /> +<hkern u1="‘" u2="å" k="93" /> +<hkern u1="‘" u2="ä" k="93" /> +<hkern u1="‘" u2="ã" k="93" /> +<hkern u1="‘" u2="â" k="93" /> +<hkern u1="‘" u2="á" k="93" /> +<hkern u1="‘" u2="à" k="93" /> +<hkern u1="‘" u2="Ý" k="-46" /> +<hkern u1="‘" u2="Æ" k="175" /> +<hkern u1="‘" u2="Å" k="175" /> +<hkern u1="‘" u2="Ä" k="175" /> +<hkern u1="‘" u2="Ã" k="175" /> +<hkern u1="‘" u2="Â" k="175" /> +<hkern u1="‘" u2="Á" k="175" /> +<hkern u1="‘" u2="À" k="175" /> +<hkern u1="‘" u2="»" k="85" /> +<hkern u1="‘" u2="·" k="85" /> +<hkern u1="‘" u2="­" k="85" /> +<hkern u1="‘" u2="«" k="85" /> +<hkern u1="‘" u2="q" k="93" /> +<hkern u1="‘" u2="o" k="93" /> +<hkern u1="‘" u2="e" k="93" /> +<hkern u1="‘" u2="d" k="93" /> +<hkern u1="‘" u2="c" k="93" /> +<hkern u1="‘" u2="a" k="93" /> +<hkern u1="‘" u2="\" k="-55" /> +<hkern u1="‘" u2="Y" k="-46" /> +<hkern u1="‘" u2="W" k="-49" /> +<hkern u1="‘" u2="V" k="-55" /> +<hkern u1="‘" u2="A" k="175" /> +<hkern u1="‘" u2="/" k="175" /> +<hkern u1="‘" u2="." k="94" /> +<hkern u1="‘" u2="-" k="85" /> +<hkern u1="‘" u2="," k="94" /> +<hkern u1="‘" u2="&" k="175" /> +<hkern u1="’" u2="›" k="85" /> +<hkern u1="’" u2="‹" k="85" /> +<hkern u1="’" u2="…" k="94" /> +<hkern u1="’" u2="•" k="85" /> +<hkern u1="’" u2="„" k="94" /> +<hkern u1="’" u2="‚" k="94" /> +<hkern u1="’" u2="—" k="85" /> +<hkern u1="’" u2="–" k="85" /> +<hkern u1="’" u2="Ÿ" k="-46" /> +<hkern u1="’" u2="œ" k="93" /> +<hkern u1="’" u2="ø" k="93" /> +<hkern u1="’" u2="ö" k="93" /> +<hkern u1="’" u2="õ" k="93" /> +<hkern u1="’" u2="ô" k="93" /> +<hkern u1="’" u2="ó" k="93" /> +<hkern u1="’" u2="ò" k="93" /> +<hkern u1="’" u2="ð" k="93" /> +<hkern u1="’" u2="ë" k="93" /> +<hkern u1="’" u2="ê" k="93" /> +<hkern u1="’" u2="é" k="93" /> +<hkern u1="’" u2="è" k="93" /> +<hkern u1="’" u2="ç" k="93" /> +<hkern u1="’" u2="æ" k="93" /> +<hkern u1="’" u2="å" k="93" /> +<hkern u1="’" u2="ä" k="93" /> +<hkern u1="’" u2="ã" k="93" /> +<hkern u1="’" u2="â" k="93" /> +<hkern u1="’" u2="á" k="93" /> +<hkern u1="’" u2="à" k="93" /> +<hkern u1="’" u2="Ý" k="-46" /> +<hkern u1="’" u2="Æ" k="175" /> +<hkern u1="’" u2="Å" k="175" /> +<hkern u1="’" u2="Ä" k="175" /> +<hkern u1="’" u2="Ã" k="175" /> +<hkern u1="’" u2="Â" k="175" /> +<hkern u1="’" u2="Á" k="175" /> +<hkern u1="’" u2="À" k="175" /> +<hkern u1="’" u2="»" k="85" /> +<hkern u1="’" u2="·" k="85" /> +<hkern u1="’" u2="­" k="85" /> +<hkern u1="’" u2="«" k="85" /> +<hkern u1="’" u2="q" k="93" /> +<hkern u1="’" u2="o" k="93" /> +<hkern u1="’" u2="e" k="93" /> +<hkern u1="’" u2="d" k="93" /> +<hkern u1="’" u2="c" k="93" /> +<hkern u1="’" u2="a" k="93" /> +<hkern u1="’" u2="\" k="-55" /> +<hkern u1="’" u2="Y" k="-46" /> +<hkern u1="’" u2="W" k="-49" /> +<hkern u1="’" u2="V" k="-55" /> +<hkern u1="’" u2="A" k="175" /> +<hkern u1="’" u2="/" k="175" /> +<hkern u1="’" u2="." k="94" /> +<hkern u1="’" u2="-" k="85" /> +<hkern u1="’" u2="," k="94" /> +<hkern u1="’" u2="&" k="175" /> +<hkern u1="‚" u2="›" k="202" /> +<hkern u1="‚" u2="‹" k="202" /> +<hkern u1="‚" u2="•" k="202" /> +<hkern u1="‚" u2="”" k="123" /> +<hkern u1="‚" u2="“" k="123" /> +<hkern u1="‚" u2="’" k="123" /> +<hkern u1="‚" u2="‘" k="123" /> +<hkern u1="‚" u2="—" k="202" /> +<hkern u1="‚" u2="–" k="202" /> +<hkern u1="‚" u2="Ÿ" k="202" /> +<hkern u1="‚" u2="Œ" k="56" /> +<hkern u1="‚" u2="ÿ" k="145" /> +<hkern u1="‚" u2="ý" k="145" /> +<hkern u1="‚" u2="Ý" k="202" /> +<hkern u1="‚" u2="Ø" k="56" /> +<hkern u1="‚" u2="Ö" k="56" /> +<hkern u1="‚" u2="Õ" k="56" /> +<hkern u1="‚" u2="Ô" k="56" /> +<hkern u1="‚" u2="Ó" k="56" /> +<hkern u1="‚" u2="Ò" k="56" /> +<hkern u1="‚" u2="Ç" k="56" /> +<hkern u1="‚" u2="»" k="202" /> +<hkern u1="‚" u2="º" k="123" /> +<hkern u1="‚" u2="·" k="202" /> +<hkern u1="‚" u2="°" k="123" /> +<hkern u1="‚" u2="®" k="56" /> +<hkern u1="‚" u2="­" k="202" /> +<hkern u1="‚" u2="«" k="202" /> +<hkern u1="‚" u2="ª" k="123" /> +<hkern u1="‚" u2="©" k="56" /> +<hkern u1="‚" u2="y" k="135" /> +<hkern u1="‚" u2="w" k="74" /> +<hkern u1="‚" u2="v" k="145" /> +<hkern u1="‚" u2="\" k="217" /> +<hkern u1="‚" u2="Y" k="202" /> +<hkern u1="‚" u2="W" k="135" /> +<hkern u1="‚" u2="V" k="217" /> +<hkern u1="‚" u2="T" k="208" /> +<hkern u1="‚" u2="Q" k="56" /> +<hkern u1="‚" u2="O" k="56" /> +<hkern u1="‚" u2="G" k="56" /> +<hkern u1="‚" u2="C" k="56" /> +<hkern u1="‚" u2="@" k="56" /> +<hkern u1="‚" u2="-" k="202" /> +<hkern u1="‚" u2="*" k="123" /> +<hkern u1="‚" u2="'" k="123" /> +<hkern u1="‚" u2=""" k="123" /> +<hkern u1="“" u2="›" k="85" /> +<hkern u1="“" u2="‹" k="85" /> +<hkern u1="“" u2="…" k="94" /> +<hkern u1="“" u2="•" k="85" /> +<hkern u1="“" u2="„" k="94" /> +<hkern u1="“" u2="‚" k="94" /> +<hkern u1="“" u2="—" k="85" /> +<hkern u1="“" u2="–" k="85" /> +<hkern u1="“" u2="Ÿ" k="-46" /> +<hkern u1="“" u2="œ" k="93" /> +<hkern u1="“" u2="ø" k="93" /> +<hkern u1="“" u2="ö" k="93" /> +<hkern u1="“" u2="õ" k="93" /> +<hkern u1="“" u2="ô" k="93" /> +<hkern u1="“" u2="ó" k="93" /> +<hkern u1="“" u2="ò" k="93" /> +<hkern u1="“" u2="ð" k="93" /> +<hkern u1="“" u2="ë" k="93" /> +<hkern u1="“" u2="ê" k="93" /> +<hkern u1="“" u2="é" k="93" /> +<hkern u1="“" u2="è" k="93" /> +<hkern u1="“" u2="ç" k="93" /> +<hkern u1="“" u2="æ" k="93" /> +<hkern u1="“" u2="å" k="93" /> +<hkern u1="“" u2="ä" k="93" /> +<hkern u1="“" u2="ã" k="93" /> +<hkern u1="“" u2="â" k="93" /> +<hkern u1="“" u2="á" k="93" /> +<hkern u1="“" u2="à" k="93" /> +<hkern u1="“" u2="Ý" k="-46" /> +<hkern u1="“" u2="Æ" k="175" /> +<hkern u1="“" u2="Å" k="175" /> +<hkern u1="“" u2="Ä" k="175" /> +<hkern u1="“" u2="Ã" k="175" /> +<hkern u1="“" u2="Â" k="175" /> +<hkern u1="“" u2="Á" k="175" /> +<hkern u1="“" u2="À" k="175" /> +<hkern u1="“" u2="»" k="85" /> +<hkern u1="“" u2="·" k="85" /> +<hkern u1="“" u2="­" k="85" /> +<hkern u1="“" u2="«" k="85" /> +<hkern u1="“" u2="q" k="93" /> +<hkern u1="“" u2="o" k="93" /> +<hkern u1="“" u2="e" k="93" /> +<hkern u1="“" u2="d" k="93" /> +<hkern u1="“" u2="c" k="93" /> +<hkern u1="“" u2="a" k="93" /> +<hkern u1="“" u2="\" k="-55" /> +<hkern u1="“" u2="Y" k="-46" /> +<hkern u1="“" u2="W" k="-49" /> +<hkern u1="“" u2="V" k="-55" /> +<hkern u1="“" u2="A" k="175" /> +<hkern u1="“" u2="/" k="175" /> +<hkern u1="“" u2="." k="94" /> +<hkern u1="“" u2="-" k="85" /> +<hkern u1="“" u2="," k="94" /> +<hkern u1="“" u2="&" k="175" /> +<hkern u1="”" u2="›" k="85" /> +<hkern u1="”" u2="‹" k="85" /> +<hkern u1="”" u2="…" k="94" /> +<hkern u1="”" u2="•" k="85" /> +<hkern u1="”" u2="„" k="94" /> +<hkern u1="”" u2="‚" k="94" /> +<hkern u1="”" u2="—" k="85" /> +<hkern u1="”" u2="–" k="85" /> +<hkern u1="”" u2="Ÿ" k="-46" /> +<hkern u1="”" u2="œ" k="93" /> +<hkern u1="”" u2="ø" k="93" /> +<hkern u1="”" u2="ö" k="93" /> +<hkern u1="”" u2="õ" k="93" /> +<hkern u1="”" u2="ô" k="93" /> +<hkern u1="”" u2="ó" k="93" /> +<hkern u1="”" u2="ò" k="93" /> +<hkern u1="”" u2="ð" k="93" /> +<hkern u1="”" u2="ë" k="93" /> +<hkern u1="”" u2="ê" k="93" /> +<hkern u1="”" u2="é" k="93" /> +<hkern u1="”" u2="è" k="93" /> +<hkern u1="”" u2="ç" k="93" /> +<hkern u1="”" u2="æ" k="93" /> +<hkern u1="”" u2="å" k="93" /> +<hkern u1="”" u2="ä" k="93" /> +<hkern u1="”" u2="ã" k="93" /> +<hkern u1="”" u2="â" k="93" /> +<hkern u1="”" u2="á" k="93" /> +<hkern u1="”" u2="à" k="93" /> +<hkern u1="”" u2="Ý" k="-46" /> +<hkern u1="”" u2="Æ" k="175" /> +<hkern u1="”" u2="Å" k="175" /> +<hkern u1="”" u2="Ä" k="175" /> +<hkern u1="”" u2="Ã" k="175" /> +<hkern u1="”" u2="Â" k="175" /> +<hkern u1="”" u2="Á" k="175" /> +<hkern u1="”" u2="À" k="175" /> +<hkern u1="”" u2="»" k="85" /> +<hkern u1="”" u2="·" k="85" /> +<hkern u1="”" u2="­" k="85" /> +<hkern u1="”" u2="«" k="85" /> +<hkern u1="”" u2="q" k="93" /> +<hkern u1="”" u2="o" k="93" /> +<hkern u1="”" u2="e" k="93" /> +<hkern u1="”" u2="d" k="93" /> +<hkern u1="”" u2="c" k="93" /> +<hkern u1="”" u2="a" k="93" /> +<hkern u1="”" u2="\" k="-55" /> +<hkern u1="”" u2="Y" k="-46" /> +<hkern u1="”" u2="W" k="-49" /> +<hkern u1="”" u2="V" k="-55" /> +<hkern u1="”" u2="A" k="175" /> +<hkern u1="”" u2="/" k="175" /> +<hkern u1="”" u2="." k="94" /> +<hkern u1="”" u2="-" k="85" /> +<hkern u1="”" u2="," k="94" /> +<hkern u1="”" u2="&" k="175" /> +<hkern u1="„" u2="›" k="202" /> +<hkern u1="„" u2="‹" k="202" /> +<hkern u1="„" u2="•" k="202" /> +<hkern u1="„" u2="”" k="123" /> +<hkern u1="„" u2="“" k="123" /> +<hkern u1="„" u2="’" k="123" /> +<hkern u1="„" u2="‘" k="123" /> +<hkern u1="„" u2="—" k="202" /> +<hkern u1="„" u2="–" k="202" /> +<hkern u1="„" u2="Ÿ" k="202" /> +<hkern u1="„" u2="Œ" k="56" /> +<hkern u1="„" u2="ÿ" k="145" /> +<hkern u1="„" u2="ý" k="145" /> +<hkern u1="„" u2="Ý" k="202" /> +<hkern u1="„" u2="Ø" k="56" /> +<hkern u1="„" u2="Ö" k="56" /> +<hkern u1="„" u2="Õ" k="56" /> +<hkern u1="„" u2="Ô" k="56" /> +<hkern u1="„" u2="Ó" k="56" /> +<hkern u1="„" u2="Ò" k="56" /> +<hkern u1="„" u2="Ç" k="56" /> +<hkern u1="„" u2="»" k="202" /> +<hkern u1="„" u2="º" k="123" /> +<hkern u1="„" u2="·" k="202" /> +<hkern u1="„" u2="°" k="123" /> +<hkern u1="„" u2="®" k="56" /> +<hkern u1="„" u2="­" k="202" /> +<hkern u1="„" u2="«" k="202" /> +<hkern u1="„" u2="ª" k="123" /> +<hkern u1="„" u2="©" k="56" /> +<hkern u1="„" u2="y" k="135" /> +<hkern u1="„" u2="w" k="74" /> +<hkern u1="„" u2="v" k="145" /> +<hkern u1="„" u2="\" k="217" /> +<hkern u1="„" u2="Y" k="202" /> +<hkern u1="„" u2="W" k="135" /> +<hkern u1="„" u2="V" k="217" /> +<hkern u1="„" u2="T" k="208" /> +<hkern u1="„" u2="Q" k="56" /> +<hkern u1="„" u2="O" k="56" /> +<hkern u1="„" u2="G" k="56" /> +<hkern u1="„" u2="C" k="56" /> +<hkern u1="„" u2="@" k="56" /> +<hkern u1="„" u2="-" k="202" /> +<hkern u1="„" u2="*" k="123" /> +<hkern u1="„" u2="'" k="123" /> +<hkern u1="„" u2=""" k="123" /> +<hkern u1="•" u2="…" k="166" /> +<hkern u1="•" u2="„" k="166" /> +<hkern u1="•" u2="”" k="85" /> +<hkern u1="•" u2="“" k="85" /> +<hkern u1="•" u2="‚" k="166" /> +<hkern u1="•" u2="’" k="85" /> +<hkern u1="•" u2="‘" k="85" /> +<hkern u1="•" u2="Ÿ" k="197" /> +<hkern u1="•" u2="Ý" k="197" /> +<hkern u1="•" u2="Æ" k="53" /> +<hkern u1="•" u2="Å" k="53" /> +<hkern u1="•" u2="Ä" k="53" /> +<hkern u1="•" u2="Ã" k="53" /> +<hkern u1="•" u2="Â" k="53" /> +<hkern u1="•" u2="Á" k="53" /> +<hkern u1="•" u2="À" k="53" /> +<hkern u1="•" u2="º" k="85" /> +<hkern u1="•" u2="°" k="85" /> +<hkern u1="•" u2="ª" k="85" /> +<hkern u1="•" u2="\" k="125" /> +<hkern u1="•" u2="Z" k="56" /> +<hkern u1="•" u2="Y" k="197" /> +<hkern u1="•" u2="X" k="72" /> +<hkern u1="•" u2="V" k="125" /> +<hkern u1="•" u2="T" k="196" /> +<hkern u1="•" u2="A" k="53" /> +<hkern u1="•" u2="/" k="53" /> +<hkern u1="•" u2="." k="166" /> +<hkern u1="•" u2="," k="166" /> +<hkern u1="•" u2="*" k="85" /> +<hkern u1="•" u2="'" k="85" /> +<hkern u1="•" u2="&" k="53" /> +<hkern u1="•" u2=""" k="85" /> +<hkern u1="…" u2="›" k="202" /> +<hkern u1="…" u2="‹" k="202" /> +<hkern u1="…" u2="•" k="202" /> +<hkern u1="…" u2="”" k="123" /> +<hkern u1="…" u2="“" k="123" /> +<hkern u1="…" u2="’" k="123" /> +<hkern u1="…" u2="‘" k="123" /> +<hkern u1="…" u2="—" k="202" /> +<hkern u1="…" u2="–" k="202" /> +<hkern u1="…" u2="Ÿ" k="202" /> +<hkern u1="…" u2="Œ" k="56" /> +<hkern u1="…" u2="ÿ" k="145" /> +<hkern u1="…" u2="ý" k="145" /> +<hkern u1="…" u2="Ý" k="202" /> +<hkern u1="…" u2="Ø" k="56" /> +<hkern u1="…" u2="Ö" k="56" /> +<hkern u1="…" u2="Õ" k="56" /> +<hkern u1="…" u2="Ô" k="56" /> +<hkern u1="…" u2="Ó" k="56" /> +<hkern u1="…" u2="Ò" k="56" /> +<hkern u1="…" u2="Ç" k="56" /> +<hkern u1="…" u2="»" k="202" /> +<hkern u1="…" u2="º" k="123" /> +<hkern u1="…" u2="·" k="202" /> +<hkern u1="…" u2="°" k="123" /> +<hkern u1="…" u2="®" k="56" /> +<hkern u1="…" u2="­" k="202" /> +<hkern u1="…" u2="«" k="202" /> +<hkern u1="…" u2="ª" k="123" /> +<hkern u1="…" u2="©" k="56" /> +<hkern u1="…" u2="y" k="135" /> +<hkern u1="…" u2="w" k="74" /> +<hkern u1="…" u2="v" k="145" /> +<hkern u1="…" u2="\" k="217" /> +<hkern u1="…" u2="Y" k="202" /> +<hkern u1="…" u2="W" k="135" /> +<hkern u1="…" u2="V" k="217" /> +<hkern u1="…" u2="T" k="208" /> +<hkern u1="…" u2="Q" k="56" /> +<hkern u1="…" u2="O" k="56" /> +<hkern u1="…" u2="G" k="56" /> +<hkern u1="…" u2="C" k="56" /> +<hkern u1="…" u2="@" k="56" /> +<hkern u1="…" u2="-" k="202" /> +<hkern u1="…" u2="*" k="123" /> +<hkern u1="…" u2="'" k="123" /> +<hkern u1="…" u2=""" k="123" /> +<hkern u1="‹" u2="…" k="166" /> +<hkern u1="‹" u2="„" k="166" /> +<hkern u1="‹" u2="”" k="85" /> +<hkern u1="‹" u2="“" k="85" /> +<hkern u1="‹" u2="‚" k="166" /> +<hkern u1="‹" u2="’" k="85" /> +<hkern u1="‹" u2="‘" k="85" /> +<hkern u1="‹" u2="Ÿ" k="197" /> +<hkern u1="‹" u2="Ý" k="197" /> +<hkern u1="‹" u2="Æ" k="53" /> +<hkern u1="‹" u2="Å" k="53" /> +<hkern u1="‹" u2="Ä" k="53" /> +<hkern u1="‹" u2="Ã" k="53" /> +<hkern u1="‹" u2="Â" k="53" /> +<hkern u1="‹" u2="Á" k="53" /> +<hkern u1="‹" u2="À" k="53" /> +<hkern u1="‹" u2="º" k="85" /> +<hkern u1="‹" u2="°" k="85" /> +<hkern u1="‹" u2="ª" k="85" /> +<hkern u1="‹" u2="\" k="125" /> +<hkern u1="‹" u2="Z" k="56" /> +<hkern u1="‹" u2="Y" k="197" /> +<hkern u1="‹" u2="X" k="72" /> +<hkern u1="‹" u2="V" k="125" /> +<hkern u1="‹" u2="T" k="196" /> +<hkern u1="‹" u2="A" k="53" /> +<hkern u1="‹" u2="/" k="53" /> +<hkern u1="‹" u2="." k="166" /> +<hkern u1="‹" u2="," k="166" /> +<hkern u1="‹" u2="*" k="85" /> +<hkern u1="‹" u2="'" k="85" /> +<hkern u1="‹" u2="&" k="53" /> +<hkern u1="‹" u2=""" k="85" /> +<hkern u1="›" u2="…" k="166" /> +<hkern u1="›" u2="„" k="166" /> +<hkern u1="›" u2="”" k="85" /> +<hkern u1="›" u2="“" k="85" /> +<hkern u1="›" u2="‚" k="166" /> +<hkern u1="›" u2="’" k="85" /> +<hkern u1="›" u2="‘" k="85" /> +<hkern u1="›" u2="Ÿ" k="197" /> +<hkern u1="›" u2="Ý" k="197" /> +<hkern u1="›" u2="Æ" k="53" /> +<hkern u1="›" u2="Å" k="53" /> +<hkern u1="›" u2="Ä" k="53" /> +<hkern u1="›" u2="Ã" k="53" /> +<hkern u1="›" u2="Â" k="53" /> +<hkern u1="›" u2="Á" k="53" /> +<hkern u1="›" u2="À" k="53" /> +<hkern u1="›" u2="º" k="85" /> +<hkern u1="›" u2="°" k="85" /> +<hkern u1="›" u2="ª" k="85" /> +<hkern u1="›" u2="\" k="125" /> +<hkern u1="›" u2="Z" k="56" /> +<hkern u1="›" u2="Y" k="197" /> +<hkern u1="›" u2="X" k="72" /> +<hkern u1="›" u2="V" k="125" /> +<hkern u1="›" u2="T" k="196" /> +<hkern u1="›" u2="A" k="53" /> +<hkern u1="›" u2="/" k="53" /> +<hkern u1="›" u2="." k="166" /> +<hkern u1="›" u2="," k="166" /> +<hkern u1="›" u2="*" k="85" /> +<hkern u1="›" u2="'" k="85" /> +<hkern u1="›" u2="&" k="53" /> +<hkern u1="›" u2=""" k="85" /> +<hkern u1="™" u2="›" k="85" /> +<hkern u1="™" u2="‹" k="85" /> +<hkern u1="™" u2="…" k="94" /> +<hkern u1="™" u2="•" k="85" /> +<hkern u1="™" u2="„" k="94" /> +<hkern u1="™" u2="‚" k="94" /> +<hkern u1="™" u2="—" k="85" /> +<hkern u1="™" u2="–" k="85" /> +<hkern u1="™" u2="Ÿ" k="-46" /> +<hkern u1="™" u2="œ" k="93" /> +<hkern u1="™" u2="ø" k="93" /> +<hkern u1="™" u2="ö" k="93" /> +<hkern u1="™" u2="õ" k="93" /> +<hkern u1="™" u2="ô" k="93" /> +<hkern u1="™" u2="ó" k="93" /> +<hkern u1="™" u2="ò" k="93" /> +<hkern u1="™" u2="ð" k="93" /> +<hkern u1="™" u2="ë" k="93" /> +<hkern u1="™" u2="ê" k="93" /> +<hkern u1="™" u2="é" k="93" /> +<hkern u1="™" u2="è" k="93" /> +<hkern u1="™" u2="ç" k="93" /> +<hkern u1="™" u2="æ" k="93" /> +<hkern u1="™" u2="å" k="93" /> +<hkern u1="™" u2="ä" k="93" /> +<hkern u1="™" u2="ã" k="93" /> +<hkern u1="™" u2="â" k="93" /> +<hkern u1="™" u2="á" k="93" /> +<hkern u1="™" u2="à" k="93" /> +<hkern u1="™" u2="Ý" k="-46" /> +<hkern u1="™" u2="Æ" k="175" /> +<hkern u1="™" u2="Å" k="175" /> +<hkern u1="™" u2="Ä" k="175" /> +<hkern u1="™" u2="Ã" k="175" /> +<hkern u1="™" u2="Â" k="175" /> +<hkern u1="™" u2="Á" k="175" /> +<hkern u1="™" u2="À" k="175" /> +<hkern u1="™" u2="»" k="85" /> +<hkern u1="™" u2="·" k="85" /> +<hkern u1="™" u2="­" k="85" /> +<hkern u1="™" u2="«" k="85" /> +<hkern u1="™" u2="q" k="93" /> +<hkern u1="™" u2="o" k="93" /> +<hkern u1="™" u2="e" k="93" /> +<hkern u1="™" u2="d" k="93" /> +<hkern u1="™" u2="c" k="93" /> +<hkern u1="™" u2="a" k="93" /> +<hkern u1="™" u2="\" k="-55" /> +<hkern u1="™" u2="Y" k="-46" /> +<hkern u1="™" u2="W" k="-49" /> +<hkern u1="™" u2="V" k="-55" /> +<hkern u1="™" u2="A" k="175" /> +<hkern u1="™" u2="/" k="175" /> +<hkern u1="™" u2="." k="94" /> +<hkern u1="™" u2="-" k="85" /> +<hkern u1="™" u2="," k="94" /> +<hkern u1="™" u2="&" k="175" /> +</font> +</defs></svg>
@@ -0,0 +1,86 @@
+<?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> +Created by FontForge 20100429 at Thu Dec 27 10:10:05 2012 + By root +Copyright (C) 2012 by original authors @ fontello.com +</metadata> +<defs> +<font id="zocial" horiz-adv-x="1030" > + <font-face + font-family="zocial" + font-weight="500" + font-stretch="normal" + units-per-em="1000" + panose-1="2 0 6 3 0 0 0 0 0 0" + ascent="850" + descent="-150" + bbox="15 -150 1245 850" + underline-thickness="50" + underline-position="-100" + unicode-range="U+0024-00E3" + /> +<missing-glyph horiz-adv-x="364" +d="M33 0v666h265v-666h-265zM66 33h199v600h-199v-600z" /> + <glyph glyph-name=".notdef" horiz-adv-x="364" +d="M33 0v666h265v-666h-265zM66 33h199v600h-199v-600z" /> + <glyph glyph-name=".null" horiz-adv-x="0" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="333" + /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1004" +d="M209 850h438q107 0 181 -74q81 -79 52 -229q-28 -135 -128 -214q-99 -78 -234 -78h-183l-63 -296h-257zM115 -150l11 49h216l63 295h183q135 0 234 78q100 79 128 214q21 96 -12 170q71 -85 43 -219q-30 -136 -129 -214t-233 -78h-184l-63 -295h-257zM639 605 +q-8 28 -31 46t-56 18h-125l-55 -244h83l42 183h125q2 0 17 -3zM497 426q50 2 91 38.5t51 82.5q0 1 1 6t1 6h-114z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1214" +d="M332 -150q-76 0 -145.5 17.5t-120.5 60.5t-51 104q0 87 89 155t215 68h54q-42 41 -42 86q0 30 16 58q-7 -1 -29 -1q-103 0 -170 65q-66 65 -66 160q0 92 82 159q83 68 187 68h310l-69 -50h-98q45 -17 72.5 -66.5t27.5 -112.5q0 -93 -88 -162q-36 -28 -48 -46 +q-11 -17 -11 -42q0 -19 27 -48q30 -32 54 -49q60 -42 84 -88q24 -45 24 -113q0 -91 -82 -157t-222 -66zM186 -52q60 -49 145 -49q118 0 173 44q53 43 53 117q0 47 -37 88q-4 4 -40 31q-35 25 -51 35q-39 12 -77 12q-90 1 -158 -47q-67 -48 -67 -114q0 -69 59 -117zM193 624 +q10 -72 57.5 -132.5t112.5 -61.5q63 -2 95.5 54.5t23.5 130.5q-9 72 -56.5 130.5t-112.5 60.5q-63 2 -96 -53t-24 -129zM748 600v50h200v200h50v-200h201v-50h-201v-201h-50v201h-200z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1199" +d="M276 664q87 0 154 -49.5t93 -122.5l66 64l158 -152l437 446v-405l-267 -206l34 -36l-363 -353l-316 307q-106 1 -182 76q-75 73 -75 177q0 105 77 180q75 74 184 74zM117 257q65 -63 157 -63q34 0 65 9l220 -195l585 460l1 302l-578 -596l-90 146q20 45 20 90 +q0 90 -65 152q-67 64 -158 64t-157 -64q-65 -63 -65 -152q0 -90 65 -153zM100 408q0 70 49.5 119.5t119.5 49.5t119.5 -49.5t49.5 -119.5t-49.5 -119.5t-119.5 -49.5t-119.5 49.5t-49.5 119.5z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1235" +d="M1220 350q0 -49 -27.5 -87.5t-68.5 -58.5q0 -195 -260 -303q-46 -21 -68 -27t-79 -15q-59 -9 -93 -9q-118 0 -231 35q-3 3 -72 38q-97 52 -153 116q-57 65 -57 156h-5q-33 17 -59 50l-9 12q-15 27 -19 43.5t-4 52.5q0 63 49 106q50 44 113 44q61 0 105 -36h5 +q133 82 335 82l5 4l70 267l242 -36q0 -1 2 -1q1 0 0 1q2 1 14 18l12 16q35 32 82 32q49 0 82.5 -32.5t33.5 -81.5t-34 -84t-82 -35q-55 0 -86 38t-31 97q-2 -1 -97.5 13t-109.5 17h-3l-16 -54l-23 -84q-19 -69 -25 -88v-3l5 -4q77 0 153 -22.5t128 -57.5q1 1 2 1t2 1l16 11 +l16 12q3 2 13.5 8t18 7.5t19 3.5t25.5 2q68 0 116 -48.5t48 -116.5zM173 472q-48 0 -86 -41t-38 -90q0 -65 57 -112q5 59 48 116q46 60 101 101q-38 26 -82 26zM151 195q0 -107 111 -189q99 -73 207 -94q78 -14 146 -14q133 0 241 43t177 119h-3q28 35 43 68q13 29 13 73 +q0 109 -96 187q-150 122 -373 122q-157 0 -301 -72q-71 -35 -118 -97.5t-47 -145.5zM337 268q0 37 22.5 59.5t59.5 22.5t62 -23t25 -59t-25.5 -60t-61.5 -24t-59 24t-23 60zM608 12q62 0 113 25.5t81 66.5h41q-25 -62 -93 -96q-67 -34 -142 -34q-74 0 -142 34q-69 34 -93 96 +h44q25 -44 79 -68t112 -24zM709 268q0 38 23 60t61 22q34 0 58 -24t24 -58t-24 -59t-58 -25q-37 0 -60.5 23.5t-23.5 60.5zM964 736q0 -34 25 -59.5t60 -25.5q36 0 59 24.5t23 60.5q0 34 -24 58t-58 24q-33 0 -59 -24.5t-26 -57.5zM978 455q53 -35 94 -91t57 -121 +q59 44 59 96q0 58 -36 100t-92 42q-44 0 -82 -26z" /> + <glyph glyph-name="C" unicode="C" +d="M15 350q0 206 148 354q144 146 351 146q208 0 357 -146q71 -71 107 -162q37 -87 37 -192q0 -210 -143 -351q-73 -71 -166 -111q-96 -38 -192 -38q-204 0 -352 148q-147 147 -147 352zM105 350q0 -169 123 -288q61 -61 133 -89q71 -31 155 -31q164 0 292 121 +q117 114 117 287q0 86 -31 157q-30 77 -88 132q-120 121 -290 121q-171 0 -288 -120q-123 -123 -123 -290zM230 350q0 68 40.5 111.5t106.5 43.5q93 0 133 -72l-67 -35q-10 23 -27 31q-15 9 -29 9q-67 0 -67 -88q0 -38 17 -63t50 -25q44 0 62 42l62 -31q-46 -78 -132 -78 +q-69 0 -109 42t-40 113zM519 350q0 68 40.5 111.5t106.5 43.5q93 0 132 -72l-66 -35q-19 40 -56 40q-67 0 -67 -88q0 -40 16.5 -64t50.5 -24q43 0 61 42l63 -31q-46 -78 -131 -78q-70 0 -110 42t-40 113z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1066" +d="M15 730q0 51 36 83t90 32t89 -32.5t35 -85.5q0 -50 -36 -81.5t-90 -31.5h-1q-53 0 -88 32.5t-35 83.5zM28 523h222v-668h-222v668zM373 -145h222v373q0 33 8 54q34 81 114 81q112 0 112 -151v-357h222v383q0 138 -65.5 219.5t-189.5 81.5q-129 0 -201 -111v-2h-1l1 2v95 +h-222q2 -42 2 -199q0 -67 -2 -469z" /> + <glyph glyph-name="R" unicode="R" +d="M15 -16q0 55 39 94t94 39t94 -39t39 -94t-39 -94t-94 -39t-94 39t-39 94zM15 510q189 0 338 -92.5t233 -236.5q89 -152 89 -331h-192q0 194 -137 331q-138 138 -331 138v191zM15 658v192q211 0 394.5 -82t312.5 -211t211 -312.5t82 -394.5h-192q0 171 -66.5 320 +t-170.5 252q-104 104 -252 170t-319 66z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1260" +d="M15 -37q30 -3 60 -3q176 0 314 108q-84 1 -148.5 51.5t-87.5 123.5q17 -4 47 -4q36 0 67 9q-85 16 -144 85t-59 162v3q52 -29 115 -31q-49 32 -81 87t-32 123t35 127q89 -112 223 -183.5t297 -80.5q-7 31 -7 58q0 104 74 178t179 74q109 0 184 -80q85 18 160 62 +q-28 -91 -110 -140q75 9 144 40q-48 -75 -125 -131v-33q0 -212 -120 -396q-131 -202 -346 -280q-117 -42 -252 -42q-208 0 -387 113z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="1067" +d="M15 638q0 1 3 19l339 -290l-338 -325q-4 12 -4 20v576zM60 697q8 3 17 3h913q9 0 18 -3l-340 -291l-67 -54l-67 -55l-67 55l-67 54zM402 330l132 -107l132 107l341 -327q-7 -3 -17 -3h-913q-9 0 -16 3zM711 367l338 290q3 -9 3 -19v-576q0 -10 -3 -20z" /> + <glyph glyph-name="a" unicode="a" horiz-adv-x="1130" +d="M33 75q250 -145 544 -145q213 0 401 79q29 13 38 0q8 -11 -6 -22q-85 -61 -202 -99t-243 -38q-313 0 -544 208q-6 4 -6 10q0 2 2 6q5 9 16 1zM494 177q-80 0 -128 49.5t-48 132.5q0 137 127 192q64 28 221 41v17q0 63 -14 86q-21 30 -66 30h-8q-34 -3 -57.5 -22 +t-30.5 -49q-5 -20 -20 -23l-115 14q-17 5 -17 18q0 4 1 7q16 88 83 132q66 43 156 48h25q154 0 210 -101q1 -1 15 -49q4 -16 4 -54v-242q0 -10 1 -19.5t2 -16t5 -15t5.5 -12.5t7 -12.5t7.5 -10.5l8 -12q8 -9 9 -11q6 -9 6 -16q0 -8 -8 -14l-90 -78q-13 -9 -29 -2 +q-34 30 -54 59q-12 17 -14 19q-55 -61 -110 -76q-33 -10 -84 -10zM490 379q0 -38 19 -62t53 -24q2 0 8 1t8 1q37 10 61.5 47.5t26.5 84.5v46v25q-56 0 -88 -8q-88 -25 -88 -111zM910 57q1 3 6 8q49 32 122 34q19 2 44 -4.5t29 -11.5t4 -18v-7q0 -35 -19 -82q-20 -50 -53 -77 +q-4 -4 -9 -4q-10 0 -7 12q37 86 37 121q0 12 -4 16q-10 12 -56 12q-25 0 -86 -8q-4 0 -7 1.5t-2 4.5q0 2 1 3z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="969" +d="M227 157q82 0 147.5 -43t65.5 -111q0 -64 -62 -108q-63 -45 -151 -45q-89 0 -150 45q-62 45 -62 108q0 84 100 130q-26 40 -26 75q0 39 28 74q-38 23 -63 62t-25 89q0 73 53.5 125.5t127.5 52.5q55 0 101 -31h7q60 0 109 32v-115q-18 -10 -44 -14q7 -21 7 -50 +q0 -70 -50 -121t-119 -55q-24 -29 -24 -53q0 -26 24 -48q1 0 3 0.5t3 0.5zM208 515q-29 0 -50.5 -24.5t-21.5 -55.5t21.5 -55.5t50.5 -24.5q30 0 51 24t21 56t-21 56t-51 24zM227 67q-34 0 -61 -17.5t-27 -46.5q0 -28 27 -46t61 -18t61.5 18t27.5 46q0 29 -27 46.5t-62 17.5 +zM470 769q0 34 23.5 57.5t57.5 23.5t58 -23.5t24 -57.5t-24 -58t-58 -24t-57.5 24t-23.5 58zM489 601h134v-479h-134v479zM670 499h55v-285q9 -73 91 -99q15 -5 31 -7h20q22 0 45.5 7t32.5 17l7 9l2 99q-40 -13 -65 -13q-31 0 -36 17l-4 13q0 3 -1 4v238h91v102h-91v93h-123 +v-93h-55v-102z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1232" +d="M15 800h185l9 -8h825l9 8h174v-900h-171v7h-855v-4h-176v897zM191 35v-80h855v74l-345 259l-79 -65l-86 70zM498 324l-307 252v-481zM622 438l347 298h-695zM739 319l307 -230v484z" /> + <glyph glyph-name="n" unicode="n" +d="M15 527l316 323v-123l301 -277l187 46l-195 -208l391 -438l-444 392l-188 -192l30 169l-255 316z" /> + <glyph glyph-name="Udieresis" unicode="Ü" +d="M115 -150q-41 0 -70.5 30t-29.5 70v800q0 40 29.5 70t70.5 30h800q41 0 70.5 -30t29.5 -70v-800q0 -40 -29.5 -70t-70.5 -30h-800zM303 138q88 -88 212 -88t212 88t88 212t-88 212t-212 88t-212 -88t-88 -212t88 -212zM315 350q0 82 59 141t141 59t141 -59t59 -141 +t-59 -141t-141 -59t-141 59t-59 141z" /> + <glyph glyph-name="atilde" unicode="ã" horiz-adv-x="1029" +d="M491 538q38 -111 88 -176t141 -117q63 7 116 7q178 0 178 -70q0 -9 -5 -24l-3 1q-4 -42 -67 -42q-103 0 -240 72q-221 -23 -389 -82q-147 -257 -235 -257q-15 0 -52 20q-8 8 -8 22q0 51 61 106q63 57 123 89l15 -22q-43 -31 -90 -82t-59 -90q87 27 265 379 +q67 135 103 261q-33 107 -33 202q0 115 47 115h20q4 0 12.5 -1.5t13 -4.5t9.5 -9q9 -11 9 -34q0 -15 -3 -28l-27 1q-1 26 -17 41q-12 -19 -12 -69q0 -38 9 -94q9 60 18 107l26 -3q-1 -149 -14 -218zM631 232q-103 73 -164 209q-35 -120 -134 -294q130 53 298 85zM819 197 +q91 -35 142 -35q15 0 22 3q0 32 -145 32h-19z" /> + </font> +</defs></svg>
@@ -0,0 +1,12 @@
+/*! + * Bootstrap v3.3.4 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/*! + * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=2b3bdc340744aeea5a18) + * Config saved to config.json and https://gist.github.com/2b3bdc340744aeea5a18 + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var i=t(this),n=i.data("bs.alert");n||i.data("bs.alert",n=new o(this)),"string"==typeof e&&n[e].call(i)})}var i='[data-dismiss="alert"]',o=function(e){t(e).on("click",i,this.close)};o.VERSION="3.3.2",o.TRANSITION_DURATION=150,o.prototype.close=function(e){function i(){a.detach().trigger("closed.bs.alert").remove()}var n=t(this),s=n.attr("data-target");s||(s=n.attr("href"),s=s&&s.replace(/.*(?=#[^\s]*$)/,""));var a=t(s);e&&e.preventDefault(),a.length||(a=n.closest(".alert")),a.trigger(e=t.Event("close.bs.alert")),e.isDefaultPrevented()||(a.removeClass("in"),t.support.transition&&a.hasClass("fade")?a.one("bsTransitionEnd",i).emulateTransitionEnd(o.TRANSITION_DURATION):i())};var n=t.fn.alert;t.fn.alert=e,t.fn.alert.Constructor=o,t.fn.alert.noConflict=function(){return t.fn.alert=n,this},t(document).on("click.bs.alert.data-api",i,o.prototype.close)}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.button"),s="object"==typeof e&&e;n||o.data("bs.button",n=new i(this,s)),"toggle"==e?n.toggle():e&&n.setState(e)})}var i=function(e,o){this.$element=t(e),this.options=t.extend({},i.DEFAULTS,o),this.isLoading=!1};i.VERSION="3.3.2",i.DEFAULTS={loadingText:"loading..."},i.prototype.setState=function(e){var i="disabled",o=this.$element,n=o.is("input")?"val":"html",s=o.data();e+="Text",null==s.resetText&&o.data("resetText",o[n]()),setTimeout(t.proxy(function(){o[n](null==s[e]?this.options[e]:s[e]),"loadingText"==e?(this.isLoading=!0,o.addClass(i).attr(i,i)):this.isLoading&&(this.isLoading=!1,o.removeClass(i).removeAttr(i))},this),0)},i.prototype.toggle=function(){var t=!0,e=this.$element.closest('[data-toggle="buttons"]');if(e.length){var i=this.$element.find("input");"radio"==i.prop("type")&&(i.prop("checked")&&this.$element.hasClass("active")?t=!1:e.find(".active").removeClass("active")),t&&i.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));t&&this.$element.toggleClass("active")};var o=t.fn.button;t.fn.button=e,t.fn.button.Constructor=i,t.fn.button.noConflict=function(){return t.fn.button=o,this},t(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(i){var o=t(i.target);o.hasClass("btn")||(o=o.closest(".btn")),e.call(o,"toggle"),i.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(e){t(e.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(e.type))})}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.carousel"),s=t.extend({},i.DEFAULTS,o.data(),"object"==typeof e&&e),a="string"==typeof e?e:s.slide;n||o.data("bs.carousel",n=new i(this,s)),"number"==typeof e?n.to(e):a?n[a]():s.interval&&n.pause().cycle()})}var i=function(e,i){this.$element=t(e),this.$indicators=this.$element.find(".carousel-indicators"),this.options=i,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",t.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",t.proxy(this.pause,this)).on("mouseleave.bs.carousel",t.proxy(this.cycle,this))};i.VERSION="3.3.2",i.TRANSITION_DURATION=600,i.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},i.prototype.keydown=function(t){if(!/input|textarea/i.test(t.target.tagName)){switch(t.which){case 37:this.prev();break;case 39:this.next();break;default:return}t.preventDefault()}},i.prototype.cycle=function(e){return e||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(t.proxy(this.next,this),this.options.interval)),this},i.prototype.getItemIndex=function(t){return this.$items=t.parent().children(".item"),this.$items.index(t||this.$active)},i.prototype.getItemForDirection=function(t,e){var i=this.getItemIndex(e),o="prev"==t&&0===i||"next"==t&&i==this.$items.length-1;if(o&&!this.options.wrap)return e;var n="prev"==t?-1:1,s=(i+n)%this.$items.length;return this.$items.eq(s)},i.prototype.to=function(t){var e=this,i=this.getItemIndex(this.$active=this.$element.find(".item.active"));return t>this.$items.length-1||0>t?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(t>i?"next":"prev",this.$items.eq(t))},i.prototype.pause=function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&t.support.transition&&(this.$element.trigger(t.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},i.prototype.next=function(){return this.sliding?void 0:this.slide("next")},i.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},i.prototype.slide=function(e,o){var n=this.$element.find(".item.active"),s=o||this.getItemForDirection(e,n),a=this.interval,r="next"==e?"left":"right",l=this;if(s.hasClass("active"))return this.sliding=!1;var h=s[0],d=t.Event("slide.bs.carousel",{relatedTarget:h,direction:r});if(this.$element.trigger(d),!d.isDefaultPrevented()){if(this.sliding=!0,a&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var p=t(this.$indicators.children()[this.getItemIndex(s)]);p&&p.addClass("active")}var c=t.Event("slid.bs.carousel",{relatedTarget:h,direction:r});return t.support.transition&&this.$element.hasClass("slide")?(s.addClass(e),s[0].offsetWidth,n.addClass(r),s.addClass(r),n.one("bsTransitionEnd",function(){s.removeClass([e,r].join(" ")).addClass("active"),n.removeClass(["active",r].join(" ")),l.sliding=!1,setTimeout(function(){l.$element.trigger(c)},0)}).emulateTransitionEnd(i.TRANSITION_DURATION)):(n.removeClass("active"),s.addClass("active"),this.sliding=!1,this.$element.trigger(c)),a&&this.cycle(),this}};var o=t.fn.carousel;t.fn.carousel=e,t.fn.carousel.Constructor=i,t.fn.carousel.noConflict=function(){return t.fn.carousel=o,this};var n=function(i){var o,n=t(this),s=t(n.attr("data-target")||(o=n.attr("href"))&&o.replace(/.*(?=#[^\s]+$)/,""));if(s.hasClass("carousel")){var a=t.extend({},s.data(),n.data()),r=n.attr("data-slide-to");r&&(a.interval=!1),e.call(s,a),r&&s.data("bs.carousel").to(r),i.preventDefault()}};t(document).on("click.bs.carousel.data-api","[data-slide]",n).on("click.bs.carousel.data-api","[data-slide-to]",n),t(window).on("load",function(){t('[data-ride="carousel"]').each(function(){var i=t(this);e.call(i,i.data())})})}(jQuery),+function(t){"use strict";function e(e){e&&3===e.which||(t(n).remove(),t(s).each(function(){var o=t(this),n=i(o),s={relatedTarget:this};n.hasClass("open")&&(n.trigger(e=t.Event("hide.bs.dropdown",s)),e.isDefaultPrevented()||(o.attr("aria-expanded","false"),n.removeClass("open").trigger("hidden.bs.dropdown",s)))}))}function i(e){var i=e.attr("data-target");i||(i=e.attr("href"),i=i&&/#[A-Za-z]/.test(i)&&i.replace(/.*(?=#[^\s]*$)/,""));var o=i&&t(i);return o&&o.length?o:e.parent()}function o(e){return this.each(function(){var i=t(this),o=i.data("bs.dropdown");o||i.data("bs.dropdown",o=new a(this)),"string"==typeof e&&o[e].call(i)})}var n=".dropdown-backdrop",s='[data-toggle="dropdown"]',a=function(e){t(e).on("click.bs.dropdown",this.toggle)};a.VERSION="3.3.2",a.prototype.toggle=function(o){var n=t(this);if(!n.is(".disabled, :disabled")){var s=i(n),a=s.hasClass("open");if(e(),!a){"ontouchstart"in document.documentElement&&!s.closest(".navbar-nav").length&&t('<div class="dropdown-backdrop"/>').insertAfter(t(this)).on("click",e);var r={relatedTarget:this};if(s.trigger(o=t.Event("show.bs.dropdown",r)),o.isDefaultPrevented())return;n.trigger("focus").attr("aria-expanded","true"),s.toggleClass("open").trigger("shown.bs.dropdown",r)}return!1}},a.prototype.keydown=function(e){if(/(38|40|27|32)/.test(e.which)&&!/input|textarea/i.test(e.target.tagName)){var o=t(this);if(e.preventDefault(),e.stopPropagation(),!o.is(".disabled, :disabled")){var n=i(o),a=n.hasClass("open");if(!a&&27!=e.which||a&&27==e.which)return 27==e.which&&n.find(s).trigger("focus"),o.trigger("click");var r=" li:not(.disabled):visible a",l=n.find('[role="menu"]'+r+', [role="listbox"]'+r);if(l.length){var h=l.index(e.target);38==e.which&&h>0&&h--,40==e.which&&h<l.length-1&&h++,~h||(h=0),l.eq(h).trigger("focus")}}}};var r=t.fn.dropdown;t.fn.dropdown=o,t.fn.dropdown.Constructor=a,t.fn.dropdown.noConflict=function(){return t.fn.dropdown=r,this},t(document).on("click.bs.dropdown.data-api",e).on("click.bs.dropdown.data-api",".dropdown form",function(t){t.stopPropagation()}).on("click.bs.dropdown.data-api",s,a.prototype.toggle).on("keydown.bs.dropdown.data-api",s,a.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',a.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',a.prototype.keydown)}(jQuery),+function(t){"use strict";function e(e,o){return this.each(function(){var n=t(this),s=n.data("bs.modal"),a=t.extend({},i.DEFAULTS,n.data(),"object"==typeof e&&e);s||n.data("bs.modal",s=new i(this,a)),"string"==typeof e?s[e](o):a.show&&s.show(o)})}var i=function(e,i){this.options=i,this.$body=t(document.body),this.$element=t(e),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,t.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};i.VERSION="3.3.2",i.TRANSITION_DURATION=300,i.BACKDROP_TRANSITION_DURATION=150,i.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},i.prototype.toggle=function(t){return this.isShown?this.hide():this.show(t)},i.prototype.show=function(e){var o=this,n=t.Event("show.bs.modal",{relatedTarget:e});this.$element.trigger(n),this.isShown||n.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',t.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){o.$element.one("mouseup.dismiss.bs.modal",function(e){t(e.target).is(o.$element)&&(o.ignoreBackdropClick=!0)})}),this.backdrop(function(){var n=t.support.transition&&o.$element.hasClass("fade");o.$element.parent().length||o.$element.appendTo(o.$body),o.$element.show().scrollTop(0),o.adjustDialog(),n&&o.$element[0].offsetWidth,o.$element.addClass("in").attr("aria-hidden",!1),o.enforceFocus();var s=t.Event("shown.bs.modal",{relatedTarget:e});n?o.$dialog.one("bsTransitionEnd",function(){o.$element.trigger("focus").trigger(s)}).emulateTransitionEnd(i.TRANSITION_DURATION):o.$element.trigger("focus").trigger(s)}))},i.prototype.hide=function(e){e&&e.preventDefault(),e=t.Event("hide.bs.modal"),this.$element.trigger(e),this.isShown&&!e.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),t(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),t.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",t.proxy(this.hideModal,this)).emulateTransitionEnd(i.TRANSITION_DURATION):this.hideModal())},i.prototype.enforceFocus=function(){t(document).off("focusin.bs.modal").on("focusin.bs.modal",t.proxy(function(t){this.$element[0]===t.target||this.$element.has(t.target).length||this.$element.trigger("focus")},this))},i.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",t.proxy(function(t){27==t.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},i.prototype.resize=function(){this.isShown?t(window).on("resize.bs.modal",t.proxy(this.handleUpdate,this)):t(window).off("resize.bs.modal")},i.prototype.hideModal=function(){var t=this;this.$element.hide(),this.backdrop(function(){t.$body.removeClass("modal-open"),t.resetAdjustments(),t.resetScrollbar(),t.$element.trigger("hidden.bs.modal")})},i.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},i.prototype.backdrop=function(e){var o=this,n=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var s=t.support.transition&&n;if(this.$backdrop=t('<div class="modal-backdrop '+n+'" />').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",t.proxy(function(t){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(t.target===t.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),s&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!e)return;s?this.$backdrop.one("bsTransitionEnd",e).emulateTransitionEnd(i.BACKDROP_TRANSITION_DURATION):e()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var a=function(){o.removeBackdrop(),e&&e()};t.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",a).emulateTransitionEnd(i.BACKDROP_TRANSITION_DURATION):a()}else e&&e()},i.prototype.handleUpdate=function(){this.adjustDialog()},i.prototype.adjustDialog=function(){var t=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},i.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},i.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth<t,this.scrollbarWidth=this.measureScrollbar()},i.prototype.setScrollbar=function(){var t=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",t+this.scrollbarWidth)},i.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},i.prototype.measureScrollbar=function(){var t=document.createElement("div");t.className="modal-scrollbar-measure",this.$body.append(t);var e=t.offsetWidth-t.clientWidth;return this.$body[0].removeChild(t),e};var o=t.fn.modal;t.fn.modal=e,t.fn.modal.Constructor=i,t.fn.modal.noConflict=function(){return t.fn.modal=o,this},t(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(i){var o=t(this),n=o.attr("href"),s=t(o.attr("data-target")||n&&n.replace(/.*(?=#[^\s]+$)/,"")),a=s.data("bs.modal")?"toggle":t.extend({remote:!/#/.test(n)&&n},s.data(),o.data());o.is("a")&&i.preventDefault(),s.one("show.bs.modal",function(t){t.isDefaultPrevented()||s.one("hidden.bs.modal",function(){o.is(":visible")&&o.trigger("focus")})}),e.call(s,a,this)})}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.tooltip"),s="object"==typeof e&&e;(n||!/destroy|hide/.test(e))&&(n||o.data("bs.tooltip",n=new i(this,s)),"string"==typeof e&&n[e]())})}var i=function(t,e){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.init("tooltip",t,e)};i.VERSION="3.3.2",i.TRANSITION_DURATION=150,i.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},i.prototype.init=function(e,i,o){if(this.enabled=!0,this.type=e,this.$element=t(i),this.options=this.getOptions(o),this.$viewport=this.options.viewport&&t(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var n=this.options.trigger.split(" "),s=n.length;s--;){var a=n[s];if("click"==a)this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this));else if("manual"!=a){var r="hover"==a?"mouseenter":"focusin",l="hover"==a?"mouseleave":"focusout";this.$element.on(r+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(l+"."+this.type,this.options.selector,t.proxy(this.leave,this))}}this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},i.prototype.getDefaults=function(){return i.DEFAULTS},i.prototype.getOptions=function(e){return e=t.extend({},this.getDefaults(),this.$element.data(),e),e.delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},i.prototype.getDelegateOptions=function(){var e={},i=this.getDefaults();return this._options&&t.each(this._options,function(t,o){i[t]!=o&&(e[t]=o)}),e},i.prototype.enter=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return i&&i.$tip&&i.$tip.is(":visible")?void(i.hoverState="in"):(i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),clearTimeout(i.timeout),i.hoverState="in",i.options.delay&&i.options.delay.show?void(i.timeout=setTimeout(function(){"in"==i.hoverState&&i.show()},i.options.delay.show)):i.show())},i.prototype.leave=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),clearTimeout(i.timeout),i.hoverState="out",i.options.delay&&i.options.delay.hide?void(i.timeout=setTimeout(function(){"out"==i.hoverState&&i.hide()},i.options.delay.hide)):i.hide()},i.prototype.show=function(){var e=t.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(e);var o=t.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(e.isDefaultPrevented()||!o)return;var n=this,s=this.tip(),a=this.getUID(this.type);this.setContent(),s.attr("id",a),this.$element.attr("aria-describedby",a),this.options.animation&&s.addClass("fade");var r="function"==typeof this.options.placement?this.options.placement.call(this,s[0],this.$element[0]):this.options.placement,l=/\s?auto?\s?/i,h=l.test(r);h&&(r=r.replace(l,"")||"top"),s.detach().css({top:0,left:0,display:"block"}).addClass(r).data("bs."+this.type,this),this.options.container?s.appendTo(this.options.container):s.insertAfter(this.$element);var d=this.getPosition(),p=s[0].offsetWidth,c=s[0].offsetHeight;if(h){var f=r,u=this.options.container?t(this.options.container):this.$element.parent(),g=this.getPosition(u);r="bottom"==r&&d.bottom+c>g.bottom?"top":"top"==r&&d.top-c<g.top?"bottom":"right"==r&&d.right+p>g.width?"left":"left"==r&&d.left-p<g.left?"right":r,s.removeClass(f).addClass(r)}var m=this.getCalculatedOffset(r,d,p,c);this.applyPlacement(m,r);var v=function(){var t=n.hoverState;n.$element.trigger("shown.bs."+n.type),n.hoverState=null,"out"==t&&n.leave(n)};t.support.transition&&this.$tip.hasClass("fade")?s.one("bsTransitionEnd",v).emulateTransitionEnd(i.TRANSITION_DURATION):v()}},i.prototype.applyPlacement=function(e,i){var o=this.tip(),n=o[0].offsetWidth,s=o[0].offsetHeight,a=parseInt(o.css("margin-top"),10),r=parseInt(o.css("margin-left"),10);isNaN(a)&&(a=0),isNaN(r)&&(r=0),e.top=e.top+a,e.left=e.left+r,t.offset.setOffset(o[0],t.extend({using:function(t){o.css({top:Math.round(t.top),left:Math.round(t.left)})}},e),0),o.addClass("in");var l=o[0].offsetWidth,h=o[0].offsetHeight;"top"==i&&h!=s&&(e.top=e.top+s-h);var d=this.getViewportAdjustedDelta(i,e,l,h);d.left?e.left+=d.left:e.top+=d.top;var p=/top|bottom/.test(i),c=p?2*d.left-n+l:2*d.top-s+h,f=p?"offsetWidth":"offsetHeight";o.offset(e),this.replaceArrow(c,o[0][f],p)},i.prototype.replaceArrow=function(t,e,i){this.arrow().css(i?"left":"top",50*(1-t/e)+"%").css(i?"top":"left","")},i.prototype.setContent=function(){var t=this.tip(),e=this.getTitle();t.find(".tooltip-inner")[this.options.html?"html":"text"](e),t.removeClass("fade in top bottom left right")},i.prototype.hide=function(e){function o(){"in"!=n.hoverState&&s.detach(),n.$element.removeAttr("aria-describedby").trigger("hidden.bs."+n.type),e&&e()}var n=this,s=t(this.$tip),a=t.Event("hide.bs."+this.type);return this.$element.trigger(a),a.isDefaultPrevented()?void 0:(s.removeClass("in"),t.support.transition&&s.hasClass("fade")?s.one("bsTransitionEnd",o).emulateTransitionEnd(i.TRANSITION_DURATION):o(),this.hoverState=null,this)},i.prototype.fixTitle=function(){var t=this.$element;(t.attr("title")||"string"!=typeof t.attr("data-original-title"))&&t.attr("data-original-title",t.attr("title")||"").attr("title","")},i.prototype.hasContent=function(){return this.getTitle()},i.prototype.getPosition=function(e){e=e||this.$element;var i=e[0],o="BODY"==i.tagName,n=i.getBoundingClientRect();null==n.width&&(n=t.extend({},n,{width:n.right-n.left,height:n.bottom-n.top}));var s=o?{top:0,left:0}:e.offset(),a={scroll:o?document.documentElement.scrollTop||document.body.scrollTop:e.scrollTop()},r=o?{width:t(window).width(),height:t(window).height()}:null;return t.extend({},n,a,r,s)},i.prototype.getCalculatedOffset=function(t,e,i,o){return"bottom"==t?{top:e.top+e.height,left:e.left+e.width/2-i/2}:"top"==t?{top:e.top-o,left:e.left+e.width/2-i/2}:"left"==t?{top:e.top+e.height/2-o/2,left:e.left-i}:{top:e.top+e.height/2-o/2,left:e.left+e.width}},i.prototype.getViewportAdjustedDelta=function(t,e,i,o){var n={top:0,left:0};if(!this.$viewport)return n;var s=this.options.viewport&&this.options.viewport.padding||0,a=this.getPosition(this.$viewport);if(/right|left/.test(t)){var r=e.top-s-a.scroll,l=e.top+s-a.scroll+o;r<a.top?n.top=a.top-r:l>a.top+a.height&&(n.top=a.top+a.height-l)}else{var h=e.left-s,d=e.left+s+i;h<a.left?n.left=a.left-h:d>a.width&&(n.left=a.left+a.width-d)}return n},i.prototype.getTitle=function(){var t,e=this.$element,i=this.options;return t=e.attr("data-original-title")||("function"==typeof i.title?i.title.call(e[0]):i.title)},i.prototype.getUID=function(t){do t+=~~(1e6*Math.random());while(document.getElementById(t));return t},i.prototype.tip=function(){return this.$tip=this.$tip||t(this.options.template)},i.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},i.prototype.enable=function(){this.enabled=!0},i.prototype.disable=function(){this.enabled=!1},i.prototype.toggleEnabled=function(){this.enabled=!this.enabled},i.prototype.toggle=function(e){var i=this;e&&(i=t(e.currentTarget).data("bs."+this.type),i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i))),i.tip().hasClass("in")?i.leave(i):i.enter(i)},i.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type)})};var o=t.fn.tooltip;t.fn.tooltip=e,t.fn.tooltip.Constructor=i,t.fn.tooltip.noConflict=function(){return t.fn.tooltip=o,this}}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.popover"),s="object"==typeof e&&e;(n||!/destroy|hide/.test(e))&&(n||o.data("bs.popover",n=new i(this,s)),"string"==typeof e&&n[e]())})}var i=function(t,e){this.init("popover",t,e)};if(!t.fn.tooltip)throw new Error("Popover requires tooltip.js");i.VERSION="3.3.2",i.DEFAULTS=t.extend({},t.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),i.prototype=t.extend({},t.fn.tooltip.Constructor.prototype),i.prototype.constructor=i,i.prototype.getDefaults=function(){return i.DEFAULTS},i.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),i=this.getContent();t.find(".popover-title")[this.options.html?"html":"text"](e),t.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof i?"html":"append":"text"](i),t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},i.prototype.hasContent=function(){return this.getTitle()||this.getContent()},i.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},i.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var o=t.fn.popover;t.fn.popover=e,t.fn.popover.Constructor=i,t.fn.popover.noConflict=function(){return t.fn.popover=o,this}}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.tab");n||o.data("bs.tab",n=new i(this)),"string"==typeof e&&n[e]()})}var i=function(e){this.element=t(e)};i.VERSION="3.3.2",i.TRANSITION_DURATION=150,i.prototype.show=function(){var e=this.element,i=e.closest("ul:not(.dropdown-menu)"),o=e.data("target");if(o||(o=e.attr("href"),o=o&&o.replace(/.*(?=#[^\s]*$)/,"")),!e.parent("li").hasClass("active")){var n=i.find(".active:last a"),s=t.Event("hide.bs.tab",{relatedTarget:e[0]}),a=t.Event("show.bs.tab",{relatedTarget:n[0]});if(n.trigger(s),e.trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){var r=t(o);this.activate(e.closest("li"),i),this.activate(r,r.parent(),function(){n.trigger({type:"hidden.bs.tab",relatedTarget:e[0]}),e.trigger({type:"shown.bs.tab",relatedTarget:n[0]})})}}},i.prototype.activate=function(e,o,n){function s(){a.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),e.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),r?(e[0].offsetWidth,e.addClass("in")):e.removeClass("fade"),e.parent(".dropdown-menu").length&&e.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),n&&n()}var a=o.find("> .active"),r=n&&t.support.transition&&(a.length&&a.hasClass("fade")||!!o.find("> .fade").length);a.length&&r?a.one("bsTransitionEnd",s).emulateTransitionEnd(i.TRANSITION_DURATION):s(),a.removeClass("in")};var o=t.fn.tab;t.fn.tab=e,t.fn.tab.Constructor=i,t.fn.tab.noConflict=function(){return t.fn.tab=o,this};var n=function(i){i.preventDefault(),e.call(t(this),"show")};t(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',n).on("click.bs.tab.data-api",'[data-toggle="pill"]',n)}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.affix"),s="object"==typeof e&&e;n||o.data("bs.affix",n=new i(this,s)),"string"==typeof e&&n[e]()})}var i=function(e,o){this.options=t.extend({},i.DEFAULTS,o),this.$target=t(this.options.target).on("scroll.bs.affix.data-api",t.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",t.proxy(this.checkPositionWithEventLoop,this)),this.$element=t(e),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};i.VERSION="3.3.2",i.RESET="affix affix-top affix-bottom",i.DEFAULTS={offset:0,target:window},i.prototype.getState=function(t,e,i,o){var n=this.$target.scrollTop(),s=this.$element.offset(),a=this.$target.height();if(null!=i&&"top"==this.affixed)return i>n?"top":!1;if("bottom"==this.affixed)return null!=i?n+this.unpin<=s.top?!1:"bottom":t-o>=n+a?!1:"bottom";var r=null==this.affixed,l=r?n:s.top,h=r?a:e;return null!=i&&i>=n?"top":null!=o&&l+h>=t-o?"bottom":!1},i.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(i.RESET).addClass("affix");var t=this.$target.scrollTop(),e=this.$element.offset();return this.pinnedOffset=e.top-t},i.prototype.checkPositionWithEventLoop=function(){setTimeout(t.proxy(this.checkPosition,this),1)},i.prototype.checkPosition=function(){if(this.$element.is(":visible")){var e=this.$element.height(),o=this.options.offset,n=o.top,s=o.bottom,a=t(document.body).height();"object"!=typeof o&&(s=n=o),"function"==typeof n&&(n=o.top(this.$element)),"function"==typeof s&&(s=o.bottom(this.$element));var r=this.getState(a,e,n,s);if(this.affixed!=r){null!=this.unpin&&this.$element.css("top","");var l="affix"+(r?"-"+r:""),h=t.Event(l+".bs.affix");if(this.$element.trigger(h),h.isDefaultPrevented())return;this.affixed=r,this.unpin="bottom"==r?this.getPinnedOffset():null,this.$element.removeClass(i.RESET).addClass(l).trigger(l.replace("affix","affixed")+".bs.affix")}"bottom"==r&&this.$element.offset({top:a-e-s})}};var o=t.fn.affix;t.fn.affix=e,t.fn.affix.Constructor=i,t.fn.affix.noConflict=function(){return t.fn.affix=o,this},t(window).on("load",function(){t('[data-spy="affix"]').each(function(){var i=t(this),o=i.data();o.offset=o.offset||{},null!=o.offsetBottom&&(o.offset.bottom=o.offsetBottom),null!=o.offsetTop&&(o.offset.top=o.offsetTop),e.call(i,o)})})}(jQuery),+function(t){"use strict";function e(e){var i,o=e.attr("data-target")||(i=e.attr("href"))&&i.replace(/.*(?=#[^\s]+$)/,"");return t(o)}function i(e){return this.each(function(){var i=t(this),n=i.data("bs.collapse"),s=t.extend({},o.DEFAULTS,i.data(),"object"==typeof e&&e);!n&&s.toggle&&/show|hide/.test(e)&&(s.toggle=!1),n||i.data("bs.collapse",n=new o(this,s)),"string"==typeof e&&n[e]()})}var o=function(e,i){this.$element=t(e),this.options=t.extend({},o.DEFAULTS,i),this.$trigger=t('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};o.VERSION="3.3.2",o.TRANSITION_DURATION=350,o.DEFAULTS={toggle:!0},o.prototype.dimension=function(){var t=this.$element.hasClass("width");return t?"width":"height"},o.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var e,n=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(n&&n.length&&(e=n.data("bs.collapse"),e&&e.transitioning))){var s=t.Event("show.bs.collapse");if(this.$element.trigger(s),!s.isDefaultPrevented()){n&&n.length&&(i.call(n,"hide"),e||n.data("bs.collapse",null));var a=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[a](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var r=function(){this.$element.removeClass("collapsing").addClass("collapse in")[a](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!t.support.transition)return r.call(this);var l=t.camelCase(["scroll",a].join("-"));this.$element.one("bsTransitionEnd",t.proxy(r,this)).emulateTransitionEnd(o.TRANSITION_DURATION)[a](this.$element[0][l])}}}},o.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var e=t.Event("hide.bs.collapse");if(this.$element.trigger(e),!e.isDefaultPrevented()){var i=this.dimension();this.$element[i](this.$element[i]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var n=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return t.support.transition?void this.$element[i](0).one("bsTransitionEnd",t.proxy(n,this)).emulateTransitionEnd(o.TRANSITION_DURATION):n.call(this)}}},o.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},o.prototype.getParent=function(){return t(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(t.proxy(function(i,o){var n=t(o); +this.addAriaAndCollapsedClass(e(n),n)},this)).end()},o.prototype.addAriaAndCollapsedClass=function(t,e){var i=t.hasClass("in");t.attr("aria-expanded",i),e.toggleClass("collapsed",!i).attr("aria-expanded",i)};var n=t.fn.collapse;t.fn.collapse=i,t.fn.collapse.Constructor=o,t.fn.collapse.noConflict=function(){return t.fn.collapse=n,this},t(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(o){var n=t(this);n.attr("data-target")||o.preventDefault();var s=e(n),a=s.data("bs.collapse"),r=a?"toggle":n.data();i.call(s,r)})}(jQuery),+function(t){"use strict";function e(i,o){this.$body=t(document.body),this.$scrollElement=t(t(i).is(document.body)?window:i),this.options=t.extend({},e.DEFAULTS,o),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",t.proxy(this.process,this)),this.refresh(),this.process()}function i(i){return this.each(function(){var o=t(this),n=o.data("bs.scrollspy"),s="object"==typeof i&&i;n||o.data("bs.scrollspy",n=new e(this,s)),"string"==typeof i&&n[i]()})}e.VERSION="3.3.2",e.DEFAULTS={offset:10},e.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},e.prototype.refresh=function(){var e=this,i="offset",o=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),t.isWindow(this.$scrollElement[0])||(i="position",o=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var e=t(this),n=e.data("target")||e.attr("href"),s=/^#./.test(n)&&t(n);return s&&s.length&&s.is(":visible")&&[[s[i]().top+o,n]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){e.offsets.push(this[0]),e.targets.push(this[1])})},e.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),o=this.options.offset+i-this.$scrollElement.height(),n=this.offsets,s=this.targets,a=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),e>=o)return a!=(t=s[s.length-1])&&this.activate(t);if(a&&e<n[0])return this.activeTarget=null,this.clear();for(t=n.length;t--;)a!=s[t]&&e>=n[t]&&(void 0===n[t+1]||e<=n[t+1])&&this.activate(s[t])},e.prototype.activate=function(e){this.activeTarget=e,this.clear();var i=this.selector+'[data-target="'+e+'"],'+this.selector+'[href="'+e+'"]',o=t(i).parents("li").addClass("active");o.parent(".dropdown-menu").length&&(o=o.closest("li.dropdown").addClass("active")),o.trigger("activate.bs.scrollspy")},e.prototype.clear=function(){t(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var o=t.fn.scrollspy;t.fn.scrollspy=i,t.fn.scrollspy.Constructor=e,t.fn.scrollspy.noConflict=function(){return t.fn.scrollspy=o,this},t(window).on("load.bs.scrollspy.data-api",function(){t('[data-spy="scroll"]').each(function(){var e=t(this);i.call(e,e.data())})})}(jQuery),+function(t){"use strict";function e(){var t=document.createElement("bootstrap"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var i in e)if(void 0!==t.style[i])return{end:e[i]};return!1}t.fn.emulateTransitionEnd=function(e){var i=!1,o=this;t(this).one("bsTransitionEnd",function(){i=!0});var n=function(){i||t(o).trigger(t.support.transition.end)};return setTimeout(n,e),this},t(function(){t.support.transition=e(),t.support.transition&&(t.event.special.bsTransitionEnd={bindType:t.support.transition.end,delegateType:t.support.transition.end,handle:function(e){return t(e.target).is(this)?e.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery);
@@ -0,0 +1,42 @@
+function format_date(d){ + return $.timeago(Date.parse(d)); +} + +function get_json_data(uri, options){ + $.getJSON(uri, + function(data){ + var list = $("<ul></ul>"); + for (var i=0; i<options.max; i++){ + var item = github_entry(data.commits[i], options.repo) + item.appendTo(list); + } + list.appendTo(options.element).fadeIn(1000); + }); +} + +function github_entry(commit, repo){ + var it = $("<li></li>").addClass('commit-data'); + var dt = $("<span></span>").addClass('commit-date').html(format_date(commit.committed_date)+" · "); + var link = $("<span></span><br />").addClass('commit-link').append($('<a></a>').attr('href', "https://github.com" + commit.url).html("» VIEW")); + var tx = $("<span></span>").addClass('commit-text').html(commit.message + .replace(/(closes) #(\d+)/ig, "$1 <a href='http://github.com/h3rald/"+repo+"/issues/#issue/$2'>#$2</a>")+"<br />"); + it.append(tx); + it.append(dt); + it.append(link); + return it +} + + +/* +http://github.com/api/v2/json/commits/list/h3rald/concatenative/master +http://github.com/api/v2/json/commits/list/h3rald/redbook/master +http://github.com/api/v2/json/commits/list/h3rald/glyph/master +http://github.com/api/v2/json/commits/list/h3rald/stash/master +http://github.com/api/v2/json/commits/list/h3rald/rawline/master +http://github.com/api/v2/json/commits/list/h3rald/h3rald/master +http://github.com/api/v2/json/commits/list/h3rald/ruby-compendium/master +*/ +function display_commits(max, repo) +{ + get_json_data("/data/"+repo+".json", {max: max, element: '#github', repo: repo}) +}
@@ -0,0 +1,3002 @@
+/** @license Hyphenator 4.3.0 - client side hyphenation for webbrowsers + * Copyright (C) 2014 Mathias Nater, Zürich (mathiasnater at gmail dot com) + * Project and Source hosted on http://code.google.com/p/hyphenator/ + * + * This JavaScript code is free software: you can redistribute + * it and/or modify it under the terms of the GNU Lesser + * General Public License (GNU LGPL) as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) + * any later version. The code is distributed WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU GPL for more details. + * + * As additional permission under GNU GPL version 3 section 7, you + * may distribute non-source (e.g., minimized or compacted) forms of + * that code without the copy of the GNU GPL normally required by + * section 4, provided you include this license notice and a URL + * through which recipients can access the Corresponding Source. + * + * + * Hyphenator.js contains code from Bram Steins hypher.js-Project: + * https://github.com/bramstein/Hypher + * + * Code from this project is marked in the source and belongs + * to the following license: + * + * Copyright (c) 2011, Bram Stein + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO + * EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Comments are jsdoc3 formatted. See http://usejsdoc.org + * Use mergeAndPack.html to get rid of the comments and to reduce the file size of this script! + */ + +/* The following comment is for JSLint: */ +/*jslint browser: true */ + +/** + * @desc Provides all functionality to do hyphenation, except the patterns that are loaded externally + * @global + * @namespace Hyphenator + * @author Mathias Nater, <mathias@mnn.ch> + * @version X.Y.Z + * @example + * <script src = "Hyphenator.js" type = "text/javascript"></script> + * <script type = "text/javascript"> + * Hyphenator.run(); + * </script> + */ +var Hyphenator = (function (window) { + 'use strict'; + + /** + * @member Hyphenator~contextWindow + * @access private + * @desc + * contextWindow stores the window for the actual document to be hyphenated. + * If there are frames this will change. + * So use contextWindow instead of window! + */ + var contextWindow = window, + + + /** + * @member {Object.<string, Hyphenator~supportedLangs~supportedLanguage>} Hyphenator~supportedLangs + * @desc + * A generated key-value object that stores supported languages and meta data. + * The key is the {@link http://tools.ietf.org/rfc/bcp/bcp47.txt bcp47} code of the language and the value + * is an object of type {@link Hyphenator~supportedLangs~supportedLanguage} + * @namespace Hyphenator~supportedLangs + * @access private + * //Check if language lang is supported: + * if (supportedLangs.hasOwnProperty(lang)) + */ + supportedLangs = (function () { + /** + * @typedef {Object} Hyphenator~supportedLangs~supportedLanguage + * @property {string} file - The name of the pattern file + * @property {number} script - The script type of the language (e.g. 'latin' for english), this type is abbreviated by an id + * @property {string} prompt - The sentence prompted to the user, if Hyphenator.js doesn't find a language hint + */ + + /** + * @lends Hyphenator~supportedLangs + */ + var r = {}, + /** + * @method Hyphenator~supportedLangs~o + * @desc + * Sets a value of Hyphenator~supportedLangs + * @access protected + * @param {string} code The {@link http://tools.ietf.org/rfc/bcp/bcp47.txt bcp47} code of the language + * @param {string} file The name of the pattern file + * @param {Number} script A shortcut for a specific script: latin:0, cyrillic: 1, arabic: 2, armenian:3, bengali: 4, devangari: 5, greek: 6 + * gujarati: 7, kannada: 8, lao: 9, malayalam: 10, oriya: 11, persian: 12, punjabi: 13, tamil: 14, telugu: 15 + * @param {string} prompt The sentence prompted to the user, if Hyphenator.js doesn't find a language hint + */ + o = function (code, file, script, prompt) { + r[code] = {'file': file, 'script': script, 'prompt': prompt}; + }; + + o('be', 'be.js', 1, 'Мова гэтага сайта не можа быць вызначаны аўтаматычна. Калі ласка пакажыце мову:'); + o('ca', 'ca.js', 0, ''); + o('cs', 'cs.js', 0, 'Jazyk této internetové stránky nebyl automaticky rozpoznán. Určete prosím její jazyk:'); + o('da', 'da.js', 0, 'Denne websides sprog kunne ikke bestemmes. Angiv venligst sprog:'); + o('bn', 'bn.js', 4, ''); + o('de', 'de.js', 0, 'Die Sprache dieser Webseite konnte nicht automatisch bestimmt werden. Bitte Sprache angeben:'); + o('el', 'el-monoton.js', 6, ''); + o('el-monoton', 'el-monoton.js', 6, ''); + o('el-polyton', 'el-polyton.js', 6, ''); + o('en', 'en-us.js', 0, 'The language of this website could not be determined automatically. Please indicate the main language:'); + o('en-gb', 'en-gb.js', 0, 'The language of this website could not be determined automatically. Please indicate the main language:'); + o('en-us', 'en-us.js', 0, 'The language of this website could not be determined automatically. Please indicate the main language:'); + o('eo', 'eo.js', 0, 'La lingvo de ĉi tiu retpaĝo ne rekoneblas aŭtomate. Bonvolu indiki ĝian ĉeflingvon:'); + o('es', 'es.js', 0, 'El idioma del sitio no pudo determinarse autom%E1ticamente. Por favor, indique el idioma principal:'); + o('et', 'et.js', 0, 'Veebilehe keele tuvastamine ebaõnnestus, palun valige kasutatud keel:'); + o('fi', 'fi.js', 0, 'Sivun kielt%E4 ei tunnistettu automaattisesti. M%E4%E4rit%E4 sivun p%E4%E4kieli:'); + o('fr', 'fr.js', 0, 'La langue de ce site n%u2019a pas pu %EAtre d%E9termin%E9e automatiquement. Veuillez indiquer une langue, s.v.p.%A0:'); + o('grc', 'grc.js', 6, ''); + o('gu', 'gu.js', 7, ''); + o('hi', 'hi.js', 5, ''); + o('hu', 'hu.js', 0, 'A weboldal nyelvét nem sikerült automatikusan megállapítani. Kérem adja meg a nyelvet:'); + o('hy', 'hy.js', 3, 'Չհաջողվեց հայտնաբերել այս կայքի լեզուն։ Խնդրում ենք նշեք հիմնական լեզուն՝'); + o('it', 'it.js', 0, 'Lingua del sito sconosciuta. Indicare una lingua, per favore:'); + o('kn', 'kn.js', 8, 'ಜಾಲ ತಾಣದ ಭಾಷೆಯನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ. ದಯವಿಟ್ಟು ಮುಖ್ಯ ಭಾಷೆಯನ್ನು ಸೂಚಿಸಿ:'); + o('la', 'la.js', 0, ''); + o('lt', 'lt.js', 0, 'Nepavyko automatiškai nustatyti šios svetainės kalbos. Prašome įvesti kalbą:'); + o('lv', 'lv.js', 0, 'Šīs lapas valodu nevarēja noteikt automātiski. Lūdzu norādiet pamata valodu:'); + o('ml', 'ml.js', 10, 'ഈ വെ%u0D2C%u0D4D%u200Cസൈറ്റിന്റെ ഭാഷ കണ്ടുപിടിയ്ക്കാ%u0D28%u0D4D%u200D കഴിഞ്ഞില്ല. ഭാഷ ഏതാണെന്നു തിരഞ്ഞെടുക്കുക:'); + o('nb', 'nb-no.js', 0, 'Nettstedets språk kunne ikke finnes automatisk. Vennligst oppgi språk:'); + o('no', 'nb-no.js', 0, 'Nettstedets språk kunne ikke finnes automatisk. Vennligst oppgi språk:'); + o('nb-no', 'nb-no.js', 0, 'Nettstedets språk kunne ikke finnes automatisk. Vennligst oppgi språk:'); + o('nl', 'nl.js', 0, 'De taal van deze website kan niet automatisch worden bepaald. Geef de hoofdtaal op:'); + o('or', 'or.js', 11, ''); + o('pa', 'pa.js', 13, ''); + o('pl', 'pl.js', 0, 'Języka tej strony nie można ustalić automatycznie. Proszę wskazać język:'); + o('pt', 'pt.js', 0, 'A língua deste site não pôde ser determinada automaticamente. Por favor indique a língua principal:'); + o('ru', 'ru.js', 1, 'Язык этого сайта не может быть определен автоматически. Пожалуйста укажите язык:'); + o('sk', 'sk.js', 0, ''); + o('sl', 'sl.js', 0, 'Jezika te spletne strani ni bilo mogoče samodejno določiti. Prosim navedite jezik:'); + o('sr-cyrl', 'sr-cyrl.js', 1, 'Језик овог сајта није детектован аутоматски. Молим вас наведите језик:'); + o('sr-latn', 'sr-latn.js', 0, 'Jezika te spletne strani ni bilo mogoče samodejno določiti. Prosim navedite jezik:'); + o('sv', 'sv.js', 0, 'Spr%E5ket p%E5 den h%E4r webbplatsen kunde inte avg%F6ras automatiskt. V%E4nligen ange:'); + o('ta', 'ta.js', 14, ''); + o('te', 'te.js', 15, ''); + o('tr', 'tr.js', 0, 'Bu web sitesinin dili otomatik olarak tespit edilememiştir. Lütfen dökümanın dilini seçiniz%A0:'); + o('uk', 'uk.js', 1, 'Мова цього веб-сайту не може бути визначена автоматично. Будь ласка, вкажіть головну мову:'); + o('ro', 'ro.js', 0, 'Limba acestui sit nu a putut fi determinată automat. Alege limba principală:'); + + return r; + }()), + + + /** + * @member {string} Hyphenator~basePath + * @desc + * A string storing the basepath from where Hyphenator.js was loaded. + * This is used to load the pattern files. + * The basepath is determined dynamically by searching all script-tags for Hyphenator.js + * If the path cannot be determined {@link http://hyphenator.googlecode.com/svn/trunk/} is used as fallback. + * @access private + * @see {@link Hyphenator~loadPatterns} + */ + basePath = (function () { + var s = contextWindow.document.getElementsByTagName('script'), i = 0, p, src, t = s[i], r = ''; + while (!!t) { + if (!!t.src) { + src = t.src; + p = src.indexOf('Hyphenator.js'); + if (p !== -1) { + r = src.substring(0, p); + } + } + i += 1; + t = s[i]; + } + return !!r ? r : '//hyphenator.googlecode.com/svn/trunk/'; + }()), + + /** + * @member {boolean} Hyphenator~isLocal + * @access private + * @desc + * isLocal is true, if Hyphenator is loaded from the same domain, as the webpage, but false, if + * it's loaded from an external source (i.e. directly from google.code) + */ + isLocal = (function () { + var re = false; + if (window.location.href.indexOf(basePath) !== -1) { + re = true; + } + return re; + }()), + + /** + * @member {boolean} Hyphenator~documentLoaded + * @access private + * @desc + * documentLoaded is true, when the DOM has been loaded. This is set by {@link Hyphenator~runWhenLoaded} + */ + documentLoaded = false, + + /** + * @member {boolean} Hyphenator~persistentConfig + * @access private + * @desc + * if persistentConfig is set to true (defaults to false), config options and the state of the + * toggleBox are stored in DOM-storage (according to the storage-setting). So they haven't to be + * set for each page. + * @default false + * @see {@link Hyphenator.config} + */ + persistentConfig = false, + + /** + * @member {boolean} Hyphenator~doFrames + * @access private + * @desc + * switch to control if frames/iframes should be hyphenated, too. + * defaults to false (frames are a bag of hurt!) + * @default false + * @see {@link Hyphenator.config} + */ + doFrames = false, + + /** + * @member {Object.<string,boolean>} Hyphenator~dontHyphenate + * @desc + * A key-value object containing all html-tags whose content should not be hyphenated + * @access private + */ + dontHyphenate = {'video': true, 'audio': true, 'script': true, 'code': true, 'pre': true, 'img': true, 'br': true, 'samp': true, 'kbd': true, 'var': true, 'abbr': true, 'acronym': true, 'sub': true, 'sup': true, 'button': true, 'option': true, 'label': true, 'textarea': true, 'input': true, 'math': true, 'svg': true, 'style': true}, + + /** + * @member {boolean} Hyphenator~enableCache + * @desc + * A variable to set if caching is enabled or not + * @default true + * @access private + * @see {@link Hyphenator.config} + */ + enableCache = true, + + /** + * @member {string} Hyphenator~storageType + * @desc + * A variable to define what html5-DOM-Storage-Method is used ('none', 'local' or 'session') + * @default 'local' + * @access private + * @see {@link Hyphenator.config} + */ + storageType = 'local', + + /** + * @member {Object|undefined} Hyphenator~storage + * @desc + * An alias to the storage defined in storageType. This is set by {@link Hyphenator~createStorage}. + * Set by {@link Hyphenator.run} + * @default null + * @access private + * @see {@link Hyphenator~createStorage} + */ + storage, + + /** + * @member {boolean} Hyphenator~enableReducedPatternSet + * @desc + * A variable to set if storing the used patterns is set + * @default false + * @access private + * @see {@link Hyphenator.config} + * @see {@link Hyphenator.getRedPatternSet} + */ + enableReducedPatternSet = false, + + /** + * @member {boolean} Hyphenator~enableRemoteLoading + * @desc + * A variable to set if pattern files should be loaded remotely or not + * @default true + * @access private + * @see {@link Hyphenator.config} + */ + enableRemoteLoading = true, + + /** + * @member {boolean} Hyphenator~displayToggleBox + * @desc + * A variable to set if the togglebox should be displayed or not + * @default false + * @access private + * @see {@link Hyphenator.config} + */ + displayToggleBox = false, + + /** + * @method Hyphenator~onError + * @desc + * A function that can be called upon an error. + * @see {@link Hyphenator.config} + * @access private + */ + onError = function (e) { + window.alert("Hyphenator.js says:\n\nAn Error occurred:\n" + e.message); + }, + + /** + * @method Hyphenator~onWarning + * @desc + * A function that can be called upon a warning. + * @see {@link Hyphenator.config} + * @access private + */ + onWarning = function (e) { + window.console.log(e.message); + }, + + /** + * @method Hyphenator~createElem + * @desc + * A function alias to document.createElementNS or document.createElement + * @access private + */ + createElem = function (tagname, context) { + context = context || contextWindow; + var el; + if (window.document.createElementNS) { + el = context.document.createElementNS('http://www.w3.org/1999/xhtml', tagname); + } else if (window.document.createElement) { + el = context.document.createElement(tagname); + } + return el; + }, + + /** + * @member {boolean} Hyphenator~css3 + * @desc + * A variable to set if css3 hyphenation should be used + * @default false + * @access private + * @see {@link Hyphenator.config} + */ + css3 = false, + + /** + * @typedef {Object} Hyphenator~css3_hsupport + * @property {boolean} support - if css3-hyphenation is supported + * @property {string} property - the css property name to access hyphen-settings (e.g. -webkit-hyphens) + * @property {Object.<string, boolean>} supportedBrowserLangs - an object caching tested languages + * @property {function} checkLangSupport - a method that checks if the browser supports a requested language + */ + + /** + * @member {Hyphenator~css3_h9n} Hyphenator~css3_h9n + * @desc + * A generated object containing information for CSS3-hyphenation support + * This is set by {@link Hyphenator~css3_gethsupport} + * @default undefined + * @access private + * @see {@link Hyphenator~css3_gethsupport} + * @example + * //Check if browser supports a language + * css3_h9n.checkLangSupport(<lang>) + */ + css3_h9n, + + /** + * @method Hyphenator~css3_gethsupport + * @desc + * This function sets {@link Hyphenator~css3_h9n} for the current UA + * @type function + * @access private + * @see Hyphenator~css3_h9n + */ + css3_gethsupport = function () { + var s, + createLangSupportChecker = function (prefix) { + var testStrings = [ + //latin: 0 + 'aabbccddeeffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz', + //cyrillic: 1 + 'абвгдеёжзийклмнопрстуфхцчшщъыьэюя', + //arabic: 2 + 'أبتثجحخدذرزسشصضطظعغفقكلمنهوي', + //armenian: 3 + 'աբգդեզէըթժիլխծկհձղճմյնշոչպջռսվտրցւփքօֆ', + //bengali: 4 + 'ঁংঃঅআইঈউঊঋঌএঐওঔকখগঘঙচছজঝঞটঠডঢণতথদধনপফবভমযরলশষসহ়ঽািীুূৃৄেৈোৌ্ৎৗড়ঢ়য়ৠৡৢৣ', + //devangari: 5 + 'ँंःअआइईउऊऋऌएऐओऔकखगघङचछजझञटठडढणतथदधनपफबभमयरलळवशषसहऽािीुूृॄेैोौ्॒॑ॠॡॢॣ', + //greek: 6 + 'αβγδεζηθικλμνξοπρσςτυφχψω', + //gujarati: 7 + 'બહઅઆઇઈઉઊઋૠએઐઓઔાિીુૂૃૄૢૣેૈોૌકખગઘઙચછજઝઞટઠડઢણતથદધનપફસભમયરલળવશષ', + //kannada: 8 + 'ಂಃಅಆಇಈಉಊಋಌಎಏಐಒಓಔಕಖಗಘಙಚಛಜಝಞಟಠಡಢಣತಥದಧನಪಫಬಭಮಯರಱಲಳವಶಷಸಹಽಾಿೀುೂೃೄೆೇೈೊೋೌ್ೕೖೞೠೡ', + //lao: 9 + 'ກຂຄງຈຊຍດຕຖທນບປຜຝພຟມຢຣລວສຫອຮະັາິີຶືຸູົຼເແໂໃໄ່້໊໋ໜໝ', + //malayalam: 10 + 'ംഃഅആഇഈഉഊഋഌഎഏഐഒഓഔകഖഗഘങചഛജഝഞടഠഡഢണതഥദധനപഫബഭമയരറലളഴവശഷസഹാിീുൂൃെേൈൊോൌ്ൗൠൡൺൻർൽൾൿ', + //oriya: 11 + 'ଁଂଃଅଆଇଈଉଊଋଌଏଐଓଔକଖଗଘଙଚଛଜଝଞଟଠଡଢଣତଥଦଧନପଫବଭମଯରଲଳଵଶଷସହାିୀୁୂୃେୈୋୌ୍ୗୠୡ', + //persian: 12 + 'أبتثجحخدذرزسشصضطظعغفقكلمنهوي', + //punjabi: 13 + 'ਁਂਃਅਆਇਈਉਊਏਐਓਔਕਖਗਘਙਚਛਜਝਞਟਠਡਢਣਤਥਦਧਨਪਫਬਭਮਯਰਲਲ਼ਵਸ਼ਸਹਾਿੀੁੂੇੈੋੌ੍ੰੱ', + //tamil: 14 + 'ஃஅஆஇஈஉஊஎஏஐஒஓஔகஙசஜஞடணதநனபமயரறலளழவஷஸஹாிீுூெேைொோௌ்ௗ', + //telugu: 15 + 'ఁంఃఅఆఇఈఉఊఋఌఎఏఐఒఓఔకఖగఘఙచఛజఝఞటఠడఢణతథదధనపఫబభమయరఱలళవశషసహాిీుూృౄెేైొోౌ్ౕౖౠౡ' + ], + f = function (lang) { + var shadow, + computedHeight, + bdy, + r = false; + + //check if lang has already been tested + if (this.supportedBrowserLangs.hasOwnProperty(lang)) { + r = this.supportedBrowserLangs[lang]; + } else if (supportedLangs.hasOwnProperty(lang)) { + //create and append shadow-test-element + bdy = window.document.getElementsByTagName('body')[0]; + shadow = createElem('div', window); + shadow.id = 'Hyphenator_LanguageChecker'; + shadow.style.width = '5em'; + shadow.style[prefix] = 'auto'; + shadow.style.hyphens = 'auto'; + shadow.style.fontSize = '12px'; + shadow.style.lineHeight = '12px'; + shadow.style.visibility = 'hidden'; + shadow.lang = lang; + shadow.style['-webkit-locale'] = "'" + lang + "'"; + shadow.innerHTML = testStrings[supportedLangs[lang].script]; + bdy.appendChild(shadow); + //measure its height + computedHeight = shadow.offsetHeight; + //remove shadow element + bdy.removeChild(shadow); + r = (computedHeight > 12) ? true : false; + this.supportedBrowserLangs[lang] = r; + } else { + r = false; + } + return r; + }; + return f; + }, + r = { + support: false, + supportedBrowserLangs: {}, + property: '', + checkLangSupport: {} + }; + + if (window.getComputedStyle) { + s = window.getComputedStyle(window.document.getElementsByTagName('body')[0], null); + } else { + //ancient Browsers don't support CSS3 anyway + css3_h9n = r; + return; + } + + if (s.hyphens !== undefined) { + r.support = true; + r.property = 'hyphens'; + r.checkLangSupport = createLangSupportChecker('hyphens'); + } else if (s['-webkit-hyphens'] !== undefined) { + r.support = true; + r.property = '-webkit-hyphens'; + r.checkLangSupport = createLangSupportChecker('-webkit-hyphens'); + } else if (s.MozHyphens !== undefined) { + r.support = true; + r.property = '-moz-hyphens'; + r.checkLangSupport = createLangSupportChecker('MozHyphens'); + } else if (s['-ms-hyphens'] !== undefined) { + r.support = true; + r.property = '-ms-hyphens'; + r.checkLangSupport = createLangSupportChecker('-ms-hyphens'); + } + css3_h9n = r; + }, + + /** + * @member {string} Hyphenator~hyphenateClass + * @desc + * A string containing the css-class-name for the hyphenate class + * @default 'hyphenate' + * @access private + * @example + * <p class = "hyphenate">Text</p> + * @see {@link Hyphenator.config} + */ + hyphenateClass = 'hyphenate', + + /** + * @member {string} Hyphenator~urlHyphenateClass + * @desc + * A string containing the css-class-name for the urlhyphenate class + * @default 'urlhyphenate' + * @access private + * @example + * <p class = "urlhyphenate">Text</p> + * @see {@link Hyphenator.config} + */ + urlHyphenateClass = 'urlhyphenate', + + /** + * @member {string} Hyphenator~classPrefix + * @desc + * A string containing a unique className prefix to be used + * whenever Hyphenator sets a CSS-class + * @access private + */ + classPrefix = 'Hyphenator' + Math.round(Math.random() * 1000), + + /** + * @member {string} Hyphenator~hideClass + * @desc + * The name of the class that hides elements + * @access private + */ + hideClass = classPrefix + 'hide', + + /** + * @member {RegExp} Hyphenator~hideClassRegExp + * @desc + * RegExp to remove hideClass from a list of classes + * @access private + */ + hideClassRegExp = new RegExp("\\s?\\b" + hideClass + "\\b", "g"), + + /** + * @member {string} Hyphenator~hideClass + * @desc + * The name of the class that unhides elements + * @access private + */ + unhideClass = classPrefix + 'unhide', + + /** + * @member {RegExp} Hyphenator~hideClassRegExp + * @desc + * RegExp to remove unhideClass from a list of classes + * @access private + */ + unhideClassRegExp = new RegExp("\\s?\\b" + unhideClass + "\\b", "g"), + + /** + * @member {string} Hyphenator~css3hyphenateClass + * @desc + * The name of the class that hyphenates elements with css3 + * @access private + */ + css3hyphenateClass = classPrefix + 'css3hyphenate', + + /** + * @member {CSSEdit} Hyphenator~css3hyphenateClass + * @desc + * The var where CSSEdit class is stored + * @access private + */ + css3hyphenateClassHandle, + + /** + * @member {string} Hyphenator~dontHyphenateClass + * @desc + * A string containing the css-class-name for elements that should not be hyphenated + * @default 'donthyphenate' + * @access private + * @example + * <p class = "donthyphenate">Text</p> + * @see {@link Hyphenator.config} + */ + dontHyphenateClass = 'donthyphenate', + + /** + * @member {number} Hyphenator~min + * @desc + * A number wich indicates the minimal length of words to hyphenate. + * @default 6 + * @access private + * @see {@link Hyphenator.config} + */ + min = 6, + + /** + * @member {number} Hyphenator~orphanControl + * @desc + * Control how the last words of a line are handled: + * level 1 (default): last word is hyphenated + * level 2: last word is not hyphenated + * level 3: last word is not hyphenated and last space is non breaking + * @default 1 + * @access private + */ + orphanControl = 1, + + /** + * @member {boolean} Hyphenator~isBookmarklet + * @desc + * True if Hyphanetor runs as bookmarklet. + * @access private + */ + isBookmarklet = (function () { + var loc = null, + re = false, + scripts = contextWindow.document.getElementsByTagName('script'), + i = 0, + l = scripts.length; + while (!re && i < l) { + loc = scripts[i].getAttribute('src'); + if (!!loc && loc.indexOf('Hyphenator.js?bm=true') !== -1) { + re = true; + } + i += 1; + } + return re; + }()), + + /** + * @member {string|null} Hyphenator~mainLanguage + * @desc + * The general language of the document. In contrast to {@link Hyphenator~defaultLanguage}, + * mainLanguage is defined by the client (i.e. by the html or by a prompt). + * @access private + * @see {@link Hyphenator~autoSetMainLanguage} + */ + mainLanguage = null, + + /** + * @member {string|null} Hyphenator~defaultLanguage + * @desc + * The language defined by the developper. This language setting is defined by a config option. + * It is overwritten by any html-lang-attribute and only taken in count, when no such attribute can + * be found (i.e. just before the prompt). + * @access private + * @see {@link Hyphenator.config} + * @see {@link Hyphenator~autoSetMainLanguage} + */ + defaultLanguage = '', + + /** + * @member {ElementCollection} Hyphenator~elements + * @desc + * A class representing all elements (of type Element) that have to be hyphenated. This var is filled by + * {@link Hyphenator~gatherDocumentInfos} + * @access private + */ + elements = (function () { + /** + * @constructor Hyphenator~elements~ElementCollection~Element + * @desc represents a DOM Element with additional information + * @access private + */ + var Element = function (element) { + /** + * @member {Object} Hyphenator~elements~ElementCollection~Element~element + * @desc A DOM Element + * @access protected + */ + this.element = element; + /** + * @member {boolean} Hyphenator~elements~ElementCollection~Element~hyphenated + * @desc Marks if the element has been hyphenated + * @access protected + */ + this.hyphenated = false; + /** + * @member {boolean} Hyphenator~elements~ElementCollection~Element~treated + * @desc Marks if information of the element has been collected but not hyphenated (e.g. dohyphenation is off) + * @access protected + */ + this.treated = false; + }, + /** + * @constructor Hyphenator~elements~ElementCollection + * @desc A collection of Elements to be hyphenated + * @access protected + */ + ElementCollection = function () { + /** + * @member {number} Hyphenator~elements~ElementCollection~count + * @desc The Number of collected Elements + * @access protected + */ + this.count = 0; + /** + * @member {number} Hyphenator~elements~ElementCollection~hyCount + * @desc The Number of hyphenated Elements + * @access protected + */ + this.hyCount = 0; + /** + * @member {Object.<string, Array.<Element>>} Hyphenator~elements~ElementCollection~list + * @desc The collection of elements, where the key is a language code and the value is an array of elements + * @access protected + */ + this.list = {}; + }; + /** + * @member {Object} Hyphenator~elements~ElementCollection.prototype + * @augments Hyphenator~elements~ElementCollection + * @access protected + */ + ElementCollection.prototype = { + /** + * @method Hyphenator~elements~ElementCollection.prototype~add + * @augments Hyphenator~elements~ElementCollection + * @access protected + * @desc adds a DOM element to the collection + * @param {Object} el - The DOM element + * @param {string} lang - The language of the element + */ + add: function (el, lang) { + var elo = new Element(el); + if (!this.list.hasOwnProperty(lang)) { + this.list[lang] = []; + } + this.list[lang].push(elo); + this.count += 1; + return elo; + }, + + /** + * @method Hyphenator~elements~ElementCollection.prototype~remove + * @augments Hyphenator~elements~ElementCollection + * @access protected + * @desc removes a DOM element from the collection + * @param {Object} el - The DOM element + */ + remove: function (el) { + var lang, i, e, l; + for (lang in this.list) { + if (this.list.hasOwnProperty(lang)) { + for (i = 0; i < this.list[lang].length; i += 1) { + if (this.list[lang][i].element === el) { + e = i; + l = lang; + break; + } + } + } + } + this.list[l].splice(e, 1); + this.count -= 1; + this.hyCount -= 1; + }, + /** + * @callback Hyphenator~elements~ElementCollection.prototype~each~callback fn - The callback that is executed for each element + * @param {string} [k] The key (i.e. language) of the collection + * @param {Hyphenator~elements~ElementCollection~Element} element + */ + + /** + * @method Hyphenator~elements~ElementCollection.prototype~each + * @augments Hyphenator~elements~ElementCollection + * @access protected + * @desc takes each element of the collection as an argument of fn + * @param {Hyphenator~elements~ElementCollection.prototype~each~callback} fn - A function that takes an element as an argument + */ + each: function (fn) { + var k; + for (k in this.list) { + if (this.list.hasOwnProperty(k)) { + if (fn.length === 2) { + fn(k, this.list[k]); + } else { + fn(this.list[k]); + } + } + } + } + }; + return new ElementCollection(); + }()), + + + /** + * @member {Object.<sting, string>} Hyphenator~exceptions + * @desc + * An object containing exceptions as comma separated strings for each language. + * When the language-objects are loaded, their exceptions are processed, copied here and then deleted. + * Exceptions can also be set by the user. + * @see {@link Hyphenator~prepareLanguagesObj} + * @access private + */ + exceptions = {}, + + /** + * @member {Object.<string, boolean>} Hyphenator~docLanguages + * @desc + * An object holding all languages used in the document. This is filled by + * {@link Hyphenator~gatherDocumentInfos} + * @access private + */ + docLanguages = {}, + + /** + * @member {string} Hyphenator~url + * @desc + * A string containing a insane RegularExpression to match URL's + * @access private + */ + url = '(\\w*:\/\/)?((\\w*:)?(\\w*)@)?((([\\d]{1,3}\\.){3}([\\d]{1,3}))|((www\\.|[a-zA-Z]\\.)?[a-zA-Z0-9\\-\\.]+\\.([a-z]{2,4})))(:\\d*)?(\/[\\w#!:\\.?\\+=&%@!\\-]*)*', + // protocoll usr pwd ip or host tld port path + + /** + * @member {string} Hyphenator~mail + * @desc + * A string containing a RegularExpression to match mail-adresses + * @access private + */ + mail = '[\\w-\\.]+@[\\w\\.]+', + + /** + * @member {RegExp} Hyphenator~urlRE + * @desc + * A RegularExpressions-Object for url- and mail adress matching + * @access private + */ + urlOrMailRE = new RegExp('(' + url + ')|(' + mail + ')', 'i'), + + /** + * @member {string} Hyphenator~zeroWidthSpace + * @desc + * A string that holds a char. + * Depending on the browser, this is the zero with space or an empty string. + * zeroWidthSpace is used to break URLs + * @access private + */ + zeroWidthSpace = (function () { + var zws, ua = window.navigator.userAgent.toLowerCase(); + zws = String.fromCharCode(8203); //Unicode zero width space + if (ua.indexOf('msie 6') !== -1) { + zws = ''; //IE6 doesn't support zws + } + if (ua.indexOf('opera') !== -1 && ua.indexOf('version/10.00') !== -1) { + zws = ''; //opera 10 on XP doesn't support zws + } + return zws; + }()), + + /** + * @method Hyphenator~onBeforeWordHyphenation + * @desc + * This method is called just before a word is hyphenated. + * It is called with two parameters: the word and its language. + * The method must return a string (aka the word). + * @see {@link Hyphenator.config} + * @access private + * @param {string} word + * @param {string} lang + * @return {string} The word that goes into hyphenation + */ + onBeforeWordHyphenation = function (word) { + return word; + }, + + /** + * @method Hyphenator~onAfterWordHyphenation + * @desc + * This method is called for each word after it is hyphenated. + * Takes the word as a first parameter and its language as a second parameter. + * Returns a string that will replace the word that has been hyphenated. + * @see {@link Hyphenator.config} + * @access private + * @param {string} word + * @param {string} lang + * @return {string} The word that goes into hyphenation + */ + onAfterWordHyphenation = function (word) { + return word; + }, + + /** + * @method Hyphenator~onHyphenationDone + * @desc + * A method to be called, when the last element has been hyphenated. + * If there are frames the method is called for each frame. + * Therefore the location.href of the contextWindow calling this method is given as a parameter + * @see {@link Hyphenator.config} + * @param {string} context + * @access private + */ + onHyphenationDone = function (context) { + return context; + }, + + /** + * @name Hyphenator~selectorFunction + * @desc + * A function set by the user that has to return a HTMLNodeList or array of Elements to be hyphenated. + * By default this is set to false so we can check if a selectorFunction is set… + * @see {@link Hyphenator.config} + * @see {@link Hyphenator~mySelectorFunction} + * @default false + * @type {function|boolean} + * @access private + */ + selectorFunction = false, + + /** + * @method Hyphenator~mySelectorFunction + * @desc + * A function that returns a HTMLNodeList or array of Elements to be hyphenated. + * By default it uses the classname ('hyphenate') to select the elements. + * @access private + */ + mySelectorFunction = function (hyphenateClass) { + var tmp, el = [], i, l; + if (window.document.getElementsByClassName) { + el = contextWindow.document.getElementsByClassName(hyphenateClass); + } else if (window.document.querySelectorAll) { + el = contextWindow.document.querySelectorAll('.' + hyphenateClass); + } else { + tmp = contextWindow.document.getElementsByTagName('*'); + l = tmp.length; + for (i = 0; i < l; i += 1) { + if (tmp[i].className.indexOf(hyphenateClass) !== -1 && tmp[i].className.indexOf(dontHyphenateClass) === -1) { + el.push(tmp[i]); + } + } + } + return el; + }, + + /** + * @method Hyphenator~selectElements + * @desc + * A function that uses either selectorFunction set by the user + * or the default mySelectorFunction. + * @access private + */ + selectElements = function () { + var elems; + if (selectorFunction) { + elems = selectorFunction(); + } else { + elems = mySelectorFunction(hyphenateClass); + } + return elems; + }, + + /** + * @member {string} Hyphenator~intermediateState + * @desc + * The visibility of elements while they are hyphenated: + * 'visible': unhyphenated text is visible and then redrawn when hyphenated. + * 'hidden': unhyphenated text is made invisible as soon as possible and made visible after hyphenation. + * @default 'hidden' + * @see {@link Hyphenator.config} + * @access private + */ + intermediateState = 'hidden', + + /** + * @member {string} Hyphenator~unhide + * @desc + * How hidden elements unhide: either simultaneous (default: 'wait') or progressively. + * 'wait' makes Hyphenator.js to wait until all elements are hyphenated (one redraw) + * With 'progressive' Hyphenator.js unhides elements as soon as they are hyphenated. + * @see {@link Hyphenator.config} + * @access private + */ + unhide = 'wait', + + /** + * @member {Array.<Hyphenator~CSSEdit>} Hyphenator~CSSEditors + * @desc A container array that holds CSSEdit classes + * For each window object one CSSEdit class is inserted + * @access private + */ + CSSEditors = [], + + /** + * @constructor Hyphenator~CSSEdit + * @desc + * This class handles access and editing of StyleSheets. + * Thanks to this styles (e.g. hiding and unhiding elements upon hyphenation) + * can be changed in one place instead for each element. + * @access private + */ + CSSEdit = function (w) { + w = w || window; + var doc = w.document, + /** + * @member {Object} Hyphenator~CSSEdit~sheet + * @desc + * A StyleSheet, where Hyphenator can write to. + * If no StyleSheet can be found, lets create one. + * @access private + */ + sheet = (function () { + var i, + l = doc.styleSheets.length, + s, + element, + r = false; + for (i = 0; i < l; i += 1) { + s = doc.styleSheets[i]; + try { + if (!!s.cssRules) { + r = s; + break; + } + } catch (ignore) {} + } + r = false; + if (r === false) { + element = doc.createElement('style'); + element.type = 'text/css'; + doc.getElementsByTagName('head')[0].appendChild(element); + r = doc.styleSheets[doc.styleSheets.length - 1]; + } + return r; + }()), + + /** + * @typedef {Object} Hyphenator~CSSEdit~changes + * @property {Object} sheet - The StyleSheet where the change was made + * @property {number} index - The index of the changed rule + */ + + /** + * @member {Array.<changes>} Hyphenator~CSSEdit~changes + * @desc + * Sets a CSS rule for a specified selector + * @access private + */ + changes = [], + + /** + * @typedef Hyphenator~CSSEdit~rule + * @property {number} index - The index of the rule + * @property {Object} rule - The style rule + */ + /** + * @method Hyphenator~CSSEdit~findRule + * @desc + * Searches the StyleSheets for a given selector and returns an object containing the rule. + * If nothing can be found, false is returned. + * @param {string} sel + * @return {Hyphenator~CSSEdit~rule|false} + * @access private + */ + findRule = function (sel) { + var s, rule, sheets = w.document.styleSheets, rules, i, j, r = false; + for (i = 0; i < sheets.length; i += 1) { + s = sheets[i]; + try { //FF has issues here with external CSS (s.o.p) + if (!!s.cssRules) { + rules = s.cssRules; + } else if (!!s.rules) { + // IE < 9 + rules = s.rules; + } + } catch (ignore) {} + if (!!rules && !!rules.length) { + for (j = 0; j < rules.length; j += 1) { + rule = rules[j]; + if (rule.selectorText === sel) { + r = { + index: j, + rule: rule + }; + } + } + } + } + return r; + }, + /** + * @method Hyphenator~CSSEdit~addRule + * @desc + * Adds a rule to the {@link Hyphenator~CSSEdit~sheet} + * @param {string} sel - The selector to be added + * @param {string} rulesStr - The rules for the specified selector + * @return {number} index of the new rule + * @access private + */ + addRule = function (sel, rulesStr) { + var i, r; + if (!!sheet.insertRule) { + if (!!sheet.cssRules) { + i = sheet.cssRules.length; + } else { + i = 0; + } + r = sheet.insertRule(sel + '{' + rulesStr + '}', i); + } else if (!!sheet.addRule) { + // IE < 9 + if (!!sheet.rules) { + i = sheet.rules.length; + } else { + i = 0; + } + sheet.addRule(sel, rulesStr, i); + r = i; + } + return r; + }, + /** + * @method Hyphenator~CSSEdit~removeRule + * @desc + * Removes a rule with the specified index from the specified sheet + * @param {Object} sheet - The style sheet + * @param {number} index - the index of the rule + * @access private + */ + removeRule = function (sheet, index) { + if (sheet.deleteRule) { + sheet.deleteRule(index); + } else { + // IE < 9 + sheet.removeRule(index); + } + }; + + return { + /** + * @method Hyphenator~CSSEdit.setRule + * @desc + * Sets a CSS rule for a specified selector + * @access public + * @param {string} sel - Selector + * @param {string} rulesString - CSS-Rules + */ + setRule: function (sel, rulesString) { + var i, existingRule, cssText; + existingRule = findRule(sel); + if (!!existingRule) { + if (!!existingRule.rule.cssText) { + cssText = existingRule.rule.cssText; + } else { + // IE < 9 + cssText = existingRule.rule.style.cssText.toLowerCase(); + } + if (cssText === '.' + hyphenateClass + ' { visibility: hidden; }') { + //browsers w/o IE < 9 and no additional style defs: + //add to [changes] for later removal + changes.push({sheet: existingRule.rule.parentStyleSheet, index: existingRule.index}); + } else if (cssText.indexOf('visibility: hidden') !== -1) { + // IE < 9 or additional style defs: + // add new rule + i = addRule(sel, rulesString); + //add to [changes] for later removal + changes.push({sheet: sheet, index: i}); + // clear existing def + existingRule.rule.style.visibility = ''; + } else { + i = addRule(sel, rulesString); + changes.push({sheet: sheet, index: i}); + } + } else { + i = addRule(sel, rulesString); + changes.push({sheet: sheet, index: i}); + } + }, + /** + * @method Hyphenator~CSSEdit.clearChanges + * @desc + * Removes all changes Hyphenator has made from the StyleSheets + * @access public + */ + clearChanges: function () { + var change = changes.pop(); + while (!!change) { + removeRule(change.sheet, change.index); + change = changes.pop(); + } + } + }; + }, + + /** + * @member {string} Hyphenator~hyphen + * @desc + * A string containing the character for in-word-hyphenation + * @default the soft hyphen + * @access private + * @see {@link Hyphenator.config} + */ + hyphen = String.fromCharCode(173), + + /** + * @member {string} Hyphenator~urlhyphen + * @desc + * A string containing the character for url/mail-hyphenation + * @default the zero width space + * @access private + * @see {@link Hyphenator.config} + * @see {@link Hyphenator~zeroWidthSpace} + */ + urlhyphen = zeroWidthSpace, + + /** + * @method Hyphenator~hyphenateURL + * @desc + * Puts {@link Hyphenator~urlhyphen} (default: zero width space) after each no-alphanumeric char that my be in a URL. + * @param {string} url to hyphenate + * @returns string the hyphenated URL + * @access public + */ + hyphenateURL = function (url) { + var tmp = url.replace(/([:\/\.\?#&\-_,;!@]+)/gi, '$&' + urlhyphen), + parts = tmp.split(urlhyphen), + i; + for (i = 0; i < parts.length; i += 1) { + if (parts[i].length > (2 * min)) { + parts[i] = parts[i].replace(/(\w{3})(\w)/gi, "$1" + urlhyphen + "$2"); + } + } + if (parts[parts.length - 1] === "") { + parts.pop(); + } + return parts.join(urlhyphen); + }, + + /** + * @member {boolean} Hyphenator~safeCopy + * @desc + * Defines wether work-around for copy issues is active or not + * @default true + * @access private + * @see {@link Hyphenator.config} + * @see {@link Hyphenator~registerOnCopy} + */ + safeCopy = true, + + /** + * @member {Object} Hyphenator~hyphRunFor + * @desc + * stores location.href for documents where run() has been executed + * to warn when Hyphenator.run() executed multiple times + * @access private + * @see {@link Hyphenator~runWhenLoaded} + */ + hyphRunFor = {}, + + /** + * @method Hyphenator~runWhenLoaded + * @desc + * A crossbrowser solution for the DOMContentLoaded-Event based on + * <a href = "http://jquery.com/">jQuery</a> + * I added some functionality: e.g. support for frames and iframes… + * @param {Object} w the window-object + * @param {function()} f the function to call when the document is ready + * @access private + */ + runWhenLoaded = function (w, f) { + var toplevel, + add = window.document.addEventListener ? 'addEventListener' : 'attachEvent', + rem = window.document.addEventListener ? 'removeEventListener' : 'detachEvent', + pre = window.document.addEventListener ? '' : 'on', + + init = function (context) { + if (hyphRunFor[context.location.href]) { + onWarning(new Error("Warning: multiple execution of Hyphenator.run() – This may slow down the script!")); + } + contextWindow = context || window; + f(); + hyphRunFor[contextWindow.location.href] = true; + }, + + doScrollCheck = function () { + try { + // If IE is used, use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + w.document.documentElement.doScroll("left"); + } catch (error) { + window.setTimeout(doScrollCheck, 1); + return; + } + //maybe modern IE fired DOMContentLoaded + if (!hyphRunFor[w.location.href]) { + documentLoaded = true; + init(w); + } + }, + + doOnEvent = function (e) { + var i, fl, haveAccess; + if (!!e && e.type === 'readystatechange' && w.document.readyState !== 'interactive' && w.document.readyState !== 'complete') { + return; + } + + //DOM is ready/interactive, but frames may not be loaded yet! + //cleanup events + w.document[rem](pre + 'DOMContentLoaded', doOnEvent, false); + w.document[rem](pre + 'readystatechange', doOnEvent, false); + + //check frames + fl = w.frames.length; + if (fl === 0 || !doFrames) { + //there are no frames! + //cleanup events + w[rem](pre + 'load', doOnEvent, false); + documentLoaded = true; + init(w); + } else if (doFrames && fl > 0) { + //we have frames, so wait for onload and then initiate runWhenLoaded recursevly for each frame: + if (!!e && e.type === 'load') { + //cleanup events + w[rem](pre + 'load', doOnEvent, false); + for (i = 0; i < fl; i += 1) { + haveAccess = undefined; + //try catch isn't enough for webkit + try { + //opera throws only on document.toString-access + haveAccess = window.frames[i].document.toString(); + } catch (err) { + haveAccess = undefined; + } + if (!!haveAccess) { + runWhenLoaded(w.frames[i], f); + } + } + init(w); + } + } + }; + if (documentLoaded || w.document.readyState === 'complete') { + //Hyphenator has run already (documentLoaded is true) or + //it has been loaded after onLoad + documentLoaded = true; + doOnEvent({type: 'load'}); + } else { + //register events + w.document[add](pre + 'DOMContentLoaded', doOnEvent, false); + w.document[add](pre + 'readystatechange', doOnEvent, false); + w[add](pre + 'load', doOnEvent, false); + toplevel = false; + try { + toplevel = !window.frameElement; + } catch (ignore) {} + if (toplevel && w.document.documentElement.doScroll) { + doScrollCheck(); //calls init() + } + } + }, + + /** + * @method Hyphenator~getLang + * @desc + * Gets the language of an element. If no language is set, it may use the {@link Hyphenator~mainLanguage}. + * @param {Object} el The first parameter is an DOM-Element-Object + * @param {boolean} fallback The second parameter is a boolean to tell if the function should return the {@link Hyphenator~mainLanguage} + * if there's no language found for the element. + * @return {string} The language of the element + * @access private + */ + getLang = function (el, fallback) { + try { + return !!el.getAttribute('lang') ? el.getAttribute('lang').toLowerCase() : + !!el.getAttribute('xml:lang') ? el.getAttribute('xml:lang').toLowerCase() : + el.tagName.toLowerCase() !== 'html' ? getLang(el.parentNode, fallback) : + fallback ? mainLanguage : + null; + } catch (ignore) {} + }, + + /** + * @method Hyphenator~autoSetMainLanguage + * @desc + * Retrieves the language of the document from the DOM and sets the lang attribute of the html-tag. + * The function looks in the following places: + * <ul> + * <li>lang-attribute in the html-tag</li> + * <li><meta http-equiv = "content-language" content = "xy" /></li> + * <li><meta name = "DC.Language" content = "xy" /></li> + * <li><meta name = "language" content = "xy" /></li> + * </li> + * If nothing can be found a prompt using {@link Hyphenator~languageHint} and a prompt-string is displayed. + * If the retrieved language is in the object {@link Hyphenator~supportedLangs} it is copied to {@link Hyphenator~mainLanguage} + * @access private + */ + autoSetMainLanguage = function (w) { + w = w || contextWindow; + var el = w.document.getElementsByTagName('html')[0], + m = w.document.getElementsByTagName('meta'), + i, + getLangFromUser = function () { + var ml, + text = '', + dH = 300, + dW = 450, + dX = Math.floor((w.outerWidth - dW) / 2) + window.screenX, + dY = Math.floor((w.outerHeight - dH) / 2) + window.screenY, + ul = '', + languageHint; + if (!!window.showModalDialog && (w.location.href.indexOf(basePath) !== -1)) { + ml = window.showModalDialog(basePath + 'modalLangDialog.html', supportedLangs, "dialogWidth: " + dW + "px; dialogHeight: " + dH + "px; dialogtop: " + dY + "; dialogleft: " + dX + "; center: on; resizable: off; scroll: off;"); + } else { + languageHint = (function () { + var k, r = ''; + for (k in supportedLangs) { + if (supportedLangs.hasOwnProperty(k)) { + r += k + ', '; + } + } + r = r.substring(0, r.length - 2); + return r; + }()); + ul = window.navigator.language || window.navigator.userLanguage; + ul = ul.substring(0, 2); + if (!!supportedLangs[ul] && supportedLangs[ul].prompt !== '') { + text = supportedLangs[ul].prompt; + } else { + text = supportedLangs.en.prompt; + } + text += ' (ISO 639-1)\n\n' + languageHint; + ml = window.prompt(window.unescape(text), ul).toLowerCase(); + } + return ml; + }; + mainLanguage = getLang(el, false); + if (!mainLanguage) { + for (i = 0; i < m.length; i += 1) { + //<meta http-equiv = "content-language" content="xy"> + if (!!m[i].getAttribute('http-equiv') && (m[i].getAttribute('http-equiv').toLowerCase() === 'content-language')) { + mainLanguage = m[i].getAttribute('content').toLowerCase(); + } + //<meta name = "DC.Language" content="xy"> + if (!!m[i].getAttribute('name') && (m[i].getAttribute('name').toLowerCase() === 'dc.language')) { + mainLanguage = m[i].getAttribute('content').toLowerCase(); + } + //<meta name = "language" content = "xy"> + if (!!m[i].getAttribute('name') && (m[i].getAttribute('name').toLowerCase() === 'language')) { + mainLanguage = m[i].getAttribute('content').toLowerCase(); + } + } + } + //get lang for frame from enclosing document + if (!mainLanguage && doFrames && (!!contextWindow.frameElement)) { + autoSetMainLanguage(window.parent); + } + //fallback to defaultLang if set + if (!mainLanguage && defaultLanguage !== '') { + mainLanguage = defaultLanguage; + } + //ask user for lang + if (!mainLanguage) { + mainLanguage = getLangFromUser(); + } + el.lang = mainLanguage; + }, + + /** + * @method Hyphenator~gatherDocumentInfos + * @desc + * This method runs through the DOM and executes the process()-function on: + * - every node returned by the {@link Hyphenator~selectorFunction}. + * @access private + */ + gatherDocumentInfos = function () { + var elToProcess, urlhyphenEls, tmp, i = 0, + /** + * @method Hyphenator~gatherDocumentInfos + * @desc + * This method copies the element to the elements-variable, sets its visibility + * to intermediateState, retrieves its language and recursivly descends the DOM-tree until + * the child-Nodes aren't of type 1 + * @param {Object} el a DOM element + * @param {string} plang the language of the parent element + * @param {boolean} isChild true, if the parent of el has been processed + */ + process = function (el, pLang, isChild) { + isChild = isChild || false; + var n, j = 0, hyphenate = true, eLang, + useCSS3 = function () { + css3hyphenateClassHandle = new CSSEdit(contextWindow); + css3hyphenateClassHandle.setRule('.' + css3hyphenateClass, css3_h9n.property + ': auto;'); + css3hyphenateClassHandle.setRule('.' + dontHyphenateClass, css3_h9n.property + ': manual;'); + if ((eLang !== pLang) && css3_h9n.property.indexOf('webkit') !== -1) { + css3hyphenateClassHandle.setRule('.' + css3hyphenateClass, '-webkit-locale : ' + eLang + ';'); + } + el.className = el.className + ' ' + css3hyphenateClass; + }, + useHyphenator = function () { + //quick fix for test111.html + //better: weight elements + if (isBookmarklet && eLang !== mainLanguage) { + return; + } + if (supportedLangs.hasOwnProperty(eLang)) { + docLanguages[eLang] = true; + } else { + if (supportedLangs.hasOwnProperty(eLang.split('-')[0])) { //try subtag + eLang = eLang.split('-')[0]; + docLanguages[eLang] = true; + } else if (!isBookmarklet) { + hyphenate = false; + onError(new Error('Language "' + eLang + '" is not yet supported.')); + } + } + if (hyphenate) { + if (intermediateState === 'hidden') { + el.className = el.className + ' ' + hideClass; + } + elements.add(el, eLang); + } + }; + + if (el.lang && typeof (el.lang) === 'string') { + eLang = el.lang.toLowerCase(); //copy attribute-lang to internal eLang + } else if (!!pLang && pLang !== '') { + eLang = pLang.toLowerCase(); + } else { + eLang = getLang(el, true); + } + + if (!isChild) { + if (css3 && css3_h9n.support && !!css3_h9n.checkLangSupport(eLang)) { + useCSS3(); + } else { + useHyphenator(); + } + } else { + if (eLang !== pLang) { + if (css3 && css3_h9n.support && !!css3_h9n.checkLangSupport(eLang)) { + useCSS3(); + } else { + useHyphenator(); + } + } else { + if (!css3 || !css3_h9n.support || !css3_h9n.checkLangSupport(eLang)) { + useHyphenator(); + } // else do nothing + } + } + n = el.childNodes[j]; + while (!!n) { + if (n.nodeType === 1 && !dontHyphenate[n.nodeName.toLowerCase()] && + n.className.indexOf(dontHyphenateClass) === -1 && + n.className.indexOf(urlHyphenateClass) === -1 && !elToProcess[n]) { + process(n, eLang, true); + } + j += 1; + n = el.childNodes[j]; + } + }, + processUrlStyled = function (el) { + var n, j = 0; + + n = el.childNodes[j]; + while (!!n) { + if (n.nodeType === 1 && !dontHyphenate[n.nodeName.toLowerCase()] && + n.className.indexOf(dontHyphenateClass) === -1 && + n.className.indexOf(hyphenateClass) === -1 && !urlhyphenEls[n]) { + processUrlStyled(n); + } else if (n.nodeType === 3) { + n.data = hyphenateURL(n.data); + } + j += 1; + n = el.childNodes[j]; + } + }; + + if (css3) { + css3_gethsupport(); + } + if (isBookmarklet) { + elToProcess = contextWindow.document.getElementsByTagName('body')[0]; + process(elToProcess, mainLanguage, false); + } else { + if (!css3 && intermediateState === 'hidden') { + CSSEditors.push(new CSSEdit(contextWindow)); + CSSEditors[CSSEditors.length - 1].setRule('.' + hyphenateClass, 'visibility: hidden;'); + CSSEditors[CSSEditors.length - 1].setRule('.' + hideClass, 'visibility: hidden;'); + CSSEditors[CSSEditors.length - 1].setRule('.' + unhideClass, 'visibility: visible;'); + } + elToProcess = selectElements(); + tmp = elToProcess[i]; + while (!!tmp) { + process(tmp, '', false); + i += 1; + tmp = elToProcess[i]; + } + + urlhyphenEls = mySelectorFunction(urlHyphenateClass); + i = 0; + tmp = urlhyphenEls[i]; + while (!!tmp) { + processUrlStyled(tmp); + i += 1; + tmp = urlhyphenEls[i]; + } + } + if (elements.count === 0) { + //nothing to hyphenate or all hyphenated by css3 + for (i = 0; i < CSSEditors.length; i += 1) { + CSSEditors[i].clearChanges(); + } + onHyphenationDone(contextWindow.location.href); + } + }, + + /** + * @method Hyphenator~convertPatterns + * @desc + * converts patterns of the given language to a trie + * @access private + * @param {Object} language object whose patterns shall be converted + */ + convertPatterns = function (lo) { + var size, + tree = {}, + convert = function (psize, patterns) { + var i = 0, + t = tree, + cc = 0, + points = [], + ppos = 0, + lastwasp = false, + len = 0; + while (i < patterns.length) { + if (len < psize) { + cc = patterns.charCodeAt(i); + if (cc >= 49 && cc <= 57) { + //this is a hpoint (1-9) + points[ppos] = cc - 48; + ppos += 1; + lastwasp = true; + } else { + //this is a alphabetic char --> extend the tree? + if (!t[cc]) { + t[cc] = {}; + } + t = t[cc]; //go to subtree + if (!lastwasp) { + points[ppos] = 0; + ppos += 1; + } + lastwasp = false; + } + len += 1; + i += 1; + } + + if (len === psize) { + //add last point (0) + if (!lastwasp) { + points[ppos] = 0; + } + //write points + t.tpoints = points; + //reset + t = tree; + points = []; + ppos = 0; + lastwasp = false; + len = 0; + } + } + }; + for (size in lo.patterns) { + if (lo.patterns.hasOwnProperty(size)) { + convert(parseInt(size, 10), lo.patterns[size]); + } + } + lo.patterns = tree; + }, + + /** + * @method Hyphenator~recreatePattern + * @desc + * Recreates the pattern for the reducedPatternSet + * @param {string} pattern The pattern (chars) + * @param {string} nodePoints The nodePoints (integers) + * @access private + * @return {string} The pattern (chars and numbers) + */ + recreatePattern = function (pattern, nodePoints) { + var r = [], c = pattern.split(''), i; + for (i = 0; i < nodePoints.length; i += 1) { + if (nodePoints[i] !== 0) { + r.push(nodePoints[i]); + } + if (c[i]) { + r.push(c[i]); + } + } + return r.join(''); + }, + + /** + * @method Hyphenator~convertExceptionsToObject + * @desc + * Converts a list of comma seprated exceptions to an object: + * 'Fortran,Hy-phen-a-tion' -> {'Fortran':'Fortran','Hyphenation':'Hy-phen-a-tion'} + * @access private + * @param {string} exc a comma separated string of exceptions (without spaces) + * @return {Object.<string, string>} + */ + convertExceptionsToObject = function (exc) { + var w = exc.split(', '), + r = {}, + i, + l, + key; + for (i = 0, l = w.length; i < l; i += 1) { + key = w[i].replace(/-/g, ''); + if (!r.hasOwnProperty(key)) { + r[key] = w[i]; + } + } + return r; + }, + + /** + * @method Hyphenator~loadPatterns + * @desc + * Checks if the requested file is available in the network. + * Adds a <script>-Tag to the DOM to load an externeal .js-file containing patterns and settings for the given language. + * If the given language is not in the {@link Hyphenator~supportedLangs}-Object it returns. + * One may ask why we are not using AJAX to load the patterns. The XMLHttpRequest-Object + * has a same-origin-policy. This makes the Bookmarklet impossible. + * @param {string} lang The language to load the patterns for + * @access private + * @see {@link Hyphenator~basePath} + */ + loadPatterns = function (lang) { + var location, xhr, head, script; + if (supportedLangs.hasOwnProperty(lang) && !Hyphenator.languages[lang]) { + location = basePath + 'patterns/' + supportedLangs[lang].file; + } else { + return; + } + if (isLocal && !isBookmarklet) { + //check if 'location' is available: + xhr = null; + try { + // Mozilla, Opera, Safari and Internet Explorer (ab v7) + xhr = new window.XMLHttpRequest(); + } catch (e) { + try { + //IE>=6 + xhr = new window.ActiveXObject("Microsoft.XMLHTTP"); + } catch (e2) { + try { + //IE>=5 + xhr = new window.ActiveXObject("Msxml2.XMLHTTP"); + } catch (e3) { + xhr = null; + } + } + } + + if (xhr) { + xhr.open('HEAD', location, true); + xhr.setRequestHeader('Cache-Control', 'no-cache'); + xhr.onreadystatechange = function () { + if (xhr.readyState === 4) { + if (xhr.status === 404) { + onError(new Error('Could not load\n' + location)); + delete docLanguages[lang]; + return; + } + } + }; + xhr.send(null); + } + } + if (createElem) { + head = window.document.getElementsByTagName('head').item(0); + script = createElem('script', window); + script.src = location; + script.type = 'text/javascript'; + script.charset = 'utf8'; + head.appendChild(script); + } + }, + + /** + * @method Hyphenator~prepareLanguagesObj + * @desc + * Adds some feature to the language object: + * - cache + * - exceptions + * Converts the patterns to a trie using {@link Hyphenator~convertPatterns} + * If storage is active the object is stored there. + * @access private + * @param {string} lang The language of the language object + */ + prepareLanguagesObj = function (lang) { + var lo = Hyphenator.languages[lang], wrd; + + if (!lo.prepared) { + if (enableCache) { + lo.cache = {}; + //Export + //lo['cache'] = lo.cache; + } + if (enableReducedPatternSet) { + lo.redPatSet = {}; + } + //add exceptions from the pattern file to the local 'exceptions'-obj + if (lo.hasOwnProperty('exceptions')) { + Hyphenator.addExceptions(lang, lo.exceptions); + delete lo.exceptions; + } + //copy global exceptions to the language specific exceptions + if (exceptions.hasOwnProperty('global')) { + if (exceptions.hasOwnProperty(lang)) { + exceptions[lang] += ', ' + exceptions.global; + } else { + exceptions[lang] = exceptions.global; + } + } + //move exceptions from the the local 'exceptions'-obj to the 'language'-object + if (exceptions.hasOwnProperty(lang)) { + lo.exceptions = convertExceptionsToObject(exceptions[lang]); + delete exceptions[lang]; + } else { + lo.exceptions = {}; + } + convertPatterns(lo); + wrd = '[\\w' + lo.specialChars + '@' + String.fromCharCode(173) + String.fromCharCode(8204) + '-]{' + min + ',}'; + lo.genRegExp = new RegExp('(' + url + ')|(' + mail + ')|(' + wrd + ')', 'gi'); + lo.prepared = true; + } + if (!!storage) { + storage.setItem(lang, window.JSON.stringify(lo)); + } + + }, + + /**** + * @method Hyphenator~prepare + * @desc + * This funtion prepares the Hyphenator~Object: If RemoteLoading is turned off, it assumes + * that the patternfiles are loaded, all conversions are made and the callback is called. + * If storage is active the object is retrieved there. + * If RemoteLoading is on (default), it loads the pattern files and waits until they are loaded, + * by repeatedly checking Hyphenator.languages. If a patternfile is loaded the patterns are + * converted to their object style and the lang-object extended. + * Finally the callback is called. + * @access private + */ + prepare = function (callback) { + var lang, interval, tmp1, tmp2, + languagesLoaded = function () { + var finishedLoading = true, l; + for (l in docLanguages) { + if (docLanguages.hasOwnProperty(l)) { + finishedLoading = false; + if (!!Hyphenator.languages[l]) { + delete docLanguages[l]; + //do conversion while other patterns are loading: + prepareLanguagesObj(l); + callback(l); + } + } + } + return finishedLoading; + }; + + if (!enableRemoteLoading) { + for (lang in Hyphenator.languages) { + if (Hyphenator.languages.hasOwnProperty(lang)) { + prepareLanguagesObj(lang); + } + } + callback('*'); + return; + } + // get all languages that are used and preload the patterns + for (lang in docLanguages) { + if (docLanguages.hasOwnProperty(lang)) { + if (!!storage && storage.test(lang)) { + Hyphenator.languages[lang] = window.JSON.parse(storage.getItem(lang)); + if (exceptions.hasOwnProperty('global')) { + tmp1 = convertExceptionsToObject(exceptions.global); + for (tmp2 in tmp1) { + if (tmp1.hasOwnProperty(tmp2)) { + Hyphenator.languages[lang].exceptions[tmp2] = tmp1[tmp2]; + } + } + } + //Replace exceptions since they may have been changed: + if (exceptions.hasOwnProperty(lang)) { + tmp1 = convertExceptionsToObject(exceptions[lang]); + for (tmp2 in tmp1) { + if (tmp1.hasOwnProperty(tmp2)) { + Hyphenator.languages[lang].exceptions[tmp2] = tmp1[tmp2]; + } + } + delete exceptions[lang]; + } + //Replace genRegExp since it may have been changed: + tmp1 = '[\\w' + Hyphenator.languages[lang].specialChars + '@' + String.fromCharCode(173) + String.fromCharCode(8204) + '-]{' + min + ',}'; + Hyphenator.languages[lang].genRegExp = new RegExp('(' + url + ')|(' + mail + ')|(' + tmp1 + ')', 'gi'); + + delete docLanguages[lang]; + callback(lang); + } else { + loadPatterns(lang); + } + } + } + // else async wait until patterns are loaded, then hyphenate + if (!languagesLoaded()) { + interval = window.setInterval(function () { + var loadingDone = languagesLoaded(); + if (loadingDone) { + window.clearInterval(interval); + } + }, 100); + } + }, + + /** + * @method Hyphenator~toggleBox + * @desc + * Creates the toggleBox: a small button to turn off/on hyphenation on a page. + * @see {@link Hyphenator.config} + * @access private + */ + toggleBox = function () { + var bdy, myTextNode, + text = (Hyphenator.doHyphenation ? 'Hy-phen-a-tion' : 'Hyphenation'), + myBox = contextWindow.document.getElementById('HyphenatorToggleBox'); + if (!!myBox) { + myBox.firstChild.data = text; + } else { + bdy = contextWindow.document.getElementsByTagName('body')[0]; + myBox = createElem('div', contextWindow); + myBox.setAttribute('id', 'HyphenatorToggleBox'); + myBox.setAttribute('class', dontHyphenateClass); + myTextNode = contextWindow.document.createTextNode(text); + myBox.appendChild(myTextNode); + myBox.onclick = Hyphenator.toggleHyphenation; + myBox.style.position = 'absolute'; + myBox.style.top = '0px'; + myBox.style.right = '0px'; + myBox.style.margin = '0'; + myBox.style.backgroundColor = '#AAAAAA'; + myBox.style.color = '#FFFFFF'; + myBox.style.font = '6pt Arial'; + myBox.style.letterSpacing = '0.2em'; + myBox.style.padding = '3px'; + myBox.style.cursor = 'pointer'; + myBox.style.WebkitBorderBottomLeftRadius = '4px'; + myBox.style.MozBorderRadiusBottomleft = '4px'; + myBox.style.borderBottomLeftRadius = '4px'; + bdy.appendChild(myBox); + } + }, + + + /** + * @method Hyphenator~hyphenateWord + * @desc + * This function is the heart of Hyphenator.js. It returns a hyphenated word. + * + * If there's already a {@link Hyphenator~hypen} in the word, the word is returned as it is. + * If the word is in the exceptions list or in the cache, it is retrieved from it. + * If there's a '-' hyphenate the parts. + * The hyphenated word is returned and (if acivated) cached. + * Both special Events onBeforeWordHyphenation and onAfterWordHyphenation are called for the word. + * @param {Object} lo A language object (containing the patterns) + * @param {string} lang The language of the word + * @param {string} word The word + * @returns string The hyphenated word + * @access public + */ + hyphenateWord = function (lo, lang, word) { + var parts, + i, + pattern, + ww, + wwlen, + wwhp = [], + pstart, + plen, + trie = lo.patterns, + node, + nodePoints, + hp, + wordLength = word.length, + hw = '', + doCharSubst = function (w) { + var subst, r; + for (subst in lo.charSubstitution) { + if (lo.charSubstitution.hasOwnProperty(subst)) { + r = w.replace(new RegExp(subst, 'g'), lo.charSubstitution[subst]); + } + } + return r; + }; + word = onBeforeWordHyphenation(word, lang); + if (word === '') { + hw = ''; + } else if (enableCache && lo.cache.hasOwnProperty(word)) { //the word is in the cache + hw = lo.cache[word]; + } else if (word.indexOf(hyphen) !== -1) { + //word already contains shy; -> leave at it is! + hw = word; + } else if (lo.exceptions.hasOwnProperty(word)) { //the word is in the exceptions list + hw = lo.exceptions[word].replace(/-/g, hyphen); + } else if (word.indexOf('-') !== -1) { + //word contains '-' -> hyphenate the parts separated with '-' + parts = word.split('-'); + for (i = 0; i < parts.length; i += 1) { + parts[i] = hyphenateWord(lo, lang, parts[i]); + } + hw = parts.join('-'); + } else { + ww = word.toLowerCase(); + + if (!!lo.charSubstitution) { + ww = doCharSubst(ww); + } + if (word.indexOf("'") !== -1) { + ww = ww.replace("'", "’"); //replace APOSTROPHE with RIGHT SINGLE QUOTATION MARK (since the latter is used in the patterns) + } + ww = '_' + ww + '_'; + wwlen = ww.length; + for (hp = 0; hp < wwlen + 1; hp += 1) { + wwhp[hp] = 0; + } + for (pstart = 0; pstart < wwlen; pstart += 1) { + node = trie; + pattern = ''; + for (plen = pstart; plen < wwlen; plen += 1) { + node = node[ww.charCodeAt(plen)]; //go sub trie + if (node) { + if (enableReducedPatternSet) { + pattern += ww.charAt(plen); + } + nodePoints = node.tpoints; + if (nodePoints) { + if (enableReducedPatternSet) { + if (!lo.redPatSet) { + lo.redPatSet = {}; + } + lo.redPatSet[pattern] = recreatePattern(pattern, nodePoints); + } + for (hp = 0; hp < nodePoints.length; hp += 1) { + wwhp[pstart + hp] = Math.max(wwhp[pstart + hp], nodePoints[hp]); + } + } + } else { + break; + } + } + } + //return wwhp + for (hp = 0; hp < wordLength; hp += 1) { + if (hp >= lo.leftmin && hp <= (wordLength - lo.rightmin) && (wwhp[hp + 1] % 2) !== 0) { + hw += hyphen + word.charAt(hp); + } else { + hw += word.charAt(hp); + } + } + } + hw = onAfterWordHyphenation(hw, lang); + if (enableCache) { //put the word in the cache + lo.cache[word] = hw; + } + return hw; + }, + + /** + * @method Hyphenator~removeHyphenationFromElement + * @desc + * Removes all hyphens from the element. If there are other elements, the function is + * called recursively. + * Removing hyphens is usefull if you like to copy text. Some browsers are buggy when the copy hyphenated texts. + * @param {Object} el The element where to remove hyphenation. + * @access public + */ + removeHyphenationFromElement = function (el) { + var h, u, i = 0, n; + switch (hyphen) { + case '|': + h = '\\|'; + break; + case '+': + h = '\\+'; + break; + case '*': + h = '\\*'; + break; + default: + h = hyphen; + } + switch (urlhyphen) { + case '|': + u = '\\|'; + break; + case '+': + u = '\\+'; + break; + case '*': + u = '\\*'; + break; + default: + u = urlhyphen; + } + n = el.childNodes[i]; + while (!!n) { + if (n.nodeType === 3) { + n.data = n.data.replace(new RegExp(h, 'g'), ''); + n.data = n.data.replace(new RegExp(u, 'g'), ''); + } else if (n.nodeType === 1) { + removeHyphenationFromElement(n); + } + i += 1; + n = el.childNodes[i]; + } + }, + + copy = (function () { + var Copy = function () { + + this.oncopyHandler = function (e) { + e = e || window.event; + var shadow, selection, range, rangeShadow, restore, + target = e.target || e.srcElement, + currDoc = target.ownerDocument, + bdy = currDoc.getElementsByTagName('body')[0], + targetWindow = currDoc.defaultView || currDoc.parentWindow; + if (target.tagName && dontHyphenate[target.tagName.toLowerCase()]) { + //Safari needs this + return; + } + //create a hidden shadow element + shadow = currDoc.createElement('div'); + //Moving the element out of the screen doesn't work for IE9 (https://connect.microsoft.com/IE/feedback/details/663981/) + //shadow.style.overflow = 'hidden'; + //shadow.style.position = 'absolute'; + //shadow.style.top = '-5000px'; + //shadow.style.height = '1px'; + //doing this instead: + shadow.style.color = window.getComputedStyle ? targetWindow.getComputedStyle(bdy, null).backgroundColor : '#FFFFFF'; + shadow.style.fontSize = '0px'; + bdy.appendChild(shadow); + if (!!window.getSelection) { + //FF3, Webkit, IE9 + e.stopPropagation(); + selection = targetWindow.getSelection(); + range = selection.getRangeAt(0); + shadow.appendChild(range.cloneContents()); + removeHyphenationFromElement(shadow); + selection.selectAllChildren(shadow); + restore = function () { + shadow.parentNode.removeChild(shadow); + selection.removeAllRanges(); //IE9 needs that + selection.addRange(range); + }; + } else { + // IE<9 + e.cancelBubble = true; + selection = targetWindow.document.selection; + range = selection.createRange(); + shadow.innerHTML = range.htmlText; + removeHyphenationFromElement(shadow); + rangeShadow = bdy.createTextRange(); + rangeShadow.moveToElementText(shadow); + rangeShadow.select(); + restore = function () { + shadow.parentNode.removeChild(shadow); + if (range.text !== "") { + range.select(); + } + }; + } + window.setTimeout(restore, 0); + }; + + this.removeOnCopy = function (el) { + var body = el.ownerDocument.getElementsByTagName('body')[0]; + if (!body) { + return; + } + el = el || body; + if (window.removeEventListener) { + el.removeEventListener("copy", this.oncopyHandler, true); + } else { + el.detachEvent("oncopy", this.oncopyHandler); + } + }; + + this.registerOnCopy = function (el) { + var body = el.ownerDocument.getElementsByTagName('body')[0]; + if (!body) { + return; + } + el = el || body; + if (window.addEventListener) { + el.addEventListener("copy", this.oncopyHandler, true); + } else { + el.attachEvent("oncopy", this.oncopyHandler); + } + }; + }; + + return (safeCopy ? new Copy() : false); + }()), + + + /** + * @method Hyphenator~checkIfAllDone + * @desc + * Checks if all elements in {@link Hyphenator~elements} are hyphenated, unhides them and fires onHyphenationDone() + * @access private + */ + checkIfAllDone = function () { + var allDone = true, i, doclist = {}, doc; + elements.each(function (ellist) { + var j, l = ellist.length; + for (j = 0; j < l; j += 1) { + allDone = allDone && ellist[j].hyphenated; + if (!doclist.hasOwnProperty(ellist[j].element.baseURI)) { + doclist[ellist[j].element.ownerDocument.location.href] = true; + } + doclist[ellist[j].element.ownerDocument.location.href] = doclist[ellist[j].element.ownerDocument.location.href] && ellist[j].hyphenated; + } + }); + if (allDone) { + if (intermediateState === 'hidden' && unhide === 'progressive') { + elements.each(function (ellist) { + var j, l = ellist.length, el; + for (j = 0; j < l; j += 1) { + el = ellist[j].element; + el.className = el.className.replace(unhideClassRegExp, ''); + if (el.className === '') { + el.removeAttribute('class'); + } + } + }); + } + for (i = 0; i < CSSEditors.length; i += 1) { + CSSEditors[i].clearChanges(); + } + for (doc in doclist) { + if (doclist.hasOwnProperty(doc)) { + onHyphenationDone(doc); + } + } + } + }, + + + /** + * @method Hyphenator~hyphenateElement + * @desc + * Takes the content of the given element and - if there's text - replaces the words + * by hyphenated words. If there's another element, the function is called recursively. + * When all words are hyphenated, the visibility of the element is set to 'visible'. + * @param {string} lang - The language-code of the element + * @param {Element} elo - The element to hyphenate {@link Hyphenator~elements~ElementCollection~Element} + * @access private + */ + hyphenateElement = function (lang, elo) { + var el = elo.element, + hyphenate, + n, + i, + lo, + controlOrphans = function (part) { + var h, r; + switch (hyphen) { + case '|': + h = '\\|'; + break; + case '+': + h = '\\+'; + break; + case '*': + h = '\\*'; + break; + default: + h = hyphen; + } + //strip off blank space at the end (omitted closing tags) + part = part.replace(/[\s]*$/, ''); + if (orphanControl >= 2) { + //remove hyphen points from last word + r = part.split(' '); + r[1] = r[1].replace(new RegExp(h, 'g'), ''); + r[1] = r[1].replace(new RegExp(zeroWidthSpace, 'g'), ''); + r = r.join(' '); + } + if (orphanControl === 3) { + //replace spaces by non breaking spaces + r = r.replace(/[ ]+/g, String.fromCharCode(160)); + } + return r; + }; + if (Hyphenator.languages.hasOwnProperty(lang)) { + lo = Hyphenator.languages[lang]; + hyphenate = function (word) { + var r; + if (!Hyphenator.doHyphenation) { + r = word; + } else if (urlOrMailRE.test(word)) { + r = hyphenateURL(word); + } else { + r = hyphenateWord(lo, lang, word); + } + return r; + }; + if (safeCopy && (el.tagName.toLowerCase() !== 'body')) { + copy.registerOnCopy(el); + } + i = 0; + n = el.childNodes[i]; + while (!!n) { + if (n.nodeType === 3 && n.data.length >= min) { //type 3 = #text -> hyphenate! + n.data = n.data.replace(lo.genRegExp, hyphenate); + if (orphanControl !== 1) { + n.data = n.data.replace(/[\S]+ [\S]+[\s]*$/, controlOrphans); + } + } + i += 1; + n = el.childNodes[i]; + } + } + if (intermediateState === 'hidden' && unhide === 'wait') { + el.className = el.className.replace(hideClassRegExp, ''); + if (el.className === '') { + el.removeAttribute('class'); + } + } + if (intermediateState === 'hidden' && unhide === 'progressive') { + el.className = el.className.replace(hideClassRegExp, ' ' + unhideClass); + } + elo.hyphenated = true; + elements.hyCount += 1; + if (elements.count <= elements.hyCount) { + checkIfAllDone(); + } + }, + + /** + * @method Hyphenator~hyphenateLanguageElements + * @desc + * Calls hyphenateElement() for all elements of the specified language. + * If the language is '*' then all elements are hyphenated. + * This is done with a setTimout + * to prevent a "long running Script"-alert when hyphenating large pages. + * Therefore a tricky bind()-function was necessary. + * @param {string} lang The language of the elements to hyphenate + * @access private + */ + hyphenateLanguageElements = function (lang) { + function bind(fun, arg1, arg2) { + return function () { + return fun(arg1, arg2); + }; + } + var i, l; + if (lang === '*') { + elements.each(function (lang, ellist) { + var j, le = ellist.length; + for (j = 0; j < le; j += 1) { + window.setTimeout(bind(hyphenateElement, lang, ellist[j]), 0); + } + }); + } else { + if (elements.list.hasOwnProperty(lang)) { + l = elements.list[lang].length; + for (i = 0; i < l; i += 1) { + window.setTimeout(bind(hyphenateElement, lang, elements.list[lang][i]), 0); + } + } + } + }, + + /** + * @method Hyphenator~removeHyphenationFromDocument + * @desc + * Does what it says and unregisters the onCopyEvent from the elements + * @access private + */ + removeHyphenationFromDocument = function () { + elements.each(function (ellist) { + var i, l = ellist.length; + for (i = 0; i < l; i += 1) { + removeHyphenationFromElement(ellist[i].element); + if (safeCopy) { + copy.removeOnCopy(ellist[i].element); + } + ellist[i].hyphenated = false; + } + }); + }, + + /** + * @method Hyphenator~createStorage + * @desc + * inits the private var {@link Hyphenator~storage) depending of the setting in {@link Hyphenator~storageType} + * and the supported features of the system. + * @access private + */ + createStorage = function () { + var s; + try { + if (storageType !== 'none' && + window.localStorage !== undefined && + window.sessionStorage !== undefined && + window.JSON.stringify !== undefined && + window.JSON.parse !== undefined) { + switch (storageType) { + case 'session': + s = window.sessionStorage; + break; + case 'local': + s = window.localStorage; + break; + default: + s = undefined; + break; + } + //check for private mode + s.setItem('storageTest', '1'); + s.removeItem('storageTest'); + } + } catch (e) { + //FF throws an error if DOM.storage.enabled is set to false + s = undefined; + } + if (s) { + storage = { + prefix: 'Hyphenator_' + Hyphenator.version + '_', + store: s, + test: function (name) { + var val = this.store.getItem(this.prefix + name); + return (!!val) ? true : false; + }, + getItem: function (name) { + return this.store.getItem(this.prefix + name); + }, + setItem: function (name, value) { + try { + this.store.setItem(this.prefix + name, value); + } catch (e) { + onError(e); + } + } + }; + } else { + storage = undefined; + } + }, + + /** + * @method Hyphenator~storeConfiguration + * @desc + * Stores the current config-options in DOM-Storage + * @access private + */ + storeConfiguration = function () { + if (!storage) { + return; + } + var settings = { + 'STORED': true, + 'classname': hyphenateClass, + 'urlclassname': urlHyphenateClass, + 'donthyphenateclassname': dontHyphenateClass, + 'minwordlength': min, + 'hyphenchar': hyphen, + 'urlhyphenchar': urlhyphen, + 'togglebox': toggleBox, + 'displaytogglebox': displayToggleBox, + 'remoteloading': enableRemoteLoading, + 'enablecache': enableCache, + 'enablereducedpatternset': enableReducedPatternSet, + 'onhyphenationdonecallback': onHyphenationDone, + 'onerrorhandler': onError, + 'onwarninghandler': onWarning, + 'intermediatestate': intermediateState, + 'selectorfunction': selectorFunction || mySelectorFunction, + 'safecopy': safeCopy, + 'doframes': doFrames, + 'storagetype': storageType, + 'orphancontrol': orphanControl, + 'dohyphenation': Hyphenator.doHyphenation, + 'persistentconfig': persistentConfig, + 'defaultlanguage': defaultLanguage, + 'useCSS3hyphenation': css3, + 'unhide': unhide, + 'onbeforewordhyphenation': onBeforeWordHyphenation, + 'onafterwordhyphenation': onAfterWordHyphenation + }; + storage.setItem('config', window.JSON.stringify(settings)); + }, + + /** + * @method Hyphenator~restoreConfiguration + * @desc + * Retrieves config-options from DOM-Storage and does configuration accordingly + * @access private + */ + restoreConfiguration = function () { + var settings; + if (storage.test('config')) { + settings = window.JSON.parse(storage.getItem('config')); + Hyphenator.config(settings); + } + }; + + return { + + /** + * @member {string} Hyphenator.version + * @desc + * String containing the actual version of Hyphenator.js + * [major release].[minor releas].[bugfix release] + * major release: new API, new Features, big changes + * minor release: new languages, improvements + * @access public + */ + version: '4.3.0', + + /** + * @member {boolean} Hyphenator.doHyphenation + * @desc + * If doHyphenation is set to false, hyphenateDocument() isn't called. + * All other actions are performed. + * @default true + */ + doHyphenation: true, + + /** + * @typedef {Object} Hyphenator.languages.language + * @property {Number} leftmin - The minimum of chars to remain on the old line + * @property {Number} rightmin - The minimum of chars to go on the new line + * @property {string} specialChars - Non-ASCII chars in the alphabet. + * @property {Object.<number, string>} patterns - the patterns in a compressed format. The key is the length of the patterns in the value string. + * @property {Object.<string, string>} charSubstitution - optional: a hash table with chars that are replaced during hyphenation + * @property {string | Object.<string, string>} exceptions - optional: a csv string containing exceptions + */ + + /** + * @member {Object.<string, Hyphenator.languages.language>} Hyphenator.languages + * @desc + * Objects that holds key-value pairs, where key is the language and the value is the + * language-object loaded from (and set by) the pattern file. + * @namespace Hyphenator.languages + * @access public + */ + languages: {}, + + + /** + * @method Hyphenator.config + * @desc + * The Hyphenator.config() function that takes an object as an argument. The object contains key-value-pairs + * containig Hyphenator-settings. + * @param {Hyphenator.config} obj + * @access public + * @example + * <script src = "Hyphenator.js" type = "text/javascript"></script> + * <script type = "text/javascript"> + * Hyphenator.config({'minwordlength':4,'hyphenchar':'|'}); + * Hyphenator.run(); + * </script> + */ + config: function (obj) { + var assert = function (name, type) { + var r, t; + t = typeof obj[name]; + if (t === type) { + r = true; + } else { + onError(new Error('Config onError: ' + name + ' must be of type ' + type)); + r = false; + } + return r; + }, + key; + + if (obj.hasOwnProperty('storagetype')) { + if (assert('storagetype', 'string')) { + storageType = obj.storagetype; + } + if (!storage) { + createStorage(); + } + } + if (!obj.hasOwnProperty('STORED') && storage && obj.hasOwnProperty('persistentconfig') && obj.persistentconfig === true) { + restoreConfiguration(); + } + + for (key in obj) { + if (obj.hasOwnProperty(key)) { + switch (key) { + case 'STORED': + break; + case 'classname': + if (assert('classname', 'string')) { + hyphenateClass = obj[key]; + } + break; + case 'urlclassname': + if (assert('urlclassname', 'string')) { + urlHyphenateClass = obj[key]; + } + break; + case 'donthyphenateclassname': + if (assert('donthyphenateclassname', 'string')) { + dontHyphenateClass = obj[key]; + } + break; + case 'minwordlength': + if (assert('minwordlength', 'number')) { + min = obj[key]; + } + break; + case 'hyphenchar': + if (assert('hyphenchar', 'string')) { + if (obj.hyphenchar === '­') { + obj.hyphenchar = String.fromCharCode(173); + } + hyphen = obj[key]; + } + break; + case 'urlhyphenchar': + if (obj.hasOwnProperty('urlhyphenchar')) { + if (assert('urlhyphenchar', 'string')) { + urlhyphen = obj[key]; + } + } + break; + case 'togglebox': + if (assert('togglebox', 'function')) { + toggleBox = obj[key]; + } + break; + case 'displaytogglebox': + if (assert('displaytogglebox', 'boolean')) { + displayToggleBox = obj[key]; + } + break; + case 'remoteloading': + if (assert('remoteloading', 'boolean')) { + enableRemoteLoading = obj[key]; + } + break; + case 'enablecache': + if (assert('enablecache', 'boolean')) { + enableCache = obj[key]; + } + break; + case 'enablereducedpatternset': + if (assert('enablereducedpatternset', 'boolean')) { + enableReducedPatternSet = obj[key]; + } + break; + case 'onhyphenationdonecallback': + if (assert('onhyphenationdonecallback', 'function')) { + onHyphenationDone = obj[key]; + } + break; + case 'onerrorhandler': + if (assert('onerrorhandler', 'function')) { + onError = obj[key]; + } + break; + case 'onwarninghandler': + if (assert('onwarninghandler', 'function')) { + onWarning = obj[key]; + } + break; + case 'intermediatestate': + if (assert('intermediatestate', 'string')) { + intermediateState = obj[key]; + } + break; + case 'selectorfunction': + if (assert('selectorfunction', 'function')) { + selectorFunction = obj[key]; + } + break; + case 'safecopy': + if (assert('safecopy', 'boolean')) { + safeCopy = obj[key]; + } + break; + case 'doframes': + if (assert('doframes', 'boolean')) { + doFrames = obj[key]; + } + break; + case 'storagetype': + if (assert('storagetype', 'string')) { + storageType = obj[key]; + } + break; + case 'orphancontrol': + if (assert('orphancontrol', 'number')) { + orphanControl = obj[key]; + } + break; + case 'dohyphenation': + if (assert('dohyphenation', 'boolean')) { + Hyphenator.doHyphenation = obj[key]; + } + break; + case 'persistentconfig': + if (assert('persistentconfig', 'boolean')) { + persistentConfig = obj[key]; + } + break; + case 'defaultlanguage': + if (assert('defaultlanguage', 'string')) { + defaultLanguage = obj[key]; + } + break; + case 'useCSS3hyphenation': + if (assert('useCSS3hyphenation', 'boolean')) { + css3 = obj[key]; + } + break; + case 'unhide': + if (assert('unhide', 'string')) { + unhide = obj[key]; + } + break; + case 'onbeforewordhyphenation': + if (assert('onbeforewordhyphenation', 'function')) { + onBeforeWordHyphenation = obj[key]; + } + break; + case 'onafterwordhyphenation': + if (assert('onafterwordhyphenation', 'function')) { + onAfterWordHyphenation = obj[key]; + } + break; + default: + onError(new Error('Hyphenator.config: property ' + key + ' not known.')); + } + } + } + if (storage && persistentConfig) { + storeConfiguration(); + } + }, + + /** + * @method Hyphenator.run + * @desc + * Bootstrap function that starts all hyphenation processes when called: + * Tries to create storage if required and calls {@link Hyphenator~runWhenLoaded} on 'window' handing over the callback 'process' + * @access public + * @example + * <script src = "Hyphenator.js" type = "text/javascript"></script> + * <script type = "text/javascript"> + * Hyphenator.run(); + * </script> + */ + run: function () { + /** + *@callback Hyphenator.run~process process - The function is called when the DOM has loaded (or called for each frame) + */ + var process = function () { + try { + if (contextWindow.document.getElementsByTagName('frameset').length > 0) { + return; //we are in a frameset + } + autoSetMainLanguage(undefined); + gatherDocumentInfos(); + prepare(hyphenateLanguageElements); + if (displayToggleBox) { + toggleBox(); + } + } catch (e) { + onError(e); + } + }; + + if (!storage) { + createStorage(); + } + runWhenLoaded(window, process); + }, + + /** + * @method Hyphenator.addExceptions + * @desc + * Adds the exceptions from the string to the appropriate language in the + * {@link Hyphenator~languages}-object + * @param {string} lang The language + * @param {string} words A comma separated string of hyphenated words WITH spaces. + * @access public + * @example <script src = "Hyphenator.js" type = "text/javascript"></script> + * <script type = "text/javascript"> + * Hyphenator.addExceptions('de','ziem-lich, Wach-stube'); + * Hyphenator.run(); + * </script> + */ + addExceptions: function (lang, words) { + if (lang === '') { + lang = 'global'; + } + if (exceptions.hasOwnProperty(lang)) { + exceptions[lang] += ", " + words; + } else { + exceptions[lang] = words; + } + }, + + /** + * @method Hyphenator.hyphenate + * @access public + * @desc + * Hyphenates the target. The language patterns must be loaded. + * If the target is a string, the hyphenated string is returned, + * if it's an object, the values are hyphenated directly and undefined (aka nothing) is returned + * @param {string|Object} target the target to be hyphenated + * @param {string} lang the language of the target + * @returns {string|undefined} + * @example <script src = "Hyphenator.js" type = "text/javascript"></script> + * <script src = "patterns/en.js" type = "text/javascript"></script> + * <script type = "text/javascript"> + * var t = Hyphenator.hyphenate('Hyphenation', 'en'); //Hy|phen|ation + * </script> + */ + hyphenate: function (target, lang) { + var hyphenate, n, i, lo; + lo = Hyphenator.languages[lang]; + if (Hyphenator.languages.hasOwnProperty(lang)) { + if (!lo.prepared) { + prepareLanguagesObj(lang); + } + hyphenate = function (word) { + var r; + if (urlOrMailRE.test(word)) { + r = hyphenateURL(word); + } else { + r = hyphenateWord(lo, lang, word); + } + return r; + }; + if (typeof target === 'object' && !(typeof target === 'string' || target.constructor === String)) { + i = 0; + n = target.childNodes[i]; + while (!!n) { + if (n.nodeType === 3 && n.data.length >= min) { //type 3 = #text -> hyphenate! + n.data = n.data.replace(lo.genRegExp, hyphenate); + } else if (n.nodeType === 1) { + if (n.lang !== '') { + Hyphenator.hyphenate(n, n.lang); + } else { + Hyphenator.hyphenate(n, lang); + } + } + i += 1; + n = target.childNodes[i]; + } + } else if (typeof target === 'string' || target.constructor === String) { + return target.replace(lo.genRegExp, hyphenate); + } + } else { + onError(new Error('Language "' + lang + '" is not loaded.')); + } + }, + + /** + * @method Hyphenator.getRedPatternSet + * @desc + * Returns the reduced pattern set: an object looking like: {'patk': pat} + * @param {string} lang the language patterns are stored for + * @returns {Object.<string, string>} + * @access public + */ + getRedPatternSet: function (lang) { + return Hyphenator.languages[lang].redPatSet; + }, + + /** + * @method Hyphenator.isBookmarklet + * @desc + * Returns {@link Hyphenator~isBookmarklet}. + * @returns {boolean} + * @access public + */ + isBookmarklet: function () { + return isBookmarklet; + }, + + /** + * @method Hyphenator.getConfigFromURI + * @desc + * reads and sets configurations from GET parameters in the URI + * @access public + */ + getConfigFromURI: function () { + /*jslint evil: true*/ + var loc = null, re = {}, jsArray = contextWindow.document.getElementsByTagName('script'), i, j, l, s, gp, option; + for (i = 0, l = jsArray.length; i < l; i += 1) { + if (!!jsArray[i].getAttribute('src')) { + loc = jsArray[i].getAttribute('src'); + } + if (loc && (loc.indexOf('Hyphenator.js?') !== -1)) { + s = loc.indexOf('Hyphenator.js?'); + gp = loc.substring(s + 14).split('&'); + for (j = 0; j < gp.length; j += 1) { + option = gp[j].split('='); + if (option[0] !== 'bm') { + if (option[1] === 'true') { + option[1] = true; + } else if (option[1] === 'false') { + option[1] = false; + } else if (isFinite(option[1])) { + option[1] = parseInt(option[1], 10); + } + if (option[0] === 'togglebox' || + option[0] === 'onhyphenationdonecallback' || + option[0] === 'onerrorhandler' || + option[0] === 'selectorfunction' || + option[0] === 'onbeforewordhyphenation' || + option[0] === 'onafterwordhyphenation') { + option[1] = new Function('', option[1]); + } + re[option[0]] = option[1]; + } + } + break; + } + } + return re; + }, + + /** + * @method Hyphenator.toggleHyphenation + * @desc + * Checks the current state of the ToggleBox and removes or does hyphenation. + * @access public + */ + toggleHyphenation: function () { + if (Hyphenator.doHyphenation) { + if (!!css3hyphenateClassHandle) { + css3hyphenateClassHandle.setRule('.' + css3hyphenateClass, css3_h9n.property + ': none;'); + } + removeHyphenationFromDocument(); + Hyphenator.doHyphenation = false; + storeConfiguration(); + toggleBox(); + } else { + if (!!css3hyphenateClassHandle) { + css3hyphenateClassHandle.setRule('.' + css3hyphenateClass, css3_h9n.property + ': auto;'); + } + hyphenateLanguageElements('*'); + Hyphenator.doHyphenation = true; + storeConfiguration(); + toggleBox(); + } + } + }; +}(window)); + +//Export properties/methods (for google closure compiler) +/**** to be moved to external file +Hyphenator['languages'] = Hyphenator.languages; +Hyphenator['config'] = Hyphenator.config; +Hyphenator['run'] = Hyphenator.run; +Hyphenator['addExceptions'] = Hyphenator.addExceptions; +Hyphenator['hyphenate'] = Hyphenator.hyphenate; +Hyphenator['getRedPatternSet'] = Hyphenator.getRedPatternSet; +Hyphenator['isBookmarklet'] = Hyphenator.isBookmarklet; +Hyphenator['getConfigFromURI'] = Hyphenator.getConfigFromURI; +Hyphenator['toggleHyphenation'] = Hyphenator.toggleHyphenation; +window['Hyphenator'] = Hyphenator; +*/ + +/* + * call Hyphenator if it is a Bookmarklet + */ +if (Hyphenator.isBookmarklet()) { + Hyphenator.config({displaytogglebox: true, intermediatestate: 'visible', storagetype: 'local', doframes: true, useCSS3hyphenation: true}); + Hyphenator.config(Hyphenator.getConfigFromURI()); + Hyphenator.run(); +}
@@ -0,0 +1,10 @@
+var sevenUp=function(){var osSupportsUpgrade=/(Windows NT 5.1|Windows NT 6.0|Windows NT 6.1|)/i.test(navigator.userAgent);var options={enableClosing:true,enableQuitBuggingMe:true,overlayColor:"#000000",lightboxColor:"#ffffff",borderColor:"#6699ff",downloadLink:osSupportsUpgrade?"http://www.microsoft.com/windows/internet-explorer":"http://getfirefox.com",overrideLightbox:false,lightboxHTML:null,showToAllBrowsers:false,usePlugin:false};function mergeInOptions(newOptions){if(newOptions){for(var i in options){if(newOptions[i]!==undefined){options[i]=newOptions[i];}}}} +function isCookieSet(){if(document.cookie.length>0){var i=document.cookie.indexOf("sevenup=");return(i!=-1);} +return false;} +return{overlayCSS:function(){return"display: block; position: absolute; top: 0%; left: 0%;"+"width: 100%; height: 100%; background-color: "+options.overlayColor+"; "+"filter: alpha(opacity: 80); z-index:1001;";},lightboxCSS:function(){return"display: block; position: absolute; top: 25%; left: 25%; width: 50%; "+"padding: 16px; border: 8px solid "+options.borderColor+"; "+"background-color:"+options.lightboxColor+"; "+"z-index:1002; overflow: hidden;";},lightboxContents:function(){var html=options.lightboxHTML;if(!html){html="<div style='width: 100%; height: 95%'>"+"<h2 style='text-align: center;'>Your web browser is outdated and unsupported</h2>"+"<div class='upgrade_msg' style='text-align: center;'>"+"You can easily upgrade to the latest version at<br> "+"<a style='color: #0000EE' href='"+options.downloadLink+"'>"+ +options.downloadLink+"</a>"+"</div>"+"<h3 style='margin-top: 40px'>Why should I upgrade?</h3>"+"<ul>"+"<li><b>Websites load faster</b>, often double the speed of this older version</li>"+"<li><b>Websites look better</b>, so you see sites they way they were intended</li>"+"<li><b>Tabs</b> let you view multiple sites in one window</li>"+"<li><b>Safer browsing</b> with phishing protection</li>"+"</ul>"+"</div>";if(options.enableClosing){html+="<div style='font-size: 11px; text-align: right;'>";html+=options.enableQuitBuggingMe?("<a href='#' onclick='sevenUp.quitBuggingMe();' "+"style='color: #0000EE'>"+"Quit bugging me"+"</a>"):("<a href='#' onclick='sevenUp.close();' "+"style='color: #0000EE'>"+"close"+"</a>");html+="</div>";}} +return html;},test:function(newOptions,callback){mergeInOptions(newOptions);if(!isCookieSet()){var layerHTML="<div id='sevenUpCallbackSignal'></div>";if(options.overrideLightbox){layerHTML+=options.lightboxHTML;}else{layerHTML+="<div id='sevenUpOverlay' style='"+overlayCSS()+"'>"+"</div>"+"<div id='sevenUpLightbox' style='"+lightboxCSS()+"'>"+ +lightboxContents()+"</div>";} +if(options.showToAllBrowsers!==true){layerHTML="<!--[if lt IE 7]>"+layerHTML+"<![endif]-->";} +var layer=document.createElement('div');layer.innerHTML=layerHTML;document.body.appendChild(layer);if(callback&&document.getElementById('sevenUpCallbackSignal')){callback(options);}}},quitBuggingMe:function(){var exp=new Date();exp.setTime(exp.getTime()+(7*24*3600000));document.cookie="sevenup=dontbugme; expires="+exp.toUTCString();this.close();},close:function(){var overlay=document.getElementById('sevenUpOverlay');var lightbox=document.getElementById('sevenUpLightbox');if(overlay){overlay.style.display='none';} +if(lightbox){lightbox.style.display='none';}},plugin:{}};}();
@@ -0,0 +1,42 @@
+if(sevenUp){sevenUp.plugin.black={test:function(newOptions,callback){newOptions.overrideLightbox=true;newOptions.lightboxHTML=" \ + <div id='sevenUpLightbox' style='display:block;position:absolute;top:25%;text-align:center;z-index:1002;overflow:hidden;width:100%'> \ + <div style='width:550px;margin:0px auto;text-align:left;'> \ + <div style='background:url(http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/curve-top.gif);font-size:1px;height:18px;width:550px;'></div> \ + <div style='background:#1a1a1a;color:#999;font: 12px Arial, Helvetica, sans-serif;position:relative;text-align:center;width:550px;'> \ + <div style='background:transparent url(http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/close.gif);height:26px;position:absolute;right:6px;top:-10px;width:26px;'> \ + <a href='#' onclick='sevenUp.close()' style='display:block;height:26px;text-indent:-9999px;width:26px;'>Close</a> \ + </div> \ + <h1 style='background:url(http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/heading-main.gif) 0 18px no-repeat;font-size:1px;height:43px;margin:0 auto;;text-indent:-9999px;width:479px;'>Your web browser is updated</h1> \ + <p style='font-size:14px;margin:8px 0 11px;'>You can easily upgrade to the latest version</p> \ + <a href='http://www.microsoft.com/windows/internet-explorer'><img src='http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/IE.jpg' alt='Internet Explorer 8' style='border:0;'/></a> \ + <p style='margin:2px 0 22px;'><a href='http://www.microsoft.com/windows/internet-explorer' style='color:#999;text-decoration:none;'>Internet Explorer 8</a></p> \ + <div class='whyUpgrade' style='float:left;text-align:left;padding-left:35px;width:270px;'> \ + <h3 style='background:url(http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/heading-upgrade.gif);font-size:1px;height:13px;margin:0;text-indent:-9999px;width:146px;'>Why should I upgrade?</h3> \ + <dl style='line-height: 1.4;margin:7px 0 0 2px'> \ + <dt style='color:#e6e6e6'>Web sites load faster</dt> \ + <dd style='font-size:11px;margin-left:20px;'>often double the speed of this older version.</dd> \ + <dt style='color:#e6e6e6'>Web sites render correctly</dt> \ + <dd style='font-size:11px;margin-left:20px;'>with more web standards compliance.</dd> \ + <dt style='color:#e6e6e6'>Tabs Interface</dt> \ + <dd style='font-size:11px;margin-left:20px;'>lets you view multiple sites in one window.</dd> \ + <dt style='color:#e6e6e6'>Safer browsing</dt> \ + <dd style='font-size:11px;margin-left:20px;'>with better security and phishing protection.</dd> \ + <dt style='color:#e6e6e6'>Convenient Printing</dt> \ + <dd style='font-size:11px;margin-left:20px;'>with fit-to-page capability.</dd> \ + </dl> \ + </div> \ + <div class='otherBrowsers' style='float:left;font-size:14px;text-align:left;width:220px;margin-left:20px'> \ + <h3 style='background:url(http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/heading-browsers.gif);font-size:1px;height:13px;margin:0;text-indent:-9999px;width:152px;'>Explore other browsers</h3> \ + <ul style='list-style:none;margin:0;padding:9px 0 0 0'> \ + <li style='height:39px;background:url(http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/Chrome.jpg) no-repeat;'><a href='http://www.google.com/chrome' style='color:#e6e6e6;display:block;padding:4px 0 8px 44px;text-decoration:none;width:150px;'>Google Chrome</a></li> \ + <li style='height:39px;background:url(http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/Firefox.jpg) no-repeat;'><a href='http://getfirefox.com' style='color:#e6e6e6;display:block;padding:4px 0 8px 44px;text-decoration:none;width:140px;'>Mozilla Firefox</a></li> \ + <li style='height:39px;background:url(http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/Opera.jpg) no-repeat;'><a href='http://www.opera.com/download/' style='color:#e6e6e6;display:block;padding:4px 0 8px 44px;text-decoration:none;width:140px;'>Opera</a></li> \ + <li style='height:39px;background:url(http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/Safari.jpg) no-repeat;'><a href='http://www.apple.com/safari/download/' style='color:#e6e6e6;display:block;padding:4px 0 8px 44px;text-decoration:none;width:140px;'>Apple Safari</a></li> \ + </ul> \ + </div> \ + <div style='clear:both;'><a href='#' style='bottom:-10px;color:#e6e6e6;font-size:14px;position:absolute;right:14px;text-decoration:none;' ";if(newOptions.enableQuitBuggingMe===false){newOptions.lightboxHTML+="onclick='sevenUp.close()'>close";}else{newOptions.lightboxHTML+="onclick='sevenUp.quitBuggingMe()'>quit bugging me";} +newOptions.lightboxHTML+="</a></div> \ + </div> \ + <div style='background:url(http://dl.getdropbox.com/u/48374/sevenup/plugins/black/images/curve-bottom.gif);font-size:1px;height:18px;width:550px;'></div> \ + </div> \ + </div>";sevenUp.test(newOptions,callback);}};}
@@ -0,0 +1,7 @@
+/*! + * Bootstrap v3.0.3 (http://getbootstrap.com) + * Copyright 2013 Twitter, Inc. + * Licensed under http://www.apache.org/licenses/LICENSE-2.0 + */ + +.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn:active,.btn.active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-primary{background-image:-webkit-linear-gradient(top,#428bca 0,#2d6ca2 100%);background-image:linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);background-repeat:repeat-x;border-color:#2b669a;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff2d6ca2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:focus{background-color:#2d6ca2;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#2d6ca2;border-color:#2b669a}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);background-repeat:repeat-x;border-color:#3e8f3e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff419641',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);background-repeat:repeat-x;border-color:#e38d13;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffeb9316',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);background-repeat:repeat-x;border-color:#b92c28;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc12e2a',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);background-repeat:repeat-x;border-color:#28a4c9;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2aabd2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-color:#357ebd;background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);background-repeat:repeat-x;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff8f8f8',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075)}.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f3f3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff3f3f3',GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.075);box-shadow:inset 0 3px 9px rgba(0,0,0,0.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#222 0,#282828 100%);background-image:linear-gradient(to bottom,#222 0,#282828 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff282828',GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.25);box-shadow:inset 0 3px 9px rgba(0,0,0,0.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);background-repeat:repeat-x;border-color:#b2dba1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffc8e5bc',GradientType=0)}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);background-repeat:repeat-x;border-color:#9acfea;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffb9def0',GradientType=0)}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);background-repeat:repeat-x;border-color:#f5e79e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fff8efc0',GradientType=0)}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);background-repeat:repeat-x;border-color:#dca7a7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffe7c3c3',GradientType=0)}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff5f5f5',GradientType=0)}.progress-bar{background-image:-webkit-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3071a9',GradientType=0)}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0)}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0)}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0)}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-linear-gradient(top,#428bca 0,#3278b3 100%);background-image:linear-gradient(to bottom,#428bca 0,#3278b3 100%);background-repeat:repeat-x;border-color:#3278b3;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3278b3',GradientType=0)}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffd0e9c6',GradientType=0)}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffc4e3f3',GradientType=0)}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fffaf2cc',GradientType=0)}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffebcccc',GradientType=0)}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);background-repeat:repeat-x;border-color:#dcdcdc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',endColorstr='#fff5f5f5',GradientType=0);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1)}
@@ -0,0 +1,7118 @@
+/*! + * Bootstrap v3.0.3 (http://getbootstrap.com) + * Copyright 2013 Twitter, Inc. + * Licensed under http://www.apache.org/licenses/LICENSE-2.0 + */ + +/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +summary { + display: block; +} + +audio, +canvas, +video { + display: inline-block; +} + +audio:not([controls]) { + display: none; + height: 0; +} + +[hidden], +template { + display: none; +} + +html { + font-family: sans-serif; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +body { + margin: 0; +} + +a { + background: transparent; +} + +a:focus { + outline: thin dotted; +} + +a:active, +a:hover { + outline: 0; +} + +h1 { + margin: 0.67em 0; + font-size: 2em; +} + +abbr[title] { + border-bottom: 1px dotted; +} + +b, +strong { + font-weight: bold; +} + +dfn { + font-style: italic; +} + +hr { + height: 0; + -moz-box-sizing: content-box; + box-sizing: content-box; +} + +mark { + color: #000; + background: #ff0; +} + +code, +kbd, +pre, +samp { + font-family: monospace, serif; + font-size: 1em; +} + +pre { + white-space: pre-wrap; +} + +q { + quotes: "\201C" "\201D" "\2018" "\2019"; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +img { + border: 0; +} + +svg:not(:root) { + overflow: hidden; +} + +figure { + margin: 0; +} + +fieldset { + padding: 0.35em 0.625em 0.75em; + margin: 0 2px; + border: 1px solid #c0c0c0; +} + +legend { + padding: 0; + border: 0; +} + +button, +input, +select, +textarea { + margin: 0; + font-family: inherit; + font-size: 100%; +} + +button, +input { + line-height: normal; +} + +button, +select { + text-transform: none; +} + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + cursor: pointer; + -webkit-appearance: button; +} + +button[disabled], +html input[disabled] { + cursor: default; +} + +input[type="checkbox"], +input[type="radio"] { + padding: 0; + box-sizing: border-box; +} + +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} + +textarea { + overflow: auto; + vertical-align: top; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +@media print { + * { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 2cm .5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + select { + background: #fff !important; + } + .navbar { + display: none; + } + .table td, + .table th { + background-color: #fff !important; + } + .btn > .caret, + .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} + +*, +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +html { + font-size: 62.5%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.428571429; + color: #333333; + background-color: #ffffff; +} + +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +a { + color: #428bca; + text-decoration: none; +} + +a:hover, +a:focus { + color: #2a6496; + text-decoration: underline; +} + +a:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +img { + vertical-align: middle; +} + +.img-responsive { + display: block; + height: auto; + max-width: 100%; +} + +.img-rounded { + border-radius: 6px; +} + +.img-thumbnail { + display: inline-block; + height: auto; + max-width: 100%; + padding: 4px; + line-height: 1.428571429; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} + +.img-circle { + border-radius: 50%; +} + +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} + +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-weight: 500; + line-height: 1.1; + color: inherit; +} + +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small, +.h1 small, +.h2 small, +.h3 small, +.h4 small, +.h5 small, +.h6 small, +h1 .small, +h2 .small, +h3 .small, +h4 .small, +h5 .small, +h6 .small, +.h1 .small, +.h2 .small, +.h3 .small, +.h4 .small, +.h5 .small, +.h6 .small { + font-weight: normal; + line-height: 1; + color: #999999; +} + +h1, +h2, +h3 { + margin-top: 20px; + margin-bottom: 10px; +} + +h1 small, +h2 small, +h3 small, +h1 .small, +h2 .small, +h3 .small { + font-size: 65%; +} + +h4, +h5, +h6 { + margin-top: 10px; + margin-bottom: 10px; +} + +h4 small, +h5 small, +h6 small, +h4 .small, +h5 .small, +h6 .small { + font-size: 75%; +} + +h1, +.h1 { + font-size: 36px; +} + +h2, +.h2 { + font-size: 30px; +} + +h3, +.h3 { + font-size: 24px; +} + +h4, +.h4 { + font-size: 18px; +} + +h5, +.h5 { + font-size: 14px; +} + +h6, +.h6 { + font-size: 12px; +} + +p { + margin: 0 0 10px; +} + +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 200; + line-height: 1.4; +} + +@media (min-width: 768px) { + .lead { + font-size: 21px; + } +} + +small, +.small { + font-size: 85%; +} + +cite { + font-style: normal; +} + +.text-muted { + color: #999999; +} + +.text-primary { + color: #428bca; +} + +.text-primary:hover { + color: #3071a9; +} + +.text-warning { + color: #8a6d3b; +} + +.text-warning:hover { + color: #66512c; +} + +.text-danger { + color: #a94442; +} + +.text-danger:hover { + color: #843534; +} + +.text-success { + color: #3c763d; +} + +.text-success:hover { + color: #2b542c; +} + +.text-info { + color: #31708f; +} + +.text-info:hover { + color: #245269; +} + +.text-left { + text-align: left; +} + +.text-right { + text-align: right; +} + +.text-center { + text-align: center; +} + +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eeeeee; +} + +ul, +ol { + margin-top: 0; + margin-bottom: 10px; +} + +ul ul, +ol ul, +ul ol, +ol ol { + margin-bottom: 0; +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} + +.list-inline > li:first-child { + padding-left: 0; +} + +dl { + margin-top: 0; + margin-bottom: 20px; +} + +dt, +dd { + line-height: 1.428571429; +} + +dt { + font-weight: bold; +} + +dd { + margin-left: 0; +} + +@media (min-width: 768px) { + .dl-horizontal dt { + float: left; + width: 160px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; + } + .dl-horizontal dd { + margin-left: 180px; + } + .dl-horizontal dd:before, + .dl-horizontal dd:after { + display: table; + content: " "; + } + .dl-horizontal dd:after { + clear: both; + } + .dl-horizontal dd:before, + .dl-horizontal dd:after { + display: table; + content: " "; + } + .dl-horizontal dd:after { + clear: both; + } +} + +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #999999; +} + +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + border-left: 5px solid #eeeeee; +} + +blockquote p { + font-size: 17.5px; + font-weight: 300; + line-height: 1.25; +} + +blockquote p:last-child { + margin-bottom: 0; +} + +blockquote small, +blockquote .small { + display: block; + line-height: 1.428571429; + color: #999999; +} + +blockquote small:before, +blockquote .small:before { + content: '\2014 \00A0'; +} + +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #eeeeee; + border-left: 0; +} + +blockquote.pull-right p, +blockquote.pull-right small, +blockquote.pull-right .small { + text-align: right; +} + +blockquote.pull-right small:before, +blockquote.pull-right .small:before { + content: ''; +} + +blockquote.pull-right small:after, +blockquote.pull-right .small:after { + content: '\00A0 \2014'; +} + +blockquote:before, +blockquote:after { + content: ""; +} + +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.428571429; +} + +code, +kbd, +pre, +samp { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; +} + +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + white-space: nowrap; + background-color: #f9f2f4; + border-radius: 4px; +} + +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.428571429; + color: #333333; + word-break: break-all; + word-wrap: break-word; + background-color: #f5f5f5; + border: 1px solid #cccccc; + border-radius: 4px; +} + +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +.container { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +.container:before, +.container:after { + display: table; + content: " "; +} + +.container:after { + clear: both; +} + +.container:before, +.container:after { + display: table; + content: " "; +} + +.container:after { + clear: both; +} + +@media (min-width: 768px) { + .container { + width: 750px; + } +} + +@media (min-width: 992px) { + .container { + width: 970px; + } +} + +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} + +.row { + margin-right: -15px; + margin-left: -15px; +} + +.row:before, +.row:after { + display: table; + content: " "; +} + +.row:after { + clear: both; +} + +.row:before, +.row:after { + display: table; + content: " "; +} + +.row:after { + clear: both; +} + +.col-xs-1, +.col-sm-1, +.col-md-1, +.col-lg-1, +.col-xs-2, +.col-sm-2, +.col-md-2, +.col-lg-2, +.col-xs-3, +.col-sm-3, +.col-md-3, +.col-lg-3, +.col-xs-4, +.col-sm-4, +.col-md-4, +.col-lg-4, +.col-xs-5, +.col-sm-5, +.col-md-5, +.col-lg-5, +.col-xs-6, +.col-sm-6, +.col-md-6, +.col-lg-6, +.col-xs-7, +.col-sm-7, +.col-md-7, +.col-lg-7, +.col-xs-8, +.col-sm-8, +.col-md-8, +.col-lg-8, +.col-xs-9, +.col-sm-9, +.col-md-9, +.col-lg-9, +.col-xs-10, +.col-sm-10, +.col-md-10, +.col-lg-10, +.col-xs-11, +.col-sm-11, +.col-md-11, +.col-lg-11, +.col-xs-12, +.col-sm-12, +.col-md-12, +.col-lg-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} + +.col-xs-1, +.col-xs-2, +.col-xs-3, +.col-xs-4, +.col-xs-5, +.col-xs-6, +.col-xs-7, +.col-xs-8, +.col-xs-9, +.col-xs-10, +.col-xs-11, +.col-xs-12 { + float: left; +} + +.col-xs-12 { + width: 100%; +} + +.col-xs-11 { + width: 91.66666666666666%; +} + +.col-xs-10 { + width: 83.33333333333334%; +} + +.col-xs-9 { + width: 75%; +} + +.col-xs-8 { + width: 66.66666666666666%; +} + +.col-xs-7 { + width: 58.333333333333336%; +} + +.col-xs-6 { + width: 50%; +} + +.col-xs-5 { + width: 41.66666666666667%; +} + +.col-xs-4 { + width: 33.33333333333333%; +} + +.col-xs-3 { + width: 25%; +} + +.col-xs-2 { + width: 16.666666666666664%; +} + +.col-xs-1 { + width: 8.333333333333332%; +} + +.col-xs-pull-12 { + right: 100%; +} + +.col-xs-pull-11 { + right: 91.66666666666666%; +} + +.col-xs-pull-10 { + right: 83.33333333333334%; +} + +.col-xs-pull-9 { + right: 75%; +} + +.col-xs-pull-8 { + right: 66.66666666666666%; +} + +.col-xs-pull-7 { + right: 58.333333333333336%; +} + +.col-xs-pull-6 { + right: 50%; +} + +.col-xs-pull-5 { + right: 41.66666666666667%; +} + +.col-xs-pull-4 { + right: 33.33333333333333%; +} + +.col-xs-pull-3 { + right: 25%; +} + +.col-xs-pull-2 { + right: 16.666666666666664%; +} + +.col-xs-pull-1 { + right: 8.333333333333332%; +} + +.col-xs-pull-0 { + right: 0; +} + +.col-xs-push-12 { + left: 100%; +} + +.col-xs-push-11 { + left: 91.66666666666666%; +} + +.col-xs-push-10 { + left: 83.33333333333334%; +} + +.col-xs-push-9 { + left: 75%; +} + +.col-xs-push-8 { + left: 66.66666666666666%; +} + +.col-xs-push-7 { + left: 58.333333333333336%; +} + +.col-xs-push-6 { + left: 50%; +} + +.col-xs-push-5 { + left: 41.66666666666667%; +} + +.col-xs-push-4 { + left: 33.33333333333333%; +} + +.col-xs-push-3 { + left: 25%; +} + +.col-xs-push-2 { + left: 16.666666666666664%; +} + +.col-xs-push-1 { + left: 8.333333333333332%; +} + +.col-xs-push-0 { + left: 0; +} + +.col-xs-offset-12 { + margin-left: 100%; +} + +.col-xs-offset-11 { + margin-left: 91.66666666666666%; +} + +.col-xs-offset-10 { + margin-left: 83.33333333333334%; +} + +.col-xs-offset-9 { + margin-left: 75%; +} + +.col-xs-offset-8 { + margin-left: 66.66666666666666%; +} + +.col-xs-offset-7 { + margin-left: 58.333333333333336%; +} + +.col-xs-offset-6 { + margin-left: 50%; +} + +.col-xs-offset-5 { + margin-left: 41.66666666666667%; +} + +.col-xs-offset-4 { + margin-left: 33.33333333333333%; +} + +.col-xs-offset-3 { + margin-left: 25%; +} + +.col-xs-offset-2 { + margin-left: 16.666666666666664%; +} + +.col-xs-offset-1 { + margin-left: 8.333333333333332%; +} + +.col-xs-offset-0 { + margin-left: 0; +} + +@media (min-width: 768px) { + .col-sm-1, + .col-sm-2, + .col-sm-3, + .col-sm-4, + .col-sm-5, + .col-sm-6, + .col-sm-7, + .col-sm-8, + .col-sm-9, + .col-sm-10, + .col-sm-11, + .col-sm-12 { + float: left; + } + .col-sm-12 { + width: 100%; + } + .col-sm-11 { + width: 91.66666666666666%; + } + .col-sm-10 { + width: 83.33333333333334%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-8 { + width: 66.66666666666666%; + } + .col-sm-7 { + width: 58.333333333333336%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-5 { + width: 41.66666666666667%; + } + .col-sm-4 { + width: 33.33333333333333%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-2 { + width: 16.666666666666664%; + } + .col-sm-1 { + width: 8.333333333333332%; + } + .col-sm-pull-12 { + right: 100%; + } + .col-sm-pull-11 { + right: 91.66666666666666%; + } + .col-sm-pull-10 { + right: 83.33333333333334%; + } + .col-sm-pull-9 { + right: 75%; + } + .col-sm-pull-8 { + right: 66.66666666666666%; + } + .col-sm-pull-7 { + right: 58.333333333333336%; + } + .col-sm-pull-6 { + right: 50%; + } + .col-sm-pull-5 { + right: 41.66666666666667%; + } + .col-sm-pull-4 { + right: 33.33333333333333%; + } + .col-sm-pull-3 { + right: 25%; + } + .col-sm-pull-2 { + right: 16.666666666666664%; + } + .col-sm-pull-1 { + right: 8.333333333333332%; + } + .col-sm-pull-0 { + right: 0; + } + .col-sm-push-12 { + left: 100%; + } + .col-sm-push-11 { + left: 91.66666666666666%; + } + .col-sm-push-10 { + left: 83.33333333333334%; + } + .col-sm-push-9 { + left: 75%; + } + .col-sm-push-8 { + left: 66.66666666666666%; + } + .col-sm-push-7 { + left: 58.333333333333336%; + } + .col-sm-push-6 { + left: 50%; + } + .col-sm-push-5 { + left: 41.66666666666667%; + } + .col-sm-push-4 { + left: 33.33333333333333%; + } + .col-sm-push-3 { + left: 25%; + } + .col-sm-push-2 { + left: 16.666666666666664%; + } + .col-sm-push-1 { + left: 8.333333333333332%; + } + .col-sm-push-0 { + left: 0; + } + .col-sm-offset-12 { + margin-left: 100%; + } + .col-sm-offset-11 { + margin-left: 91.66666666666666%; + } + .col-sm-offset-10 { + margin-left: 83.33333333333334%; + } + .col-sm-offset-9 { + margin-left: 75%; + } + .col-sm-offset-8 { + margin-left: 66.66666666666666%; + } + .col-sm-offset-7 { + margin-left: 58.333333333333336%; + } + .col-sm-offset-6 { + margin-left: 50%; + } + .col-sm-offset-5 { + margin-left: 41.66666666666667%; + } + .col-sm-offset-4 { + margin-left: 33.33333333333333%; + } + .col-sm-offset-3 { + margin-left: 25%; + } + .col-sm-offset-2 { + margin-left: 16.666666666666664%; + } + .col-sm-offset-1 { + margin-left: 8.333333333333332%; + } + .col-sm-offset-0 { + margin-left: 0; + } +} + +@media (min-width: 992px) { + .col-md-1, + .col-md-2, + .col-md-3, + .col-md-4, + .col-md-5, + .col-md-6, + .col-md-7, + .col-md-8, + .col-md-9, + .col-md-10, + .col-md-11, + .col-md-12 { + float: left; + } + .col-md-12 { + width: 100%; + } + .col-md-11 { + width: 91.66666666666666%; + } + .col-md-10 { + width: 83.33333333333334%; + } + .col-md-9 { + width: 75%; + } + .col-md-8 { + width: 66.66666666666666%; + } + .col-md-7 { + width: 58.333333333333336%; + } + .col-md-6 { + width: 50%; + } + .col-md-5 { + width: 41.66666666666667%; + } + .col-md-4 { + width: 33.33333333333333%; + } + .col-md-3 { + width: 25%; + } + .col-md-2 { + width: 16.666666666666664%; + } + .col-md-1 { + width: 8.333333333333332%; + } + .col-md-pull-12 { + right: 100%; + } + .col-md-pull-11 { + right: 91.66666666666666%; + } + .col-md-pull-10 { + right: 83.33333333333334%; + } + .col-md-pull-9 { + right: 75%; + } + .col-md-pull-8 { + right: 66.66666666666666%; + } + .col-md-pull-7 { + right: 58.333333333333336%; + } + .col-md-pull-6 { + right: 50%; + } + .col-md-pull-5 { + right: 41.66666666666667%; + } + .col-md-pull-4 { + right: 33.33333333333333%; + } + .col-md-pull-3 { + right: 25%; + } + .col-md-pull-2 { + right: 16.666666666666664%; + } + .col-md-pull-1 { + right: 8.333333333333332%; + } + .col-md-pull-0 { + right: 0; + } + .col-md-push-12 { + left: 100%; + } + .col-md-push-11 { + left: 91.66666666666666%; + } + .col-md-push-10 { + left: 83.33333333333334%; + } + .col-md-push-9 { + left: 75%; + } + .col-md-push-8 { + left: 66.66666666666666%; + } + .col-md-push-7 { + left: 58.333333333333336%; + } + .col-md-push-6 { + left: 50%; + } + .col-md-push-5 { + left: 41.66666666666667%; + } + .col-md-push-4 { + left: 33.33333333333333%; + } + .col-md-push-3 { + left: 25%; + } + .col-md-push-2 { + left: 16.666666666666664%; + } + .col-md-push-1 { + left: 8.333333333333332%; + } + .col-md-push-0 { + left: 0; + } + .col-md-offset-12 { + margin-left: 100%; + } + .col-md-offset-11 { + margin-left: 91.66666666666666%; + } + .col-md-offset-10 { + margin-left: 83.33333333333334%; + } + .col-md-offset-9 { + margin-left: 75%; + } + .col-md-offset-8 { + margin-left: 66.66666666666666%; + } + .col-md-offset-7 { + margin-left: 58.333333333333336%; + } + .col-md-offset-6 { + margin-left: 50%; + } + .col-md-offset-5 { + margin-left: 41.66666666666667%; + } + .col-md-offset-4 { + margin-left: 33.33333333333333%; + } + .col-md-offset-3 { + margin-left: 25%; + } + .col-md-offset-2 { + margin-left: 16.666666666666664%; + } + .col-md-offset-1 { + margin-left: 8.333333333333332%; + } + .col-md-offset-0 { + margin-left: 0; + } +} + +@media (min-width: 1200px) { + .col-lg-1, + .col-lg-2, + .col-lg-3, + .col-lg-4, + .col-lg-5, + .col-lg-6, + .col-lg-7, + .col-lg-8, + .col-lg-9, + .col-lg-10, + .col-lg-11, + .col-lg-12 { + float: left; + } + .col-lg-12 { + width: 100%; + } + .col-lg-11 { + width: 91.66666666666666%; + } + .col-lg-10 { + width: 83.33333333333334%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-8 { + width: 66.66666666666666%; + } + .col-lg-7 { + width: 58.333333333333336%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-5 { + width: 41.66666666666667%; + } + .col-lg-4 { + width: 33.33333333333333%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-2 { + width: 16.666666666666664%; + } + .col-lg-1 { + width: 8.333333333333332%; + } + .col-lg-pull-12 { + right: 100%; + } + .col-lg-pull-11 { + right: 91.66666666666666%; + } + .col-lg-pull-10 { + right: 83.33333333333334%; + } + .col-lg-pull-9 { + right: 75%; + } + .col-lg-pull-8 { + right: 66.66666666666666%; + } + .col-lg-pull-7 { + right: 58.333333333333336%; + } + .col-lg-pull-6 { + right: 50%; + } + .col-lg-pull-5 { + right: 41.66666666666667%; + } + .col-lg-pull-4 { + right: 33.33333333333333%; + } + .col-lg-pull-3 { + right: 25%; + } + .col-lg-pull-2 { + right: 16.666666666666664%; + } + .col-lg-pull-1 { + right: 8.333333333333332%; + } + .col-lg-pull-0 { + right: 0; + } + .col-lg-push-12 { + left: 100%; + } + .col-lg-push-11 { + left: 91.66666666666666%; + } + .col-lg-push-10 { + left: 83.33333333333334%; + } + .col-lg-push-9 { + left: 75%; + } + .col-lg-push-8 { + left: 66.66666666666666%; + } + .col-lg-push-7 { + left: 58.333333333333336%; + } + .col-lg-push-6 { + left: 50%; + } + .col-lg-push-5 { + left: 41.66666666666667%; + } + .col-lg-push-4 { + left: 33.33333333333333%; + } + .col-lg-push-3 { + left: 25%; + } + .col-lg-push-2 { + left: 16.666666666666664%; + } + .col-lg-push-1 { + left: 8.333333333333332%; + } + .col-lg-push-0 { + left: 0; + } + .col-lg-offset-12 { + margin-left: 100%; + } + .col-lg-offset-11 { + margin-left: 91.66666666666666%; + } + .col-lg-offset-10 { + margin-left: 83.33333333333334%; + } + .col-lg-offset-9 { + margin-left: 75%; + } + .col-lg-offset-8 { + margin-left: 66.66666666666666%; + } + .col-lg-offset-7 { + margin-left: 58.333333333333336%; + } + .col-lg-offset-6 { + margin-left: 50%; + } + .col-lg-offset-5 { + margin-left: 41.66666666666667%; + } + .col-lg-offset-4 { + margin-left: 33.33333333333333%; + } + .col-lg-offset-3 { + margin-left: 25%; + } + .col-lg-offset-2 { + margin-left: 16.666666666666664%; + } + .col-lg-offset-1 { + margin-left: 8.333333333333332%; + } + .col-lg-offset-0 { + margin-left: 0; + } +} + +table { + max-width: 100%; + background-color: transparent; +} + +th { + text-align: left; +} + +.table { + width: 100%; + margin-bottom: 20px; +} + +.table > thead > tr > th, +.table > tbody > tr > th, +.table > tfoot > tr > th, +.table > thead > tr > td, +.table > tbody > tr > td, +.table > tfoot > tr > td { + padding: 8px; + line-height: 1.428571429; + vertical-align: top; + border-top: 1px solid #dddddd; +} + +.table > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #dddddd; +} + +.table > caption + thead > tr:first-child > th, +.table > colgroup + thead > tr:first-child > th, +.table > thead:first-child > tr:first-child > th, +.table > caption + thead > tr:first-child > td, +.table > colgroup + thead > tr:first-child > td, +.table > thead:first-child > tr:first-child > td { + border-top: 0; +} + +.table > tbody + tbody { + border-top: 2px solid #dddddd; +} + +.table .table { + background-color: #ffffff; +} + +.table-condensed > thead > tr > th, +.table-condensed > tbody > tr > th, +.table-condensed > tfoot > tr > th, +.table-condensed > thead > tr > td, +.table-condensed > tbody > tr > td, +.table-condensed > tfoot > tr > td { + padding: 5px; +} + +.table-bordered { + border: 1px solid #dddddd; +} + +.table-bordered > thead > tr > th, +.table-bordered > tbody > tr > th, +.table-bordered > tfoot > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > td { + border: 1px solid #dddddd; +} + +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; +} + +.table-striped > tbody > tr:nth-child(odd) > td, +.table-striped > tbody > tr:nth-child(odd) > th { + background-color: #f9f9f9; +} + +.table-hover > tbody > tr:hover > td, +.table-hover > tbody > tr:hover > th { + background-color: #f5f5f5; +} + +table col[class*="col-"] { + position: static; + display: table-column; + float: none; +} + +table td[class*="col-"], +table th[class*="col-"] { + display: table-cell; + float: none; +} + +.table > thead > tr > .active, +.table > tbody > tr > .active, +.table > tfoot > tr > .active, +.table > thead > .active > td, +.table > tbody > .active > td, +.table > tfoot > .active > td, +.table > thead > .active > th, +.table > tbody > .active > th, +.table > tfoot > .active > th { + background-color: #f5f5f5; +} + +.table-hover > tbody > tr > .active:hover, +.table-hover > tbody > .active:hover > td, +.table-hover > tbody > .active:hover > th { + background-color: #e8e8e8; +} + +.table > thead > tr > .success, +.table > tbody > tr > .success, +.table > tfoot > tr > .success, +.table > thead > .success > td, +.table > tbody > .success > td, +.table > tfoot > .success > td, +.table > thead > .success > th, +.table > tbody > .success > th, +.table > tfoot > .success > th { + background-color: #dff0d8; +} + +.table-hover > tbody > tr > .success:hover, +.table-hover > tbody > .success:hover > td, +.table-hover > tbody > .success:hover > th { + background-color: #d0e9c6; +} + +.table > thead > tr > .danger, +.table > tbody > tr > .danger, +.table > tfoot > tr > .danger, +.table > thead > .danger > td, +.table > tbody > .danger > td, +.table > tfoot > .danger > td, +.table > thead > .danger > th, +.table > tbody > .danger > th, +.table > tfoot > .danger > th { + background-color: #f2dede; +} + +.table-hover > tbody > tr > .danger:hover, +.table-hover > tbody > .danger:hover > td, +.table-hover > tbody > .danger:hover > th { + background-color: #ebcccc; +} + +.table > thead > tr > .warning, +.table > tbody > tr > .warning, +.table > tfoot > tr > .warning, +.table > thead > .warning > td, +.table > tbody > .warning > td, +.table > tfoot > .warning > td, +.table > thead > .warning > th, +.table > tbody > .warning > th, +.table > tfoot > .warning > th { + background-color: #fcf8e3; +} + +.table-hover > tbody > tr > .warning:hover, +.table-hover > tbody > .warning:hover > td, +.table-hover > tbody > .warning:hover > th { + background-color: #faf2cc; +} + +@media (max-width: 767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-x: scroll; + overflow-y: hidden; + border: 1px solid #dddddd; + -ms-overflow-style: -ms-autohiding-scrollbar; + -webkit-overflow-scrolling: touch; + } + .table-responsive > .table { + margin-bottom: 0; + } + .table-responsive > .table > thead > tr > th, + .table-responsive > .table > tbody > tr > th, + .table-responsive > .table > tfoot > tr > th, + .table-responsive > .table > thead > tr > td, + .table-responsive > .table > tbody > tr > td, + .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .table-responsive > .table-bordered { + border: 0; + } + .table-responsive > .table-bordered > thead > tr > th:first-child, + .table-responsive > .table-bordered > tbody > tr > th:first-child, + .table-responsive > .table-bordered > tfoot > tr > th:first-child, + .table-responsive > .table-bordered > thead > tr > td:first-child, + .table-responsive > .table-bordered > tbody > tr > td:first-child, + .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .table-responsive > .table-bordered > thead > tr > th:last-child, + .table-responsive > .table-bordered > tbody > tr > th:last-child, + .table-responsive > .table-bordered > tfoot > tr > th:last-child, + .table-responsive > .table-bordered > thead > tr > td:last-child, + .table-responsive > .table-bordered > tbody > tr > td:last-child, + .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .table-responsive > .table-bordered > tbody > tr:last-child > th, + .table-responsive > .table-bordered > tfoot > tr:last-child > th, + .table-responsive > .table-bordered > tbody > tr:last-child > td, + .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } +} + +fieldset { + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} + +label { + display: inline-block; + margin-bottom: 5px; + font-weight: bold; +} + +input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + /* IE8-9 */ + + line-height: normal; +} + +input[type="file"] { + display: block; +} + +select[multiple], +select[size] { + height: auto; +} + +select optgroup { + font-family: inherit; + font-size: inherit; + font-style: inherit; +} + +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +input[type="number"]::-webkit-outer-spin-button, +input[type="number"]::-webkit-inner-spin-button { + height: auto; +} + +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.428571429; + color: #555555; + vertical-align: middle; +} + +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + color: #555555; + vertical-align: middle; + background-color: #ffffff; + background-image: none; + border: 1px solid #cccccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; +} + +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); +} + +.form-control:-moz-placeholder { + color: #999999; +} + +.form-control::-moz-placeholder { + color: #999999; + opacity: 1; +} + +.form-control:-ms-input-placeholder { + color: #999999; +} + +.form-control::-webkit-input-placeholder { + color: #999999; +} + +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + cursor: not-allowed; + background-color: #eeeeee; +} + +textarea.form-control { + height: auto; +} + +.form-group { + margin-bottom: 15px; +} + +.radio, +.checkbox { + display: block; + min-height: 20px; + padding-left: 20px; + margin-top: 10px; + margin-bottom: 10px; + vertical-align: middle; +} + +.radio label, +.checkbox label { + display: inline; + margin-bottom: 0; + font-weight: normal; + cursor: pointer; +} + +.radio input[type="radio"], +.radio-inline input[type="radio"], +.checkbox input[type="checkbox"], +.checkbox-inline input[type="checkbox"] { + float: left; + margin-left: -20px; +} + +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; +} + +.radio-inline, +.checkbox-inline { + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + vertical-align: middle; + cursor: pointer; +} + +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} + +input[type="radio"][disabled], +input[type="checkbox"][disabled], +.radio[disabled], +.radio-inline[disabled], +.checkbox[disabled], +.checkbox-inline[disabled], +fieldset[disabled] input[type="radio"], +fieldset[disabled] input[type="checkbox"], +fieldset[disabled] .radio, +fieldset[disabled] .radio-inline, +fieldset[disabled] .checkbox, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} + +.input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +select.input-sm { + height: 30px; + line-height: 30px; +} + +textarea.input-sm { + height: auto; +} + +.input-lg { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} + +select.input-lg { + height: 46px; + line-height: 46px; +} + +textarea.input-lg { + height: auto; +} + +.has-warning .help-block, +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline { + color: #8a6d3b; +} + +.has-warning .form-control { + border-color: #8a6d3b; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; +} + +.has-warning .input-group-addon { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #8a6d3b; +} + +.has-error .help-block, +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline { + color: #a94442; +} + +.has-error .form-control { + border-color: #a94442; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; +} + +.has-error .input-group-addon { + color: #a94442; + background-color: #f2dede; + border-color: #a94442; +} + +.has-success .help-block, +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline { + color: #3c763d; +} + +.has-success .form-control { + border-color: #3c763d; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; +} + +.has-success .input-group-addon { + color: #3c763d; + background-color: #dff0d8; + border-color: #3c763d; +} + +.form-control-static { + margin-bottom: 0; +} + +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} + +@media (min-width: 768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .form-control { + display: inline-block; + } + .form-inline select.form-control { + width: auto; + } + .form-inline .radio, + .form-inline .checkbox { + display: inline-block; + padding-left: 0; + margin-top: 0; + margin-bottom: 0; + } + .form-inline .radio input[type="radio"], + .form-inline .checkbox input[type="checkbox"] { + float: none; + margin-left: 0; + } +} + +.form-horizontal .control-label, +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + padding-top: 7px; + margin-top: 0; + margin-bottom: 0; +} + +.form-horizontal .radio, +.form-horizontal .checkbox { + min-height: 27px; +} + +.form-horizontal .form-group { + margin-right: -15px; + margin-left: -15px; +} + +.form-horizontal .form-group:before, +.form-horizontal .form-group:after { + display: table; + content: " "; +} + +.form-horizontal .form-group:after { + clear: both; +} + +.form-horizontal .form-group:before, +.form-horizontal .form-group:after { + display: table; + content: " "; +} + +.form-horizontal .form-group:after { + clear: both; +} + +.form-horizontal .form-control-static { + padding-top: 7px; +} + +@media (min-width: 768px) { + .form-horizontal .control-label { + text-align: right; + } +} + +.btn { + display: inline-block; + padding: 6px 12px; + margin-bottom: 0; + font-size: 14px; + font-weight: normal; + line-height: 1.428571429; + text-align: center; + white-space: nowrap; + vertical-align: middle; + cursor: pointer; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; +} + +.btn:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.btn:hover, +.btn:focus { + color: #333333; + text-decoration: none; +} + +.btn:active, +.btn.active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} + +.btn.disabled, +.btn[disabled], +fieldset[disabled] .btn { + pointer-events: none; + cursor: not-allowed; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none; +} + +.btn-default { + color: #333333; + background-color: #ffffff; + border-color: #cccccc; +} + +.btn-default:hover, +.btn-default:focus, +.btn-default:active, +.btn-default.active, +.open .dropdown-toggle.btn-default { + color: #333333; + background-color: #ebebeb; + border-color: #adadad; +} + +.btn-default:active, +.btn-default.active, +.open .dropdown-toggle.btn-default { + background-image: none; +} + +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #ffffff; + border-color: #cccccc; +} + +.btn-default .badge { + color: #ffffff; + background-color: #fff; +} + +.btn-primary { + color: #ffffff; + background-color: #428bca; + border-color: #357ebd; +} + +.btn-primary:hover, +.btn-primary:focus, +.btn-primary:active, +.btn-primary.active, +.open .dropdown-toggle.btn-primary { + color: #ffffff; + background-color: #3276b1; + border-color: #285e8e; +} + +.btn-primary:active, +.btn-primary.active, +.open .dropdown-toggle.btn-primary { + background-image: none; +} + +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #428bca; + border-color: #357ebd; +} + +.btn-primary .badge { + color: #428bca; + background-color: #fff; +} + +.btn-warning { + color: #ffffff; + background-color: #f0ad4e; + border-color: #eea236; +} + +.btn-warning:hover, +.btn-warning:focus, +.btn-warning:active, +.btn-warning.active, +.open .dropdown-toggle.btn-warning { + color: #ffffff; + background-color: #ed9c28; + border-color: #d58512; +} + +.btn-warning:active, +.btn-warning.active, +.open .dropdown-toggle.btn-warning { + background-image: none; +} + +.btn-warning.disabled, +.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #f0ad4e; + border-color: #eea236; +} + +.btn-warning .badge { + color: #f0ad4e; + background-color: #fff; +} + +.btn-danger { + color: #ffffff; + background-color: #d9534f; + border-color: #d43f3a; +} + +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active, +.open .dropdown-toggle.btn-danger { + color: #ffffff; + background-color: #d2322d; + border-color: #ac2925; +} + +.btn-danger:active, +.btn-danger.active, +.open .dropdown-toggle.btn-danger { + background-image: none; +} + +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #d9534f; + border-color: #d43f3a; +} + +.btn-danger .badge { + color: #d9534f; + background-color: #fff; +} + +.btn-success { + color: #ffffff; + background-color: #5cb85c; + border-color: #4cae4c; +} + +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active, +.open .dropdown-toggle.btn-success { + color: #ffffff; + background-color: #47a447; + border-color: #398439; +} + +.btn-success:active, +.btn-success.active, +.open .dropdown-toggle.btn-success { + background-image: none; +} + +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #5cb85c; + border-color: #4cae4c; +} + +.btn-success .badge { + color: #5cb85c; + background-color: #fff; +} + +.btn-info { + color: #ffffff; + background-color: #5bc0de; + border-color: #46b8da; +} + +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active, +.open .dropdown-toggle.btn-info { + color: #ffffff; + background-color: #39b3d7; + border-color: #269abc; +} + +.btn-info:active, +.btn-info.active, +.open .dropdown-toggle.btn-info { + background-image: none; +} + +.btn-info.disabled, +.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #5bc0de; + border-color: #46b8da; +} + +.btn-info .badge { + color: #5bc0de; + background-color: #fff; +} + +.btn-link { + font-weight: normal; + color: #428bca; + cursor: pointer; + border-radius: 0; +} + +.btn-link, +.btn-link:active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} + +.btn-link, +.btn-link:hover, +.btn-link:focus, +.btn-link:active { + border-color: transparent; +} + +.btn-link:hover, +.btn-link:focus { + color: #2a6496; + text-decoration: underline; + background-color: transparent; +} + +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:hover, +.btn-link[disabled]:focus, +fieldset[disabled] .btn-link:focus { + color: #999999; + text-decoration: none; +} + +.btn-lg { + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} + +.btn-sm { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +.btn-xs { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +.btn-block { + display: block; + width: 100%; + padding-right: 0; + padding-left: 0; +} + +.btn-block + .btn-block { + margin-top: 5px; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +.fade.in { + opacity: 1; +} + +.collapse { + display: none; +} + +.collapse.in { + display: block; +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +@font-face { + font-family: 'Glyphicons Halflings'; + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg'); +} + +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + -webkit-font-smoothing: antialiased; + font-style: normal; + font-weight: normal; + line-height: 1; + -moz-osx-font-smoothing: grayscale; +} + +.glyphicon:empty { + width: 1em; +} + +.glyphicon-asterisk:before { + content: "\2a"; +} + +.glyphicon-plus:before { + content: "\2b"; +} + +.glyphicon-euro:before { + content: "\20ac"; +} + +.glyphicon-minus:before { + content: "\2212"; +} + +.glyphicon-cloud:before { + content: "\2601"; +} + +.glyphicon-envelope:before { + content: "\2709"; +} + +.glyphicon-pencil:before { + content: "\270f"; +} + +.glyphicon-glass:before { + content: "\e001"; +} + +.glyphicon-music:before { + content: "\e002"; +} + +.glyphicon-search:before { + content: "\e003"; +} + +.glyphicon-heart:before { + content: "\e005"; +} + +.glyphicon-star:before { + content: "\e006"; +} + +.glyphicon-star-empty:before { + content: "\e007"; +} + +.glyphicon-user:before { + content: "\e008"; +} + +.glyphicon-film:before { + content: "\e009"; +} + +.glyphicon-th-large:before { + content: "\e010"; +} + +.glyphicon-th:before { + content: "\e011"; +} + +.glyphicon-th-list:before { + content: "\e012"; +} + +.glyphicon-ok:before { + content: "\e013"; +} + +.glyphicon-remove:before { + content: "\e014"; +} + +.glyphicon-zoom-in:before { + content: "\e015"; +} + +.glyphicon-zoom-out:before { + content: "\e016"; +} + +.glyphicon-off:before { + content: "\e017"; +} + +.glyphicon-signal:before { + content: "\e018"; +} + +.glyphicon-cog:before { + content: "\e019"; +} + +.glyphicon-trash:before { + content: "\e020"; +} + +.glyphicon-home:before { + content: "\e021"; +} + +.glyphicon-file:before { + content: "\e022"; +} + +.glyphicon-time:before { + content: "\e023"; +} + +.glyphicon-road:before { + content: "\e024"; +} + +.glyphicon-download-alt:before { + content: "\e025"; +} + +.glyphicon-download:before { + content: "\e026"; +} + +.glyphicon-upload:before { + content: "\e027"; +} + +.glyphicon-inbox:before { + content: "\e028"; +} + +.glyphicon-play-circle:before { + content: "\e029"; +} + +.glyphicon-repeat:before { + content: "\e030"; +} + +.glyphicon-refresh:before { + content: "\e031"; +} + +.glyphicon-list-alt:before { + content: "\e032"; +} + +.glyphicon-lock:before { + content: "\e033"; +} + +.glyphicon-flag:before { + content: "\e034"; +} + +.glyphicon-headphones:before { + content: "\e035"; +} + +.glyphicon-volume-off:before { + content: "\e036"; +} + +.glyphicon-volume-down:before { + content: "\e037"; +} + +.glyphicon-volume-up:before { + content: "\e038"; +} + +.glyphicon-qrcode:before { + content: "\e039"; +} + +.glyphicon-barcode:before { + content: "\e040"; +} + +.glyphicon-tag:before { + content: "\e041"; +} + +.glyphicon-tags:before { + content: "\e042"; +} + +.glyphicon-book:before { + content: "\e043"; +} + +.glyphicon-bookmark:before { + content: "\e044"; +} + +.glyphicon-print:before { + content: "\e045"; +} + +.glyphicon-camera:before { + content: "\e046"; +} + +.glyphicon-font:before { + content: "\e047"; +} + +.glyphicon-bold:before { + content: "\e048"; +} + +.glyphicon-italic:before { + content: "\e049"; +} + +.glyphicon-text-height:before { + content: "\e050"; +} + +.glyphicon-text-width:before { + content: "\e051"; +} + +.glyphicon-align-left:before { + content: "\e052"; +} + +.glyphicon-align-center:before { + content: "\e053"; +} + +.glyphicon-align-right:before { + content: "\e054"; +} + +.glyphicon-align-justify:before { + content: "\e055"; +} + +.glyphicon-list:before { + content: "\e056"; +} + +.glyphicon-indent-left:before { + content: "\e057"; +} + +.glyphicon-indent-right:before { + content: "\e058"; +} + +.glyphicon-facetime-video:before { + content: "\e059"; +} + +.glyphicon-picture:before { + content: "\e060"; +} + +.glyphicon-map-marker:before { + content: "\e062"; +} + +.glyphicon-adjust:before { + content: "\e063"; +} + +.glyphicon-tint:before { + content: "\e064"; +} + +.glyphicon-edit:before { + content: "\e065"; +} + +.glyphicon-share:before { + content: "\e066"; +} + +.glyphicon-check:before { + content: "\e067"; +} + +.glyphicon-move:before { + content: "\e068"; +} + +.glyphicon-step-backward:before { + content: "\e069"; +} + +.glyphicon-fast-backward:before { + content: "\e070"; +} + +.glyphicon-backward:before { + content: "\e071"; +} + +.glyphicon-play:before { + content: "\e072"; +} + +.glyphicon-pause:before { + content: "\e073"; +} + +.glyphicon-stop:before { + content: "\e074"; +} + +.glyphicon-forward:before { + content: "\e075"; +} + +.glyphicon-fast-forward:before { + content: "\e076"; +} + +.glyphicon-step-forward:before { + content: "\e077"; +} + +.glyphicon-eject:before { + content: "\e078"; +} + +.glyphicon-chevron-left:before { + content: "\e079"; +} + +.glyphicon-chevron-right:before { + content: "\e080"; +} + +.glyphicon-plus-sign:before { + content: "\e081"; +} + +.glyphicon-minus-sign:before { + content: "\e082"; +} + +.glyphicon-remove-sign:before { + content: "\e083"; +} + +.glyphicon-ok-sign:before { + content: "\e084"; +} + +.glyphicon-question-sign:before { + content: "\e085"; +} + +.glyphicon-info-sign:before { + content: "\e086"; +} + +.glyphicon-screenshot:before { + content: "\e087"; +} + +.glyphicon-remove-circle:before { + content: "\e088"; +} + +.glyphicon-ok-circle:before { + content: "\e089"; +} + +.glyphicon-ban-circle:before { + content: "\e090"; +} + +.glyphicon-arrow-left:before { + content: "\e091"; +} + +.glyphicon-arrow-right:before { + content: "\e092"; +} + +.glyphicon-arrow-up:before { + content: "\e093"; +} + +.glyphicon-arrow-down:before { + content: "\e094"; +} + +.glyphicon-share-alt:before { + content: "\e095"; +} + +.glyphicon-resize-full:before { + content: "\e096"; +} + +.glyphicon-resize-small:before { + content: "\e097"; +} + +.glyphicon-exclamation-sign:before { + content: "\e101"; +} + +.glyphicon-gift:before { + content: "\e102"; +} + +.glyphicon-leaf:before { + content: "\e103"; +} + +.glyphicon-fire:before { + content: "\e104"; +} + +.glyphicon-eye-open:before { + content: "\e105"; +} + +.glyphicon-eye-close:before { + content: "\e106"; +} + +.glyphicon-warning-sign:before { + content: "\e107"; +} + +.glyphicon-plane:before { + content: "\e108"; +} + +.glyphicon-calendar:before { + content: "\e109"; +} + +.glyphicon-random:before { + content: "\e110"; +} + +.glyphicon-comment:before { + content: "\e111"; +} + +.glyphicon-magnet:before { + content: "\e112"; +} + +.glyphicon-chevron-up:before { + content: "\e113"; +} + +.glyphicon-chevron-down:before { + content: "\e114"; +} + +.glyphicon-retweet:before { + content: "\e115"; +} + +.glyphicon-shopping-cart:before { + content: "\e116"; +} + +.glyphicon-folder-close:before { + content: "\e117"; +} + +.glyphicon-folder-open:before { + content: "\e118"; +} + +.glyphicon-resize-vertical:before { + content: "\e119"; +} + +.glyphicon-resize-horizontal:before { + content: "\e120"; +} + +.glyphicon-hdd:before { + content: "\e121"; +} + +.glyphicon-bullhorn:before { + content: "\e122"; +} + +.glyphicon-bell:before { + content: "\e123"; +} + +.glyphicon-certificate:before { + content: "\e124"; +} + +.glyphicon-thumbs-up:before { + content: "\e125"; +} + +.glyphicon-thumbs-down:before { + content: "\e126"; +} + +.glyphicon-hand-right:before { + content: "\e127"; +} + +.glyphicon-hand-left:before { + content: "\e128"; +} + +.glyphicon-hand-up:before { + content: "\e129"; +} + +.glyphicon-hand-down:before { + content: "\e130"; +} + +.glyphicon-circle-arrow-right:before { + content: "\e131"; +} + +.glyphicon-circle-arrow-left:before { + content: "\e132"; +} + +.glyphicon-circle-arrow-up:before { + content: "\e133"; +} + +.glyphicon-circle-arrow-down:before { + content: "\e134"; +} + +.glyphicon-globe:before { + content: "\e135"; +} + +.glyphicon-wrench:before { + content: "\e136"; +} + +.glyphicon-tasks:before { + content: "\e137"; +} + +.glyphicon-filter:before { + content: "\e138"; +} + +.glyphicon-briefcase:before { + content: "\e139"; +} + +.glyphicon-fullscreen:before { + content: "\e140"; +} + +.glyphicon-dashboard:before { + content: "\e141"; +} + +.glyphicon-paperclip:before { + content: "\e142"; +} + +.glyphicon-heart-empty:before { + content: "\e143"; +} + +.glyphicon-link:before { + content: "\e144"; +} + +.glyphicon-phone:before { + content: "\e145"; +} + +.glyphicon-pushpin:before { + content: "\e146"; +} + +.glyphicon-usd:before { + content: "\e148"; +} + +.glyphicon-gbp:before { + content: "\e149"; +} + +.glyphicon-sort:before { + content: "\e150"; +} + +.glyphicon-sort-by-alphabet:before { + content: "\e151"; +} + +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152"; +} + +.glyphicon-sort-by-order:before { + content: "\e153"; +} + +.glyphicon-sort-by-order-alt:before { + content: "\e154"; +} + +.glyphicon-sort-by-attributes:before { + content: "\e155"; +} + +.glyphicon-sort-by-attributes-alt:before { + content: "\e156"; +} + +.glyphicon-unchecked:before { + content: "\e157"; +} + +.glyphicon-expand:before { + content: "\e158"; +} + +.glyphicon-collapse-down:before { + content: "\e159"; +} + +.glyphicon-collapse-up:before { + content: "\e160"; +} + +.glyphicon-log-in:before { + content: "\e161"; +} + +.glyphicon-flash:before { + content: "\e162"; +} + +.glyphicon-log-out:before { + content: "\e163"; +} + +.glyphicon-new-window:before { + content: "\e164"; +} + +.glyphicon-record:before { + content: "\e165"; +} + +.glyphicon-save:before { + content: "\e166"; +} + +.glyphicon-open:before { + content: "\e167"; +} + +.glyphicon-saved:before { + content: "\e168"; +} + +.glyphicon-import:before { + content: "\e169"; +} + +.glyphicon-export:before { + content: "\e170"; +} + +.glyphicon-send:before { + content: "\e171"; +} + +.glyphicon-floppy-disk:before { + content: "\e172"; +} + +.glyphicon-floppy-saved:before { + content: "\e173"; +} + +.glyphicon-floppy-remove:before { + content: "\e174"; +} + +.glyphicon-floppy-save:before { + content: "\e175"; +} + +.glyphicon-floppy-open:before { + content: "\e176"; +} + +.glyphicon-credit-card:before { + content: "\e177"; +} + +.glyphicon-transfer:before { + content: "\e178"; +} + +.glyphicon-cutlery:before { + content: "\e179"; +} + +.glyphicon-header:before { + content: "\e180"; +} + +.glyphicon-compressed:before { + content: "\e181"; +} + +.glyphicon-earphone:before { + content: "\e182"; +} + +.glyphicon-phone-alt:before { + content: "\e183"; +} + +.glyphicon-tower:before { + content: "\e184"; +} + +.glyphicon-stats:before { + content: "\e185"; +} + +.glyphicon-sd-video:before { + content: "\e186"; +} + +.glyphicon-hd-video:before { + content: "\e187"; +} + +.glyphicon-subtitles:before { + content: "\e188"; +} + +.glyphicon-sound-stereo:before { + content: "\e189"; +} + +.glyphicon-sound-dolby:before { + content: "\e190"; +} + +.glyphicon-sound-5-1:before { + content: "\e191"; +} + +.glyphicon-sound-6-1:before { + content: "\e192"; +} + +.glyphicon-sound-7-1:before { + content: "\e193"; +} + +.glyphicon-copyright-mark:before { + content: "\e194"; +} + +.glyphicon-registration-mark:before { + content: "\e195"; +} + +.glyphicon-cloud-download:before { + content: "\e197"; +} + +.glyphicon-cloud-upload:before { + content: "\e198"; +} + +.glyphicon-tree-conifer:before { + content: "\e199"; +} + +.glyphicon-tree-deciduous:before { + content: "\e200"; +} + +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px solid; + border-right: 4px solid transparent; + border-left: 4px solid transparent; +} + +.dropdown { + position: relative; +} + +.dropdown-toggle:focus { + outline: 0; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + font-size: 14px; + list-style: none; + background-color: #ffffff; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + background-clip: padding-box; +} + +.dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} + +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.428571429; + color: #333333; + white-space: nowrap; +} + +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + color: #262626; + text-decoration: none; + background-color: #f5f5f5; +} + +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #ffffff; + text-decoration: none; + background-color: #428bca; + outline: 0; +} + +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #999999; +} + +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.open > .dropdown-menu { + display: block; +} + +.open > a { + outline: 0; +} + +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.428571429; + color: #999999; +} + +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; +} + +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} + +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px solid; + content: ""; +} + +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} + +@media (min-width: 768px) { + .navbar-right .dropdown-menu { + right: 0; + left: auto; + } +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} + +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} + +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover, +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus, +.btn-group > .btn:active, +.btn-group-vertical > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn.active { + z-index: 2; +} + +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus { + outline: none; +} + +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group { + margin-left: -1px; +} + +.btn-toolbar:before, +.btn-toolbar:after { + display: table; + content: " "; +} + +.btn-toolbar:after { + clear: both; +} + +.btn-toolbar:before, +.btn-toolbar:after { + display: table; + content: " "; +} + +.btn-toolbar:after { + clear: both; +} + +.btn-toolbar .btn-group { + float: left; +} + +.btn-toolbar > .btn + .btn, +.btn-toolbar > .btn-group + .btn, +.btn-toolbar > .btn + .btn-group, +.btn-toolbar > .btn-group + .btn-group { + margin-left: 5px; +} + +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} + +.btn-group > .btn:first-child { + margin-left: 0; +} + +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.btn-group > .btn-group { + float: left; +} + +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} + +.btn-group > .btn-group:first-child > .btn:last-child, +.btn-group > .btn-group:first-child > .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn-group:last-child > .btn:first-child { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} + +.btn-group-xs > .btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +.btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +.btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} + +.btn-group > .btn + .dropdown-toggle { + padding-right: 8px; + padding-left: 8px; +} + +.btn-group > .btn-lg + .dropdown-toggle { + padding-right: 12px; + padding-left: 12px; +} + +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} + +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none; +} + +.btn .caret { + margin-left: 0; +} + +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} + +.dropup .btn-lg .caret { + border-width: 0 5px 5px; +} + +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group, +.btn-group-vertical > .btn-group > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; +} + +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after { + display: table; + content: " "; +} + +.btn-group-vertical > .btn-group:after { + clear: both; +} + +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after { + display: table; + content: " "; +} + +.btn-group-vertical > .btn-group:after { + clear: both; +} + +.btn-group-vertical > .btn-group > .btn { + float: none; +} + +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} + +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} + +.btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical > .btn:last-child:not(:first-child) { + border-top-right-radius: 0; + border-bottom-left-radius: 4px; + border-top-left-radius: 0; +} + +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} + +.btn-group-vertical > .btn-group:first-child > .btn:last-child, +.btn-group-vertical > .btn-group:first-child > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical > .btn-group:last-child > .btn:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.btn-group-justified { + display: table; + width: 100%; + border-collapse: separate; + table-layout: fixed; +} + +.btn-group-justified > .btn, +.btn-group-justified > .btn-group { + display: table-cell; + float: none; + width: 1%; +} + +.btn-group-justified > .btn-group .btn { + width: 100%; +} + +[data-toggle="buttons"] > .btn > input[type="radio"], +[data-toggle="buttons"] > .btn > input[type="checkbox"] { + display: none; +} + +.input-group { + position: relative; + display: table; + border-collapse: separate; +} + +.input-group[class*="col-"] { + float: none; + padding-right: 0; + padding-left: 0; +} + +.input-group .form-control { + width: 100%; + margin-bottom: 0; +} + +.input-group-lg > .form-control, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .btn { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} + +select.input-group-lg > .form-control, +select.input-group-lg > .input-group-addon, +select.input-group-lg > .input-group-btn > .btn { + height: 46px; + line-height: 46px; +} + +textarea.input-group-lg > .form-control, +textarea.input-group-lg > .input-group-addon, +textarea.input-group-lg > .input-group-btn > .btn { + height: auto; +} + +.input-group-sm > .form-control, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} + +select.input-group-sm > .form-control, +select.input-group-sm > .input-group-addon, +select.input-group-sm > .input-group-btn > .btn { + height: 30px; + line-height: 30px; +} + +textarea.input-group-sm > .form-control, +textarea.input-group-sm > .input-group-addon, +textarea.input-group-sm > .input-group-btn > .btn { + height: auto; +} + +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; +} + +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} + +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} + +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + color: #555555; + text-align: center; + background-color: #eeeeee; + border: 1px solid #cccccc; + border-radius: 4px; +} + +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} + +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} + +.input-group-addon input[type="radio"], +.input-group-addon input[type="checkbox"] { + margin-top: 0; +} + +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group-addon:first-child { + border-right: 0; +} + +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} + +.input-group-addon:last-child { + border-left: 0; +} + +.input-group-btn { + position: relative; + white-space: nowrap; +} + +.input-group-btn:first-child > .btn { + margin-right: -1px; +} + +.input-group-btn:last-child > .btn { + margin-left: -1px; +} + +.input-group-btn > .btn { + position: relative; +} + +.input-group-btn > .btn + .btn { + margin-left: -4px; +} + +.input-group-btn > .btn:hover, +.input-group-btn > .btn:active { + z-index: 2; +} + +.nav { + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav:before, +.nav:after { + display: table; + content: " "; +} + +.nav:after { + clear: both; +} + +.nav:before, +.nav:after { + display: table; + content: " "; +} + +.nav:after { + clear: both; +} + +.nav > li { + position: relative; + display: block; +} + +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} + +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} + +.nav > li.disabled > a { + color: #999999; +} + +.nav > li.disabled > a:hover, +.nav > li.disabled > a:focus { + color: #999999; + text-decoration: none; + cursor: not-allowed; + background-color: transparent; +} + +.nav .open > a, +.nav .open > a:hover, +.nav .open > a:focus { + background-color: #eeeeee; + border-color: #428bca; +} + +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} + +.nav > li > a > img { + max-width: none; +} + +.nav-tabs { + border-bottom: 1px solid #dddddd; +} + +.nav-tabs > li { + float: left; + margin-bottom: -1px; +} + +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.428571429; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} + +.nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #dddddd; +} + +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus { + color: #555555; + cursor: default; + background-color: #ffffff; + border: 1px solid #dddddd; + border-bottom-color: transparent; +} + +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0; +} + +.nav-tabs.nav-justified > li { + float: none; +} + +.nav-tabs.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} + +.nav-tabs.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} + +@media (min-width: 768px) { + .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-tabs.nav-justified > li > a { + margin-bottom: 0; + } +} + +.nav-tabs.nav-justified > li > a { + margin-right: 0; + border-radius: 4px; +} + +.nav-tabs.nav-justified > .active > a, +.nav-tabs.nav-justified > .active > a:hover, +.nav-tabs.nav-justified > .active > a:focus { + border: 1px solid #dddddd; +} + +@media (min-width: 768px) { + .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #dddddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs.nav-justified > .active > a, + .nav-tabs.nav-justified > .active > a:hover, + .nav-tabs.nav-justified > .active > a:focus { + border-bottom-color: #ffffff; + } +} + +.nav-pills > li { + float: left; +} + +.nav-pills > li > a { + border-radius: 4px; +} + +.nav-pills > li + li { + margin-left: 2px; +} + +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + color: #ffffff; + background-color: #428bca; +} + +.nav-stacked > li { + float: none; +} + +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; +} + +.nav-justified { + width: 100%; +} + +.nav-justified > li { + float: none; +} + +.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} + +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} + +@media (min-width: 768px) { + .nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-justified > li > a { + margin-bottom: 0; + } +} + +.nav-tabs-justified { + border-bottom: 0; +} + +.nav-tabs-justified > li > a { + margin-right: 0; + border-radius: 4px; +} + +.nav-tabs-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border: 1px solid #dddddd; +} + +@media (min-width: 768px) { + .nav-tabs-justified > li > a { + border-bottom: 1px solid #dddddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs-justified > .active > a, + .nav-tabs-justified > .active > a:hover, + .nav-tabs-justified > .active > a:focus { + border-bottom-color: #ffffff; + } +} + +.tab-content > .tab-pane { + display: none; +} + +.tab-content > .active { + display: block; +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; +} + +.navbar:before, +.navbar:after { + display: table; + content: " "; +} + +.navbar:after { + clear: both; +} + +.navbar:before, +.navbar:after { + display: table; + content: " "; +} + +.navbar:after { + clear: both; +} + +@media (min-width: 768px) { + .navbar { + border-radius: 4px; + } +} + +.navbar-header:before, +.navbar-header:after { + display: table; + content: " "; +} + +.navbar-header:after { + clear: both; +} + +.navbar-header:before, +.navbar-header:after { + display: table; + content: " "; +} + +.navbar-header:after { + clear: both; +} + +@media (min-width: 768px) { + .navbar-header { + float: left; + } +} + +.navbar-collapse { + max-height: 340px; + padding-right: 15px; + padding-left: 15px; + overflow-x: visible; + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch; +} + +.navbar-collapse:before, +.navbar-collapse:after { + display: table; + content: " "; +} + +.navbar-collapse:after { + clear: both; +} + +.navbar-collapse:before, +.navbar-collapse:after { + display: table; + content: " "; +} + +.navbar-collapse:after { + clear: both; +} + +.navbar-collapse.in { + overflow-y: auto; +} + +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .navbar-collapse.in { + overflow-y: visible; + } + .navbar-fixed-top .navbar-collapse, + .navbar-static-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + padding-right: 0; + padding-left: 0; + } +} + +.container > .navbar-header, +.container > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} + +@media (min-width: 768px) { + .container > .navbar-header, + .container > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} + +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px; +} + +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0; + } +} + +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; +} + +@media (min-width: 768px) { + .navbar-fixed-top, + .navbar-fixed-bottom { + border-radius: 0; + } +} + +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px; +} + +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0; +} + +.navbar-brand { + float: left; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; +} + +.navbar-brand:hover, +.navbar-brand:focus { + text-decoration: none; +} + +@media (min-width: 768px) { + .navbar > .container .navbar-brand { + margin-left: -15px; + } +} + +.navbar-toggle { + position: relative; + float: right; + padding: 9px 10px; + margin-top: 8px; + margin-right: 15px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; +} + +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} + +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} + +@media (min-width: 768px) { + .navbar-toggle { + display: none; + } +} + +.navbar-nav { + margin: 7.5px -15px; +} + +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} + +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + box-shadow: none; + } + .navbar-nav .open .dropdown-menu > li > a, + .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } +} + +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0; + } + .navbar-nav > li { + float: left; + } + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } + .navbar-nav.navbar-right:last-child { + margin-right: -15px; + } +} + +@media (min-width: 768px) { + .navbar-left { + float: left !important; + } + .navbar-right { + float: right !important; + } +} + +.navbar-form { + padding: 10px 15px; + margin-top: 8px; + margin-right: -15px; + margin-bottom: 8px; + margin-left: -15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); +} + +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .form-control { + display: inline-block; + } + .navbar-form select.form-control { + width: auto; + } + .navbar-form .radio, + .navbar-form .checkbox { + display: inline-block; + padding-left: 0; + margin-top: 0; + margin-bottom: 0; + } + .navbar-form .radio input[type="radio"], + .navbar-form .checkbox input[type="checkbox"] { + float: none; + margin-left: 0; + } +} + +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px; + } +} + +@media (min-width: 768px) { + .navbar-form { + width: auto; + padding-top: 0; + padding-bottom: 0; + margin-right: 0; + margin-left: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-form.navbar-right:last-child { + margin-right: -15px; + } +} + +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.navbar-nav.pull-right > li > .dropdown-menu, +.navbar-nav > li > .dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} + +.navbar-btn.btn-sm { + margin-top: 10px; + margin-bottom: 10px; +} + +.navbar-btn.btn-xs { + margin-top: 14px; + margin-bottom: 14px; +} + +.navbar-text { + margin-top: 15px; + margin-bottom: 15px; +} + +@media (min-width: 768px) { + .navbar-text { + float: left; + margin-right: 15px; + margin-left: 15px; + } + .navbar-text.navbar-right:last-child { + margin-right: 0; + } +} + +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} + +.navbar-default .navbar-brand { + color: #777777; +} + +.navbar-default .navbar-brand:hover, +.navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} + +.navbar-default .navbar-text { + color: #777777; +} + +.navbar-default .navbar-nav > li > a { + color: #777777; +} + +.navbar-default .navbar-nav > li > a:hover, +.navbar-default .navbar-nav > li > a:focus { + color: #333333; + background-color: transparent; +} + +.navbar-default .navbar-nav > .active > a, +.navbar-default .navbar-nav > .active > a:hover, +.navbar-default .navbar-nav > .active > a:focus { + color: #555555; + background-color: #e7e7e7; +} + +.navbar-default .navbar-nav > .disabled > a, +.navbar-default .navbar-nav > .disabled > a:hover, +.navbar-default .navbar-nav > .disabled > a:focus { + color: #cccccc; + background-color: transparent; +} + +.navbar-default .navbar-toggle { + border-color: #dddddd; +} + +.navbar-default .navbar-toggle:hover, +.navbar-default .navbar-toggle:focus { + background-color: #dddddd; +} + +.navbar-default .navbar-toggle .icon-bar { + background-color: #cccccc; +} + +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7; +} + +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .open > a:hover, +.navbar-default .navbar-nav > .open > a:focus { + color: #555555; + background-color: #e7e7e7; +} + +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777777; + } + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333333; + background-color: transparent; + } + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555555; + background-color: #e7e7e7; + } + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #cccccc; + background-color: transparent; + } +} + +.navbar-default .navbar-link { + color: #777777; +} + +.navbar-default .navbar-link:hover { + color: #333333; +} + +.navbar-inverse { + background-color: #222222; + border-color: #080808; +} + +.navbar-inverse .navbar-brand { + color: #999999; +} + +.navbar-inverse .navbar-brand:hover, +.navbar-inverse .navbar-brand:focus { + color: #ffffff; + background-color: transparent; +} + +.navbar-inverse .navbar-text { + color: #999999; +} + +.navbar-inverse .navbar-nav > li > a { + color: #999999; +} + +.navbar-inverse .navbar-nav > li > a:hover, +.navbar-inverse .navbar-nav > li > a:focus { + color: #ffffff; + background-color: transparent; +} + +.navbar-inverse .navbar-nav > .active > a, +.navbar-inverse .navbar-nav > .active > a:hover, +.navbar-inverse .navbar-nav > .active > a:focus { + color: #ffffff; + background-color: #080808; +} + +.navbar-inverse .navbar-nav > .disabled > a, +.navbar-inverse .navbar-nav > .disabled > a:hover, +.navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444444; + background-color: transparent; +} + +.navbar-inverse .navbar-toggle { + border-color: #333333; +} + +.navbar-inverse .navbar-toggle:hover, +.navbar-inverse .navbar-toggle:focus { + background-color: #333333; +} + +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #ffffff; +} + +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; +} + +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .open > a:hover, +.navbar-inverse .navbar-nav > .open > a:focus { + color: #ffffff; + background-color: #080808; +} + +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #999999; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #ffffff; + background-color: transparent; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #ffffff; + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444444; + background-color: transparent; + } +} + +.navbar-inverse .navbar-link { + color: #999999; +} + +.navbar-inverse .navbar-link:hover { + color: #ffffff; +} + +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} + +.breadcrumb > li { + display: inline-block; +} + +.breadcrumb > li + li:before { + padding: 0 5px; + color: #cccccc; + content: "/\00a0"; +} + +.breadcrumb > .active { + color: #999999; +} + +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} + +.pagination > li { + display: inline; +} + +.pagination > li > a, +.pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + margin-left: -1px; + line-height: 1.428571429; + text-decoration: none; + background-color: #ffffff; + border: 1px solid #dddddd; +} + +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-bottom-left-radius: 4px; + border-top-left-radius: 4px; +} + +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +.pagination > li > a:hover, +.pagination > li > span:hover, +.pagination > li > a:focus, +.pagination > li > span:focus { + background-color: #eeeeee; +} + +.pagination > .active > a, +.pagination > .active > span, +.pagination > .active > a:hover, +.pagination > .active > span:hover, +.pagination > .active > a:focus, +.pagination > .active > span:focus { + z-index: 2; + color: #ffffff; + cursor: default; + background-color: #428bca; + border-color: #428bca; +} + +.pagination > .disabled > span, +.pagination > .disabled > span:hover, +.pagination > .disabled > span:focus, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #999999; + cursor: not-allowed; + background-color: #ffffff; + border-color: #dddddd; +} + +.pagination-lg > li > a, +.pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; +} + +.pagination-lg > li:first-child > a, +.pagination-lg > li:first-child > span { + border-bottom-left-radius: 6px; + border-top-left-radius: 6px; +} + +.pagination-lg > li:last-child > a, +.pagination-lg > li:last-child > span { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} + +.pagination-sm > li > a, +.pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; +} + +.pagination-sm > li:first-child > a, +.pagination-sm > li:first-child > span { + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; +} + +.pagination-sm > li:last-child > a, +.pagination-sm > li:last-child > span { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +.pager { + padding-left: 0; + margin: 20px 0; + text-align: center; + list-style: none; +} + +.pager:before, +.pager:after { + display: table; + content: " "; +} + +.pager:after { + clear: both; +} + +.pager:before, +.pager:after { + display: table; + content: " "; +} + +.pager:after { + clear: both; +} + +.pager li { + display: inline; +} + +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 15px; +} + +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} + +.pager .next > a, +.pager .next > span { + float: right; +} + +.pager .previous > a, +.pager .previous > span { + float: left; +} + +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #999999; + cursor: not-allowed; + background-color: #ffffff; +} + +.label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #ffffff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em; +} + +.label[href]:hover, +.label[href]:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} + +.label:empty { + display: none; +} + +.btn .label { + position: relative; + top: -1px; +} + +.label-default { + background-color: #999999; +} + +.label-default[href]:hover, +.label-default[href]:focus { + background-color: #808080; +} + +.label-primary { + background-color: #428bca; +} + +.label-primary[href]:hover, +.label-primary[href]:focus { + background-color: #3071a9; +} + +.label-success { + background-color: #5cb85c; +} + +.label-success[href]:hover, +.label-success[href]:focus { + background-color: #449d44; +} + +.label-info { + background-color: #5bc0de; +} + +.label-info[href]:hover, +.label-info[href]:focus { + background-color: #31b0d5; +} + +.label-warning { + background-color: #f0ad4e; +} + +.label-warning[href]:hover, +.label-warning[href]:focus { + background-color: #ec971f; +} + +.label-danger { + background-color: #d9534f; +} + +.label-danger[href]:hover, +.label-danger[href]:focus { + background-color: #c9302c; +} + +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + line-height: 1; + color: #ffffff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + background-color: #999999; + border-radius: 10px; +} + +.badge:empty { + display: none; +} + +.btn .badge { + position: relative; + top: -1px; +} + +a.badge:hover, +a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} + +a.list-group-item.active > .badge, +.nav-pills > .active > a > .badge { + color: #428bca; + background-color: #ffffff; +} + +.nav-pills > li > a > .badge { + margin-left: 3px; +} + +.jumbotron { + padding: 30px; + margin-bottom: 30px; + font-size: 21px; + font-weight: 200; + line-height: 2.1428571435; + color: inherit; + background-color: #eeeeee; +} + +.jumbotron h1, +.jumbotron .h1 { + line-height: 1; + color: inherit; +} + +.jumbotron p { + line-height: 1.4; +} + +.container .jumbotron { + border-radius: 6px; +} + +.jumbotron .container { + max-width: 100%; +} + +@media screen and (min-width: 768px) { + .jumbotron { + padding-top: 48px; + padding-bottom: 48px; + } + .container .jumbotron { + padding-right: 60px; + padding-left: 60px; + } + .jumbotron h1, + .jumbotron .h1 { + font-size: 63px; + } +} + +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.428571429; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} + +.thumbnail > img, +.thumbnail a > img { + display: block; + height: auto; + max-width: 100%; + margin-right: auto; + margin-left: auto; +} + +a.thumbnail:hover, +a.thumbnail:focus, +a.thumbnail.active { + border-color: #428bca; +} + +.thumbnail .caption { + padding: 9px; + color: #333333; +} + +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; +} + +.alert h4 { + margin-top: 0; + color: inherit; +} + +.alert .alert-link { + font-weight: bold; +} + +.alert > p, +.alert > ul { + margin-bottom: 0; +} + +.alert > p + p { + margin-top: 5px; +} + +.alert-dismissable { + padding-right: 35px; +} + +.alert-dismissable .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} + +.alert-success { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.alert-success hr { + border-top-color: #c9e2b3; +} + +.alert-success .alert-link { + color: #2b542c; +} + +.alert-info { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} + +.alert-info hr { + border-top-color: #a6e1ec; +} + +.alert-info .alert-link { + color: #245269; +} + +.alert-warning { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} + +.alert-warning hr { + border-top-color: #f7e1b5; +} + +.alert-warning .alert-link { + color: #66512c; +} + +.alert-danger { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} + +.alert-danger hr { + border-top-color: #e4b9c0; +} + +.alert-danger .alert-link { + color: #843534; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} + +.progress-bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #ffffff; + text-align: center; + background-color: #428bca; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +.progress-striped .progress-bar { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px; +} + +.progress.active .progress-bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} + +.progress-bar-success { + background-color: #5cb85c; +} + +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-bar-info { + background-color: #5bc0de; +} + +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-bar-warning { + background-color: #f0ad4e; +} + +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-bar-danger { + background-color: #d9534f; +} + +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.media, +.media-body { + overflow: hidden; + zoom: 1; +} + +.media, +.media .media { + margin-top: 15px; +} + +.media:first-child { + margin-top: 0; +} + +.media-object { + display: block; +} + +.media-heading { + margin: 0 0 5px; +} + +.media > .pull-left { + margin-right: 10px; +} + +.media > .pull-right { + margin-left: 10px; +} + +.media-list { + padding-left: 0; + list-style: none; +} + +.list-group { + padding-left: 0; + margin-bottom: 20px; +} + +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #ffffff; + border: 1px solid #dddddd; +} + +.list-group-item:first-child { + border-top-right-radius: 4px; + border-top-left-radius: 4px; +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} + +.list-group-item > .badge { + float: right; +} + +.list-group-item > .badge + .badge { + margin-right: 5px; +} + +a.list-group-item { + color: #555555; +} + +a.list-group-item .list-group-item-heading { + color: #333333; +} + +a.list-group-item:hover, +a.list-group-item:focus { + text-decoration: none; + background-color: #f5f5f5; +} + +a.list-group-item.active, +a.list-group-item.active:hover, +a.list-group-item.active:focus { + z-index: 2; + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} + +a.list-group-item.active .list-group-item-heading, +a.list-group-item.active:hover .list-group-item-heading, +a.list-group-item.active:focus .list-group-item-heading { + color: inherit; +} + +a.list-group-item.active .list-group-item-text, +a.list-group-item.active:hover .list-group-item-text, +a.list-group-item.active:focus .list-group-item-text { + color: #e1edf7; +} + +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; +} + +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3; +} + +.panel { + margin-bottom: 20px; + background-color: #ffffff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); +} + +.panel-body { + padding: 15px; +} + +.panel-body:before, +.panel-body:after { + display: table; + content: " "; +} + +.panel-body:after { + clear: both; +} + +.panel-body:before, +.panel-body:after { + display: table; + content: " "; +} + +.panel-body:after { + clear: both; +} + +.panel > .list-group { + margin-bottom: 0; +} + +.panel > .list-group .list-group-item { + border-width: 1px 0; +} + +.panel > .list-group .list-group-item:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0; +} + +.panel > .list-group .list-group-item:last-child { + border-bottom: 0; +} + +.panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; +} + +.panel > .table, +.panel > .table-responsive > .table { + margin-bottom: 0; +} + +.panel > .panel-body + .table, +.panel > .panel-body + .table-responsive { + border-top: 1px solid #dddddd; +} + +.panel > .table > tbody:first-child th, +.panel > .table > tbody:first-child td { + border-top: 0; +} + +.panel > .table-bordered, +.panel > .table-responsive > .table-bordered { + border: 0; +} + +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; +} + +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; +} + +.panel > .table-bordered > thead > tr:last-child > th, +.panel > .table-responsive > .table-bordered > thead > tr:last-child > th, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-bordered > thead > tr:last-child > td, +.panel > .table-responsive > .table-bordered > thead > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; +} + +.panel > .table-responsive { + margin-bottom: 0; + border: 0; +} + +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} + +.panel-heading > .dropdown .dropdown-toggle { + color: inherit; +} + +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit; +} + +.panel-title > a { + color: inherit; +} + +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #dddddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} + +.panel-group .panel { + margin-bottom: 0; + overflow: hidden; + border-radius: 4px; +} + +.panel-group .panel + .panel { + margin-top: 5px; +} + +.panel-group .panel-heading { + border-bottom: 0; +} + +.panel-group .panel-heading + .panel-collapse .panel-body { + border-top: 1px solid #dddddd; +} + +.panel-group .panel-footer { + border-top: 0; +} + +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #dddddd; +} + +.panel-default { + border-color: #dddddd; +} + +.panel-default > .panel-heading { + color: #333333; + background-color: #f5f5f5; + border-color: #dddddd; +} + +.panel-default > .panel-heading + .panel-collapse .panel-body { + border-top-color: #dddddd; +} + +.panel-default > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #dddddd; +} + +.panel-primary { + border-color: #428bca; +} + +.panel-primary > .panel-heading { + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} + +.panel-primary > .panel-heading + .panel-collapse .panel-body { + border-top-color: #428bca; +} + +.panel-primary > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #428bca; +} + +.panel-success { + border-color: #d6e9c6; +} + +.panel-success > .panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.panel-success > .panel-heading + .panel-collapse .panel-body { + border-top-color: #d6e9c6; +} + +.panel-success > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #d6e9c6; +} + +.panel-warning { + border-color: #faebcc; +} + +.panel-warning > .panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} + +.panel-warning > .panel-heading + .panel-collapse .panel-body { + border-top-color: #faebcc; +} + +.panel-warning > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #faebcc; +} + +.panel-danger { + border-color: #ebccd1; +} + +.panel-danger > .panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} + +.panel-danger > .panel-heading + .panel-collapse .panel-body { + border-top-color: #ebccd1; +} + +.panel-danger > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #ebccd1; +} + +.panel-info { + border-color: #bce8f1; +} + +.panel-info > .panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} + +.panel-info > .panel-heading + .panel-collapse .panel-body { + border-top-color: #bce8f1; +} + +.panel-info > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #bce8f1; +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} + +.well-lg { + padding: 24px; + border-radius: 6px; +} + +.well-sm { + padding: 9px; + border-radius: 3px; +} + +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000000; + text-shadow: 0 1px 0 #ffffff; + opacity: 0.2; + filter: alpha(opacity=20); +} + +.close:hover, +.close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; + opacity: 0.5; + filter: alpha(opacity=50); +} + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} + +.modal-open { + overflow: hidden; +} + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + display: none; + overflow: auto; + overflow-y: scroll; +} + +.modal.fade .modal-dialog { + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + transform: translate(0, -25%); + -webkit-transition: -webkit-transform 0.3s ease-out; + -moz-transition: -moz-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out; +} + +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + transform: translate(0, 0); +} + +.modal-dialog { + position: relative; + z-index: 1050; + width: auto; + margin: 10px; +} + +.modal-content { + position: relative; + background-color: #ffffff; + border: 1px solid #999999; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + outline: none; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + background-clip: padding-box; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; + background-color: #000000; +} + +.modal-backdrop.fade { + opacity: 0; + filter: alpha(opacity=0); +} + +.modal-backdrop.in { + opacity: 0.5; + filter: alpha(opacity=50); +} + +.modal-header { + min-height: 16.428571429px; + padding: 15px; + border-bottom: 1px solid #e5e5e5; +} + +.modal-header .close { + margin-top: -2px; +} + +.modal-title { + margin: 0; + line-height: 1.428571429; +} + +.modal-body { + position: relative; + padding: 20px; +} + +.modal-footer { + padding: 19px 20px 20px; + margin-top: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + content: " "; +} + +.modal-footer:after { + clear: both; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + content: " "; +} + +.modal-footer:after { + clear: both; +} + +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} + +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} + +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} + +@media screen and (min-width: 768px) { + .modal-dialog { + width: 600px; + margin: 30px auto; + } + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + } +} + +.tooltip { + position: absolute; + z-index: 1030; + display: block; + font-size: 12px; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0); + visibility: visible; +} + +.tooltip.in { + opacity: 0.9; + filter: alpha(opacity=90); +} + +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} + +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} + +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} + +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} + +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + border-radius: 4px; +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-top-color: #000000; + border-width: 5px 5px 0; +} + +.tooltip.top-left .tooltip-arrow { + bottom: 0; + left: 5px; + border-top-color: #000000; + border-width: 5px 5px 0; +} + +.tooltip.top-right .tooltip-arrow { + right: 5px; + bottom: 0; + border-top-color: #000000; + border-width: 5px 5px 0; +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-right-color: #000000; + border-width: 5px 5px 5px 0; +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-left-color: #000000; + border-width: 5px 0 5px 5px; +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-bottom-color: #000000; + border-width: 0 5px 5px; +} + +.tooltip.bottom-left .tooltip-arrow { + top: 0; + left: 5px; + border-bottom-color: #000000; + border-width: 0 5px 5px; +} + +.tooltip.bottom-right .tooltip-arrow { + top: 0; + right: 5px; + border-bottom-color: #000000; + border-width: 0 5px 5px; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + max-width: 276px; + padding: 1px; + text-align: left; + white-space: normal; + background-color: #ffffff; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + background-clip: padding-box; +} + +.popover.top { + margin-top: -10px; +} + +.popover.right { + margin-left: 10px; +} + +.popover.bottom { + margin-top: 10px; +} + +.popover.left { + margin-left: -10px; +} + +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; +} + +.popover-content { + padding: 9px 14px; +} + +.popover .arrow, +.popover .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.popover .arrow { + border-width: 11px; +} + +.popover .arrow:after { + border-width: 10px; + content: ""; +} + +.popover.top .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; +} + +.popover.top .arrow:after { + bottom: 1px; + margin-left: -10px; + border-top-color: #ffffff; + border-bottom-width: 0; + content: " "; +} + +.popover.right .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; +} + +.popover.right .arrow:after { + bottom: -10px; + left: 1px; + border-right-color: #ffffff; + border-left-width: 0; + content: " "; +} + +.popover.bottom .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-bottom-color: #999999; + border-bottom-color: rgba(0, 0, 0, 0.25); + border-top-width: 0; +} + +.popover.bottom .arrow:after { + top: 1px; + margin-left: -10px; + border-bottom-color: #ffffff; + border-top-width: 0; + content: " "; +} + +.popover.left .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-left-color: #999999; + border-left-color: rgba(0, 0, 0, 0.25); + border-right-width: 0; +} + +.popover.left .arrow:after { + right: 1px; + bottom: -10px; + border-left-color: #ffffff; + border-right-width: 0; + content: " "; +} + +.carousel { + position: relative; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} + +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + height: auto; + max-width: 100%; + line-height: 1; +} + +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} + +.carousel-inner > .active { + left: 0; +} + +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} + +.carousel-inner > .next { + left: 100%; +} + +.carousel-inner > .prev { + left: -100%; +} + +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} + +.carousel-inner > .active.left { + left: -100%; +} + +.carousel-inner > .active.right { + left: 100%; +} + +.carousel-control { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 15%; + font-size: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + opacity: 0.5; + filter: alpha(opacity=50); +} + +.carousel-control.left { + background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%)); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); +} + +.carousel-control.right { + right: 0; + left: auto; + background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%)); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); +} + +.carousel-control:hover, +.carousel-control:focus { + color: #ffffff; + text-decoration: none; + outline: none; + opacity: 0.9; + filter: alpha(opacity=90); +} + +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; +} + +.carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { + left: 50%; +} + +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; +} + +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + margin-top: -10px; + margin-left: -10px; + font-family: serif; +} + +.carousel-control .icon-prev:before { + content: '\2039'; +} + +.carousel-control .icon-next:before { + content: '\203a'; +} + +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + padding-left: 0; + margin-left: -30%; + text-align: center; + list-style: none; +} + +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0); + border: 1px solid #ffffff; + border-radius: 10px; +} + +.carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; + background-color: #ffffff; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} + +.carousel-caption .btn { + text-shadow: none; +} + +@media screen and (min-width: 768px) { + .carousel-control .glyphicons-chevron-left, + .carousel-control .glyphicons-chevron-right, + .carousel-control .icon-prev, + .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + margin-left: -15px; + font-size: 30px; + } + .carousel-caption { + right: 20%; + left: 20%; + padding-bottom: 30px; + } + .carousel-indicators { + bottom: 20px; + } +} + +.clearfix:before, +.clearfix:after { + display: table; + content: " "; +} + +.clearfix:after { + clear: both; +} + +.center-block { + display: block; + margin-right: auto; + margin-left: auto; +} + +.pull-right { + float: right !important; +} + +.pull-left { + float: left !important; +} + +.hide { + display: none !important; +} + +.show { + display: block !important; +} + +.invisible { + visibility: hidden; +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.hidden { + display: none !important; + visibility: hidden !important; +} + +.affix { + position: fixed; +} + +@-ms-viewport { + width: device-width; +} + +.visible-xs, +tr.visible-xs, +th.visible-xs, +td.visible-xs { + display: none !important; +} + +@media (max-width: 767px) { + .visible-xs { + display: block !important; + } + table.visible-xs { + display: table; + } + tr.visible-xs { + display: table-row !important; + } + th.visible-xs, + td.visible-xs { + display: table-cell !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .visible-xs.visible-sm { + display: block !important; + } + table.visible-xs.visible-sm { + display: table; + } + tr.visible-xs.visible-sm { + display: table-row !important; + } + th.visible-xs.visible-sm, + td.visible-xs.visible-sm { + display: table-cell !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .visible-xs.visible-md { + display: block !important; + } + table.visible-xs.visible-md { + display: table; + } + tr.visible-xs.visible-md { + display: table-row !important; + } + th.visible-xs.visible-md, + td.visible-xs.visible-md { + display: table-cell !important; + } +} + +@media (min-width: 1200px) { + .visible-xs.visible-lg { + display: block !important; + } + table.visible-xs.visible-lg { + display: table; + } + tr.visible-xs.visible-lg { + display: table-row !important; + } + th.visible-xs.visible-lg, + td.visible-xs.visible-lg { + display: table-cell !important; + } +} + +.visible-sm, +tr.visible-sm, +th.visible-sm, +td.visible-sm { + display: none !important; +} + +@media (max-width: 767px) { + .visible-sm.visible-xs { + display: block !important; + } + table.visible-sm.visible-xs { + display: table; + } + tr.visible-sm.visible-xs { + display: table-row !important; + } + th.visible-sm.visible-xs, + td.visible-sm.visible-xs { + display: table-cell !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + table.visible-sm { + display: table; + } + tr.visible-sm { + display: table-row !important; + } + th.visible-sm, + td.visible-sm { + display: table-cell !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .visible-sm.visible-md { + display: block !important; + } + table.visible-sm.visible-md { + display: table; + } + tr.visible-sm.visible-md { + display: table-row !important; + } + th.visible-sm.visible-md, + td.visible-sm.visible-md { + display: table-cell !important; + } +} + +@media (min-width: 1200px) { + .visible-sm.visible-lg { + display: block !important; + } + table.visible-sm.visible-lg { + display: table; + } + tr.visible-sm.visible-lg { + display: table-row !important; + } + th.visible-sm.visible-lg, + td.visible-sm.visible-lg { + display: table-cell !important; + } +} + +.visible-md, +tr.visible-md, +th.visible-md, +td.visible-md { + display: none !important; +} + +@media (max-width: 767px) { + .visible-md.visible-xs { + display: block !important; + } + table.visible-md.visible-xs { + display: table; + } + tr.visible-md.visible-xs { + display: table-row !important; + } + th.visible-md.visible-xs, + td.visible-md.visible-xs { + display: table-cell !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .visible-md.visible-sm { + display: block !important; + } + table.visible-md.visible-sm { + display: table; + } + tr.visible-md.visible-sm { + display: table-row !important; + } + th.visible-md.visible-sm, + td.visible-md.visible-sm { + display: table-cell !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + table.visible-md { + display: table; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } +} + +@media (min-width: 1200px) { + .visible-md.visible-lg { + display: block !important; + } + table.visible-md.visible-lg { + display: table; + } + tr.visible-md.visible-lg { + display: table-row !important; + } + th.visible-md.visible-lg, + td.visible-md.visible-lg { + display: table-cell !important; + } +} + +.visible-lg, +tr.visible-lg, +th.visible-lg, +td.visible-lg { + display: none !important; +} + +@media (max-width: 767px) { + .visible-lg.visible-xs { + display: block !important; + } + table.visible-lg.visible-xs { + display: table; + } + tr.visible-lg.visible-xs { + display: table-row !important; + } + th.visible-lg.visible-xs, + td.visible-lg.visible-xs { + display: table-cell !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .visible-lg.visible-sm { + display: block !important; + } + table.visible-lg.visible-sm { + display: table; + } + tr.visible-lg.visible-sm { + display: table-row !important; + } + th.visible-lg.visible-sm, + td.visible-lg.visible-sm { + display: table-cell !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .visible-lg.visible-md { + display: block !important; + } + table.visible-lg.visible-md { + display: table; + } + tr.visible-lg.visible-md { + display: table-row !important; + } + th.visible-lg.visible-md, + td.visible-lg.visible-md { + display: table-cell !important; + } +} + +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } + table.visible-lg { + display: table; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } +} + +.hidden-xs { + display: block !important; +} + +table.hidden-xs { + display: table; +} + +tr.hidden-xs { + display: table-row !important; +} + +th.hidden-xs, +td.hidden-xs { + display: table-cell !important; +} + +@media (max-width: 767px) { + .hidden-xs, + tr.hidden-xs, + th.hidden-xs, + td.hidden-xs { + display: none !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .hidden-xs.hidden-sm, + tr.hidden-xs.hidden-sm, + th.hidden-xs.hidden-sm, + td.hidden-xs.hidden-sm { + display: none !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-xs.hidden-md, + tr.hidden-xs.hidden-md, + th.hidden-xs.hidden-md, + td.hidden-xs.hidden-md { + display: none !important; + } +} + +@media (min-width: 1200px) { + .hidden-xs.hidden-lg, + tr.hidden-xs.hidden-lg, + th.hidden-xs.hidden-lg, + td.hidden-xs.hidden-lg { + display: none !important; + } +} + +.hidden-sm { + display: block !important; +} + +table.hidden-sm { + display: table; +} + +tr.hidden-sm { + display: table-row !important; +} + +th.hidden-sm, +td.hidden-sm { + display: table-cell !important; +} + +@media (max-width: 767px) { + .hidden-sm.hidden-xs, + tr.hidden-sm.hidden-xs, + th.hidden-sm.hidden-xs, + td.hidden-sm.hidden-xs { + display: none !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm, + tr.hidden-sm, + th.hidden-sm, + td.hidden-sm { + display: none !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-sm.hidden-md, + tr.hidden-sm.hidden-md, + th.hidden-sm.hidden-md, + td.hidden-sm.hidden-md { + display: none !important; + } +} + +@media (min-width: 1200px) { + .hidden-sm.hidden-lg, + tr.hidden-sm.hidden-lg, + th.hidden-sm.hidden-lg, + td.hidden-sm.hidden-lg { + display: none !important; + } +} + +.hidden-md { + display: block !important; +} + +table.hidden-md { + display: table; +} + +tr.hidden-md { + display: table-row !important; +} + +th.hidden-md, +td.hidden-md { + display: table-cell !important; +} + +@media (max-width: 767px) { + .hidden-md.hidden-xs, + tr.hidden-md.hidden-xs, + th.hidden-md.hidden-xs, + td.hidden-md.hidden-xs { + display: none !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .hidden-md.hidden-sm, + tr.hidden-md.hidden-sm, + th.hidden-md.hidden-sm, + td.hidden-md.hidden-sm { + display: none !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md, + tr.hidden-md, + th.hidden-md, + td.hidden-md { + display: none !important; + } +} + +@media (min-width: 1200px) { + .hidden-md.hidden-lg, + tr.hidden-md.hidden-lg, + th.hidden-md.hidden-lg, + td.hidden-md.hidden-lg { + display: none !important; + } +} + +.hidden-lg { + display: block !important; +} + +table.hidden-lg { + display: table; +} + +tr.hidden-lg { + display: table-row !important; +} + +th.hidden-lg, +td.hidden-lg { + display: table-cell !important; +} + +@media (max-width: 767px) { + .hidden-lg.hidden-xs, + tr.hidden-lg.hidden-xs, + th.hidden-lg.hidden-xs, + td.hidden-lg.hidden-xs { + display: none !important; + } +} + +@media (min-width: 768px) and (max-width: 991px) { + .hidden-lg.hidden-sm, + tr.hidden-lg.hidden-sm, + th.hidden-lg.hidden-sm, + td.hidden-lg.hidden-sm { + display: none !important; + } +} + +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-lg.hidden-md, + tr.hidden-lg.hidden-md, + th.hidden-lg.hidden-md, + td.hidden-lg.hidden-md { + display: none !important; + } +} + +@media (min-width: 1200px) { + .hidden-lg, + tr.hidden-lg, + th.hidden-lg, + td.hidden-lg { + display: none !important; + } +} + +.visible-print, +tr.visible-print, +th.visible-print, +td.visible-print { + display: none !important; +} + +@media print { + .visible-print { + display: block !important; + } + table.visible-print { + display: table; + } + tr.visible-print { + display: table-row !important; + } + th.visible-print, + td.visible-print { + display: table-cell !important; + } + .hidden-print, + tr.hidden-print, + th.hidden-print, + td.hidden-print { + display: none !important; + } +}
@@ -0,0 +1,130 @@
+/* + +github.com style (c) Vasily Polovnyov <vast@whiteants.net> + +*/ + +pre code { + display: block; padding: 0.5em; + color: #333; + background: #f8f8ff +} + +pre .comment, +pre .template_comment, +pre .diff .header, +pre .javadoc { + color: #998; + font-style: italic +} + +pre .keyword, +pre .css .rule .keyword, +pre .winutils, +pre .javascript .title, +pre .nginx .title, +pre .subst, +pre .request, +pre .status { + color: #333; + font-weight: bold +} + +pre .number, +pre .hexcolor, +pre .ruby .constant { + color: #099; +} + +pre .string, +pre .tag .value, +pre .phpdoc, +pre .tex .formula { + color: #d14 +} + +pre .title, +pre .id, +pre .coffeescript .params, +pre .scss .preprocessor { + color: #900; + font-weight: bold +} + +pre .javascript .title, +pre .lisp .title, +pre .clojure .title, +pre .subst { + font-weight: normal +} + +pre .class .title, +pre .haskell .type, +pre .vhdl .literal, +pre .tex .command { + color: #458; + font-weight: bold +} + +pre .tag, +pre .tag .title, +pre .rules .property, +pre .django .tag .keyword { + color: #000080; + font-weight: normal +} + +pre .attribute, +pre .variable, +pre .lisp .body { + color: #008080 +} + +pre .regexp { + color: #009926 +} + +pre .class { + color: #458; + font-weight: bold +} + +pre .symbol, +pre .ruby .symbol .string, +pre .lisp .keyword, +pre .tex .special, +pre .prompt { + color: #990073 +} + +pre .built_in, +pre .lisp .title, +pre .clojure .built_in { + color: #0086b3 +} + +pre .preprocessor, +pre .pragma, +pre .pi, +pre .doctype, +pre .shebang, +pre .cdata { + color: #999; + font-weight: bold +} + +pre .deletion { + background: #fdd +} + +pre .addition { + background: #dfd +} + +pre .diff .change { + background: #0086b3 +} + +pre .chunk { + color: #aaa +}
@@ -0,0 +1,13857 @@
+/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ +/* ========================================================================== + HTML5 display definitions + ========================================================================== */ +/** + * Correct `block` display not defined in IE 8/9. + */ +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +summary { + display: block; +} +/** + * Correct `inline-block` display not defined in IE 8/9. + */ +audio, +canvas, +video { + display: inline-block; +} +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ +audio:not([controls]) { + display: none; + height: 0; +} +/** + * Address `[hidden]` styling not present in IE 8/9. + * Hide the `template` element in IE, Safari, and Firefox < 22. + */ +[hidden], +template { + display: none; +} +/* ========================================================================== + Base + ========================================================================== */ +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS text size adjust after orientation change, without disabling + * user zoom. + */ +html { + font-family: sans-serif; + /* 1 */ + -ms-text-size-adjust: 100%; + /* 2 */ + -webkit-text-size-adjust: 100%; + /* 2 */ +} +/** + * Remove default margin. + */ +body { + margin: 0; +} +/* ========================================================================== + Links + ========================================================================== */ +/** + * Remove the gray background color from active links in IE 10. + */ +a { + background: transparent; +} +/** + * Address `outline` inconsistency between Chrome and other browsers. + */ +a:focus { + outline: thin dotted; +} +/** + * Improve readability when focused and also mouse hovered in all browsers. + */ +a:active, +a:hover { + outline: 0; +} +/* ========================================================================== + Typography + ========================================================================== */ +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari 5, and Chrome. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; +} +/** + * Address styling not present in IE 8/9, Safari 5, and Chrome. + */ +abbr[title] { + border-bottom: 1px dotted; +} +/** + * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. + */ +b, +strong { + font-weight: bold; +} +/** + * Address styling not present in Safari 5 and Chrome. + */ +dfn { + font-style: italic; +} +/** + * Address differences between Firefox and other browsers. + */ +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} +/** + * Address styling not present in IE 8/9. + */ +mark { + background: #ff0; + color: #000; +} +/** + * Correct font family set oddly in Safari 5 and Chrome. + */ +code, +kbd, +pre, +samp { + font-family: monospace, serif; + font-size: 1em; +} +/** + * Improve readability of pre-formatted text in all browsers. + */ +pre { + white-space: pre-wrap; +} +/** + * Set consistent quote types. + */ +q { + quotes: "\201C" "\201D" "\2018" "\2019"; +} +/** + * Address inconsistent and variable font size in all browsers. + */ +small { + font-size: 80%; +} +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +/* ========================================================================== + Embedded content + ========================================================================== */ +/** + * Remove border when inside `a` element in IE 8/9. + */ +img { + border: 0; +} +/** + * Correct overflow displayed oddly in IE 9. + */ +svg:not(:root) { + overflow: hidden; +} +/* ========================================================================== + Figures + ========================================================================== */ +/** + * Address margin not present in IE 8/9 and Safari 5. + */ +figure { + margin: 0; +} +/* ========================================================================== + Forms + ========================================================================== */ +/** + * Define consistent border, margin, and padding. + */ +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} +/** + * 1. Correct `color` not being inherited in IE 8/9. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ +legend { + border: 0; + /* 1 */ + padding: 0; + /* 2 */ +} +/** + * 1. Correct font family not being inherited in all browsers. + * 2. Correct font size not being inherited in all browsers. + * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. + */ +button, +input, +select, +textarea { + font-family: inherit; + /* 1 */ + font-size: 100%; + /* 2 */ + margin: 0; + /* 3 */ +} +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ +button, +input { + line-height: normal; +} +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. + * Correct `select` style inheritance in Firefox 4+ and Opera. + */ +button, +select { + text-transform: none; +} +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + /* 2 */ + cursor: pointer; + /* 3 */ +} +/** + * Re-set default cursor for disabled elements. + */ +button[disabled], +html input[disabled] { + cursor: default; +} +/** + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ +} +/** + * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome + * (include `-moz` to future-proof). + */ +input[type="search"] { + -webkit-appearance: textfield; + /* 1 */ + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; + /* 2 */ + box-sizing: content-box; +} +/** + * Remove inner padding and search cancel button in Safari 5 and Chrome + * on OS X. + */ +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +/** + * Remove inner padding and border in Firefox 4+. + */ +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} +/** + * 1. Remove default vertical scrollbar in IE 8/9. + * 2. Improve readability and alignment in all browsers. + */ +textarea { + overflow: auto; + /* 1 */ + vertical-align: top; + /* 2 */ +} +/* ========================================================================== + Tables + ========================================================================== */ +/** + * Remove most spacing between table cells. + */ +table { + border-collapse: collapse; + border-spacing: 0; +} +/* Fonts */ +/* Colors */ +.hyphens, +.hyphenate { + -moz-hyphens: auto; + -webkit-hyphens: auto; + -ms-hyphens: auto; + hyphens: auto; +} +.no-hyphens, +.donthyphenate { + -moz-hyphens: none; + -webkit-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} +.normal-ligatures { + -moz-font-feature-settings: "liga", "pnum", "frac", "zero"; + -webkit-font-feature-settings: "liga", "pnum", "frac", "zero"; + -ms-font-feature-settings: "liga", "pnum", "frac", "zero"; + font-feature-settings: "liga", "pnum", "frac", "zero"; +} +.fancy-ligatures { + -moz-font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; + -webkit-font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; + -ms-font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; + font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; +} +.ordn { + -moz-font-feature-settings: "ordn"; + -ms-font-feature-settings: "ordn"; + -webkit-font-feature-settings: "ordn"; + font-feature-settings: "ordn"; +} +.smcp, +.caps { + -moz-font-feature-settings: "smcp"; + -ms-font-feature-settings: "smcp"; + -webkit-font-feature-settings: "smcp"; + font-feature-settings: "smcp"; +} +.subs { + -moz-font-feature-settings: "subs"; + -ms-font-feature-settings: "subs"; + -webkit-font-feature-settings: "subs"; + font-feature-settings: "subs"; +} +.sups { + -moz-font-feature-settings: "sups"; + -ms-font-feature-settings: "sups"; + -webkit-font-feature-settings: "sups"; + font-feature-settings: "sups"; +} +/* Generated by Font Squirrel (http://www.fontsquirrel.com) on April 18, 2015 */ +@font-face { + font-family: 'Calendas Plus'; + src: url('../fonts/calendas_plus-eot.eot'); + src: url('../fonts/calendas_plus-eot.eot?#iefix') format('embedded-opentype'), url('../fonts/calendas_plus-woff2.woff2') format('woff2'), url('../fonts/calendas_plus-woff.woff') format('woff'), url('../fonts/calendas_plus-ttf.ttf') format('truetype'); + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'Calendas Plus'; + src: url('../fonts/calendas_plus_bold-eot.eot'); + src: url('../fonts/calendas_plus_bold-eot.eot?#iefix') format('embedded-opentype'), url('../fonts/calendas_plus_bold-woff2.woff2') format('woff2'), url('../fonts/calendas_plus_bold-woff.woff') format('woff'), url('../fonts/calendas_plus_bold-ttf.ttf') format('truetype'); + font-weight: bold; + font-style: normal; +} +@font-face { + font-family: 'Calendas Plus'; + src: url('../fonts/calendas_plus_italic-eot.eot'); + src: url('../fonts/calendas_plus_italic-eot.eot?#iefix') format('embedded-opentype'), url('../fonts/calendas_plus_italic-woff2.woff2') format('woff2'), url('../fonts/calendas_plus_italic-woff.woff') format('woff'), url('../fonts/calendas_plus_italic-ttf.ttf') format('truetype'); + font-weight: normal; + font-style: italic; +} +/* Generated by Font Squirrel (http://www.fontsquirrel.com) on April 19, 2015 */ +@font-face { + font-family: 'Inconsolata'; + src: url('../fonts/inconsolata-eot.eot'); + src: url('../fonts/inconsolata-eot.eot?#iefix') format('embedded-opentype'), url('../fonts/inconsolata-woff2.woff2') format('woff2'), url('../fonts/inconsolata-woff.woff') format('woff'), url('../fonts/inconsolata-ttf.ttf') format('truetype'), url('../fonts/inconsolata-svg#inconsolatamedium.svg#Inconsolata') format('svg'); + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'HastyScribe'; + src: url('../fonts/hastyscribe-eot.eot'); + src: url('../fonts/hastyscribe-eot.eot?#iefix') format('embedded-opentype'), url('../fonts/hastyscribe-ttf.ttf') format('truetype'), url('../fonts/hastyscribe-woff.woff') format('woff'), url('../fonts/hastyscribe-svg.svg#hastyscribe') format('svg'); + font-weight: normal; + font-style: normal; +} +.hastyscribe:before { + font-family: "HastyScribe"; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + font-size: 150%; + vertical-align: bottom; + line-height: 0.7; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: inline; + content: "H"; +} +@font-face { + font-family: 'H3RALD'; + src: url('../fonts/h3rald-eot.eot'); + src: url('../fonts/h3rald-eot.eot?#iefix') format('embedded-opentype'), url('../fonts/h3rald-ttf.ttf') format('truetype'), url('../fonts/h3rald-woff.woff') format('woff'), url('../fonts/h3rald-svg.svg#h3rald') format('svg'); + font-weight: normal; + font-style: normal; +} +.h3rald { + font-family: "H3RALD"; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + content: "\e7c4"; + display: inline; +} +.h3rald:before { + content: "\e7c4"; +} +.h3rald-header, +.navbar a.h3rald.h3rald-header { + font-size: 50px; + color: #f3f3f3; + text-shadow: 0 1px 1px #111; +} +.h3rald-header:hover, +.navbar a.h3rald.h3rald-header:hover { + text-decoration: none; +} +.h3rald-footer { + position: relative; + top: 3px; + font-size: 15px; + color: #fff; +} +/*! + * Bootstrap v3.3.4 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +/*! + * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=2b3bdc340744aeea5a18) + * Config saved to config.json and https://gist.github.com/2b3bdc340744aeea5a18 + */ +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ +html { + font-family: sans-serif; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; +} +body { + margin: 0; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; +} +audio:not([controls]) { + display: none; + height: 0; +} +[hidden], +template { + display: none; +} +a { + background-color: transparent; +} +a:active, +a:hover { + outline: 0; +} +abbr[title] { + border-bottom: 1px dotted; +} +b, +strong { + font-weight: bold; +} +dfn { + font-style: italic; +} +h1 { + font-size: 2em; + margin: 0.67em 0; +} +mark { + background: #ff0; + color: #000; +} +small { + font-size: 80%; +} +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +img { + border: 0; +} +svg:not(:root) { + overflow: hidden; +} +figure { + margin: 1em 40px; +} +hr { + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} +pre { + overflow: auto; +} +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +button, +input, +optgroup, +select, +textarea { + color: inherit; + font: inherit; + margin: 0; +} +button { + overflow: visible; +} +button, +select { + text-transform: none; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +button[disabled], +html input[disabled] { + cursor: default; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} +input { + line-height: normal; +} +input[type="checkbox"], +input[type="radio"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 0; +} +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} +input[type="search"] { + -webkit-appearance: textfield; + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; +} +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} +legend { + border: 0; + padding: 0; +} +textarea { + overflow: auto; +} +optgroup { + font-weight: bold; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +td, +th { + padding: 0; +} +/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ +@media print { + *, + *:before, + *:after { + background: transparent !important; + color: #000 !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; + text-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + a[href^="#"]:after, + a[href^="javascript:"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + select { + background: #fff !important; + } + .navbar { + display: none; + } + .btn > .caret, + .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { + border: 1px solid #000; + } + .table, + article table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} +@font-face { + font-family: 'Glyphicons Halflings'; + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); +} +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.glyphicon-asterisk:before { + content: "\2a"; +} +.glyphicon-plus:before { + content: "\2b"; +} +.glyphicon-euro:before, +.glyphicon-eur:before { + content: "\20ac"; +} +.glyphicon-minus:before { + content: "\2212"; +} +.glyphicon-cloud:before { + content: "\2601"; +} +.glyphicon-envelope:before { + content: "\2709"; +} +.glyphicon-pencil:before { + content: "\270f"; +} +.glyphicon-glass:before { + content: "\e001"; +} +.glyphicon-music:before { + content: "\e002"; +} +.glyphicon-search:before { + content: "\e003"; +} +.glyphicon-heart:before { + content: "\e005"; +} +.glyphicon-star:before { + content: "\e006"; +} +.glyphicon-star-empty:before { + content: "\e007"; +} +.glyphicon-user:before { + content: "\e008"; +} +.glyphicon-film:before { + content: "\e009"; +} +.glyphicon-th-large:before { + content: "\e010"; +} +.glyphicon-th:before { + content: "\e011"; +} +.glyphicon-th-list:before { + content: "\e012"; +} +.glyphicon-ok:before { + content: "\e013"; +} +.glyphicon-remove:before { + content: "\e014"; +} +.glyphicon-zoom-in:before { + content: "\e015"; +} +.glyphicon-zoom-out:before { + content: "\e016"; +} +.glyphicon-off:before { + content: "\e017"; +} +.glyphicon-signal:before { + content: "\e018"; +} +.glyphicon-cog:before { + content: "\e019"; +} +.glyphicon-trash:before { + content: "\e020"; +} +.glyphicon-home:before { + content: "\e021"; +} +.glyphicon-file:before { + content: "\e022"; +} +.glyphicon-time:before { + content: "\e023"; +} +.glyphicon-road:before { + content: "\e024"; +} +.glyphicon-download-alt:before { + content: "\e025"; +} +.glyphicon-download:before { + content: "\e026"; +} +.glyphicon-upload:before { + content: "\e027"; +} +.glyphicon-inbox:before { + content: "\e028"; +} +.glyphicon-play-circle:before { + content: "\e029"; +} +.glyphicon-repeat:before { + content: "\e030"; +} +.glyphicon-refresh:before { + content: "\e031"; +} +.glyphicon-list-alt:before { + content: "\e032"; +} +.glyphicon-lock:before { + content: "\e033"; +} +.glyphicon-flag:before { + content: "\e034"; +} +.glyphicon-headphones:before { + content: "\e035"; +} +.glyphicon-volume-off:before { + content: "\e036"; +} +.glyphicon-volume-down:before { + content: "\e037"; +} +.glyphicon-volume-up:before { + content: "\e038"; +} +.glyphicon-qrcode:before { + content: "\e039"; +} +.glyphicon-barcode:before { + content: "\e040"; +} +.glyphicon-tag:before { + content: "\e041"; +} +.glyphicon-tags:before { + content: "\e042"; +} +.glyphicon-book:before { + content: "\e043"; +} +.glyphicon-bookmark:before { + content: "\e044"; +} +.glyphicon-print:before { + content: "\e045"; +} +.glyphicon-camera:before { + content: "\e046"; +} +.glyphicon-font:before { + content: "\e047"; +} +.glyphicon-bold:before { + content: "\e048"; +} +.glyphicon-italic:before { + content: "\e049"; +} +.glyphicon-text-height:before { + content: "\e050"; +} +.glyphicon-text-width:before { + content: "\e051"; +} +.glyphicon-align-left:before { + content: "\e052"; +} +.glyphicon-align-center:before { + content: "\e053"; +} +.glyphicon-align-right:before { + content: "\e054"; +} +.glyphicon-align-justify:before { + content: "\e055"; +} +.glyphicon-list:before { + content: "\e056"; +} +.glyphicon-indent-left:before { + content: "\e057"; +} +.glyphicon-indent-right:before { + content: "\e058"; +} +.glyphicon-facetime-video:before { + content: "\e059"; +} +.glyphicon-picture:before { + content: "\e060"; +} +.glyphicon-map-marker:before { + content: "\e062"; +} +.glyphicon-adjust:before { + content: "\e063"; +} +.glyphicon-tint:before { + content: "\e064"; +} +.glyphicon-edit:before { + content: "\e065"; +} +.glyphicon-share:before { + content: "\e066"; +} +.glyphicon-check:before { + content: "\e067"; +} +.glyphicon-move:before { + content: "\e068"; +} +.glyphicon-step-backward:before { + content: "\e069"; +} +.glyphicon-fast-backward:before { + content: "\e070"; +} +.glyphicon-backward:before { + content: "\e071"; +} +.glyphicon-play:before { + content: "\e072"; +} +.glyphicon-pause:before { + content: "\e073"; +} +.glyphicon-stop:before { + content: "\e074"; +} +.glyphicon-forward:before { + content: "\e075"; +} +.glyphicon-fast-forward:before { + content: "\e076"; +} +.glyphicon-step-forward:before { + content: "\e077"; +} +.glyphicon-eject:before { + content: "\e078"; +} +.glyphicon-chevron-left:before { + content: "\e079"; +} +.glyphicon-chevron-right:before { + content: "\e080"; +} +.glyphicon-plus-sign:before { + content: "\e081"; +} +.glyphicon-minus-sign:before { + content: "\e082"; +} +.glyphicon-remove-sign:before { + content: "\e083"; +} +.glyphicon-ok-sign:before { + content: "\e084"; +} +.glyphicon-question-sign:before { + content: "\e085"; +} +.glyphicon-info-sign:before { + content: "\e086"; +} +.glyphicon-screenshot:before { + content: "\e087"; +} +.glyphicon-remove-circle:before { + content: "\e088"; +} +.glyphicon-ok-circle:before { + content: "\e089"; +} +.glyphicon-ban-circle:before { + content: "\e090"; +} +.glyphicon-arrow-left:before { + content: "\e091"; +} +.glyphicon-arrow-right:before { + content: "\e092"; +} +.glyphicon-arrow-up:before { + content: "\e093"; +} +.glyphicon-arrow-down:before { + content: "\e094"; +} +.glyphicon-share-alt:before { + content: "\e095"; +} +.glyphicon-resize-full:before { + content: "\e096"; +} +.glyphicon-resize-small:before { + content: "\e097"; +} +.glyphicon-exclamation-sign:before { + content: "\e101"; +} +.glyphicon-gift:before { + content: "\e102"; +} +.glyphicon-leaf:before { + content: "\e103"; +} +.glyphicon-fire:before { + content: "\e104"; +} +.glyphicon-eye-open:before { + content: "\e105"; +} +.glyphicon-eye-close:before { + content: "\e106"; +} +.glyphicon-warning-sign:before { + content: "\e107"; +} +.glyphicon-plane:before { + content: "\e108"; +} +.glyphicon-calendar:before { + content: "\e109"; +} +.glyphicon-random:before { + content: "\e110"; +} +.glyphicon-comment:before { + content: "\e111"; +} +.glyphicon-magnet:before { + content: "\e112"; +} +.glyphicon-chevron-up:before { + content: "\e113"; +} +.glyphicon-chevron-down:before { + content: "\e114"; +} +.glyphicon-retweet:before { + content: "\e115"; +} +.glyphicon-shopping-cart:before { + content: "\e116"; +} +.glyphicon-folder-close:before { + content: "\e117"; +} +.glyphicon-folder-open:before { + content: "\e118"; +} +.glyphicon-resize-vertical:before { + content: "\e119"; +} +.glyphicon-resize-horizontal:before { + content: "\e120"; +} +.glyphicon-hdd:before { + content: "\e121"; +} +.glyphicon-bullhorn:before { + content: "\e122"; +} +.glyphicon-bell:before { + content: "\e123"; +} +.glyphicon-certificate:before { + content: "\e124"; +} +.glyphicon-thumbs-up:before { + content: "\e125"; +} +.glyphicon-thumbs-down:before { + content: "\e126"; +} +.glyphicon-hand-right:before { + content: "\e127"; +} +.glyphicon-hand-left:before { + content: "\e128"; +} +.glyphicon-hand-up:before { + content: "\e129"; +} +.glyphicon-hand-down:before { + content: "\e130"; +} +.glyphicon-circle-arrow-right:before { + content: "\e131"; +} +.glyphicon-circle-arrow-left:before { + content: "\e132"; +} +.glyphicon-circle-arrow-up:before { + content: "\e133"; +} +.glyphicon-circle-arrow-down:before { + content: "\e134"; +} +.glyphicon-globe:before { + content: "\e135"; +} +.glyphicon-wrench:before { + content: "\e136"; +} +.glyphicon-tasks:before { + content: "\e137"; +} +.glyphicon-filter:before { + content: "\e138"; +} +.glyphicon-briefcase:before { + content: "\e139"; +} +.glyphicon-fullscreen:before { + content: "\e140"; +} +.glyphicon-dashboard:before { + content: "\e141"; +} +.glyphicon-paperclip:before { + content: "\e142"; +} +.glyphicon-heart-empty:before { + content: "\e143"; +} +.glyphicon-link:before { + content: "\e144"; +} +.glyphicon-phone:before { + content: "\e145"; +} +.glyphicon-pushpin:before { + content: "\e146"; +} +.glyphicon-usd:before { + content: "\e148"; +} +.glyphicon-gbp:before { + content: "\e149"; +} +.glyphicon-sort:before { + content: "\e150"; +} +.glyphicon-sort-by-alphabet:before { + content: "\e151"; +} +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152"; +} +.glyphicon-sort-by-order:before { + content: "\e153"; +} +.glyphicon-sort-by-order-alt:before { + content: "\e154"; +} +.glyphicon-sort-by-attributes:before { + content: "\e155"; +} +.glyphicon-sort-by-attributes-alt:before { + content: "\e156"; +} +.glyphicon-unchecked:before { + content: "\e157"; +} +.glyphicon-expand:before { + content: "\e158"; +} +.glyphicon-collapse-down:before { + content: "\e159"; +} +.glyphicon-collapse-up:before { + content: "\e160"; +} +.glyphicon-log-in:before { + content: "\e161"; +} +.glyphicon-flash:before { + content: "\e162"; +} +.glyphicon-log-out:before { + content: "\e163"; +} +.glyphicon-new-window:before { + content: "\e164"; +} +.glyphicon-record:before { + content: "\e165"; +} +.glyphicon-save:before { + content: "\e166"; +} +.glyphicon-open:before { + content: "\e167"; +} +.glyphicon-saved:before { + content: "\e168"; +} +.glyphicon-import:before { + content: "\e169"; +} +.glyphicon-export:before { + content: "\e170"; +} +.glyphicon-send:before { + content: "\e171"; +} +.glyphicon-floppy-disk:before { + content: "\e172"; +} +.glyphicon-floppy-saved:before { + content: "\e173"; +} +.glyphicon-floppy-remove:before { + content: "\e174"; +} +.glyphicon-floppy-save:before { + content: "\e175"; +} +.glyphicon-floppy-open:before { + content: "\e176"; +} +.glyphicon-credit-card:before { + content: "\e177"; +} +.glyphicon-transfer:before { + content: "\e178"; +} +.glyphicon-cutlery:before { + content: "\e179"; +} +.glyphicon-header:before { + content: "\e180"; +} +.glyphicon-compressed:before { + content: "\e181"; +} +.glyphicon-earphone:before { + content: "\e182"; +} +.glyphicon-phone-alt:before { + content: "\e183"; +} +.glyphicon-tower:before { + content: "\e184"; +} +.glyphicon-stats:before { + content: "\e185"; +} +.glyphicon-sd-video:before { + content: "\e186"; +} +.glyphicon-hd-video:before { + content: "\e187"; +} +.glyphicon-subtitles:before { + content: "\e188"; +} +.glyphicon-sound-stereo:before { + content: "\e189"; +} +.glyphicon-sound-dolby:before { + content: "\e190"; +} +.glyphicon-sound-5-1:before { + content: "\e191"; +} +.glyphicon-sound-6-1:before { + content: "\e192"; +} +.glyphicon-sound-7-1:before { + content: "\e193"; +} +.glyphicon-copyright-mark:before { + content: "\e194"; +} +.glyphicon-registration-mark:before { + content: "\e195"; +} +.glyphicon-cloud-download:before { + content: "\e197"; +} +.glyphicon-cloud-upload:before { + content: "\e198"; +} +.glyphicon-tree-conifer:before { + content: "\e199"; +} +.glyphicon-tree-deciduous:before { + content: "\e200"; +} +.glyphicon-cd:before { + content: "\e201"; +} +.glyphicon-save-file:before { + content: "\e202"; +} +.glyphicon-open-file:before { + content: "\e203"; +} +.glyphicon-level-up:before { + content: "\e204"; +} +.glyphicon-copy:before { + content: "\e205"; +} +.glyphicon-paste:before { + content: "\e206"; +} +.glyphicon-alert:before { + content: "\e209"; +} +.glyphicon-equalizer:before { + content: "\e210"; +} +.glyphicon-king:before { + content: "\e211"; +} +.glyphicon-queen:before { + content: "\e212"; +} +.glyphicon-pawn:before { + content: "\e213"; +} +.glyphicon-bishop:before { + content: "\e214"; +} +.glyphicon-knight:before { + content: "\e215"; +} +.glyphicon-baby-formula:before { + content: "\e216"; +} +.glyphicon-tent:before { + content: "\26fa"; +} +.glyphicon-blackboard:before { + content: "\e218"; +} +.glyphicon-bed:before { + content: "\e219"; +} +.glyphicon-apple:before { + content: "\f8ff"; +} +.glyphicon-erase:before { + content: "\e221"; +} +.glyphicon-hourglass:before { + content: "\231b"; +} +.glyphicon-lamp:before { + content: "\e223"; +} +.glyphicon-duplicate:before { + content: "\e224"; +} +.glyphicon-piggy-bank:before { + content: "\e225"; +} +.glyphicon-scissors:before { + content: "\e226"; +} +.glyphicon-bitcoin:before { + content: "\e227"; +} +.glyphicon-btc:before { + content: "\e227"; +} +.glyphicon-xbt:before { + content: "\e227"; +} +.glyphicon-yen:before { + content: "\00a5"; +} +.glyphicon-jpy:before { + content: "\00a5"; +} +.glyphicon-ruble:before { + content: "\20bd"; +} +.glyphicon-rub:before { + content: "\20bd"; +} +.glyphicon-scale:before { + content: "\e230"; +} +.glyphicon-ice-lolly:before { + content: "\e231"; +} +.glyphicon-ice-lolly-tasted:before { + content: "\e232"; +} +.glyphicon-education:before { + content: "\e233"; +} +.glyphicon-option-horizontal:before { + content: "\e234"; +} +.glyphicon-option-vertical:before { + content: "\e235"; +} +.glyphicon-menu-hamburger:before { + content: "\e236"; +} +.glyphicon-modal-window:before { + content: "\e237"; +} +.glyphicon-oil:before { + content: "\e238"; +} +.glyphicon-grain:before { + content: "\e239"; +} +.glyphicon-sunglasses:before { + content: "\e240"; +} +.glyphicon-text-size:before { + content: "\e241"; +} +.glyphicon-text-color:before { + content: "\e242"; +} +.glyphicon-text-background:before { + content: "\e243"; +} +.glyphicon-object-align-top:before { + content: "\e244"; +} +.glyphicon-object-align-bottom:before { + content: "\e245"; +} +.glyphicon-object-align-horizontal:before { + content: "\e246"; +} +.glyphicon-object-align-left:before { + content: "\e247"; +} +.glyphicon-object-align-vertical:before { + content: "\e248"; +} +.glyphicon-object-align-right:before { + content: "\e249"; +} +.glyphicon-triangle-right:before { + content: "\e250"; +} +.glyphicon-triangle-left:before { + content: "\e251"; +} +.glyphicon-triangle-bottom:before { + content: "\e252"; +} +.glyphicon-triangle-top:before { + content: "\e253"; +} +.glyphicon-console:before { + content: "\e254"; +} +.glyphicon-superscript:before { + content: "\e255"; +} +.glyphicon-subscript:before { + content: "\e256"; +} +.glyphicon-menu-left:before { + content: "\e257"; +} +.glyphicon-menu-right:before { + content: "\e258"; +} +.glyphicon-menu-down:before { + content: "\e259"; +} +.glyphicon-menu-up:before { + content: "\e260"; +} +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +html { + font-size: 10px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.42857143; + color: #333333; + background-color: #ffffff; +} +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +a { + color: #337ab7; + text-decoration: none; +} +a:hover, +a:focus { + color: #23527c; + text-decoration: underline; +} +a:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +figure { + margin: 0; +} +img { + vertical-align: middle; +} +.img-responsive, +.thumbnail > img, +.thumbnail a > img, +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + max-width: 100%; + height: auto; +} +.img-rounded { + border-radius: 6px; +} +.img-thumbnail { + padding: 4px; + line-height: 1.42857143; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto; +} +.img-circle { + border-radius: 50%; +} +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} +[role="button"] { + cursor: pointer; +} +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: inherit; + font-weight: 500; + line-height: 1.1; + color: inherit; +} +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small, +.h1 small, +.h2 small, +.h3 small, +.h4 small, +.h5 small, +.h6 small, +h1 .small, +h2 .small, +h3 .small, +h4 .small, +h5 .small, +h6 .small, +.h1 .small, +.h2 .small, +.h3 .small, +.h4 .small, +.h5 .small, +.h6 .small { + font-weight: normal; + line-height: 1; + color: #777777; +} +h1, +.h1, +h2, +.h2, +h3, +.h3 { + margin-top: 20px; + margin-bottom: 10px; +} +h1 small, +.h1 small, +h2 small, +.h2 small, +h3 small, +.h3 small, +h1 .small, +.h1 .small, +h2 .small, +.h2 .small, +h3 .small, +.h3 .small { + font-size: 65%; +} +h4, +.h4, +h5, +.h5, +h6, +.h6 { + margin-top: 10px; + margin-bottom: 10px; +} +h4 small, +.h4 small, +h5 small, +.h5 small, +h6 small, +.h6 small, +h4 .small, +.h4 .small, +h5 .small, +.h5 .small, +h6 .small, +.h6 .small { + font-size: 75%; +} +h1, +.h1 { + font-size: 36px; +} +h2, +.h2 { + font-size: 30px; +} +h3, +.h3 { + font-size: 24px; +} +h4, +.h4 { + font-size: 18px; +} +h5, +.h5 { + font-size: 14px; +} +h6, +.h6 { + font-size: 12px; +} +p { + margin: 0 0 10px; +} +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4; +} +@media (min-width: 768px) { + .lead { + font-size: 21px; + } +} +small, +.small { + font-size: 85%; +} +mark, +.mark { + background-color: #fcf8e3; + padding: .2em; +} +.text-left { + text-align: left; +} +.text-right { + text-align: right; +} +.text-center { + text-align: center; +} +.text-justify { + text-align: justify; +} +.text-nowrap { + white-space: nowrap; +} +.text-lowercase { + text-transform: lowercase; +} +.text-uppercase { + text-transform: uppercase; +} +.text-capitalize { + text-transform: capitalize; +} +.text-muted { + color: #777777; +} +.text-primary { + color: #337ab7; +} +a.text-primary:hover { + color: #286090; +} +.text-success { + color: #3c763d; +} +a.text-success:hover { + color: #2b542c; +} +.text-info { + color: #31708f; +} +a.text-info:hover { + color: #245269; +} +.text-warning { + color: #8a6d3b; +} +a.text-warning:hover { + color: #66512c; +} +.text-danger { + color: #a94442; +} +a.text-danger:hover { + color: #843534; +} +.bg-primary { + color: #fff; + background-color: #337ab7; +} +a.bg-primary:hover { + background-color: #286090; +} +.bg-success { + background-color: #dff0d8; +} +a.bg-success:hover { + background-color: #c1e2b3; +} +.bg-info { + background-color: #d9edf7; +} +a.bg-info:hover { + background-color: #afd9ee; +} +.bg-warning { + background-color: #fcf8e3; +} +a.bg-warning:hover { + background-color: #f7ecb5; +} +.bg-danger { + background-color: #f2dede; +} +a.bg-danger:hover { + background-color: #e4b9b9; +} +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eeeeee; +} +ul, +ol { + margin-top: 0; + margin-bottom: 10px; +} +ul ul, +ol ul, +ul ol, +ol ol { + margin-bottom: 0; +} +.list-unstyled { + padding-left: 0; + list-style: none; +} +.list-inline { + padding-left: 0; + list-style: none; + margin-left: -5px; +} +.list-inline > li { + display: inline-block; + padding-left: 5px; + padding-right: 5px; +} +dl { + margin-top: 0; + margin-bottom: 20px; +} +dt, +dd { + line-height: 1.42857143; +} +dt { + font-weight: bold; +} +dd { + margin-left: 0; +} +@media (min-width: 768px) { + .dl-horizontal dt { + float: left; + width: 160px; + clear: left; + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + .dl-horizontal dd { + margin-left: 180px; + } +} +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #777777; +} +.initialism { + font-size: 90%; + text-transform: uppercase; +} +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #eeeeee; +} +blockquote p:last-child, +blockquote ul:last-child, +blockquote ol:last-child { + margin-bottom: 0; +} +blockquote footer, +blockquote small, +blockquote .small { + display: block; + font-size: 80%; + line-height: 1.42857143; + color: #777777; +} +blockquote footer:before, +blockquote small:before, +blockquote .small:before { + content: '\2014 \00A0'; +} +.blockquote-reverse, +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #eeeeee; + border-left: 0; + text-align: right; +} +.blockquote-reverse footer:before, +blockquote.pull-right footer:before, +.blockquote-reverse small:before, +blockquote.pull-right small:before, +.blockquote-reverse .small:before, +blockquote.pull-right .small:before { + content: ''; +} +.blockquote-reverse footer:after, +blockquote.pull-right footer:after, +.blockquote-reverse small:after, +blockquote.pull-right small:after, +.blockquote-reverse .small:after, +blockquote.pull-right .small:after { + content: '\00A0 \2014'; +} +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.42857143; +} +code, +kbd, +pre, +samp { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; +} +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 4px; +} +kbd { + padding: 2px 4px; + font-size: 90%; + color: #ffffff; + background-color: #333333; + border-radius: 3px; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); +} +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: bold; + -webkit-box-shadow: none; + box-shadow: none; +} +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.42857143; + word-break: break-all; + word-wrap: break-word; + color: #333333; + background-color: #f5f5f5; + border: 1px solid #cccccc; + border-radius: 4px; +} +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0; +} +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} +.container { + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px; +} +@media (min-width: 768px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} +.container-fluid { + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px; +} +.row { + margin-left: -15px; + margin-right: -15px; +} +.col-xs-1, +.col-sm-1, +.col-md-1, +.col-lg-1, +.col-xs-2, +.col-sm-2, +.col-md-2, +.col-lg-2, +.col-xs-3, +.col-sm-3, +.col-md-3, +.col-lg-3, +.col-xs-4, +.col-sm-4, +.col-md-4, +.col-lg-4, +.col-xs-5, +.col-sm-5, +.col-md-5, +.col-lg-5, +.col-xs-6, +.col-sm-6, +.col-md-6, +.col-lg-6, +.col-xs-7, +.col-sm-7, +.col-md-7, +.col-lg-7, +.col-xs-8, +.col-sm-8, +.col-md-8, +.col-lg-8, +.col-xs-9, +.col-sm-9, +.col-md-9, +.col-lg-9, +.col-xs-10, +.col-sm-10, +.col-md-10, +.col-lg-10, +.col-xs-11, +.col-sm-11, +.col-md-11, +.col-lg-11, +.col-xs-12, +.col-sm-12, +.col-md-12, +.col-lg-12 { + position: relative; + min-height: 1px; + padding-left: 15px; + padding-right: 15px; +} +.col-xs-1, +.col-xs-2, +.col-xs-3, +.col-xs-4, +.col-xs-5, +.col-xs-6, +.col-xs-7, +.col-xs-8, +.col-xs-9, +.col-xs-10, +.col-xs-11, +.col-xs-12 { + float: left; +} +.col-xs-12 { + width: 100%; +} +.col-xs-11 { + width: 91.66666667%; +} +.col-xs-10 { + width: 83.33333333%; +} +.col-xs-9 { + width: 75%; +} +.col-xs-8 { + width: 66.66666667%; +} +.col-xs-7 { + width: 58.33333333%; +} +.col-xs-6 { + width: 50%; +} +.col-xs-5 { + width: 41.66666667%; +} +.col-xs-4 { + width: 33.33333333%; +} +.col-xs-3 { + width: 25%; +} +.col-xs-2 { + width: 16.66666667%; +} +.col-xs-1 { + width: 8.33333333%; +} +.col-xs-pull-12 { + right: 100%; +} +.col-xs-pull-11 { + right: 91.66666667%; +} +.col-xs-pull-10 { + right: 83.33333333%; +} +.col-xs-pull-9 { + right: 75%; +} +.col-xs-pull-8 { + right: 66.66666667%; +} +.col-xs-pull-7 { + right: 58.33333333%; +} +.col-xs-pull-6 { + right: 50%; +} +.col-xs-pull-5 { + right: 41.66666667%; +} +.col-xs-pull-4 { + right: 33.33333333%; +} +.col-xs-pull-3 { + right: 25%; +} +.col-xs-pull-2 { + right: 16.66666667%; +} +.col-xs-pull-1 { + right: 8.33333333%; +} +.col-xs-pull-0 { + right: auto; +} +.col-xs-push-12 { + left: 100%; +} +.col-xs-push-11 { + left: 91.66666667%; +} +.col-xs-push-10 { + left: 83.33333333%; +} +.col-xs-push-9 { + left: 75%; +} +.col-xs-push-8 { + left: 66.66666667%; +} +.col-xs-push-7 { + left: 58.33333333%; +} +.col-xs-push-6 { + left: 50%; +} +.col-xs-push-5 { + left: 41.66666667%; +} +.col-xs-push-4 { + left: 33.33333333%; +} +.col-xs-push-3 { + left: 25%; +} +.col-xs-push-2 { + left: 16.66666667%; +} +.col-xs-push-1 { + left: 8.33333333%; +} +.col-xs-push-0 { + left: auto; +} +.col-xs-offset-12 { + margin-left: 100%; +} +.col-xs-offset-11 { + margin-left: 91.66666667%; +} +.col-xs-offset-10 { + margin-left: 83.33333333%; +} +.col-xs-offset-9 { + margin-left: 75%; +} +.col-xs-offset-8 { + margin-left: 66.66666667%; +} +.col-xs-offset-7 { + margin-left: 58.33333333%; +} +.col-xs-offset-6 { + margin-left: 50%; +} +.col-xs-offset-5 { + margin-left: 41.66666667%; +} +.col-xs-offset-4 { + margin-left: 33.33333333%; +} +.col-xs-offset-3 { + margin-left: 25%; +} +.col-xs-offset-2 { + margin-left: 16.66666667%; +} +.col-xs-offset-1 { + margin-left: 8.33333333%; +} +.col-xs-offset-0 { + margin-left: 0%; +} +@media (min-width: 768px) { + .col-sm-1, + .col-sm-2, + .col-sm-3, + .col-sm-4, + .col-sm-5, + .col-sm-6, + .col-sm-7, + .col-sm-8, + .col-sm-9, + .col-sm-10, + .col-sm-11, + .col-sm-12 { + float: left; + } + .col-sm-12 { + width: 100%; + } + .col-sm-11 { + width: 91.66666667%; + } + .col-sm-10 { + width: 83.33333333%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-8 { + width: 66.66666667%; + } + .col-sm-7 { + width: 58.33333333%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-5 { + width: 41.66666667%; + } + .col-sm-4 { + width: 33.33333333%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-2 { + width: 16.66666667%; + } + .col-sm-1 { + width: 8.33333333%; + } + .col-sm-pull-12 { + right: 100%; + } + .col-sm-pull-11 { + right: 91.66666667%; + } + .col-sm-pull-10 { + right: 83.33333333%; + } + .col-sm-pull-9 { + right: 75%; + } + .col-sm-pull-8 { + right: 66.66666667%; + } + .col-sm-pull-7 { + right: 58.33333333%; + } + .col-sm-pull-6 { + right: 50%; + } + .col-sm-pull-5 { + right: 41.66666667%; + } + .col-sm-pull-4 { + right: 33.33333333%; + } + .col-sm-pull-3 { + right: 25%; + } + .col-sm-pull-2 { + right: 16.66666667%; + } + .col-sm-pull-1 { + right: 8.33333333%; + } + .col-sm-pull-0 { + right: auto; + } + .col-sm-push-12 { + left: 100%; + } + .col-sm-push-11 { + left: 91.66666667%; + } + .col-sm-push-10 { + left: 83.33333333%; + } + .col-sm-push-9 { + left: 75%; + } + .col-sm-push-8 { + left: 66.66666667%; + } + .col-sm-push-7 { + left: 58.33333333%; + } + .col-sm-push-6 { + left: 50%; + } + .col-sm-push-5 { + left: 41.66666667%; + } + .col-sm-push-4 { + left: 33.33333333%; + } + .col-sm-push-3 { + left: 25%; + } + .col-sm-push-2 { + left: 16.66666667%; + } + .col-sm-push-1 { + left: 8.33333333%; + } + .col-sm-push-0 { + left: auto; + } + .col-sm-offset-12 { + margin-left: 100%; + } + .col-sm-offset-11 { + margin-left: 91.66666667%; + } + .col-sm-offset-10 { + margin-left: 83.33333333%; + } + .col-sm-offset-9 { + margin-left: 75%; + } + .col-sm-offset-8 { + margin-left: 66.66666667%; + } + .col-sm-offset-7 { + margin-left: 58.33333333%; + } + .col-sm-offset-6 { + margin-left: 50%; + } + .col-sm-offset-5 { + margin-left: 41.66666667%; + } + .col-sm-offset-4 { + margin-left: 33.33333333%; + } + .col-sm-offset-3 { + margin-left: 25%; + } + .col-sm-offset-2 { + margin-left: 16.66666667%; + } + .col-sm-offset-1 { + margin-left: 8.33333333%; + } + .col-sm-offset-0 { + margin-left: 0%; + } +} +@media (min-width: 992px) { + .col-md-1, + .col-md-2, + .col-md-3, + .col-md-4, + .col-md-5, + .col-md-6, + .col-md-7, + .col-md-8, + .col-md-9, + .col-md-10, + .col-md-11, + .col-md-12 { + float: left; + } + .col-md-12 { + width: 100%; + } + .col-md-11 { + width: 91.66666667%; + } + .col-md-10 { + width: 83.33333333%; + } + .col-md-9 { + width: 75%; + } + .col-md-8 { + width: 66.66666667%; + } + .col-md-7 { + width: 58.33333333%; + } + .col-md-6 { + width: 50%; + } + .col-md-5 { + width: 41.66666667%; + } + .col-md-4 { + width: 33.33333333%; + } + .col-md-3 { + width: 25%; + } + .col-md-2 { + width: 16.66666667%; + } + .col-md-1 { + width: 8.33333333%; + } + .col-md-pull-12 { + right: 100%; + } + .col-md-pull-11 { + right: 91.66666667%; + } + .col-md-pull-10 { + right: 83.33333333%; + } + .col-md-pull-9 { + right: 75%; + } + .col-md-pull-8 { + right: 66.66666667%; + } + .col-md-pull-7 { + right: 58.33333333%; + } + .col-md-pull-6 { + right: 50%; + } + .col-md-pull-5 { + right: 41.66666667%; + } + .col-md-pull-4 { + right: 33.33333333%; + } + .col-md-pull-3 { + right: 25%; + } + .col-md-pull-2 { + right: 16.66666667%; + } + .col-md-pull-1 { + right: 8.33333333%; + } + .col-md-pull-0 { + right: auto; + } + .col-md-push-12 { + left: 100%; + } + .col-md-push-11 { + left: 91.66666667%; + } + .col-md-push-10 { + left: 83.33333333%; + } + .col-md-push-9 { + left: 75%; + } + .col-md-push-8 { + left: 66.66666667%; + } + .col-md-push-7 { + left: 58.33333333%; + } + .col-md-push-6 { + left: 50%; + } + .col-md-push-5 { + left: 41.66666667%; + } + .col-md-push-4 { + left: 33.33333333%; + } + .col-md-push-3 { + left: 25%; + } + .col-md-push-2 { + left: 16.66666667%; + } + .col-md-push-1 { + left: 8.33333333%; + } + .col-md-push-0 { + left: auto; + } + .col-md-offset-12 { + margin-left: 100%; + } + .col-md-offset-11 { + margin-left: 91.66666667%; + } + .col-md-offset-10 { + margin-left: 83.33333333%; + } + .col-md-offset-9 { + margin-left: 75%; + } + .col-md-offset-8 { + margin-left: 66.66666667%; + } + .col-md-offset-7 { + margin-left: 58.33333333%; + } + .col-md-offset-6 { + margin-left: 50%; + } + .col-md-offset-5 { + margin-left: 41.66666667%; + } + .col-md-offset-4 { + margin-left: 33.33333333%; + } + .col-md-offset-3 { + margin-left: 25%; + } + .col-md-offset-2 { + margin-left: 16.66666667%; + } + .col-md-offset-1 { + margin-left: 8.33333333%; + } + .col-md-offset-0 { + margin-left: 0%; + } +} +@media (min-width: 1200px) { + .col-lg-1, + .col-lg-2, + .col-lg-3, + .col-lg-4, + .col-lg-5, + .col-lg-6, + .col-lg-7, + .col-lg-8, + .col-lg-9, + .col-lg-10, + .col-lg-11, + .col-lg-12 { + float: left; + } + .col-lg-12 { + width: 100%; + } + .col-lg-11 { + width: 91.66666667%; + } + .col-lg-10 { + width: 83.33333333%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-8 { + width: 66.66666667%; + } + .col-lg-7 { + width: 58.33333333%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-5 { + width: 41.66666667%; + } + .col-lg-4 { + width: 33.33333333%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-2 { + width: 16.66666667%; + } + .col-lg-1 { + width: 8.33333333%; + } + .col-lg-pull-12 { + right: 100%; + } + .col-lg-pull-11 { + right: 91.66666667%; + } + .col-lg-pull-10 { + right: 83.33333333%; + } + .col-lg-pull-9 { + right: 75%; + } + .col-lg-pull-8 { + right: 66.66666667%; + } + .col-lg-pull-7 { + right: 58.33333333%; + } + .col-lg-pull-6 { + right: 50%; + } + .col-lg-pull-5 { + right: 41.66666667%; + } + .col-lg-pull-4 { + right: 33.33333333%; + } + .col-lg-pull-3 { + right: 25%; + } + .col-lg-pull-2 { + right: 16.66666667%; + } + .col-lg-pull-1 { + right: 8.33333333%; + } + .col-lg-pull-0 { + right: auto; + } + .col-lg-push-12 { + left: 100%; + } + .col-lg-push-11 { + left: 91.66666667%; + } + .col-lg-push-10 { + left: 83.33333333%; + } + .col-lg-push-9 { + left: 75%; + } + .col-lg-push-8 { + left: 66.66666667%; + } + .col-lg-push-7 { + left: 58.33333333%; + } + .col-lg-push-6 { + left: 50%; + } + .col-lg-push-5 { + left: 41.66666667%; + } + .col-lg-push-4 { + left: 33.33333333%; + } + .col-lg-push-3 { + left: 25%; + } + .col-lg-push-2 { + left: 16.66666667%; + } + .col-lg-push-1 { + left: 8.33333333%; + } + .col-lg-push-0 { + left: auto; + } + .col-lg-offset-12 { + margin-left: 100%; + } + .col-lg-offset-11 { + margin-left: 91.66666667%; + } + .col-lg-offset-10 { + margin-left: 83.33333333%; + } + .col-lg-offset-9 { + margin-left: 75%; + } + .col-lg-offset-8 { + margin-left: 66.66666667%; + } + .col-lg-offset-7 { + margin-left: 58.33333333%; + } + .col-lg-offset-6 { + margin-left: 50%; + } + .col-lg-offset-5 { + margin-left: 41.66666667%; + } + .col-lg-offset-4 { + margin-left: 33.33333333%; + } + .col-lg-offset-3 { + margin-left: 25%; + } + .col-lg-offset-2 { + margin-left: 16.66666667%; + } + .col-lg-offset-1 { + margin-left: 8.33333333%; + } + .col-lg-offset-0 { + margin-left: 0%; + } +} +table { + background-color: transparent; +} +caption { + padding-top: 8px; + padding-bottom: 8px; + color: #777777; + text-align: left; +} +th { + text-align: left; +} +.table, +article table { + width: 100%; + max-width: 100%; + margin-bottom: 20px; +} +.table > thead > tr > th, +.table > tbody > tr > th, +.table > tfoot > tr > th, +.table > thead > tr > td, +.table > tbody > tr > td, +.table > tfoot > tr > td { + padding: 8px; + line-height: 1.42857143; + vertical-align: top; + border-top: 1px solid #dddddd; +} +.table > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #dddddd; +} +.table > caption + thead > tr:first-child > th, +.table > colgroup + thead > tr:first-child > th, +.table > thead:first-child > tr:first-child > th, +.table > caption + thead > tr:first-child > td, +.table > colgroup + thead > tr:first-child > td, +.table > thead:first-child > tr:first-child > td { + border-top: 0; +} +.table > tbody + tbody { + border-top: 2px solid #dddddd; +} +.table .table { + background-color: #ffffff; +} +.table-condensed > thead > tr > th, +.table-condensed > tbody > tr > th, +.table-condensed > tfoot > tr > th, +.table-condensed > thead > tr > td, +.table-condensed > tbody > tr > td, +.table-condensed > tfoot > tr > td { + padding: 5px; +} +.table-bordered, +article table { + border: 1px solid #dddddd; +} +.table-bordered > thead > tr > th, +.table-bordered > tbody > tr > th, +.table-bordered > tfoot > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > td { + border: 1px solid #dddddd; +} +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; +} +.table-striped > tbody > tr:nth-of-type(odd) { + background-color: #f9f9f9; +} +.table-hover > tbody > tr:hover { + background-color: #f5f5f5; +} +table col[class*="col-"] { + position: static; + float: none; + display: table-column; +} +table td[class*="col-"], +table th[class*="col-"] { + position: static; + float: none; + display: table-cell; +} +.table > thead > tr > td.active, +.table > tbody > tr > td.active, +.table > tfoot > tr > td.active, +.table > thead > tr > th.active, +.table > tbody > tr > th.active, +.table > tfoot > tr > th.active, +.table > thead > tr.active > td, +.table > tbody > tr.active > td, +.table > tfoot > tr.active > td, +.table > thead > tr.active > th, +.table > tbody > tr.active > th, +.table > tfoot > tr.active > th { + background-color: #f5f5f5; +} +.table-hover > tbody > tr > td.active:hover, +.table-hover > tbody > tr > th.active:hover, +.table-hover > tbody > tr.active:hover > td, +.table-hover > tbody > tr:hover > .active, +.table-hover > tbody > tr.active:hover > th { + background-color: #e8e8e8; +} +.table > thead > tr > td.success, +.table > tbody > tr > td.success, +.table > tfoot > tr > td.success, +.table > thead > tr > th.success, +.table > tbody > tr > th.success, +.table > tfoot > tr > th.success, +.table > thead > tr.success > td, +.table > tbody > tr.success > td, +.table > tfoot > tr.success > td, +.table > thead > tr.success > th, +.table > tbody > tr.success > th, +.table > tfoot > tr.success > th { + background-color: #dff0d8; +} +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, +.table-hover > tbody > tr.success:hover > td, +.table-hover > tbody > tr:hover > .success, +.table-hover > tbody > tr.success:hover > th { + background-color: #d0e9c6; +} +.table > thead > tr > td.info, +.table > tbody > tr > td.info, +.table > tfoot > tr > td.info, +.table > thead > tr > th.info, +.table > tbody > tr > th.info, +.table > tfoot > tr > th.info, +.table > thead > tr.info > td, +.table > tbody > tr.info > td, +.table > tfoot > tr.info > td, +.table > thead > tr.info > th, +.table > tbody > tr.info > th, +.table > tfoot > tr.info > th { + background-color: #d9edf7; +} +.table-hover > tbody > tr > td.info:hover, +.table-hover > tbody > tr > th.info:hover, +.table-hover > tbody > tr.info:hover > td, +.table-hover > tbody > tr:hover > .info, +.table-hover > tbody > tr.info:hover > th { + background-color: #c4e3f3; +} +.table > thead > tr > td.warning, +.table > tbody > tr > td.warning, +.table > tfoot > tr > td.warning, +.table > thead > tr > th.warning, +.table > tbody > tr > th.warning, +.table > tfoot > tr > th.warning, +.table > thead > tr.warning > td, +.table > tbody > tr.warning > td, +.table > tfoot > tr.warning > td, +.table > thead > tr.warning > th, +.table > tbody > tr.warning > th, +.table > tfoot > tr.warning > th { + background-color: #fcf8e3; +} +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, +.table-hover > tbody > tr.warning:hover > td, +.table-hover > tbody > tr:hover > .warning, +.table-hover > tbody > tr.warning:hover > th { + background-color: #faf2cc; +} +.table > thead > tr > td.danger, +.table > tbody > tr > td.danger, +.table > tfoot > tr > td.danger, +.table > thead > tr > th.danger, +.table > tbody > tr > th.danger, +.table > tfoot > tr > th.danger, +.table > thead > tr.danger > td, +.table > tbody > tr.danger > td, +.table > tfoot > tr.danger > td, +.table > thead > tr.danger > th, +.table > tbody > tr.danger > th, +.table > tfoot > tr.danger > th { + background-color: #f2dede; +} +.table-hover > tbody > tr > td.danger:hover, +.table-hover > tbody > tr > th.danger:hover, +.table-hover > tbody > tr.danger:hover > td, +.table-hover > tbody > tr:hover > .danger, +.table-hover > tbody > tr.danger:hover > th { + background-color: #ebcccc; +} +.table-responsive { + overflow-x: auto; + min-height: 0.01%; +} +@media screen and (max-width: 767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #dddddd; + } + .table-responsive > .table { + margin-bottom: 0; + } + .table-responsive > .table > thead > tr > th, + .table-responsive > .table > tbody > tr > th, + .table-responsive > .table > tfoot > tr > th, + .table-responsive > .table > thead > tr > td, + .table-responsive > .table > tbody > tr > td, + .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .table-responsive > .table-bordered { + border: 0; + } + .table-responsive > .table-bordered > thead > tr > th:first-child, + .table-responsive > .table-bordered > tbody > tr > th:first-child, + .table-responsive > .table-bordered > tfoot > tr > th:first-child, + .table-responsive > .table-bordered > thead > tr > td:first-child, + .table-responsive > .table-bordered > tbody > tr > td:first-child, + .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .table-responsive > .table-bordered > thead > tr > th:last-child, + .table-responsive > .table-bordered > tbody > tr > th:last-child, + .table-responsive > .table-bordered > tfoot > tr > th:last-child, + .table-responsive > .table-bordered > thead > tr > td:last-child, + .table-responsive > .table-bordered > tbody > tr > td:last-child, + .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .table-responsive > .table-bordered > tbody > tr:last-child > th, + .table-responsive > .table-bordered > tfoot > tr:last-child > th, + .table-responsive > .table-bordered > tbody > tr:last-child > td, + .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } +} +fieldset { + padding: 0; + margin: 0; + border: 0; + min-width: 0; +} +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} +label { + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: bold; +} +input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + line-height: normal; +} +input[type="file"] { + display: block; +} +input[type="range"] { + display: block; + width: 100%; +} +select[multiple], +select[size] { + height: auto; +} +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.42857143; + color: #555555; +} +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.42857143; + color: #555555; + background-color: #ffffff; + background-image: none; + border: 1px solid #cccccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s; + -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; +} +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); +} +.form-control::-moz-placeholder { + color: #999999; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #999999; +} +.form-control::-webkit-input-placeholder { + color: #999999; +} +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + background-color: #eeeeee; + opacity: 1; +} +.form-control[disabled], +fieldset[disabled] .form-control { + cursor: not-allowed; +} +textarea.form-control { + height: auto; +} +input[type="search"] { + -webkit-appearance: none; +} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + input[type="date"], + input[type="time"], + input[type="datetime-local"], + input[type="month"] { + line-height: 34px; + } + input[type="date"].input-sm, + input[type="time"].input-sm, + input[type="datetime-local"].input-sm, + input[type="month"].input-sm, + .input-group-sm input[type="date"], + .input-group-sm input[type="time"], + .input-group-sm input[type="datetime-local"], + .input-group-sm input[type="month"] { + line-height: 30px; + } + input[type="date"].input-lg, + input[type="time"].input-lg, + input[type="datetime-local"].input-lg, + input[type="month"].input-lg, + .input-group-lg input[type="date"], + .input-group-lg input[type="time"], + .input-group-lg input[type="datetime-local"], + .input-group-lg input[type="month"] { + line-height: 46px; + } +} +.form-group { + margin-bottom: 15px; +} +.radio, +.checkbox { + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px; +} +.radio label, +.checkbox label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + cursor: pointer; +} +.radio input[type="radio"], +.radio-inline input[type="radio"], +.checkbox input[type="checkbox"], +.checkbox-inline input[type="checkbox"] { + position: absolute; + margin-left: -20px; + margin-top: 4px \9; +} +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; +} +.radio-inline, +.checkbox-inline { + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + vertical-align: middle; + font-weight: normal; + cursor: pointer; +} +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"].disabled, +input[type="checkbox"].disabled, +fieldset[disabled] input[type="radio"], +fieldset[disabled] input[type="checkbox"] { + cursor: not-allowed; +} +.radio-inline.disabled, +.checkbox-inline.disabled, +fieldset[disabled] .radio-inline, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} +.radio.disabled label, +.checkbox.disabled label, +fieldset[disabled] .radio label, +fieldset[disabled] .checkbox label { + cursor: not-allowed; +} +.form-control-static { + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; + min-height: 34px; +} +.form-control-static.input-lg, +.form-control-static.input-sm { + padding-left: 0; + padding-right: 0; +} +.input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-sm { + height: 30px; + line-height: 30px; +} +textarea.input-sm, +select[multiple].input-sm { + height: auto; +} +.form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.form-group-sm .form-control { + height: 30px; + line-height: 30px; +} +textarea.form-group-sm .form-control, +select[multiple].form-group-sm .form-control { + height: auto; +} +.form-group-sm .form-control-static { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + min-height: 32px; +} +.input-lg { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.input-lg { + height: 46px; + line-height: 46px; +} +textarea.input-lg, +select[multiple].input-lg { + height: auto; +} +.form-group-lg .form-control { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.form-group-lg .form-control { + height: 46px; + line-height: 46px; +} +textarea.form-group-lg .form-control, +select[multiple].form-group-lg .form-control { + height: auto; +} +.form-group-lg .form-control-static { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + min-height: 38px; +} +.has-feedback { + position: relative; +} +.has-feedback .form-control { + padding-right: 42.5px; +} +.form-control-feedback { + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none; +} +.input-lg + .form-control-feedback { + width: 46px; + height: 46px; + line-height: 46px; +} +.input-sm + .form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px; +} +.has-success .help-block, +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline, +.has-success.radio label, +.has-success.checkbox label, +.has-success.radio-inline label, +.has-success.checkbox-inline label { + color: #3c763d; +} +.has-success .form-control { + border-color: #3c763d; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; +} +.has-success .input-group-addon { + color: #3c763d; + border-color: #3c763d; + background-color: #dff0d8; +} +.has-success .form-control-feedback { + color: #3c763d; +} +.has-warning .help-block, +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline, +.has-warning.radio label, +.has-warning.checkbox label, +.has-warning.radio-inline label, +.has-warning.checkbox-inline label { + color: #8a6d3b; +} +.has-warning .form-control { + border-color: #8a6d3b; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; +} +.has-warning .input-group-addon { + color: #8a6d3b; + border-color: #8a6d3b; + background-color: #fcf8e3; +} +.has-warning .form-control-feedback { + color: #8a6d3b; +} +.has-error .help-block, +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline, +.has-error.radio label, +.has-error.checkbox label, +.has-error.radio-inline label, +.has-error.checkbox-inline label { + color: #a94442; +} +.has-error .form-control { + border-color: #a94442; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; +} +.has-error .input-group-addon { + color: #a94442; + border-color: #a94442; + background-color: #f2dede; +} +.has-error .form-control-feedback { + color: #a94442; +} +.has-feedback label ~ .form-control-feedback { + top: 25px; +} +.has-feedback label.sr-only ~ .form-control-feedback { + top: 0; +} +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} +@media (min-width: 768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-static { + display: inline-block; + } + .form-inline .input-group { + display: inline-table; + vertical-align: middle; + } + .form-inline .input-group .input-group-addon, + .form-inline .input-group .input-group-btn, + .form-inline .input-group .form-control { + width: auto; + } + .form-inline .input-group > .form-control { + width: 100%; + } + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio, + .form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio label, + .form-inline .checkbox label { + padding-left: 0; + } + .form-inline .radio input[type="radio"], + .form-inline .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .form-inline .has-feedback .form-control-feedback { + top: 0; + } +} +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + margin-top: 0; + margin-bottom: 0; + padding-top: 7px; +} +.form-horizontal .radio, +.form-horizontal .checkbox { + min-height: 27px; +} +.form-horizontal .form-group { + margin-left: -15px; + margin-right: -15px; +} +@media (min-width: 768px) { + .form-horizontal .control-label { + text-align: right; + margin-bottom: 0; + padding-top: 7px; + } +} +.form-horizontal .has-feedback .form-control-feedback { + right: 15px; +} +@media (min-width: 768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 14.333333px; + } +} +@media (min-width: 768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px; + } +} +.btn { + display: inline-block; + margin-bottom: 0; + font-weight: normal; + text-align: center; + vertical-align: middle; + -ms-touch-action: manipulation; + touch-action: manipulation; + cursor: pointer; + background-image: none; + border: 1px solid transparent; + white-space: nowrap; + padding: 6px 12px; + font-size: 14px; + line-height: 1.42857143; + border-radius: 4px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.btn:focus, +.btn:active:focus, +.btn.active:focus, +.btn.focus, +.btn:active.focus, +.btn.active.focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn:hover, +.btn:focus, +.btn.focus { + color: #333333; + text-decoration: none; +} +.btn:active, +.btn.active { + outline: 0; + background-image: none; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn.disabled, +.btn[disabled], +fieldset[disabled] .btn { + cursor: not-allowed; + pointer-events: none; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-default { + color: #333333; + background-color: #ffffff; + border-color: #cccccc; +} +.btn-default:hover, +.btn-default:focus, +.btn-default.focus, +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + color: #333333; + background-color: #e6e6e6; + border-color: #adadad; +} +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + background-image: none; +} +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled.focus, +.btn-default[disabled].focus, +fieldset[disabled] .btn-default.focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #ffffff; + border-color: #cccccc; +} +.btn-default .badge { + color: #ffffff; + background-color: #333333; +} +.btn-primary { + color: #ffffff; + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary:hover, +.btn-primary:focus, +.btn-primary.focus, +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + color: #ffffff; + background-color: #286090; + border-color: #204d74; +} +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + background-image: none; +} +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled.focus, +.btn-primary[disabled].focus, +fieldset[disabled] .btn-primary.focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary .badge { + color: #337ab7; + background-color: #ffffff; +} +.btn-success { + color: #ffffff; + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success:hover, +.btn-success:focus, +.btn-success.focus, +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + color: #ffffff; + background-color: #449d44; + border-color: #398439; +} +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + background-image: none; +} +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled.focus, +.btn-success[disabled].focus, +fieldset[disabled] .btn-success.focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success .badge { + color: #5cb85c; + background-color: #ffffff; +} +.btn-info { + color: #ffffff; + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info:hover, +.btn-info:focus, +.btn-info.focus, +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + color: #ffffff; + background-color: #31b0d5; + border-color: #269abc; +} +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + background-image: none; +} +.btn-info.disabled, +.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled.focus, +.btn-info[disabled].focus, +fieldset[disabled] .btn-info.focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info .badge { + color: #5bc0de; + background-color: #ffffff; +} +.btn-warning { + color: #ffffff; + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning:hover, +.btn-warning:focus, +.btn-warning.focus, +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + color: #ffffff; + background-color: #ec971f; + border-color: #d58512; +} +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + background-image: none; +} +.btn-warning.disabled, +.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled.focus, +.btn-warning[disabled].focus, +fieldset[disabled] .btn-warning.focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning .badge { + color: #f0ad4e; + background-color: #ffffff; +} +.btn-danger { + color: #ffffff; + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger:hover, +.btn-danger:focus, +.btn-danger.focus, +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + color: #ffffff; + background-color: #c9302c; + border-color: #ac2925; +} +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + background-image: none; +} +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled.focus, +.btn-danger[disabled].focus, +fieldset[disabled] .btn-danger.focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger .badge { + color: #d9534f; + background-color: #ffffff; +} +.btn-link { + color: #337ab7; + font-weight: normal; + border-radius: 0; +} +.btn-link, +.btn-link:active, +.btn-link.active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-link, +.btn-link:hover, +.btn-link:focus, +.btn-link:active { + border-color: transparent; +} +.btn-link:hover, +.btn-link:focus { + color: #23527c; + text-decoration: underline; + background-color: transparent; +} +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:hover, +.btn-link[disabled]:focus, +fieldset[disabled] .btn-link:focus { + color: #777777; + text-decoration: none; +} +.btn-lg, +.btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +.btn-sm, +.btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-xs, +.btn-group-xs > .btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-block { + display: block; + width: 100%; +} +.btn-block + .btn-block { + margin-top: 5px; +} +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} +.fade.in { + opacity: 1; +} +.collapse { + display: none; +} +.collapse.in { + display: block; +} +tr.collapse.in { + display: table-row; +} +tbody.collapse.in { + display: table-row-group; +} +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition-property: height, visibility; + -o-transition-property: height, visibility; + transition-property: height, visibility; + -webkit-transition-duration: 0.35s; + -o-transition-duration: 0.35s; + transition-duration: 0.35s; + -webkit-transition-timing-function: ease; + -o-transition-timing-function: ease; + transition-timing-function: ease; +} +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-right: 4px solid transparent; + border-left: 4px solid transparent; +} +.dropup, +.dropdown { + position: relative; +} +.dropdown-toggle:focus { + outline: 0; +} +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + list-style: none; + font-size: 14px; + text-align: left; + background-color: #ffffff; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + -webkit-background-clip: padding-box; + background-clip: padding-box; +} +.dropdown-menu.pull-right { + right: 0; + left: auto; +} +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.42857143; + color: #333333; + white-space: nowrap; +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + text-decoration: none; + color: #262626; + background-color: #f5f5f5; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #ffffff; + text-decoration: none; + outline: 0; + background-color: #337ab7; +} +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #777777; +} +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + cursor: not-allowed; +} +.open > .dropdown-menu { + display: block; +} +.open > a { + outline: 0; +} +.dropdown-menu-right { + left: auto; + right: 0; +} +.dropdown-menu-left { + left: 0; + right: auto; +} +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.42857143; + color: #777777; + white-space: nowrap; +} +.dropdown-backdrop { + position: fixed; + left: 0; + right: 0; + bottom: 0; + top: 0; + z-index: 990; +} +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px solid; + content: ""; +} +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 2px; +} +@media (min-width: 768px) { + .navbar-right .dropdown-menu { + left: auto; + right: 0; + } + .navbar-right .dropdown-menu-left { + left: 0; + right: auto; + } +} +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover, +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus, +.btn-group > .btn:active, +.btn-group-vertical > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn.active { + z-index: 2; +} +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group { + margin-left: -1px; +} +.btn-toolbar { + margin-left: -5px; +} +.btn-toolbar .btn-group, +.btn-toolbar .input-group { + float: left; +} +.btn-toolbar > .btn, +.btn-toolbar > .btn-group, +.btn-toolbar > .input-group { + margin-left: 5px; +} +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} +.btn-group > .btn:first-child { + margin-left: 0; +} +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.btn-group > .btn-group { + float: left; +} +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} +.btn-group > .btn + .dropdown-toggle { + padding-left: 8px; + padding-right: 8px; +} +.btn-group > .btn-lg + .dropdown-toggle { + padding-left: 12px; + padding-right: 12px; +} +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none; +} +.btn .caret { + margin-left: 0; +} +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} +.dropup .btn-lg .caret { + border-width: 0 5px 5px; +} +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group, +.btn-group-vertical > .btn-group > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; +} +.btn-group-vertical > .btn-group > .btn { + float: none; +} +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} +.btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn:last-child:not(:first-child) { + border-bottom-left-radius: 4px; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate; +} +.btn-group-justified > .btn, +.btn-group-justified > .btn-group { + float: none; + display: table-cell; + width: 1%; +} +.btn-group-justified > .btn-group .btn { + width: 100%; +} +.btn-group-justified > .btn-group .dropdown-menu { + left: auto; +} +[data-toggle="buttons"] > .btn input[type="radio"], +[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], +[data-toggle="buttons"] > .btn input[type="checkbox"], +[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} +.input-group { + position: relative; + display: table; + border-collapse: separate; +} +.input-group[class*="col-"] { + float: none; + padding-left: 0; + padding-right: 0; +} +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0; +} +.input-group-lg > .form-control, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .btn { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.input-group-lg > .form-control, +select.input-group-lg > .input-group-addon, +select.input-group-lg > .input-group-btn > .btn { + height: 46px; + line-height: 46px; +} +textarea.input-group-lg > .form-control, +textarea.input-group-lg > .input-group-addon, +textarea.input-group-lg > .input-group-btn > .btn, +select[multiple].input-group-lg > .form-control, +select[multiple].input-group-lg > .input-group-addon, +select[multiple].input-group-lg > .input-group-btn > .btn { + height: auto; +} +.input-group-sm > .form-control, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-group-sm > .form-control, +select.input-group-sm > .input-group-addon, +select.input-group-sm > .input-group-btn > .btn { + height: 30px; + line-height: 30px; +} +textarea.input-group-sm > .form-control, +textarea.input-group-sm > .input-group-addon, +textarea.input-group-sm > .input-group-btn > .btn, +select[multiple].input-group-sm > .form-control, +select[multiple].input-group-sm > .input-group-addon, +select[multiple].input-group-sm > .input-group-btn > .btn { + height: auto; +} +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; +} +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + color: #555555; + text-align: center; + background-color: #eeeeee; + border: 1px solid #cccccc; + border-radius: 4px; +} +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} +.input-group-addon input[type="radio"], +.input-group-addon input[type="checkbox"] { + margin-top: 0; +} +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.input-group-addon:first-child { + border-right: 0; +} +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child), +.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.input-group-addon:last-child { + border-left: 0; +} +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap; +} +.input-group-btn > .btn { + position: relative; +} +.input-group-btn > .btn + .btn { + margin-left: -1px; +} +.input-group-btn > .btn:hover, +.input-group-btn > .btn:focus, +.input-group-btn > .btn:active { + z-index: 2; +} +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group { + margin-right: -1px; +} +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group { + margin-left: -1px; +} +.nav { + margin-bottom: 0; + padding-left: 0; + list-style: none; +} +.nav > li { + position: relative; + display: block; +} +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.nav > li.disabled > a { + color: #777777; +} +.nav > li.disabled > a:hover, +.nav > li.disabled > a:focus { + color: #777777; + text-decoration: none; + background-color: transparent; + cursor: not-allowed; +} +.nav .open > a, +.nav .open > a:hover, +.nav .open > a:focus { + background-color: #eeeeee; + border-color: #337ab7; +} +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.nav > li > a > img { + max-width: none; +} +.nav-tabs { + border-bottom: 1px solid #dddddd; +} +.nav-tabs > li { + float: left; + margin-bottom: -1px; +} +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.42857143; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} +.nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #dddddd; +} +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus { + color: #555555; + background-color: #ffffff; + border: 1px solid #dddddd; + border-bottom-color: transparent; + cursor: default; +} +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0; +} +.nav-tabs.nav-justified > li { + float: none; +} +.nav-tabs.nav-justified > li > a { + text-align: center; + margin-bottom: 5px; +} +.nav-tabs.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-tabs.nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs.nav-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs.nav-justified > .active > a, +.nav-tabs.nav-justified > .active > a:hover, +.nav-tabs.nav-justified > .active > a:focus { + border: 1px solid #dddddd; +} +@media (min-width: 768px) { + .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #dddddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs.nav-justified > .active > a, + .nav-tabs.nav-justified > .active > a:hover, + .nav-tabs.nav-justified > .active > a:focus { + border-bottom-color: #ffffff; + } +} +.nav-pills > li { + float: left; +} +.nav-pills > li > a { + border-radius: 4px; +} +.nav-pills > li + li { + margin-left: 2px; +} +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + color: #ffffff; + background-color: #337ab7; +} +.nav-stacked > li { + float: none; +} +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; +} +.nav-justified { + width: 100%; +} +.nav-justified > li { + float: none; +} +.nav-justified > li > a { + text-align: center; + margin-bottom: 5px; +} +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs-justified { + border-bottom: 0; +} +.nav-tabs-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border: 1px solid #dddddd; +} +@media (min-width: 768px) { + .nav-tabs-justified > li > a { + border-bottom: 1px solid #dddddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs-justified > .active > a, + .nav-tabs-justified > .active > a:hover, + .nav-tabs-justified > .active > a:focus { + border-bottom-color: #ffffff; + } +} +.tab-content > .tab-pane { + display: none; +} +.tab-content > .active { + display: block; +} +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; +} +@media (min-width: 768px) { + .navbar { + border-radius: 4px; + } +} +@media (min-width: 768px) { + .navbar-header { + float: left; + } +} +.navbar-collapse { + overflow-x: visible; + padding-right: 15px; + padding-left: 15px; + border-top: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch; +} +.navbar-collapse.in { + overflow-y: auto; +} +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .navbar-collapse.in { + overflow-y: visible; + } + .navbar-fixed-top .navbar-collapse, + .navbar-static-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + padding-left: 0; + padding-right: 0; + } +} +.navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 340px; +} +@media (max-device-width: 480px) and (orientation: landscape) { + .navbar-fixed-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + max-height: 200px; + } +} +.container > .navbar-header, +.container-fluid > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 768px) { + .container > .navbar-header, + .container-fluid > .navbar-header, + .container > .navbar-collapse, + .container-fluid > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px; +} +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0; + } +} +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; +} +@media (min-width: 768px) { + .navbar-fixed-top, + .navbar-fixed-bottom { + border-radius: 0; + } +} +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px; +} +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0; +} +.navbar-brand { + float: left; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; + height: 50px; +} +.navbar-brand:hover, +.navbar-brand:focus { + text-decoration: none; +} +.navbar-brand > img { + display: block; +} +@media (min-width: 768px) { + .navbar > .container .navbar-brand, + .navbar > .container-fluid .navbar-brand { + margin-left: -15px; + } +} +.navbar-toggle { + position: relative; + float: right; + margin-right: 15px; + padding: 9px 10px; + margin-top: 8px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; +} +.navbar-toggle:focus { + outline: 0; +} +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +@media (min-width: 768px) { + .navbar-toggle { + display: none; + } +} +.navbar-nav { + margin: 7.5px -15px; +} +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-nav .open .dropdown-menu > li > a, + .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } +} +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0; + } + .navbar-nav > li { + float: left; + } + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } +} +.navbar-form { + margin-left: -15px; + margin-right: -15px; + padding: 10px 15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + margin-top: 8px; + margin-bottom: 8px; +} +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .navbar-form .form-control-static { + display: inline-block; + } + .navbar-form .input-group { + display: inline-table; + vertical-align: middle; + } + .navbar-form .input-group .input-group-addon, + .navbar-form .input-group .input-group-btn, + .navbar-form .input-group .form-control { + width: auto; + } + .navbar-form .input-group > .form-control { + width: 100%; + } + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio, + .navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio label, + .navbar-form .checkbox label { + padding-left: 0; + } + .navbar-form .radio input[type="radio"], + .navbar-form .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .navbar-form .has-feedback .form-control-feedback { + top: 0; + } +} +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px; + } + .navbar-form .form-group:last-child { + margin-bottom: 0; + } +} +@media (min-width: 768px) { + .navbar-form { + width: auto; + border: 0; + margin-left: 0; + margin-right: 0; + padding-top: 0; + padding-bottom: 0; + -webkit-box-shadow: none; + box-shadow: none; + } +} +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + margin-bottom: 0; + border-top-right-radius: 4px; + border-top-left-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} +.navbar-btn.btn-sm { + margin-top: 10px; + margin-bottom: 10px; +} +.navbar-btn.btn-xs { + margin-top: 14px; + margin-bottom: 14px; +} +.navbar-text { + margin-top: 15px; + margin-bottom: 15px; +} +@media (min-width: 768px) { + .navbar-text { + float: left; + margin-left: 15px; + margin-right: 15px; + } +} +@media (min-width: 768px) { + .navbar-left { + float: left !important; + } + .navbar-right { + float: right !important; + margin-right: -15px; + } + .navbar-right ~ .navbar-right { + margin-right: 0; + } +} +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} +.navbar-default .navbar-brand { + color: #777777; +} +.navbar-default .navbar-brand:hover, +.navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} +.navbar-default .navbar-text { + color: #777777; +} +.navbar-default .navbar-nav > li > a { + color: #777777; +} +.navbar-default .navbar-nav > li > a:hover, +.navbar-default .navbar-nav > li > a:focus { + color: #333333; + background-color: transparent; +} +.navbar-default .navbar-nav > .active > a, +.navbar-default .navbar-nav > .active > a:hover, +.navbar-default .navbar-nav > .active > a:focus { + color: #555555; + background-color: #e7e7e7; +} +.navbar-default .navbar-nav > .disabled > a, +.navbar-default .navbar-nav > .disabled > a:hover, +.navbar-default .navbar-nav > .disabled > a:focus { + color: #cccccc; + background-color: transparent; +} +.navbar-default .navbar-toggle { + border-color: #dddddd; +} +.navbar-default .navbar-toggle:hover, +.navbar-default .navbar-toggle:focus { + background-color: #dddddd; +} +.navbar-default .navbar-toggle .icon-bar { + background-color: #888888; +} +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7; +} +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .open > a:hover, +.navbar-default .navbar-nav > .open > a:focus { + background-color: #e7e7e7; + color: #555555; +} +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777777; + } + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333333; + background-color: transparent; + } + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555555; + background-color: #e7e7e7; + } + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #cccccc; + background-color: transparent; + } +} +.navbar-default .navbar-link { + color: #777777; +} +.navbar-default .navbar-link:hover { + color: #333333; +} +.navbar-default .btn-link { + color: #777777; +} +.navbar-default .btn-link:hover, +.navbar-default .btn-link:focus { + color: #333333; +} +.navbar-default .btn-link[disabled]:hover, +fieldset[disabled] .navbar-default .btn-link:hover, +.navbar-default .btn-link[disabled]:focus, +fieldset[disabled] .navbar-default .btn-link:focus { + color: #cccccc; +} +.navbar-inverse { + background-color: #222222; + border-color: #080808; +} +.navbar-inverse .navbar-brand { + color: #9d9d9d; +} +.navbar-inverse .navbar-brand:hover, +.navbar-inverse .navbar-brand:focus { + color: #ffffff; + background-color: transparent; +} +.navbar-inverse .navbar-text { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a:hover, +.navbar-inverse .navbar-nav > li > a:focus { + color: #ffffff; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .active > a, +.navbar-inverse .navbar-nav > .active > a:hover, +.navbar-inverse .navbar-nav > .active > a:focus { + color: #ffffff; + background-color: #080808; +} +.navbar-inverse .navbar-nav > .disabled > a, +.navbar-inverse .navbar-nav > .disabled > a:hover, +.navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444444; + background-color: transparent; +} +.navbar-inverse .navbar-toggle { + border-color: #333333; +} +.navbar-inverse .navbar-toggle:hover, +.navbar-inverse .navbar-toggle:focus { + background-color: #333333; +} +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #ffffff; +} +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; +} +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .open > a:hover, +.navbar-inverse .navbar-nav > .open > a:focus { + background-color: #080808; + color: #ffffff; +} +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #9d9d9d; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #ffffff; + background-color: transparent; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #ffffff; + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444444; + background-color: transparent; + } +} +.navbar-inverse .navbar-link { + color: #9d9d9d; +} +.navbar-inverse .navbar-link:hover { + color: #ffffff; +} +.navbar-inverse .btn-link { + color: #9d9d9d; +} +.navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link:focus { + color: #ffffff; +} +.navbar-inverse .btn-link[disabled]:hover, +fieldset[disabled] .navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link[disabled]:focus, +fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444444; +} +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} +.breadcrumb > li { + display: inline-block; +} +.breadcrumb > li + li:before { + content: "/\00a0"; + padding: 0 5px; + color: #cccccc; +} +.breadcrumb > .active { + color: #777777; +} +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} +.pagination > li { + display: inline; +} +.pagination > li > a, +.pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + line-height: 1.42857143; + text-decoration: none; + color: #337ab7; + background-color: #ffffff; + border: 1px solid #dddddd; + margin-left: -1px; +} +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-bottom-left-radius: 4px; + border-top-left-radius: 4px; +} +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-bottom-right-radius: 4px; + border-top-right-radius: 4px; +} +.pagination > li > a:hover, +.pagination > li > span:hover, +.pagination > li > a:focus, +.pagination > li > span:focus { + color: #23527c; + background-color: #eeeeee; + border-color: #dddddd; +} +.pagination > .active > a, +.pagination > .active > span, +.pagination > .active > a:hover, +.pagination > .active > span:hover, +.pagination > .active > a:focus, +.pagination > .active > span:focus { + z-index: 2; + color: #ffffff; + background-color: #337ab7; + border-color: #337ab7; + cursor: default; +} +.pagination > .disabled > span, +.pagination > .disabled > span:hover, +.pagination > .disabled > span:focus, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #777777; + background-color: #ffffff; + border-color: #dddddd; + cursor: not-allowed; +} +.pagination-lg > li > a, +.pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; +} +.pagination-lg > li:first-child > a, +.pagination-lg > li:first-child > span { + border-bottom-left-radius: 6px; + border-top-left-radius: 6px; +} +.pagination-lg > li:last-child > a, +.pagination-lg > li:last-child > span { + border-bottom-right-radius: 6px; + border-top-right-radius: 6px; +} +.pagination-sm > li > a, +.pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; +} +.pagination-sm > li:first-child > a, +.pagination-sm > li:first-child > span { + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; +} +.pagination-sm > li:last-child > a, +.pagination-sm > li:last-child > span { + border-bottom-right-radius: 3px; + border-top-right-radius: 3px; +} +.pager { + padding-left: 0; + margin: 20px 0; + list-style: none; + text-align: center; +} +.pager li { + display: inline; +} +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 15px; +} +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #777777; + background-color: #ffffff; + cursor: not-allowed; +} +.label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #ffffff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em; +} +a.label:hover, +a.label:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} +.label:empty { + display: none; +} +.btn .label { + position: relative; + top: -1px; +} +.label-default { + background-color: #777777; +} +.label-default[href]:hover, +.label-default[href]:focus { + background-color: #5e5e5e; +} +.label-primary { + background-color: #337ab7; +} +.label-primary[href]:hover, +.label-primary[href]:focus { + background-color: #286090; +} +.label-success { + background-color: #5cb85c; +} +.label-success[href]:hover, +.label-success[href]:focus { + background-color: #449d44; +} +.label-info { + background-color: #5bc0de; +} +.label-info[href]:hover, +.label-info[href]:focus { + background-color: #31b0d5; +} +.label-warning { + background-color: #f0ad4e; +} +.label-warning[href]:hover, +.label-warning[href]:focus { + background-color: #ec971f; +} +.label-danger { + background-color: #d9534f; +} +.label-danger[href]:hover, +.label-danger[href]:focus { + background-color: #c9302c; +} +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + color: #ffffff; + line-height: 1; + vertical-align: baseline; + white-space: nowrap; + text-align: center; + background-color: #777777; + border-radius: 10px; +} +.badge:empty { + display: none; +} +.btn .badge { + position: relative; + top: -1px; +} +.btn-xs .badge, +.btn-group-xs > .btn .badge { + top: 0; + padding: 1px 5px; +} +a.badge:hover, +a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} +.list-group-item.active > .badge, +.nav-pills > .active > a > .badge { + color: #337ab7; + background-color: #ffffff; +} +.list-group-item > .badge { + float: right; +} +.list-group-item > .badge + .badge { + margin-right: 5px; +} +.nav-pills > li > a > .badge { + margin-left: 3px; +} +.jumbotron { + padding: 30px 15px; + margin-bottom: 30px; + color: inherit; + background-color: #eeeeee; +} +.jumbotron h1, +.jumbotron .h1 { + color: inherit; +} +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200; +} +.jumbotron > hr { + border-top-color: #d5d5d5; +} +.container .jumbotron, +.container-fluid .jumbotron { + border-radius: 6px; +} +.jumbotron .container { + max-width: 100%; +} +@media screen and (min-width: 768px) { + .jumbotron { + padding: 48px 0; + } + .container .jumbotron, + .container-fluid .jumbotron { + padding-left: 60px; + padding-right: 60px; + } + .jumbotron h1, + .jumbotron .h1 { + font-size: 63px; + } +} +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.42857143; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: border 0.2s ease-in-out; + -o-transition: border 0.2s ease-in-out; + transition: border 0.2s ease-in-out; +} +.thumbnail > img, +.thumbnail a > img { + margin-left: auto; + margin-right: auto; +} +a.thumbnail:hover, +a.thumbnail:focus, +a.thumbnail.active { + border-color: #337ab7; +} +.thumbnail .caption { + padding: 9px; + color: #333333; +} +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; +} +.alert h4 { + margin-top: 0; + color: inherit; +} +.alert .alert-link { + font-weight: bold; +} +.alert > p, +.alert > ul { + margin-bottom: 0; +} +.alert > p + p { + margin-top: 5px; +} +.alert-dismissable, +.alert-dismissible { + padding-right: 35px; +} +.alert-dismissable .close, +.alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} +.alert-success { + background-color: #dff0d8; + border-color: #d6e9c6; + color: #3c763d; +} +.alert-success hr { + border-top-color: #c9e2b3; +} +.alert-success .alert-link { + color: #2b542c; +} +.alert-info { + background-color: #d9edf7; + border-color: #bce8f1; + color: #31708f; +} +.alert-info hr { + border-top-color: #a6e1ec; +} +.alert-info .alert-link { + color: #245269; +} +.alert-warning { + background-color: #fcf8e3; + border-color: #faebcc; + color: #8a6d3b; +} +.alert-warning hr { + border-top-color: #f7e1b5; +} +.alert-warning .alert-link { + color: #66512c; +} +.alert-danger { + background-color: #f2dede; + border-color: #ebccd1; + color: #a94442; +} +.alert-danger hr { + border-top-color: #e4b9c0; +} +.alert-danger .alert-link { + color: #843534; +} +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-o-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.progress { + overflow: hidden; + height: 20px; + margin-bottom: 20px; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} +.progress-bar { + float: left; + width: 0%; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #ffffff; + text-align: center; + background-color: #337ab7; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; +} +.progress-striped .progress-bar, +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + background-size: 40px 40px; +} +.progress.active .progress-bar, +.progress-bar.active { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} +.progress-bar-success { + background-color: #5cb85c; +} +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-info { + background-color: #5bc0de; +} +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-warning { + background-color: #f0ad4e; +} +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.progress-bar-danger { + background-color: #d9534f; +} +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.media { + margin-top: 15px; +} +.media:first-child { + margin-top: 0; +} +.media, +.media-body { + zoom: 1; + overflow: hidden; +} +.media-body { + width: 10000px; +} +.media-object { + display: block; +} +.media-right, +.media > .pull-right { + padding-left: 10px; +} +.media-left, +.media > .pull-left { + padding-right: 10px; +} +.media-left, +.media-right, +.media-body { + display: table-cell; + vertical-align: top; +} +.media-middle { + vertical-align: middle; +} +.media-bottom { + vertical-align: bottom; +} +.media-heading { + margin-top: 0; + margin-bottom: 5px; +} +.media-list { + padding-left: 0; + list-style: none; +} +.list-group { + margin-bottom: 20px; + padding-left: 0; +} +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #ffffff; + border: 1px solid #dddddd; +} +.list-group-item:first-child { + border-top-right-radius: 4px; + border-top-left-radius: 4px; +} +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +a.list-group-item { + color: #555555; +} +a.list-group-item .list-group-item-heading { + color: #333333; +} +a.list-group-item:hover, +a.list-group-item:focus { + text-decoration: none; + color: #555555; + background-color: #f5f5f5; +} +.list-group-item.disabled, +.list-group-item.disabled:hover, +.list-group-item.disabled:focus { + background-color: #eeeeee; + color: #777777; + cursor: not-allowed; +} +.list-group-item.disabled .list-group-item-heading, +.list-group-item.disabled:hover .list-group-item-heading, +.list-group-item.disabled:focus .list-group-item-heading { + color: inherit; +} +.list-group-item.disabled .list-group-item-text, +.list-group-item.disabled:hover .list-group-item-text, +.list-group-item.disabled:focus .list-group-item-text { + color: #777777; +} +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + z-index: 2; + color: #ffffff; + background-color: #337ab7; + border-color: #337ab7; +} +.list-group-item.active .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading, +.list-group-item.active .list-group-item-heading > small, +.list-group-item.active:hover .list-group-item-heading > small, +.list-group-item.active:focus .list-group-item-heading > small, +.list-group-item.active .list-group-item-heading > .small, +.list-group-item.active:hover .list-group-item-heading > .small, +.list-group-item.active:focus .list-group-item-heading > .small { + color: inherit; +} +.list-group-item.active .list-group-item-text, +.list-group-item.active:hover .list-group-item-text, +.list-group-item.active:focus .list-group-item-text { + color: #c7ddef; +} +.list-group-item-success { + color: #3c763d; + background-color: #dff0d8; +} +a.list-group-item-success { + color: #3c763d; +} +a.list-group-item-success .list-group-item-heading { + color: inherit; +} +a.list-group-item-success:hover, +a.list-group-item-success:focus { + color: #3c763d; + background-color: #d0e9c6; +} +a.list-group-item-success.active, +a.list-group-item-success.active:hover, +a.list-group-item-success.active:focus { + color: #fff; + background-color: #3c763d; + border-color: #3c763d; +} +.list-group-item-info { + color: #31708f; + background-color: #d9edf7; +} +a.list-group-item-info { + color: #31708f; +} +a.list-group-item-info .list-group-item-heading { + color: inherit; +} +a.list-group-item-info:hover, +a.list-group-item-info:focus { + color: #31708f; + background-color: #c4e3f3; +} +a.list-group-item-info.active, +a.list-group-item-info.active:hover, +a.list-group-item-info.active:focus { + color: #fff; + background-color: #31708f; + border-color: #31708f; +} +.list-group-item-warning { + color: #8a6d3b; + background-color: #fcf8e3; +} +a.list-group-item-warning { + color: #8a6d3b; +} +a.list-group-item-warning .list-group-item-heading { + color: inherit; +} +a.list-group-item-warning:hover, +a.list-group-item-warning:focus { + color: #8a6d3b; + background-color: #faf2cc; +} +a.list-group-item-warning.active, +a.list-group-item-warning.active:hover, +a.list-group-item-warning.active:focus { + color: #fff; + background-color: #8a6d3b; + border-color: #8a6d3b; +} +.list-group-item-danger { + color: #a94442; + background-color: #f2dede; +} +a.list-group-item-danger { + color: #a94442; +} +a.list-group-item-danger .list-group-item-heading { + color: inherit; +} +a.list-group-item-danger:hover, +a.list-group-item-danger:focus { + color: #a94442; + background-color: #ebcccc; +} +a.list-group-item-danger.active, +a.list-group-item-danger.active:hover, +a.list-group-item-danger.active:focus { + color: #fff; + background-color: #a94442; + border-color: #a94442; +} +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; +} +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3; +} +.panel { + margin-bottom: 20px; + background-color: #ffffff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); +} +.panel-body { + padding: 15px; +} +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.panel-heading > .dropdown .dropdown-toggle { + color: inherit; +} +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit; +} +.panel-title > a, +.panel-title > small, +.panel-title > .small, +.panel-title > small > a, +.panel-title > .small > a { + color: inherit; +} +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #dddddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .list-group, +.panel > .panel-collapse > .list-group { + margin-bottom: 0; +} +.panel > .list-group .list-group-item, +.panel > .panel-collapse > .list-group .list-group-item { + border-width: 1px 0; + border-radius: 0; +} +.panel > .list-group:first-child .list-group-item:first-child, +.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.panel > .list-group:last-child .list-group-item:last-child, +.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; +} +.list-group + .panel-footer { + border-top-width: 0; +} +.panel > .table, +.panel > .table-responsive > .table, +.panel > .panel-collapse > .table { + margin-bottom: 0; +} +.panel > .table caption, +.panel > .table-responsive > .table caption, +.panel > .panel-collapse > .table caption { + padding-left: 15px; + padding-right: 15px; +} +.panel > .table:first-child, +.panel > .table-responsive:first-child > .table:first-child { + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { + border-top-left-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { + border-top-right-radius: 3px; +} +.panel > .table:last-child, +.panel > .table-responsive:last-child > .table:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { + border-bottom-right-radius: 3px; +} +.panel > .panel-body + .table, +.panel > .panel-body + .table-responsive, +.panel > .table + .panel-body, +.panel > .table-responsive + .panel-body { + border-top: 1px solid #dddddd; +} +.panel > .table > tbody:first-child > tr:first-child th, +.panel > .table > tbody:first-child > tr:first-child td { + border-top: 0; +} +.panel > .table-bordered, +.panel > .table-responsive > .table-bordered { + border: 0; +} +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; +} +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; +} +.panel > .table-bordered > thead > tr:first-child > td, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, +.panel > .table-bordered > tbody > tr:first-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, +.panel > .table-bordered > thead > tr:first-child > th, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, +.panel > .table-bordered > tbody > tr:first-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { + border-bottom: 0; +} +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { + border-bottom: 0; +} +.panel > .table-responsive { + border: 0; + margin-bottom: 0; +} +.panel-group { + margin-bottom: 20px; +} +.panel-group .panel { + margin-bottom: 0; + border-radius: 4px; +} +.panel-group .panel + .panel { + margin-top: 5px; +} +.panel-group .panel-heading { + border-bottom: 0; +} +.panel-group .panel-heading + .panel-collapse > .panel-body, +.panel-group .panel-heading + .panel-collapse > .list-group { + border-top: 1px solid #dddddd; +} +.panel-group .panel-footer { + border-top: 0; +} +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #dddddd; +} +.panel-default { + border-color: #dddddd; +} +.panel-default > .panel-heading { + color: #333333; + background-color: #f5f5f5; + border-color: #dddddd; +} +.panel-default > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #dddddd; +} +.panel-default > .panel-heading .badge { + color: #f5f5f5; + background-color: #333333; +} +.panel-default > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #dddddd; +} +.panel-primary { + border-color: #337ab7; +} +.panel-primary > .panel-heading { + color: #ffffff; + background-color: #337ab7; + border-color: #337ab7; +} +.panel-primary > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #337ab7; +} +.panel-primary > .panel-heading .badge { + color: #337ab7; + background-color: #ffffff; +} +.panel-primary > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #337ab7; +} +.panel-success { + border-color: #d6e9c6; +} +.panel-success > .panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.panel-success > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #d6e9c6; +} +.panel-success > .panel-heading .badge { + color: #dff0d8; + background-color: #3c763d; +} +.panel-success > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #d6e9c6; +} +.panel-info { + border-color: #bce8f1; +} +.panel-info > .panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.panel-info > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #bce8f1; +} +.panel-info > .panel-heading .badge { + color: #d9edf7; + background-color: #31708f; +} +.panel-info > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #bce8f1; +} +.panel-warning { + border-color: #faebcc; +} +.panel-warning > .panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.panel-warning > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #faebcc; +} +.panel-warning > .panel-heading .badge { + color: #fcf8e3; + background-color: #8a6d3b; +} +.panel-warning > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #faebcc; +} +.panel-danger { + border-color: #ebccd1; +} +.panel-danger > .panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.panel-danger > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ebccd1; +} +.panel-danger > .panel-heading .badge { + color: #f2dede; + background-color: #a94442; +} +.panel-danger > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ebccd1; +} +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden; +} +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + left: 0; + bottom: 0; + height: 100%; + width: 100%; + border: 0; +} +.embed-responsive-16by9 { + padding-bottom: 56.25%; +} +.embed-responsive-4by3 { + padding-bottom: 75%; +} +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} +.well-lg { + padding: 24px; + border-radius: 6px; +} +.well-sm { + padding: 9px; + border-radius: 3px; +} +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000000; + text-shadow: 0 1px 0 #ffffff; + opacity: 0.2; + filter: alpha(opacity=20); +} +.close:hover, +.close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; + opacity: 0.5; + filter: alpha(opacity=50); +} +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} +.modal-open { + overflow: hidden; +} +.modal { + display: none; + overflow: hidden; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + -webkit-overflow-scrolling: touch; + outline: 0; +} +.modal.fade .modal-dialog { + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%); + -webkit-transition: -webkit-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out; +} +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0); +} +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} +.modal-dialog { + position: relative; + width: auto; + margin: 10px; +} +.modal-content { + position: relative; + background-color: #ffffff; + border: 1px solid #999999; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + -webkit-background-clip: padding-box; + background-clip: padding-box; + outline: 0; +} +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000000; +} +.modal-backdrop.fade { + opacity: 0; + filter: alpha(opacity=0); +} +.modal-backdrop.in { + opacity: 0.5; + filter: alpha(opacity=50); +} +.modal-header { + padding: 15px; + border-bottom: 1px solid #e5e5e5; + min-height: 16.42857143px; +} +.modal-header .close { + margin-top: -2px; +} +.modal-title { + margin: 0; + line-height: 1.42857143; +} +.modal-body { + position: relative; + padding: 15px; +} +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; +} +.modal-footer .btn + .btn { + margin-left: 5px; + margin-bottom: 0; +} +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} +@media (min-width: 768px) { + .modal-dialog { + width: 600px; + margin: 30px auto; + } + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + } + .modal-sm { + width: 300px; + } +} +@media (min-width: 992px) { + .modal-lg { + width: 900px; + } +} +.tooltip { + position: absolute; + z-index: 1070; + display: block; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 12px; + font-weight: normal; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0); +} +.tooltip.in { + opacity: 0.9; + filter: alpha(opacity=90); +} +.tooltip.top { + margin-top: -3px; + padding: 5px 0; +} +.tooltip.right { + margin-left: 3px; + padding: 0 5px; +} +.tooltip.bottom { + margin-top: 3px; + padding: 5px 0; +} +.tooltip.left { + margin-left: -3px; + padding: 0 5px; +} +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + border-radius: 4px; +} +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000000; +} +.tooltip.top-left .tooltip-arrow { + bottom: 0; + right: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000000; +} +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000000; +} +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000000; +} +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000000; +} +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000000; +} +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000000; +} +.tooltip.bottom-right .tooltip-arrow { + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000000; +} +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + font-weight: normal; + line-height: 1.42857143; + text-align: left; + background-color: #ffffff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + white-space: normal; +} +.popover.top { + margin-top: -10px; +} +.popover.right { + margin-left: 10px; +} +.popover.bottom { + margin-top: 10px; +} +.popover.left { + margin-left: -10px; +} +.popover-title { + margin: 0; + padding: 8px 14px; + font-size: 14px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; +} +.popover-content { + padding: 9px 14px; +} +.popover > .arrow, +.popover > .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.popover > .arrow { + border-width: 11px; +} +.popover > .arrow:after { + border-width: 10px; + content: ""; +} +.popover.top > .arrow { + left: 50%; + margin-left: -11px; + border-bottom-width: 0; + border-top-color: #999999; + border-top-color: rgba(0, 0, 0, 0.25); + bottom: -11px; +} +.popover.top > .arrow:after { + content: " "; + bottom: 1px; + margin-left: -10px; + border-bottom-width: 0; + border-top-color: #ffffff; +} +.popover.right > .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-left-width: 0; + border-right-color: #999999; + border-right-color: rgba(0, 0, 0, 0.25); +} +.popover.right > .arrow:after { + content: " "; + left: 1px; + bottom: -10px; + border-left-width: 0; + border-right-color: #ffffff; +} +.popover.bottom > .arrow { + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999999; + border-bottom-color: rgba(0, 0, 0, 0.25); + top: -11px; +} +.popover.bottom > .arrow:after { + content: " "; + top: 1px; + margin-left: -10px; + border-top-width: 0; + border-bottom-color: #ffffff; +} +.popover.left > .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999999; + border-left-color: rgba(0, 0, 0, 0.25); +} +.popover.left > .arrow:after { + content: " "; + right: 1px; + border-right-width: 0; + border-left-color: #ffffff; + bottom: -10px; +} +.carousel { + position: relative; +} +.carousel-inner { + position: relative; + overflow: hidden; + width: 100%; +} +.carousel-inner > .item { + display: none; + position: relative; + -webkit-transition: 0.6s ease-in-out left; + -o-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + line-height: 1; +} +@media all and (transform-3d), (-webkit-transform-3d) { + .carousel-inner > .item { + -webkit-transition: -webkit-transform 0.6s ease-in-out; + -o-transition: -o-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000; + perspective: 1000; + } + .carousel-inner > .item.next, + .carousel-inner > .item.active.right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + left: 0; + } + .carousel-inner > .item.prev, + .carousel-inner > .item.active.left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + left: 0; + } + .carousel-inner > .item.next.left, + .carousel-inner > .item.prev.right, + .carousel-inner > .item.active { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + left: 0; + } +} +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; +} +.carousel-control { + position: absolute; + top: 0; + left: 0; + bottom: 0; + width: 15%; + opacity: 0.5; + filter: alpha(opacity=50); + font-size: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); +} +.carousel-control.right { + left: auto; + right: 0; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); +} +.carousel-control:hover, +.carousel-control:focus { + outline: 0; + color: #ffffff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; +} +.carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px; +} +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px; +} +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + margin-top: -10px; + line-height: 1; + font-family: serif; +} +.carousel-control .icon-prev:before { + content: '\2039'; +} +.carousel-control .icon-next:before { + content: '\203a'; +} +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + margin-left: -30%; + padding-left: 0; + list-style: none; + text-align: center; +} +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + border: 1px solid #ffffff; + border-radius: 10px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0); +} +.carousel-indicators .active { + margin: 0; + width: 12px; + height: 12px; + background-color: #ffffff; +} +.carousel-caption { + position: absolute; + left: 15%; + right: 15%; + bottom: 20px; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} +.carousel-caption .btn { + text-shadow: none; +} +@media screen and (min-width: 768px) { + .carousel-control .glyphicon-chevron-left, + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-prev, + .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + font-size: 30px; + } + .carousel-control .glyphicon-chevron-left, + .carousel-control .icon-prev { + margin-left: -15px; + } + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-next { + margin-right: -15px; + } + .carousel-caption { + left: 20%; + right: 20%; + padding-bottom: 30px; + } + .carousel-indicators { + bottom: 20px; + } +} +.clearfix:before, +.clearfix:after, +.dl-horizontal dd:before, +.dl-horizontal dd:after, +.container:before, +.container:after, +.container-fluid:before, +.container-fluid:after, +.row:before, +.row:after, +.form-horizontal .form-group:before, +.form-horizontal .form-group:after, +.btn-toolbar:before, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after, +.nav:before, +.nav:after, +.navbar:before, +.navbar:after, +.navbar-header:before, +.navbar-header:after, +.navbar-collapse:before, +.navbar-collapse:after, +.pager:before, +.pager:after, +.panel-body:before, +.panel-body:after, +.modal-footer:before, +.modal-footer:after { + content: " "; + display: table; +} +.clearfix:after, +.dl-horizontal dd:after, +.container:after, +.container-fluid:after, +.row:after, +.form-horizontal .form-group:after, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:after, +.nav:after, +.navbar:after, +.navbar-header:after, +.navbar-collapse:after, +.pager:after, +.panel-body:after, +.modal-footer:after { + clear: both; +} +.center-block { + display: block; + margin-left: auto; + margin-right: auto; +} +.pull-right { + float: right !important; +} +.pull-left { + float: left !important; +} +.hide { + display: none !important; +} +.show { + display: block !important; +} +.invisible { + visibility: hidden; +} +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.hidden { + display: none !important; +} +.affix { + position: fixed; +} +@-ms-viewport { + width: device-width; +} +.visible-xs, +.visible-sm, +.visible-md, +.visible-lg { + display: none !important; +} +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block { + display: none !important; +} +@media (max-width: 767px) { + .visible-xs { + display: block !important; + } + table.visible-xs { + display: table; + } + tr.visible-xs { + display: table-row !important; + } + th.visible-xs, + td.visible-xs { + display: table-cell !important; + } +} +@media (max-width: 767px) { + .visible-xs-block { + display: block !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline { + display: inline !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline-block { + display: inline-block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + table.visible-sm { + display: table; + } + tr.visible-sm { + display: table-row !important; + } + th.visible-sm, + td.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-block { + display: block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline { + display: inline !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + table.visible-md { + display: table; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-block { + display: block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline { + display: inline !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block !important; + } +} +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } + table.visible-lg { + display: table; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .visible-lg-block { + display: block !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block !important; + } +} +@media (max-width: 767px) { + .hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } +} +.visible-print { + display: none !important; +} +@media print { + .visible-print { + display: block !important; + } + table.visible-print { + display: table; + } + tr.visible-print { + display: table-row !important; + } + th.visible-print, + td.visible-print { + display: table-cell !important; + } +} +.visible-print-block { + display: none !important; +} +@media print { + .visible-print-block { + display: block !important; + } +} +.visible-print-inline { + display: none !important; +} +@media print { + .visible-print-inline { + display: inline !important; + } +} +.visible-print-inline-block { + display: none !important; +} +@media print { + .visible-print-inline-block { + display: inline-block !important; + } +} +@media print { + .hidden-print { + display: none !important; + } +} +/* Google Custom Search Engine */ +.gsc-search-button input.gsc-search-button-v2 { + height: 29px; + width: 71px; + margin-top: 4px; +} +.gsc-srarch-box, +.gs-title, +.gs-visibleUrl, +.gsc-result-info { + font-family: 'Calendas Plus', serif; +} +.gs-snippet { + margin-left: 8px; +} +.gsc-input { + padding: 0; +} +.gsc-cursor-page { + color: #428BCA; +} +.gsc-cursor-page:hover { + color: #2a6496; +} +.gsc-cursor-page.gsc-cursor-current-page { + color: #333; +} +.gsc-input .gsc-input-box { + height: 29px; +} +.gsc-search-box-tools .gsc-search-box .gsc-input { + padding-right: 5px !important; +} +.gsc-search-box tr { + padding: 0; +} +#___gcse_1 .gsc-control-cse { + padding: 0; +} +#___gcse_0 { + margin-top: 15px; +} +/* Disqus */ +#disqus_thread { + margin: 0 10px; +} +#disqus_thread #dsq-content { + font-size: 0.93em; +} +#disqus_thread #dsq-content .dsq-request-user-name small, +#disqus_thread #dsq-content .dsq-subscribe small, +#disqus_thread #dsq-content .dsq-sharing-options span small { + font-size: 0.8em; +} +#disqus_thread #dsq-content .dsq-comment-body { + margin: 0 10px; +} +/* + * Based on: https://github.com/pie4dan/CodeRay-GitHub-Theme/blob/master/coderay.css + */ +.CodeRay { + background-color: #FFF; + border: 1px solid #CCC; + font-family: 'Inconsolata', monospace; + color: #000; + padding: 1em 0px 1em 1em; +} +.CodeRay pre, +.CodeRay code { + padding: 0; + margin: 0; +} +div.CodeRay { + padding: 0; +} +span.CodeRay { + white-space: pre; + border: 0px; + padding: 2px; +} +table.CodeRay { + border-collapse: collapse; + width: 100%; + padding: 2px; +} +table.CodeRay td { + padding: 1em 0.5em; + vertical-align: top; +} +.CodeRay .line-numbers, +.CodeRay .no { + border: 1px solid #ECECEC; + margin: 0 inherit; + background-color: #ECECEC; + color: #AAA; + padding: 0px 7px; + text-align: right; +} +.CodeRay .line-numbers tt { + font-weight: bold; +} +.CodeRay .line-numbers .highlighted { + color: #ff0000; +} +.CodeRay .line { + display: block; + float: left; + width: 100%; +} +.CodeRay .no { + padding: 0px 4px; +} +.CodeRay .code { + width: 100%; +} +ol.CodeRay { + font-size: 10pt; +} +ol.CodeRay li { + white-space: pre; +} +.CodeRay .code pre { + overflow: auto; +} +.CodeRay .debug { + color: white ! important; + background: blue ! important; +} +.CodeRay .attribute-name-fat { + color: #0000cc; +} +.CodeRay .attribute-name { + color: #000077; +} +.CodeRay .annotation { + color: #ff0088; +} +.CodeRay .attribute-value { + color: #770000; +} +.CodeRay .attribute-value-fat { + color: #cc0000; +} +.CodeRay .binary { + color: #509; + font-weight: bold; +} +.CodeRay .comment { + color: #998; + font-style: italic; +} +.CodeRay .char { + color: #0044dd; +} +.CodeRay .ch .content { + color: #0044dd; +} +.CodeRay .ch .delimiter { + color: #003399; +} +.CodeRay .class { + color: #458; + font-weight: bold; +} +.CodeRay .complex { + color: #A08; + font-weight: bold; +} +.CodeRay .constant { + color: teal; +} +.CodeRay .color { + color: #00aa00; +} +.CodeRay .class-variable { + color: #336699; +} +.CodeRay .decorator { + color: #B0B; +} +.CodeRay .definition { + color: #099; + font-weight: bold; +} +.CodeRay .directive { + color: #088; + font-weight: bold; +} +.CodeRay .delimiter { + color: #000000; +} +.CodeRay .doc { + color: #997700; +} +.CodeRay .doc-type { + color: #3344bb; +} +.CodeRay .doc-string { + color: #D42; + font-weight: bold; +} +.CodeRay .escape { + color: #666; + font-weight: bold; +} +.CodeRay .entity { + color: #800; + font-weight: bold; +} +.CodeRay .error { + color: #F00; + background-color: #ffaaaa; +} +.CodeRay .exception { + color: #C00; + font-weight: bold; +} +.CodeRay .float { + color: #099; +} +.CodeRay .function { + color: #900; + font-weight: bold; +} +.CodeRay .global-variable { + color: teal; + font-weight: bold; +} +.CodeRay .hex { + color: #058; + font-weight: bold; +} +.CodeRay .imaginary { + color: #099; +} +.CodeRay .include { + color: #B44; + font-weight: bold; +} +.CodeRay .inline { + color: #000000; +} +.CodeRay .inline .inline { + background: #cccccc; +} +.CodeRay .inline .inline .inline { + background: #bbbbbb; +} +.CodeRay .inline .inline-delimiter { + color: #D14; +} +.CodeRay .inline-delimiter { + color: #D14; +} +.CodeRay .imaginary { + color: #f00; +} +.CodeRay .include { + color: #B2B; + font-weight: bold; +} +.CodeRay .instance-variable { + color: #008080; +} +.CodeRay .label { + color: #970; + font-weight: bold; +} +.CodeRay .local-variable { + color: #996633; +} +.CodeRay .octal { + color: #40E; + font-weight: bold; +} +.CodeRay .operator-fat { + color: #000; + font-weight: bold; +} +.CodeRay .predefined-constant { + font-weight: bold; +} +.CodeRay .predefined { + color: #369; + font-weight: bold; +} +.CodeRay .preprocessor { + color: #579; +} +.CodeRay .pseudo-class { + color: #00C; + font-weight: bold; +} +.CodeRay .predefined-type { + color: #074; + font-weight: bold; +} +.CodeRay .reserved, +.keyword { + color: #000; + font-weight: bold; +} +.CodeRay .key { + color: #808; +} +.CodeRay .key .delimiter { + color: #606; +} +.CodeRay .key .char { + color: #80f; +} +.CodeRay .value { + color: #088; +} +.CodeRay .regexp { + background-color: #fff0ff; +} +.CodeRay .regexp .content { + color: #880088; +} +.CodeRay .regexp .delimiter { + color: #440044; +} +.CodeRay .regexp .modifier { + color: #cc22cc; +} +.CodeRay .regexp .function { + color: #404; + font-weight: bold; +} +.CodeRay .string { + color: #D20; +} +.CodeRay .string .content { + color: #D14; +} +.CodeRay .string .char { + color: #D14; +} +.CodeRay .string .delimiter { + color: #D14; +} +.CodeRay .shell { + color: #dd1144; +} +.CodeRay .shell .delimiter { + color: #dd1144; +} +.CodeRay .symbol { + color: #990073; +} +.CodeRay .symbol .content { + color: #aa6600; +} +.CodeRay .symbol .delimiter { + color: #663300; +} +.CodeRay .tag { + color: #007700; +} +.CodeRay .tag-fat { + color: #070; + font-weight: bold; +} +.CodeRay .tag-special { + color: #D70; + font-weight: bold; +} +.CodeRay .type { + color: #339; + font-weight: bold; +} +.CodeRay .variable { + color: #003366; +} +.CodeRay .xml-text { + color: #444444; +} +.CodeRay .insert { + background: #afa; +} +.CodeRay .delete { + background: #faa; +} +.CodeRay .change { + color: #aaf; + background: #007; +} +.CodeRay .head { + color: #f8f; + background: #550055; +} +.CodeRay .insert .insert { + color: #080; + font-weight: bold; +} +.CodeRay .delete .delete { + color: #800; + font-weight: bold; +} +.CodeRay .change .change { + color: #66f; +} +.CodeRay .head .head { + color: #f4f; +} +/* + +github.com style (c) Vasily Polovnyov <vast@whiteants.net> + +*/ +.hljs { + display: block; + overflow-x: auto; + padding: 0.5em; + color: #333; + background: #f8f8f8; + -webkit-text-size-adjust: none; +} +.hljs-comment, +.diff .hljs-header, +.hljs-javadoc { + color: #998; + font-style: italic; +} +.hljs-keyword, +.css .rule .hljs-keyword, +.hljs-winutils, +.nginx .hljs-title, +.hljs-subst, +.hljs-request, +.hljs-status { + color: #333; + font-weight: bold; +} +.hljs-number, +.hljs-hexcolor, +.ruby .hljs-constant { + color: #008080; +} +.hljs-string, +.hljs-tag .hljs-value, +.hljs-phpdoc, +.hljs-dartdoc, +.tex .hljs-formula { + color: #d14; +} +.hljs-title, +.hljs-id, +.scss .hljs-preprocessor { + color: #900; + font-weight: bold; +} +.hljs-list .hljs-keyword, +.hljs-subst { + font-weight: normal; +} +.hljs-class .hljs-title, +.hljs-type, +.vhdl .hljs-literal, +.tex .hljs-command { + color: #458; + font-weight: bold; +} +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-rule .hljs-property, +.django .hljs-tag .hljs-keyword { + color: #000080; + font-weight: normal; +} +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body, +.hljs-name { + color: #008080; +} +.hljs-regexp { + color: #009926; +} +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.lisp .hljs-keyword, +.clojure .hljs-keyword, +.scheme .hljs-keyword, +.tex .hljs-special, +.hljs-prompt { + color: #990073; +} +.hljs-built_in { + color: #0086b3; +} +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-doctype, +.hljs-shebang, +.hljs-cdata { + color: #999; + font-weight: bold; +} +.hljs-deletion { + background: #fdd; +} +.hljs-addition { + background: #dfd; +} +.diff .hljs-change { + background: #0086b3; +} +.hljs-chunk { + color: #aaa; +} +@media (min-width: 768px) { + .navbar .container { + width: 98%; + } + .navbar-form.navbar-right { + width: 147px; + margin-right: -48px; + } + .navbar-form .input-group { + float: right; + width: 320px; + } +} +@media (max-width: 930px) { + .navbar-form.navbar-right { + margin-right: -26px; + } + .navbar-form .input-group { + float: right; + width: 140px; + } +} +@media (max-width: 767px) { + .nav-container { + padding: 0; + } + .navbar-form .input-group { + float: none; + width: 100%; + } + .navbar-fixed-top { + position: absolute; + } +} +html, +body { + height: 100%; +} +body { + padding-top: 70px; +} +img { + max-width: 100%; +} +a, +a:link, +a:visited, +a:active { + color: #b5190c; + word-break: break-word; + text-decoration: none; +} +a:hover { + color: #851209; + text-decoration: none; +} +q:before, +q:after { + content: ""; +} +q, +blockquote { + color: #999; + font-style: italic; +} +dt { + font-weight: 300; + font-size: 20px; +} +figure { + margin: 2px; + border: 1px solid #999; + padding: 2px; + color: #999; + font-size: 80%; + text-align: center; +} +figure[style="float: right;"], +img[style^="float:right"] { + margin-left: 10px; +} +figure[style="float: left;"], +img[style^="float:left"] { + margin-right: 10px; +} +#site-footer, +.navbar, +.navbar-collapse { + box-shadow: 0px 0px 20px 2px #212121; + text-shadow: 0 1px 1px #111; + color: #f3f3f3; + background: #212121; +} +#site-footer a, +.navbar a, +.navbar-collapse a, +#site-footer a:link, +.navbar a:link, +.navbar-collapse a:link, +#site-footer a:visited, +.navbar a:visited, +.navbar-collapse a:visited, +#site-footer a:active, +.navbar a:active, +.navbar-collapse a:active { + margin: inherit 1px; + color: #f35a4d; +} +#site-footer a i, +.navbar a i, +.navbar-collapse a i, +#site-footer a:link i, +.navbar a:link i, +.navbar-collapse a:link i, +#site-footer a:visited i, +.navbar a:visited i, +.navbar-collapse a:visited i, +#site-footer a:active i, +.navbar a:active i, +.navbar-collapse a:active i { + font-size: 20px; + vertical-align: text-top; + color: #f3f3f3; +} +#site-footer .nav a:hover, +.navbar .nav a:hover, +.navbar-collapse .nav a:hover { + text-decoration: none; + background: #212121; + color: #f02e1d; +} +.navbar { + height: 60px; +} +.navbar .container { + padding-top: 5px; +} +.navbar .nav { + background: #212121; +} +.navbar .navbar-toggle { + border-color: #555; +} +.navbar .icon-bar { + background: #555; +} +.navbar h1 { + position: relative; + margin: 0 0 0 15px; + padding: 0; +} +.navbar .input-group { + box-shadow: 0px 1px 1px 0px #111; +} +.navbar .btn, +.navbar input[type=text] { + border-radius: 0; +} +.jumbotron { + background-color: #fff; +} +main { + padding-bottom: 50px; +} +#site-footer { + padding-top: 5px; + font-size: 13px; + color: #f3f3f3; +} +#site-footer h2 { + color: #f3f3f3; +} +#site-footer .copyright { + text-align: center; + margin: auto; +} +#site-footer .contact-list ul { + list-style-type: none; +} +#site-footer .license-logo { + text-align: center; + margin: 15px auto; +} +.article-aggregation { + margin: 20px 0; +} +.pubdate, +.read { + font-style: italic; +} +.read { + margin-bottom: 20px; +} +.featured { + display: block; + font-style: italic; + text-align: right; + font-size: 130%; + color: #555; +} +#header-row { + margin-top: 15px; +} +.article-info { + font-style: italic; +} +.hyphenate, +.hyphens { + text-align: justify; +} +article p[style*="right"] { + margin: 0.5em 0 0.5em 1em; +} +article p[style*="left"] { + margin: 0.5em 1em 0.5em 0; +} +#body-text .navigation { + margin: auto; + text-align: center; +} +.main-title h1 { + margin-top: 0; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-glass:before { + content: "\f000"; +} +.fa-music:before { + content: "\f001"; +} +.fa-search:before { + content: "\f002"; +} +.fa-envelope-o:before { + content: "\f003"; +} +.fa-heart:before { + content: "\f004"; +} +.fa-star:before { + content: "\f005"; +} +.fa-star-o:before { + content: "\f006"; +} +.fa-user:before { + content: "\f007"; +} +.fa-film:before { + content: "\f008"; +} +.fa-th-large:before { + content: "\f009"; +} +.fa-th:before { + content: "\f00a"; +} +.fa-th-list:before { + content: "\f00b"; +} +.fa-check:before { + content: "\f00c"; +} +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: "\f00d"; +} +.fa-search-plus:before { + content: "\f00e"; +} +.fa-search-minus:before { + content: "\f010"; +} +.fa-power-off:before { + content: "\f011"; +} +.fa-signal:before { + content: "\f012"; +} +.fa-gear:before, +.fa-cog:before { + content: "\f013"; +} +.fa-trash-o:before { + content: "\f014"; +} +.fa-home:before { + content: "\f015"; +} +.fa-file-o:before { + content: "\f016"; +} +.fa-clock-o:before { + content: "\f017"; +} +.fa-road:before { + content: "\f018"; +} +.fa-download:before { + content: "\f019"; +} +.fa-arrow-circle-o-down:before { + content: "\f01a"; +} +.fa-arrow-circle-o-up:before { + content: "\f01b"; +} +.fa-inbox:before { + content: "\f01c"; +} +.fa-play-circle-o:before { + content: "\f01d"; +} +.fa-rotate-right:before, +.fa-repeat:before { + content: "\f01e"; +} +.fa-refresh:before { + content: "\f021"; +} +.fa-list-alt:before { + content: "\f022"; +} +.fa-lock:before { + content: "\f023"; +} +.fa-flag:before { + content: "\f024"; +} +.fa-headphones:before { + content: "\f025"; +} +.fa-volume-off:before { + content: "\f026"; +} +.fa-volume-down:before { + content: "\f027"; +} +.fa-volume-up:before { + content: "\f028"; +} +.fa-qrcode:before { + content: "\f029"; +} +.fa-barcode:before { + content: "\f02a"; +} +.fa-tag:before { + content: "\f02b"; +} +.fa-tags:before { + content: "\f02c"; +} +.fa-book:before { + content: "\f02d"; +} +.fa-bookmark:before { + content: "\f02e"; +} +.fa-print:before { + content: "\f02f"; +} +.fa-camera:before { + content: "\f030"; +} +.fa-font:before { + content: "\f031"; +} +.fa-bold:before { + content: "\f032"; +} +.fa-italic:before { + content: "\f033"; +} +.fa-text-height:before { + content: "\f034"; +} +.fa-text-width:before { + content: "\f035"; +} +.fa-align-left:before { + content: "\f036"; +} +.fa-align-center:before { + content: "\f037"; +} +.fa-align-right:before { + content: "\f038"; +} +.fa-align-justify:before { + content: "\f039"; +} +.fa-list:before { + content: "\f03a"; +} +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b"; +} +.fa-indent:before { + content: "\f03c"; +} +.fa-video-camera:before { + content: "\f03d"; +} +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: "\f03e"; +} +.fa-pencil:before { + content: "\f040"; +} +.fa-map-marker:before { + content: "\f041"; +} +.fa-adjust:before { + content: "\f042"; +} +.fa-tint:before { + content: "\f043"; +} +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044"; +} +.fa-share-square-o:before { + content: "\f045"; +} +.fa-check-square-o:before { + content: "\f046"; +} +.fa-arrows:before { + content: "\f047"; +} +.fa-step-backward:before { + content: "\f048"; +} +.fa-fast-backward:before { + content: "\f049"; +} +.fa-backward:before { + content: "\f04a"; +} +.fa-play:before { + content: "\f04b"; +} +.fa-pause:before { + content: "\f04c"; +} +.fa-stop:before { + content: "\f04d"; +} +.fa-forward:before { + content: "\f04e"; +} +.fa-fast-forward:before { + content: "\f050"; +} +.fa-step-forward:before { + content: "\f051"; +} +.fa-eject:before { + content: "\f052"; +} +.fa-chevron-left:before { + content: "\f053"; +} +.fa-chevron-right:before { + content: "\f054"; +} +.fa-plus-circle:before { + content: "\f055"; +} +.fa-minus-circle:before { + content: "\f056"; +} +.fa-times-circle:before { + content: "\f057"; +} +.fa-check-circle:before { + content: "\f058"; +} +.fa-question-circle:before { + content: "\f059"; +} +.fa-info-circle:before { + content: "\f05a"; +} +.fa-crosshairs:before { + content: "\f05b"; +} +.fa-times-circle-o:before { + content: "\f05c"; +} +.fa-check-circle-o:before { + content: "\f05d"; +} +.fa-ban:before { + content: "\f05e"; +} +.fa-arrow-left:before { + content: "\f060"; +} +.fa-arrow-right:before { + content: "\f061"; +} +.fa-arrow-up:before { + content: "\f062"; +} +.fa-arrow-down:before { + content: "\f063"; +} +.fa-mail-forward:before, +.fa-share:before { + content: "\f064"; +} +.fa-expand:before { + content: "\f065"; +} +.fa-compress:before { + content: "\f066"; +} +.fa-plus:before { + content: "\f067"; +} +.fa-minus:before { + content: "\f068"; +} +.fa-asterisk:before { + content: "\f069"; +} +.fa-exclamation-circle:before { + content: "\f06a"; +} +.fa-gift:before { + content: "\f06b"; +} +.fa-leaf:before { + content: "\f06c"; +} +.fa-fire:before { + content: "\f06d"; +} +.fa-eye:before { + content: "\f06e"; +} +.fa-eye-slash:before { + content: "\f070"; +} +.fa-warning:before, +.fa-exclamation-triangle:before { + content: "\f071"; +} +.fa-plane:before { + content: "\f072"; +} +.fa-calendar:before { + content: "\f073"; +} +.fa-random:before { + content: "\f074"; +} +.fa-comment:before { + content: "\f075"; +} +.fa-magnet:before { + content: "\f076"; +} +.fa-chevron-up:before { + content: "\f077"; +} +.fa-chevron-down:before { + content: "\f078"; +} +.fa-retweet:before { + content: "\f079"; +} +.fa-shopping-cart:before { + content: "\f07a"; +} +.fa-folder:before { + content: "\f07b"; +} +.fa-folder-open:before { + content: "\f07c"; +} +.fa-arrows-v:before { + content: "\f07d"; +} +.fa-arrows-h:before { + content: "\f07e"; +} +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: "\f080"; +} +.fa-twitter-square:before { + content: "\f081"; +} +.fa-facebook-square:before { + content: "\f082"; +} +.fa-camera-retro:before { + content: "\f083"; +} +.fa-key:before { + content: "\f084"; +} +.fa-gears:before, +.fa-cogs:before { + content: "\f085"; +} +.fa-comments:before { + content: "\f086"; +} +.fa-thumbs-o-up:before { + content: "\f087"; +} +.fa-thumbs-o-down:before { + content: "\f088"; +} +.fa-star-half:before { + content: "\f089"; +} +.fa-heart-o:before { + content: "\f08a"; +} +.fa-sign-out:before { + content: "\f08b"; +} +.fa-linkedin-square:before { + content: "\f08c"; +} +.fa-thumb-tack:before { + content: "\f08d"; +} +.fa-external-link:before { + content: "\f08e"; +} +.fa-sign-in:before { + content: "\f090"; +} +.fa-trophy:before { + content: "\f091"; +} +.fa-github-square:before { + content: "\f092"; +} +.fa-upload:before { + content: "\f093"; +} +.fa-lemon-o:before { + content: "\f094"; +} +.fa-phone:before { + content: "\f095"; +} +.fa-square-o:before { + content: "\f096"; +} +.fa-bookmark-o:before { + content: "\f097"; +} +.fa-phone-square:before { + content: "\f098"; +} +.fa-twitter:before { + content: "\f099"; +} +.fa-facebook-f:before, +.fa-facebook:before { + content: "\f09a"; +} +.fa-github:before { + content: "\f09b"; +} +.fa-unlock:before { + content: "\f09c"; +} +.fa-credit-card:before { + content: "\f09d"; +} +.fa-feed:before, +.fa-rss:before { + content: "\f09e"; +} +.fa-hdd-o:before { + content: "\f0a0"; +} +.fa-bullhorn:before { + content: "\f0a1"; +} +.fa-bell:before { + content: "\f0f3"; +} +.fa-certificate:before { + content: "\f0a3"; +} +.fa-hand-o-right:before { + content: "\f0a4"; +} +.fa-hand-o-left:before { + content: "\f0a5"; +} +.fa-hand-o-up:before { + content: "\f0a6"; +} +.fa-hand-o-down:before { + content: "\f0a7"; +} +.fa-arrow-circle-left:before { + content: "\f0a8"; +} +.fa-arrow-circle-right:before { + content: "\f0a9"; +} +.fa-arrow-circle-up:before { + content: "\f0aa"; +} +.fa-arrow-circle-down:before { + content: "\f0ab"; +} +.fa-globe:before { + content: "\f0ac"; +} +.fa-wrench:before { + content: "\f0ad"; +} +.fa-tasks:before { + content: "\f0ae"; +} +.fa-filter:before { + content: "\f0b0"; +} +.fa-briefcase:before { + content: "\f0b1"; +} +.fa-arrows-alt:before { + content: "\f0b2"; +} +.fa-group:before, +.fa-users:before { + content: "\f0c0"; +} +.fa-chain:before, +.fa-link:before { + content: "\f0c1"; +} +.fa-cloud:before { + content: "\f0c2"; +} +.fa-flask:before { + content: "\f0c3"; +} +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4"; +} +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5"; +} +.fa-paperclip:before { + content: "\f0c6"; +} +.fa-save:before, +.fa-floppy-o:before { + content: "\f0c7"; +} +.fa-square:before { + content: "\f0c8"; +} +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: "\f0c9"; +} +.fa-list-ul:before { + content: "\f0ca"; +} +.fa-list-ol:before { + content: "\f0cb"; +} +.fa-strikethrough:before { + content: "\f0cc"; +} +.fa-underline:before { + content: "\f0cd"; +} +.fa-table:before { + content: "\f0ce"; +} +.fa-magic:before { + content: "\f0d0"; +} +.fa-truck:before { + content: "\f0d1"; +} +.fa-pinterest:before { + content: "\f0d2"; +} +.fa-pinterest-square:before { + content: "\f0d3"; +} +.fa-google-plus-square:before { + content: "\f0d4"; +} +.fa-google-plus:before { + content: "\f0d5"; +} +.fa-money:before { + content: "\f0d6"; +} +.fa-caret-down:before { + content: "\f0d7"; +} +.fa-caret-up:before { + content: "\f0d8"; +} +.fa-caret-left:before { + content: "\f0d9"; +} +.fa-caret-right:before { + content: "\f0da"; +} +.fa-columns:before { + content: "\f0db"; +} +.fa-unsorted:before, +.fa-sort:before { + content: "\f0dc"; +} +.fa-sort-down:before, +.fa-sort-desc:before { + content: "\f0dd"; +} +.fa-sort-up:before, +.fa-sort-asc:before { + content: "\f0de"; +} +.fa-envelope:before { + content: "\f0e0"; +} +.fa-linkedin:before { + content: "\f0e1"; +} +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2"; +} +.fa-legal:before, +.fa-gavel:before { + content: "\f0e3"; +} +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4"; +} +.fa-comment-o:before { + content: "\f0e5"; +} +.fa-comments-o:before { + content: "\f0e6"; +} +.fa-flash:before, +.fa-bolt:before { + content: "\f0e7"; +} +.fa-sitemap:before { + content: "\f0e8"; +} +.fa-umbrella:before { + content: "\f0e9"; +} +.fa-paste:before, +.fa-clipboard:before { + content: "\f0ea"; +} +.fa-lightbulb-o:before { + content: "\f0eb"; +} +.fa-exchange:before { + content: "\f0ec"; +} +.fa-cloud-download:before { + content: "\f0ed"; +} +.fa-cloud-upload:before { + content: "\f0ee"; +} +.fa-user-md:before { + content: "\f0f0"; +} +.fa-stethoscope:before { + content: "\f0f1"; +} +.fa-suitcase:before { + content: "\f0f2"; +} +.fa-bell-o:before { + content: "\f0a2"; +} +.fa-coffee:before { + content: "\f0f4"; +} +.fa-cutlery:before { + content: "\f0f5"; +} +.fa-file-text-o:before { + content: "\f0f6"; +} +.fa-building-o:before { + content: "\f0f7"; +} +.fa-hospital-o:before { + content: "\f0f8"; +} +.fa-ambulance:before { + content: "\f0f9"; +} +.fa-medkit:before { + content: "\f0fa"; +} +.fa-fighter-jet:before { + content: "\f0fb"; +} +.fa-beer:before { + content: "\f0fc"; +} +.fa-h-square:before { + content: "\f0fd"; +} +.fa-plus-square:before { + content: "\f0fe"; +} +.fa-angle-double-left:before { + content: "\f100"; +} +.fa-angle-double-right:before { + content: "\f101"; +} +.fa-angle-double-up:before { + content: "\f102"; +} +.fa-angle-double-down:before { + content: "\f103"; +} +.fa-angle-left:before { + content: "\f104"; +} +.fa-angle-right:before { + content: "\f105"; +} +.fa-angle-up:before { + content: "\f106"; +} +.fa-angle-down:before { + content: "\f107"; +} +.fa-desktop:before { + content: "\f108"; +} +.fa-laptop:before { + content: "\f109"; +} +.fa-tablet:before { + content: "\f10a"; +} +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b"; +} +.fa-circle-o:before { + content: "\f10c"; +} +.fa-quote-left:before { + content: "\f10d"; +} +.fa-quote-right:before { + content: "\f10e"; +} +.fa-spinner:before { + content: "\f110"; +} +.fa-circle:before { + content: "\f111"; +} +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112"; +} +.fa-github-alt:before { + content: "\f113"; +} +.fa-folder-o:before { + content: "\f114"; +} +.fa-folder-open-o:before { + content: "\f115"; +} +.fa-smile-o:before { + content: "\f118"; +} +.fa-frown-o:before { + content: "\f119"; +} +.fa-meh-o:before { + content: "\f11a"; +} +.fa-gamepad:before { + content: "\f11b"; +} +.fa-keyboard-o:before { + content: "\f11c"; +} +.fa-flag-o:before { + content: "\f11d"; +} +.fa-flag-checkered:before { + content: "\f11e"; +} +.fa-terminal:before { + content: "\f120"; +} +.fa-code:before { + content: "\f121"; +} +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: "\f122"; +} +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123"; +} +.fa-location-arrow:before { + content: "\f124"; +} +.fa-crop:before { + content: "\f125"; +} +.fa-code-fork:before { + content: "\f126"; +} +.fa-unlink:before, +.fa-chain-broken:before { + content: "\f127"; +} +.fa-question:before { + content: "\f128"; +} +.fa-info:before { + content: "\f129"; +} +.fa-exclamation:before { + content: "\f12a"; +} +.fa-superscript:before { + content: "\f12b"; +} +.fa-subscript:before { + content: "\f12c"; +} +.fa-eraser:before { + content: "\f12d"; +} +.fa-puzzle-piece:before { + content: "\f12e"; +} +.fa-microphone:before { + content: "\f130"; +} +.fa-microphone-slash:before { + content: "\f131"; +} +.fa-shield:before { + content: "\f132"; +} +.fa-calendar-o:before { + content: "\f133"; +} +.fa-fire-extinguisher:before { + content: "\f134"; +} +.fa-rocket:before { + content: "\f135"; +} +.fa-maxcdn:before { + content: "\f136"; +} +.fa-chevron-circle-left:before { + content: "\f137"; +} +.fa-chevron-circle-right:before { + content: "\f138"; +} +.fa-chevron-circle-up:before { + content: "\f139"; +} +.fa-chevron-circle-down:before { + content: "\f13a"; +} +.fa-html5:before { + content: "\f13b"; +} +.fa-css3:before { + content: "\f13c"; +} +.fa-anchor:before { + content: "\f13d"; +} +.fa-unlock-alt:before { + content: "\f13e"; +} +.fa-bullseye:before { + content: "\f140"; +} +.fa-ellipsis-h:before { + content: "\f141"; +} +.fa-ellipsis-v:before { + content: "\f142"; +} +.fa-rss-square:before { + content: "\f143"; +} +.fa-play-circle:before { + content: "\f144"; +} +.fa-ticket:before { + content: "\f145"; +} +.fa-minus-square:before { + content: "\f146"; +} +.fa-minus-square-o:before { + content: "\f147"; +} +.fa-level-up:before { + content: "\f148"; +} +.fa-level-down:before { + content: "\f149"; +} +.fa-check-square:before { + content: "\f14a"; +} +.fa-pencil-square:before { + content: "\f14b"; +} +.fa-external-link-square:before { + content: "\f14c"; +} +.fa-share-square:before { + content: "\f14d"; +} +.fa-compass:before { + content: "\f14e"; +} +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: "\f150"; +} +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: "\f151"; +} +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: "\f152"; +} +.fa-euro:before, +.fa-eur:before { + content: "\f153"; +} +.fa-gbp:before { + content: "\f154"; +} +.fa-dollar:before, +.fa-usd:before { + content: "\f155"; +} +.fa-rupee:before, +.fa-inr:before { + content: "\f156"; +} +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: "\f157"; +} +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: "\f158"; +} +.fa-won:before, +.fa-krw:before { + content: "\f159"; +} +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a"; +} +.fa-file:before { + content: "\f15b"; +} +.fa-file-text:before { + content: "\f15c"; +} +.fa-sort-alpha-asc:before { + content: "\f15d"; +} +.fa-sort-alpha-desc:before { + content: "\f15e"; +} +.fa-sort-amount-asc:before { + content: "\f160"; +} +.fa-sort-amount-desc:before { + content: "\f161"; +} +.fa-sort-numeric-asc:before { + content: "\f162"; +} +.fa-sort-numeric-desc:before { + content: "\f163"; +} +.fa-thumbs-up:before { + content: "\f164"; +} +.fa-thumbs-down:before { + content: "\f165"; +} +.fa-youtube-square:before { + content: "\f166"; +} +.fa-youtube:before { + content: "\f167"; +} +.fa-xing:before { + content: "\f168"; +} +.fa-xing-square:before { + content: "\f169"; +} +.fa-youtube-play:before { + content: "\f16a"; +} +.fa-dropbox:before { + content: "\f16b"; +} +.fa-stack-overflow:before { + content: "\f16c"; +} +.fa-instagram:before { + content: "\f16d"; +} +.fa-flickr:before { + content: "\f16e"; +} +.fa-adn:before { + content: "\f170"; +} +.fa-bitbucket:before { + content: "\f171"; +} +.fa-bitbucket-square:before { + content: "\f172"; +} +.fa-tumblr:before { + content: "\f173"; +} +.fa-tumblr-square:before { + content: "\f174"; +} +.fa-long-arrow-down:before { + content: "\f175"; +} +.fa-long-arrow-up:before { + content: "\f176"; +} +.fa-long-arrow-left:before { + content: "\f177"; +} +.fa-long-arrow-right:before { + content: "\f178"; +} +.fa-apple:before { + content: "\f179"; +} +.fa-windows:before { + content: "\f17a"; +} +.fa-android:before { + content: "\f17b"; +} +.fa-linux:before { + content: "\f17c"; +} +.fa-dribbble:before { + content: "\f17d"; +} +.fa-skype:before { + content: "\f17e"; +} +.fa-foursquare:before { + content: "\f180"; +} +.fa-trello:before { + content: "\f181"; +} +.fa-female:before { + content: "\f182"; +} +.fa-male:before { + content: "\f183"; +} +.fa-gittip:before, +.fa-gratipay:before { + content: "\f184"; +} +.fa-sun-o:before { + content: "\f185"; +} +.fa-moon-o:before { + content: "\f186"; +} +.fa-archive:before { + content: "\f187"; +} +.fa-bug:before { + content: "\f188"; +} +.fa-vk:before { + content: "\f189"; +} +.fa-weibo:before { + content: "\f18a"; +} +.fa-renren:before { + content: "\f18b"; +} +.fa-pagelines:before { + content: "\f18c"; +} +.fa-stack-exchange:before { + content: "\f18d"; +} +.fa-arrow-circle-o-right:before { + content: "\f18e"; +} +.fa-arrow-circle-o-left:before { + content: "\f190"; +} +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: "\f191"; +} +.fa-dot-circle-o:before { + content: "\f192"; +} +.fa-wheelchair:before { + content: "\f193"; +} +.fa-vimeo-square:before { + content: "\f194"; +} +.fa-turkish-lira:before, +.fa-try:before { + content: "\f195"; +} +.fa-plus-square-o:before { + content: "\f196"; +} +.fa-space-shuttle:before { + content: "\f197"; +} +.fa-slack:before { + content: "\f198"; +} +.fa-envelope-square:before { + content: "\f199"; +} +.fa-wordpress:before { + content: "\f19a"; +} +.fa-openid:before { + content: "\f19b"; +} +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: "\f19c"; +} +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: "\f19d"; +} +.fa-yahoo:before { + content: "\f19e"; +} +.fa-google:before { + content: "\f1a0"; +} +.fa-reddit:before { + content: "\f1a1"; +} +.fa-reddit-square:before { + content: "\f1a2"; +} +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} +.fa-stumbleupon:before { + content: "\f1a4"; +} +.fa-delicious:before { + content: "\f1a5"; +} +.fa-digg:before { + content: "\f1a6"; +} +.fa-pied-piper:before { + content: "\f1a7"; +} +.fa-pied-piper-alt:before { + content: "\f1a8"; +} +.fa-drupal:before { + content: "\f1a9"; +} +.fa-joomla:before { + content: "\f1aa"; +} +.fa-language:before { + content: "\f1ab"; +} +.fa-fax:before { + content: "\f1ac"; +} +.fa-building:before { + content: "\f1ad"; +} +.fa-child:before { + content: "\f1ae"; +} +.fa-paw:before { + content: "\f1b0"; +} +.fa-spoon:before { + content: "\f1b1"; +} +.fa-cube:before { + content: "\f1b2"; +} +.fa-cubes:before { + content: "\f1b3"; +} +.fa-behance:before { + content: "\f1b4"; +} +.fa-behance-square:before { + content: "\f1b5"; +} +.fa-steam:before { + content: "\f1b6"; +} +.fa-steam-square:before { + content: "\f1b7"; +} +.fa-recycle:before { + content: "\f1b8"; +} +.fa-automobile:before, +.fa-car:before { + content: "\f1b9"; +} +.fa-cab:before, +.fa-taxi:before { + content: "\f1ba"; +} +.fa-tree:before { + content: "\f1bb"; +} +.fa-spotify:before { + content: "\f1bc"; +} +.fa-deviantart:before { + content: "\f1bd"; +} +.fa-soundcloud:before { + content: "\f1be"; +} +.fa-database:before { + content: "\f1c0"; +} +.fa-file-pdf-o:before { + content: "\f1c1"; +} +.fa-file-word-o:before { + content: "\f1c2"; +} +.fa-file-excel-o:before { + content: "\f1c3"; +} +.fa-file-powerpoint-o:before { + content: "\f1c4"; +} +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: "\f1c5"; +} +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: "\f1c6"; +} +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: "\f1c7"; +} +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: "\f1c8"; +} +.fa-file-code-o:before { + content: "\f1c9"; +} +.fa-vine:before { + content: "\f1ca"; +} +.fa-codepen:before { + content: "\f1cb"; +} +.fa-jsfiddle:before { + content: "\f1cc"; +} +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: "\f1cd"; +} +.fa-circle-o-notch:before { + content: "\f1ce"; +} +.fa-ra:before, +.fa-rebel:before { + content: "\f1d0"; +} +.fa-ge:before, +.fa-empire:before { + content: "\f1d1"; +} +.fa-git-square:before { + content: "\f1d2"; +} +.fa-git:before { + content: "\f1d3"; +} +.fa-y-combinator-square:before, +.fa-yc-square:before, +.fa-hacker-news:before { + content: "\f1d4"; +} +.fa-tencent-weibo:before { + content: "\f1d5"; +} +.fa-qq:before { + content: "\f1d6"; +} +.fa-wechat:before, +.fa-weixin:before { + content: "\f1d7"; +} +.fa-send:before, +.fa-paper-plane:before { + content: "\f1d8"; +} +.fa-send-o:before, +.fa-paper-plane-o:before { + content: "\f1d9"; +} +.fa-history:before { + content: "\f1da"; +} +.fa-circle-thin:before { + content: "\f1db"; +} +.fa-header:before { + content: "\f1dc"; +} +.fa-paragraph:before { + content: "\f1dd"; +} +.fa-sliders:before { + content: "\f1de"; +} +.fa-share-alt:before { + content: "\f1e0"; +} +.fa-share-alt-square:before { + content: "\f1e1"; +} +.fa-bomb:before { + content: "\f1e2"; +} +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: "\f1e3"; +} +.fa-tty:before { + content: "\f1e4"; +} +.fa-binoculars:before { + content: "\f1e5"; +} +.fa-plug:before { + content: "\f1e6"; +} +.fa-slideshare:before { + content: "\f1e7"; +} +.fa-twitch:before { + content: "\f1e8"; +} +.fa-yelp:before { + content: "\f1e9"; +} +.fa-newspaper-o:before { + content: "\f1ea"; +} +.fa-wifi:before { + content: "\f1eb"; +} +.fa-calculator:before { + content: "\f1ec"; +} +.fa-paypal:before { + content: "\f1ed"; +} +.fa-google-wallet:before { + content: "\f1ee"; +} +.fa-cc-visa:before { + content: "\f1f0"; +} +.fa-cc-mastercard:before { + content: "\f1f1"; +} +.fa-cc-discover:before { + content: "\f1f2"; +} +.fa-cc-amex:before { + content: "\f1f3"; +} +.fa-cc-paypal:before { + content: "\f1f4"; +} +.fa-cc-stripe:before { + content: "\f1f5"; +} +.fa-bell-slash:before { + content: "\f1f6"; +} +.fa-bell-slash-o:before { + content: "\f1f7"; +} +.fa-trash:before { + content: "\f1f8"; +} +.fa-copyright:before { + content: "\f1f9"; +} +.fa-at:before { + content: "\f1fa"; +} +.fa-eyedropper:before { + content: "\f1fb"; +} +.fa-paint-brush:before { + content: "\f1fc"; +} +.fa-birthday-cake:before { + content: "\f1fd"; +} +.fa-area-chart:before { + content: "\f1fe"; +} +.fa-pie-chart:before { + content: "\f200"; +} +.fa-line-chart:before { + content: "\f201"; +} +.fa-lastfm:before { + content: "\f202"; +} +.fa-lastfm-square:before { + content: "\f203"; +} +.fa-toggle-off:before { + content: "\f204"; +} +.fa-toggle-on:before { + content: "\f205"; +} +.fa-bicycle:before { + content: "\f206"; +} +.fa-bus:before { + content: "\f207"; +} +.fa-ioxhost:before { + content: "\f208"; +} +.fa-angellist:before { + content: "\f209"; +} +.fa-cc:before { + content: "\f20a"; +} +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: "\f20b"; +} +.fa-meanpath:before { + content: "\f20c"; +} +.fa-buysellads:before { + content: "\f20d"; +} +.fa-connectdevelop:before { + content: "\f20e"; +} +.fa-dashcube:before { + content: "\f210"; +} +.fa-forumbee:before { + content: "\f211"; +} +.fa-leanpub:before { + content: "\f212"; +} +.fa-sellsy:before { + content: "\f213"; +} +.fa-shirtsinbulk:before { + content: "\f214"; +} +.fa-simplybuilt:before { + content: "\f215"; +} +.fa-skyatlas:before { + content: "\f216"; +} +.fa-cart-plus:before { + content: "\f217"; +} +.fa-cart-arrow-down:before { + content: "\f218"; +} +.fa-diamond:before { + content: "\f219"; +} +.fa-ship:before { + content: "\f21a"; +} +.fa-user-secret:before { + content: "\f21b"; +} +.fa-motorcycle:before { + content: "\f21c"; +} +.fa-street-view:before { + content: "\f21d"; +} +.fa-heartbeat:before { + content: "\f21e"; +} +.fa-venus:before { + content: "\f221"; +} +.fa-mars:before { + content: "\f222"; +} +.fa-mercury:before { + content: "\f223"; +} +.fa-intersex:before, +.fa-transgender:before { + content: "\f224"; +} +.fa-transgender-alt:before { + content: "\f225"; +} +.fa-venus-double:before { + content: "\f226"; +} +.fa-mars-double:before { + content: "\f227"; +} +.fa-venus-mars:before { + content: "\f228"; +} +.fa-mars-stroke:before { + content: "\f229"; +} +.fa-mars-stroke-v:before { + content: "\f22a"; +} +.fa-mars-stroke-h:before { + content: "\f22b"; +} +.fa-neuter:before { + content: "\f22c"; +} +.fa-genderless:before { + content: "\f22d"; +} +.fa-facebook-official:before { + content: "\f230"; +} +.fa-pinterest-p:before { + content: "\f231"; +} +.fa-whatsapp:before { + content: "\f232"; +} +.fa-server:before { + content: "\f233"; +} +.fa-user-plus:before { + content: "\f234"; +} +.fa-user-times:before { + content: "\f235"; +} +.fa-hotel:before, +.fa-bed:before { + content: "\f236"; +} +.fa-viacoin:before { + content: "\f237"; +} +.fa-train:before { + content: "\f238"; +} +.fa-subway:before { + content: "\f239"; +} +.fa-medium:before { + content: "\f23a"; +} +.fa-yc:before, +.fa-y-combinator:before { + content: "\f23b"; +} +.fa-optin-monster:before { + content: "\f23c"; +} +.fa-opencart:before { + content: "\f23d"; +} +.fa-expeditedssl:before { + content: "\f23e"; +} +.fa-battery-4:before, +.fa-battery-full:before { + content: "\f240"; +} +.fa-battery-3:before, +.fa-battery-three-quarters:before { + content: "\f241"; +} +.fa-battery-2:before, +.fa-battery-half:before { + content: "\f242"; +} +.fa-battery-1:before, +.fa-battery-quarter:before { + content: "\f243"; +} +.fa-battery-0:before, +.fa-battery-empty:before { + content: "\f244"; +} +.fa-mouse-pointer:before { + content: "\f245"; +} +.fa-i-cursor:before { + content: "\f246"; +} +.fa-object-group:before { + content: "\f247"; +} +.fa-object-ungroup:before { + content: "\f248"; +} +.fa-sticky-note:before { + content: "\f249"; +} +.fa-sticky-note-o:before { + content: "\f24a"; +} +.fa-cc-jcb:before { + content: "\f24b"; +} +.fa-cc-diners-club:before { + content: "\f24c"; +} +.fa-clone:before { + content: "\f24d"; +} +.fa-balance-scale:before { + content: "\f24e"; +} +.fa-hourglass-o:before { + content: "\f250"; +} +.fa-hourglass-1:before, +.fa-hourglass-start:before { + content: "\f251"; +} +.fa-hourglass-2:before, +.fa-hourglass-half:before { + content: "\f252"; +} +.fa-hourglass-3:before, +.fa-hourglass-end:before { + content: "\f253"; +} +.fa-hourglass:before { + content: "\f254"; +} +.fa-hand-grab-o:before, +.fa-hand-rock-o:before { + content: "\f255"; +} +.fa-hand-stop-o:before, +.fa-hand-paper-o:before { + content: "\f256"; +} +.fa-hand-scissors-o:before { + content: "\f257"; +} +.fa-hand-lizard-o:before { + content: "\f258"; +} +.fa-hand-spock-o:before { + content: "\f259"; +} +.fa-hand-pointer-o:before { + content: "\f25a"; +} +.fa-hand-peace-o:before { + content: "\f25b"; +} +.fa-trademark:before { + content: "\f25c"; +} +.fa-registered:before { + content: "\f25d"; +} +.fa-creative-commons:before { + content: "\f25e"; +} +.fa-gg:before { + content: "\f260"; +} +.fa-gg-circle:before { + content: "\f261"; +} +.fa-tripadvisor:before { + content: "\f262"; +} +.fa-odnoklassniki:before { + content: "\f263"; +} +.fa-odnoklassniki-square:before { + content: "\f264"; +} +.fa-get-pocket:before { + content: "\f265"; +} +.fa-wikipedia-w:before { + content: "\f266"; +} +.fa-safari:before { + content: "\f267"; +} +.fa-chrome:before { + content: "\f268"; +} +.fa-firefox:before { + content: "\f269"; +} +.fa-opera:before { + content: "\f26a"; +} +.fa-internet-explorer:before { + content: "\f26b"; +} +.fa-tv:before, +.fa-television:before { + content: "\f26c"; +} +.fa-contao:before { + content: "\f26d"; +} +.fa-500px:before { + content: "\f26e"; +} +.fa-amazon:before { + content: "\f270"; +} +.fa-calendar-plus-o:before { + content: "\f271"; +} +.fa-calendar-minus-o:before { + content: "\f272"; +} +.fa-calendar-times-o:before { + content: "\f273"; +} +.fa-calendar-check-o:before { + content: "\f274"; +} +.fa-industry:before { + content: "\f275"; +} +.fa-map-pin:before { + content: "\f276"; +} +.fa-map-signs:before { + content: "\f277"; +} +.fa-map-o:before { + content: "\f278"; +} +.fa-map:before { + content: "\f279"; +} +.fa-commenting:before { + content: "\f27a"; +} +.fa-commenting-o:before { + content: "\f27b"; +} +.fa-houzz:before { + content: "\f27c"; +} +.fa-vimeo:before { + content: "\f27d"; +} +.fa-black-tie:before { + content: "\f27e"; +} +.fa-fonticons:before { + content: "\f280"; +} +@font-face { + font-family: 'h3raldicons'; + src: url('../fonts/h3raldicons-eot.eot?shwbn9'); + src: url('../fonts/h3raldicons-eot.eot?shwbn9#iefix') format('embedded-opentype'), url('../fonts/h3raldicons-ttf.ttf?shwbn9') format('truetype'), url('../fonts/h3raldicons-woff.woff?shwbn9') format('woff'), url('../fonts/h3raldicons-svg.svg?shwbn9#h3raldicons') format('svg'); + font-weight: normal; + font-style: normal; +} +[class^="h3-"], +[class*=" h3-"], +.h3raldicon { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'h3raldicons' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +/* Variables */ +/* Classes */ +.h3-css3-01:before { + content: "\e900"; +} +.h3-html5-01:before { + content: "\e901"; +} +.h3-prog-golang01:before { + content: "\e902"; +} +.h3-prog-bash02:before { + content: "\e903"; +} +.h3-prog-perl:before { + content: "\e904"; +} +.h3-prog-rails:before { + content: "\e905"; +} +.h3-prog-drupal:before { + content: "\e907"; +} +.h3-prog-php01:before { + content: "\e908"; +} +.h3-prog-nodejs01:before { + content: "\e909"; +} +.h3-prog-nodejs02:before { + content: "\e90a"; +} +.h3-prog-jquery:before { + content: "\e90b"; +} +.h3-prog-lua01:before { + content: "\e90c"; +} +.h3-prog-visualstudio:before { + content: "\e90d"; +} +.h3-prog-java:before { + content: "\e90e"; +} +.h3-prog-js02:before { + content: "\e90f"; +} +.h3-prog-objc:before { + content: "\e910"; +} +.h3-prog-ccplusplus:before { + content: "\e911"; +} +.h3-prog-cplusplus:before { + content: "\e912"; +} +.h3-prog-csharp:before { + content: "\e913"; +} +.h3-prog-js01:before { + content: "\e914"; +} +.h3-prog-ruby:before { + content: "\e915"; +} +.h3-prog-c:before { + content: "\e916"; +} +.h3-github-01:before { + content: "\e918"; +} +.h3-instagram:before { + content: "\e919"; +} +.h3-github-02:before { + content: "\e91a"; +} +.h3-angularjs:before { + content: "\e91b"; +} +.h3-prog-cakephp:before { + content: "\e91d"; +} +.h3-dropbox:before { + content: "\e91e"; +} +.h3-tl-toolbox:before { + content: "\e91f"; +} +.h3-vc-fossil:before { + content: "\e920"; +} +.h3-vc-bitbucket-01:before { + content: "\e921"; +} +.h3-vc-git:before { + content: "\e922"; +} +.h3-dbs-mongodb:before { + content: "\e923"; +} +.h3-dbs-mysql:before { + content: "\e924"; +} +.h3-os-apple:before { + content: "\e925"; +} +.h3-os-linux:before { + content: "\e926"; +} +.h3-os-win-04:before { + content: "\e927"; +} +.h3-os-ios:before { + content: "\e928"; +} +.h3-brw-chrome:before { + content: "\e929"; +} +.h3-dbs-sqlite:before { + content: "\e92a"; +} +.h3-os-osx_1:before { + content: "\e92b"; +} +.h3-brw-firefox:before { + content: "\e92c"; +} +.h3-brw-safari-01:before { + content: "\e92d"; +} +.h3-brw-safari-02:before { + content: "\e92e"; +} +.h3-brw-explorer:before { + content: "\e92f"; +} +.h3-brw-opera:before { + content: "\e930"; +} +.h3-android:before { + content: "\e931"; +} +.h3-hc-book-02:before { + content: "\e932"; +} +.h3-lb-book-01:before { + content: "\e933"; +} +.h3-lb-book-02:before { + content: "\e934"; +} +.h3-calendar-empty:before { + content: "\e936"; +} +.h3-terminal:before { + content: "\e937"; +} +.h3-clock:before { + content: "\e938"; +} +.h3-windows:before { + content: "\e939"; +} +.h3-twitter:before { + content: "\e93b"; +} +.h3-twitter-alt:before { + content: "\e93c"; +} +.h3-stumble_upon:before { + content: "\e93d"; +} +.h3-skype:before { + content: "\e93e"; +} +.h3-share:before { + content: "\e93f"; +} +.h3-reddit:before { + content: "\e940"; +} +.h3-rss:before { + content: "\e941"; +} +.h3-paypal:before { + content: "\e942"; +} +.h3-mail:before { + content: "\e943"; +} +.h3-amazon:before { + content: "\e944"; +} +.h3-tags:before { + content: "\e945"; +} +.h3-pin-3:before { + content: "\e947"; +} +.h3-tag:before { + content: "\e948"; +} +.h3-tablet:before { + content: "\e949"; +} +.h3-mobile:before { + content: "\e94b"; +} +.h3-google:before { + content: "\e94c"; +} +.h3-gmail:before { + content: "\e94d"; +} +.h3-foursquare_2:before { + content: "\e94e"; +} +.h3-com-laptop:before { + content: "\e950"; +} +.h3-foursquare_1:before { + content: "\e951"; +} +.h3-linkedin:before { + content: "\e952"; +} +.h3-anchor:before { + content: "\e906"; +} +.h3-axe:before { + content: "\e917"; +} +.h3-battered-axe:before { + content: "\e91c"; +} +.h3-bolt-shield:before { + content: "\e935"; +} +.h3-book:before { + content: "\e93a"; +} +.h3-broadsword:before { + content: "\e946"; +} +.h3-broken-shield:before { + content: "\e94a"; +} +.h3-burning-embers:before { + content: "\e94f"; +} +.h3-campfire:before { + content: "\e954"; +} +.h3-candle-fire:before { + content: "\e957"; +} +.h3-candle:before { + content: "\e958"; +} +.h3-capitol:before { + content: "\e95a"; +} +.h3-castle-emblem:before { + content: "\e95d"; +} +.h3-clockwork:before { + content: "\e969"; +} +.h3-clovers-card:before { + content: "\e96b"; +} +.h3-cog:before { + content: "\e970"; +} +.h3-cracked-shield:before { + content: "\e976"; +} +.h3-crossed-axes:before { + content: "\e979"; +} +.h3-crossed-sabres:before { + content: "\e97c"; +} +.h3-crossed-swords:before { + content: "\e97d"; +} +.h3-crystal-ball:before { + content: "\e982"; +} +.h3-daggers:before { + content: "\e989"; +} +.h3-diamond:before { + content: "\e992"; +} +.h3-diamonds-card:before { + content: "\e993"; +} +.h3-diamonds:before { + content: "\e994"; +} +.h3-dice-five:before { + content: "\e995"; +} +.h3-dice-four:before { + content: "\e996"; +} +.h3-dice-one:before { + content: "\e997"; +} +.h3-dice-six:before { + content: "\e998"; +} +.h3-dice-three:before { + content: "\e999"; +} +.h3-dice-two:before { + content: "\e99a"; +} +.h3-emerald:before { + content: "\e9af"; +} +.h3-eye-shield:before { + content: "\e9b4"; +} +.h3-feather-wing:before { + content: "\e9bb"; +} +.h3-feathered-wing:before { + content: "\e9bc"; +} +.h3-fire-shield:before { + content: "\e9c1"; +} +.h3-fire:before { + content: "\e9c3"; +} +.h3-fizzing-flask:before { + content: "\e9c6"; +} +.h3-flame-symbol:before { + content: "\e9c7"; +} +.h3-flat-hammer:before { + content: "\e9cc"; +} +.h3-forging:before { + content: "\e9d3"; +} +.h3-gear-hammer:before { + content: "\e9db"; +} +.h3-hammer:before { + content: "\e9ee"; +} +.h3-hand-emblem:before { + content: "\e9ef"; +} +.h3-hearts-card:before { + content: "\e9f9"; +} +.h3-heavy-shield:before { + content: "\e9fd"; +} +.h3-helmet:before { + content: "\e9fe"; +} +.h3-help:before { + content: "\e9ff"; +} +.h3-hydra:before { + content: "\ea0b"; +} +.h3-ice-cube:before { + content: "\ea0c"; +} +.h3-jigsaw-piece:before { + content: "\ea12"; +} +.h3-kettlebell:before { + content: "\ea14"; +} +.h3-key:before { + content: "\ea16"; +} +.h3-knife:before { + content: "\ea19"; +} +.h3-large-hammer:before { + content: "\ea1d"; +} +.h3-leaf:before { + content: "\ea21"; +} +.h3-lightning-bolt:before { + content: "\ea2d"; +} +.h3-lightning-trio:before { + content: "\ea30"; +} +.h3-load:before { + content: "\ea34"; +} +.h3-match:before { + content: "\ea3a"; +} +.h3-musket:before { + content: "\ea49"; +} +.h3-nuclear:before { + content: "\ea4d"; +} +.h3-octopus:before { + content: "\ea50"; +} +.h3-overhead:before { + content: "\ea54"; +} +.h3-perspective-dice-five:before { + content: "\ea59"; +} +.h3-perspective-dice-four:before { + content: "\ea5a"; +} +.h3-perspective-dice-one:before { + content: "\ea5b"; +} +.h3-perspective-dice-random:before { + content: "\ea5c"; +} +.h3-perspective-dice-six-two:before { + content: "\ea5d"; +} +.h3-perspective-dice-six:before { + content: "\ea5e"; +} +.h3-perspective-dice-three:before { + content: "\ea5f"; +} +.h3-potion:before { + content: "\ea72"; +} +.h3-quill-ink:before { + content: "\ea75"; +} +.h3-raven:before { + content: "\ea7a"; +} +.h3-relic-blade:before { + content: "\ea7e"; +} +.h3-round-shield:before { + content: "\ea87"; +} +.h3-rune-stone:before { + content: "\ea89"; +} +.h3-sapphire:before { + content: "\ea8b"; +} +.h3-save:before { + content: "\ea8d"; +} +.h3-scroll-unfurled:before { + content: "\ea8f"; +} +.h3-seagull:before { + content: "\ea92"; +} +.h3-shield:before { + content: "\ea96"; +} +.h3-sickle:before { + content: "\ea9d"; +} +.h3-sideswipe:before { + content: "\ea9e"; +} +.h3-small-fire:before { + content: "\eaa3"; +} +.h3-spades-card:before { + content: "\eaa9"; +} +.h3-speech-bubble:before { + content: "\eaad"; +} +.h3-speech-bubbles:before { + content: "\eaae"; +} +.h3-target-arrows:before { + content: "\eac3"; +} +.h3-telescope:before { + content: "\eac7"; +} +.h3-three-keys:before { + content: "\eacc"; +} +.h3-tower:before { + content: "\ead2"; +} +.h3-trefoil-lily:before { + content: "\ead4"; +} +.h3-trident:before { + content: "\ead5"; +} +.h3-trophy:before { + content: "\ead7"; +} +.h3-underhand:before { + content: "\eadc"; +} +.h3-vase:before { + content: "\eade"; +} +.h3-vial:before { + content: "\eae1"; +} +.h3-wooden-sign:before { + content: "\eae9"; +} +.h3-wyvern:before { + content: "\eaeb"; +} +/*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-eot.eot?v=4.3.0'); + src: url('../fonts/fontawesome-eot.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-woff2.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-woff.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-ttf.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-svg.svg?v=4.3.0#fontawesomeregular') format('svg'); + font-weight: normal; + font-style: normal; +} +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + transform: translate(0, 0); +} +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.fa-2x { + font-size: 2em; +} +.fa-3x { + font-size: 3em; +} +.fa-4x { + font-size: 4em; +} +.fa-5x { + font-size: 5em; +} +.fa-fw { + width: 1.28571429em; + text-align: center; +} +.fa-ul { + padding-left: 0; + margin-left: 2.14285714em; + list-style-type: none; +} +.fa-ul > li { + position: relative; +} +.fa-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: 0.14285714em; + text-align: center; +} +.fa-li.fa-lg { + left: -1.85714286em; +} +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + border-radius: .1em; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.fa.pull-left { + margin-right: .3em; +} +.fa.pull-right { + margin-left: .3em; +} +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +.fa-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} +.fa-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} +.fa-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} +.fa-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.fa-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); +} +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + filter: none; +} +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.fa-stack-1x, +.fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.fa-stack-1x { + line-height: inherit; +} +.fa-stack-2x { + font-size: 2em; +} +.fa-inverse { + color: #ffffff; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-glass:before { + content: "\f000"; +} +.fa-music:before { + content: "\f001"; +} +.fa-search:before { + content: "\f002"; +} +.fa-envelope-o:before { + content: "\f003"; +} +.fa-heart:before { + content: "\f004"; +} +.fa-star:before { + content: "\f005"; +} +.fa-star-o:before { + content: "\f006"; +} +.fa-user:before { + content: "\f007"; +} +.fa-film:before { + content: "\f008"; +} +.fa-th-large:before { + content: "\f009"; +} +.fa-th:before { + content: "\f00a"; +} +.fa-th-list:before { + content: "\f00b"; +} +.fa-check:before { + content: "\f00c"; +} +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: "\f00d"; +} +.fa-search-plus:before { + content: "\f00e"; +} +.fa-search-minus:before { + content: "\f010"; +} +.fa-power-off:before { + content: "\f011"; +} +.fa-signal:before { + content: "\f012"; +} +.fa-gear:before, +.fa-cog:before { + content: "\f013"; +} +.fa-trash-o:before { + content: "\f014"; +} +.fa-home:before { + content: "\f015"; +} +.fa-file-o:before { + content: "\f016"; +} +.fa-clock-o:before { + content: "\f017"; +} +.fa-road:before { + content: "\f018"; +} +.fa-download:before { + content: "\f019"; +} +.fa-arrow-circle-o-down:before { + content: "\f01a"; +} +.fa-arrow-circle-o-up:before { + content: "\f01b"; +} +.fa-inbox:before { + content: "\f01c"; +} +.fa-play-circle-o:before { + content: "\f01d"; +} +.fa-rotate-right:before, +.fa-repeat:before { + content: "\f01e"; +} +.fa-refresh:before { + content: "\f021"; +} +.fa-list-alt:before { + content: "\f022"; +} +.fa-lock:before { + content: "\f023"; +} +.fa-flag:before { + content: "\f024"; +} +.fa-headphones:before { + content: "\f025"; +} +.fa-volume-off:before { + content: "\f026"; +} +.fa-volume-down:before { + content: "\f027"; +} +.fa-volume-up:before { + content: "\f028"; +} +.fa-qrcode:before { + content: "\f029"; +} +.fa-barcode:before { + content: "\f02a"; +} +.fa-tag:before { + content: "\f02b"; +} +.fa-tags:before { + content: "\f02c"; +} +.fa-book:before { + content: "\f02d"; +} +.fa-bookmark:before { + content: "\f02e"; +} +.fa-print:before { + content: "\f02f"; +} +.fa-camera:before { + content: "\f030"; +} +.fa-font:before { + content: "\f031"; +} +.fa-bold:before { + content: "\f032"; +} +.fa-italic:before { + content: "\f033"; +} +.fa-text-height:before { + content: "\f034"; +} +.fa-text-width:before { + content: "\f035"; +} +.fa-align-left:before { + content: "\f036"; +} +.fa-align-center:before { + content: "\f037"; +} +.fa-align-right:before { + content: "\f038"; +} +.fa-align-justify:before { + content: "\f039"; +} +.fa-list:before { + content: "\f03a"; +} +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b"; +} +.fa-indent:before { + content: "\f03c"; +} +.fa-video-camera:before { + content: "\f03d"; +} +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: "\f03e"; +} +.fa-pencil:before { + content: "\f040"; +} +.fa-map-marker:before { + content: "\f041"; +} +.fa-adjust:before { + content: "\f042"; +} +.fa-tint:before { + content: "\f043"; +} +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044"; +} +.fa-share-square-o:before { + content: "\f045"; +} +.fa-check-square-o:before { + content: "\f046"; +} +.fa-arrows:before { + content: "\f047"; +} +.fa-step-backward:before { + content: "\f048"; +} +.fa-fast-backward:before { + content: "\f049"; +} +.fa-backward:before { + content: "\f04a"; +} +.fa-play:before { + content: "\f04b"; +} +.fa-pause:before { + content: "\f04c"; +} +.fa-stop:before { + content: "\f04d"; +} +.fa-forward:before { + content: "\f04e"; +} +.fa-fast-forward:before { + content: "\f050"; +} +.fa-step-forward:before { + content: "\f051"; +} +.fa-eject:before { + content: "\f052"; +} +.fa-chevron-left:before { + content: "\f053"; +} +.fa-chevron-right:before { + content: "\f054"; +} +.fa-plus-circle:before { + content: "\f055"; +} +.fa-minus-circle:before { + content: "\f056"; +} +.fa-times-circle:before { + content: "\f057"; +} +.fa-check-circle:before { + content: "\f058"; +} +.fa-question-circle:before { + content: "\f059"; +} +.fa-info-circle:before { + content: "\f05a"; +} +.fa-crosshairs:before { + content: "\f05b"; +} +.fa-times-circle-o:before { + content: "\f05c"; +} +.fa-check-circle-o:before { + content: "\f05d"; +} +.fa-ban:before { + content: "\f05e"; +} +.fa-arrow-left:before { + content: "\f060"; +} +.fa-arrow-right:before { + content: "\f061"; +} +.fa-arrow-up:before { + content: "\f062"; +} +.fa-arrow-down:before { + content: "\f063"; +} +.fa-mail-forward:before, +.fa-share:before { + content: "\f064"; +} +.fa-expand:before { + content: "\f065"; +} +.fa-compress:before { + content: "\f066"; +} +.fa-plus:before { + content: "\f067"; +} +.fa-minus:before { + content: "\f068"; +} +.fa-asterisk:before { + content: "\f069"; +} +.fa-exclamation-circle:before { + content: "\f06a"; +} +.fa-gift:before { + content: "\f06b"; +} +.fa-leaf:before { + content: "\f06c"; +} +.fa-fire:before { + content: "\f06d"; +} +.fa-eye:before { + content: "\f06e"; +} +.fa-eye-slash:before { + content: "\f070"; +} +.fa-warning:before, +.fa-exclamation-triangle:before { + content: "\f071"; +} +.fa-plane:before { + content: "\f072"; +} +.fa-calendar:before { + content: "\f073"; +} +.fa-random:before { + content: "\f074"; +} +.fa-comment:before { + content: "\f075"; +} +.fa-magnet:before { + content: "\f076"; +} +.fa-chevron-up:before { + content: "\f077"; +} +.fa-chevron-down:before { + content: "\f078"; +} +.fa-retweet:before { + content: "\f079"; +} +.fa-shopping-cart:before { + content: "\f07a"; +} +.fa-folder:before { + content: "\f07b"; +} +.fa-folder-open:before { + content: "\f07c"; +} +.fa-arrows-v:before { + content: "\f07d"; +} +.fa-arrows-h:before { + content: "\f07e"; +} +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: "\f080"; +} +.fa-twitter-square:before { + content: "\f081"; +} +.fa-facebook-square:before { + content: "\f082"; +} +.fa-camera-retro:before { + content: "\f083"; +} +.fa-key:before { + content: "\f084"; +} +.fa-gears:before, +.fa-cogs:before { + content: "\f085"; +} +.fa-comments:before { + content: "\f086"; +} +.fa-thumbs-o-up:before { + content: "\f087"; +} +.fa-thumbs-o-down:before { + content: "\f088"; +} +.fa-star-half:before { + content: "\f089"; +} +.fa-heart-o:before { + content: "\f08a"; +} +.fa-sign-out:before { + content: "\f08b"; +} +.fa-linkedin-square:before { + content: "\f08c"; +} +.fa-thumb-tack:before { + content: "\f08d"; +} +.fa-external-link:before { + content: "\f08e"; +} +.fa-sign-in:before { + content: "\f090"; +} +.fa-trophy:before { + content: "\f091"; +} +.fa-github-square:before { + content: "\f092"; +} +.fa-upload:before { + content: "\f093"; +} +.fa-lemon-o:before { + content: "\f094"; +} +.fa-phone:before { + content: "\f095"; +} +.fa-square-o:before { + content: "\f096"; +} +.fa-bookmark-o:before { + content: "\f097"; +} +.fa-phone-square:before { + content: "\f098"; +} +.fa-twitter:before { + content: "\f099"; +} +.fa-facebook-f:before, +.fa-facebook:before { + content: "\f09a"; +} +.fa-github:before { + content: "\f09b"; +} +.fa-unlock:before { + content: "\f09c"; +} +.fa-credit-card:before { + content: "\f09d"; +} +.fa-rss:before { + content: "\f09e"; +} +.fa-hdd-o:before { + content: "\f0a0"; +} +.fa-bullhorn:before { + content: "\f0a1"; +} +.fa-bell:before { + content: "\f0f3"; +} +.fa-certificate:before { + content: "\f0a3"; +} +.fa-hand-o-right:before { + content: "\f0a4"; +} +.fa-hand-o-left:before { + content: "\f0a5"; +} +.fa-hand-o-up:before { + content: "\f0a6"; +} +.fa-hand-o-down:before { + content: "\f0a7"; +} +.fa-arrow-circle-left:before { + content: "\f0a8"; +} +.fa-arrow-circle-right:before { + content: "\f0a9"; +} +.fa-arrow-circle-up:before { + content: "\f0aa"; +} +.fa-arrow-circle-down:before { + content: "\f0ab"; +} +.fa-globe:before { + content: "\f0ac"; +} +.fa-wrench:before { + content: "\f0ad"; +} +.fa-tasks:before { + content: "\f0ae"; +} +.fa-filter:before { + content: "\f0b0"; +} +.fa-briefcase:before { + content: "\f0b1"; +} +.fa-arrows-alt:before { + content: "\f0b2"; +} +.fa-group:before, +.fa-users:before { + content: "\f0c0"; +} +.fa-chain:before, +.fa-link:before { + content: "\f0c1"; +} +.fa-cloud:before { + content: "\f0c2"; +} +.fa-flask:before { + content: "\f0c3"; +} +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4"; +} +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5"; +} +.fa-paperclip:before { + content: "\f0c6"; +} +.fa-save:before, +.fa-floppy-o:before { + content: "\f0c7"; +} +.fa-square:before { + content: "\f0c8"; +} +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: "\f0c9"; +} +.fa-list-ul:before { + content: "\f0ca"; +} +.fa-list-ol:before { + content: "\f0cb"; +} +.fa-strikethrough:before { + content: "\f0cc"; +} +.fa-underline:before { + content: "\f0cd"; +} +.fa-table:before { + content: "\f0ce"; +} +.fa-magic:before { + content: "\f0d0"; +} +.fa-truck:before { + content: "\f0d1"; +} +.fa-pinterest:before { + content: "\f0d2"; +} +.fa-pinterest-square:before { + content: "\f0d3"; +} +.fa-google-plus-square:before { + content: "\f0d4"; +} +.fa-google-plus:before { + content: "\f0d5"; +} +.fa-money:before { + content: "\f0d6"; +} +.fa-caret-down:before { + content: "\f0d7"; +} +.fa-caret-up:before { + content: "\f0d8"; +} +.fa-caret-left:before { + content: "\f0d9"; +} +.fa-caret-right:before { + content: "\f0da"; +} +.fa-columns:before { + content: "\f0db"; +} +.fa-unsorted:before, +.fa-sort:before { + content: "\f0dc"; +} +.fa-sort-down:before, +.fa-sort-desc:before { + content: "\f0dd"; +} +.fa-sort-up:before, +.fa-sort-asc:before { + content: "\f0de"; +} +.fa-envelope:before { + content: "\f0e0"; +} +.fa-linkedin:before { + content: "\f0e1"; +} +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2"; +} +.fa-legal:before, +.fa-gavel:before { + content: "\f0e3"; +} +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4"; +} +.fa-comment-o:before { + content: "\f0e5"; +} +.fa-comments-o:before { + content: "\f0e6"; +} +.fa-flash:before, +.fa-bolt:before { + content: "\f0e7"; +} +.fa-sitemap:before { + content: "\f0e8"; +} +.fa-umbrella:before { + content: "\f0e9"; +} +.fa-paste:before, +.fa-clipboard:before { + content: "\f0ea"; +} +.fa-lightbulb-o:before { + content: "\f0eb"; +} +.fa-exchange:before { + content: "\f0ec"; +} +.fa-cloud-download:before { + content: "\f0ed"; +} +.fa-cloud-upload:before { + content: "\f0ee"; +} +.fa-user-md:before { + content: "\f0f0"; +} +.fa-stethoscope:before { + content: "\f0f1"; +} +.fa-suitcase:before { + content: "\f0f2"; +} +.fa-bell-o:before { + content: "\f0a2"; +} +.fa-coffee:before { + content: "\f0f4"; +} +.fa-cutlery:before { + content: "\f0f5"; +} +.fa-file-text-o:before { + content: "\f0f6"; +} +.fa-building-o:before { + content: "\f0f7"; +} +.fa-hospital-o:before { + content: "\f0f8"; +} +.fa-ambulance:before { + content: "\f0f9"; +} +.fa-medkit:before { + content: "\f0fa"; +} +.fa-fighter-jet:before { + content: "\f0fb"; +} +.fa-beer:before { + content: "\f0fc"; +} +.fa-h-square:before { + content: "\f0fd"; +} +.fa-plus-square:before { + content: "\f0fe"; +} +.fa-angle-double-left:before { + content: "\f100"; +} +.fa-angle-double-right:before { + content: "\f101"; +} +.fa-angle-double-up:before { + content: "\f102"; +} +.fa-angle-double-down:before { + content: "\f103"; +} +.fa-angle-left:before { + content: "\f104"; +} +.fa-angle-right:before { + content: "\f105"; +} +.fa-angle-up:before { + content: "\f106"; +} +.fa-angle-down:before { + content: "\f107"; +} +.fa-desktop:before { + content: "\f108"; +} +.fa-laptop:before { + content: "\f109"; +} +.fa-tablet:before { + content: "\f10a"; +} +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b"; +} +.fa-circle-o:before { + content: "\f10c"; +} +.fa-quote-left:before { + content: "\f10d"; +} +.fa-quote-right:before { + content: "\f10e"; +} +.fa-spinner:before { + content: "\f110"; +} +.fa-circle:before { + content: "\f111"; +} +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112"; +} +.fa-github-alt:before { + content: "\f113"; +} +.fa-folder-o:before { + content: "\f114"; +} +.fa-folder-open-o:before { + content: "\f115"; +} +.fa-smile-o:before { + content: "\f118"; +} +.fa-frown-o:before { + content: "\f119"; +} +.fa-meh-o:before { + content: "\f11a"; +} +.fa-gamepad:before { + content: "\f11b"; +} +.fa-keyboard-o:before { + content: "\f11c"; +} +.fa-flag-o:before { + content: "\f11d"; +} +.fa-flag-checkered:before { + content: "\f11e"; +} +.fa-terminal:before { + content: "\f120"; +} +.fa-code:before { + content: "\f121"; +} +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: "\f122"; +} +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123"; +} +.fa-location-arrow:before { + content: "\f124"; +} +.fa-crop:before { + content: "\f125"; +} +.fa-code-fork:before { + content: "\f126"; +} +.fa-unlink:before, +.fa-chain-broken:before { + content: "\f127"; +} +.fa-question:before { + content: "\f128"; +} +.fa-info:before { + content: "\f129"; +} +.fa-exclamation:before { + content: "\f12a"; +} +.fa-superscript:before { + content: "\f12b"; +} +.fa-subscript:before { + content: "\f12c"; +} +.fa-eraser:before { + content: "\f12d"; +} +.fa-puzzle-piece:before { + content: "\f12e"; +} +.fa-microphone:before { + content: "\f130"; +} +.fa-microphone-slash:before { + content: "\f131"; +} +.fa-shield:before { + content: "\f132"; +} +.fa-calendar-o:before { + content: "\f133"; +} +.fa-fire-extinguisher:before { + content: "\f134"; +} +.fa-rocket:before { + content: "\f135"; +} +.fa-maxcdn:before { + content: "\f136"; +} +.fa-chevron-circle-left:before { + content: "\f137"; +} +.fa-chevron-circle-right:before { + content: "\f138"; +} +.fa-chevron-circle-up:before { + content: "\f139"; +} +.fa-chevron-circle-down:before { + content: "\f13a"; +} +.fa-html5:before { + content: "\f13b"; +} +.fa-css3:before { + content: "\f13c"; +} +.fa-anchor:before { + content: "\f13d"; +} +.fa-unlock-alt:before { + content: "\f13e"; +} +.fa-bullseye:before { + content: "\f140"; +} +.fa-ellipsis-h:before { + content: "\f141"; +} +.fa-ellipsis-v:before { + content: "\f142"; +} +.fa-rss-square:before { + content: "\f143"; +} +.fa-play-circle:before { + content: "\f144"; +} +.fa-ticket:before { + content: "\f145"; +} +.fa-minus-square:before { + content: "\f146"; +} +.fa-minus-square-o:before { + content: "\f147"; +} +.fa-level-up:before { + content: "\f148"; +} +.fa-level-down:before { + content: "\f149"; +} +.fa-check-square:before { + content: "\f14a"; +} +.fa-pencil-square:before { + content: "\f14b"; +} +.fa-external-link-square:before { + content: "\f14c"; +} +.fa-share-square:before { + content: "\f14d"; +} +.fa-compass:before { + content: "\f14e"; +} +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: "\f150"; +} +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: "\f151"; +} +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: "\f152"; +} +.fa-euro:before, +.fa-eur:before { + content: "\f153"; +} +.fa-gbp:before { + content: "\f154"; +} +.fa-dollar:before, +.fa-usd:before { + content: "\f155"; +} +.fa-rupee:before, +.fa-inr:before { + content: "\f156"; +} +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: "\f157"; +} +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: "\f158"; +} +.fa-won:before, +.fa-krw:before { + content: "\f159"; +} +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a"; +} +.fa-file:before { + content: "\f15b"; +} +.fa-file-text:before { + content: "\f15c"; +} +.fa-sort-alpha-asc:before { + content: "\f15d"; +} +.fa-sort-alpha-desc:before { + content: "\f15e"; +} +.fa-sort-amount-asc:before { + content: "\f160"; +} +.fa-sort-amount-desc:before { + content: "\f161"; +} +.fa-sort-numeric-asc:before { + content: "\f162"; +} +.fa-sort-numeric-desc:before { + content: "\f163"; +} +.fa-thumbs-up:before { + content: "\f164"; +} +.fa-thumbs-down:before { + content: "\f165"; +} +.fa-youtube-square:before { + content: "\f166"; +} +.fa-youtube:before { + content: "\f167"; +} +.fa-xing:before { + content: "\f168"; +} +.fa-xing-square:before { + content: "\f169"; +} +.fa-youtube-play:before { + content: "\f16a"; +} +.fa-dropbox:before { + content: "\f16b"; +} +.fa-stack-overflow:before { + content: "\f16c"; +} +.fa-instagram:before { + content: "\f16d"; +} +.fa-flickr:before { + content: "\f16e"; +} +.fa-adn:before { + content: "\f170"; +} +.fa-bitbucket:before { + content: "\f171"; +} +.fa-bitbucket-square:before { + content: "\f172"; +} +.fa-tumblr:before { + content: "\f173"; +} +.fa-tumblr-square:before { + content: "\f174"; +} +.fa-long-arrow-down:before { + content: "\f175"; +} +.fa-long-arrow-up:before { + content: "\f176"; +} +.fa-long-arrow-left:before { + content: "\f177"; +} +.fa-long-arrow-right:before { + content: "\f178"; +} +.fa-apple:before { + content: "\f179"; +} +.fa-windows:before { + content: "\f17a"; +} +.fa-android:before { + content: "\f17b"; +} +.fa-linux:before { + content: "\f17c"; +} +.fa-dribbble:before { + content: "\f17d"; +} +.fa-skype:before { + content: "\f17e"; +} +.fa-foursquare:before { + content: "\f180"; +} +.fa-trello:before { + content: "\f181"; +} +.fa-female:before { + content: "\f182"; +} +.fa-male:before { + content: "\f183"; +} +.fa-gittip:before, +.fa-gratipay:before { + content: "\f184"; +} +.fa-sun-o:before { + content: "\f185"; +} +.fa-moon-o:before { + content: "\f186"; +} +.fa-archive:before { + content: "\f187"; +} +.fa-bug:before { + content: "\f188"; +} +.fa-vk:before { + content: "\f189"; +} +.fa-weibo:before { + content: "\f18a"; +} +.fa-renren:before { + content: "\f18b"; +} +.fa-pagelines:before { + content: "\f18c"; +} +.fa-stack-exchange:before { + content: "\f18d"; +} +.fa-arrow-circle-o-right:before { + content: "\f18e"; +} +.fa-arrow-circle-o-left:before { + content: "\f190"; +} +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: "\f191"; +} +.fa-dot-circle-o:before { + content: "\f192"; +} +.fa-wheelchair:before { + content: "\f193"; +} +.fa-vimeo-square:before { + content: "\f194"; +} +.fa-turkish-lira:before, +.fa-try:before { + content: "\f195"; +} +.fa-plus-square-o:before { + content: "\f196"; +} +.fa-space-shuttle:before { + content: "\f197"; +} +.fa-slack:before { + content: "\f198"; +} +.fa-envelope-square:before { + content: "\f199"; +} +.fa-wordpress:before { + content: "\f19a"; +} +.fa-openid:before { + content: "\f19b"; +} +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: "\f19c"; +} +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: "\f19d"; +} +.fa-yahoo:before { + content: "\f19e"; +} +.fa-google:before { + content: "\f1a0"; +} +.fa-reddit:before { + content: "\f1a1"; +} +.fa-reddit-square:before { + content: "\f1a2"; +} +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} +.fa-stumbleupon:before { + content: "\f1a4"; +} +.fa-delicious:before { + content: "\f1a5"; +} +.fa-digg:before { + content: "\f1a6"; +} +.fa-pied-piper:before { + content: "\f1a7"; +} +.fa-pied-piper-alt:before { + content: "\f1a8"; +} +.fa-drupal:before { + content: "\f1a9"; +} +.fa-joomla:before { + content: "\f1aa"; +} +.fa-language:before { + content: "\f1ab"; +} +.fa-fax:before { + content: "\f1ac"; +} +.fa-building:before { + content: "\f1ad"; +} +.fa-child:before { + content: "\f1ae"; +} +.fa-paw:before { + content: "\f1b0"; +} +.fa-spoon:before { + content: "\f1b1"; +} +.fa-cube:before { + content: "\f1b2"; +} +.fa-cubes:before { + content: "\f1b3"; +} +.fa-behance:before { + content: "\f1b4"; +} +.fa-behance-square:before { + content: "\f1b5"; +} +.fa-steam:before { + content: "\f1b6"; +} +.fa-steam-square:before { + content: "\f1b7"; +} +.fa-recycle:before { + content: "\f1b8"; +} +.fa-automobile:before, +.fa-car:before { + content: "\f1b9"; +} +.fa-cab:before, +.fa-taxi:before { + content: "\f1ba"; +} +.fa-tree:before { + content: "\f1bb"; +} +.fa-spotify:before { + content: "\f1bc"; +} +.fa-deviantart:before { + content: "\f1bd"; +} +.fa-soundcloud:before { + content: "\f1be"; +} +.fa-database:before { + content: "\f1c0"; +} +.fa-file-pdf-o:before { + content: "\f1c1"; +} +.fa-file-word-o:before { + content: "\f1c2"; +} +.fa-file-excel-o:before { + content: "\f1c3"; +} +.fa-file-powerpoint-o:before { + content: "\f1c4"; +} +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: "\f1c5"; +} +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: "\f1c6"; +} +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: "\f1c7"; +} +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: "\f1c8"; +} +.fa-file-code-o:before { + content: "\f1c9"; +} +.fa-vine:before { + content: "\f1ca"; +} +.fa-codepen:before { + content: "\f1cb"; +} +.fa-jsfiddle:before { + content: "\f1cc"; +} +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: "\f1cd"; +} +.fa-circle-o-notch:before { + content: "\f1ce"; +} +.fa-ra:before, +.fa-rebel:before { + content: "\f1d0"; +} +.fa-ge:before, +.fa-empire:before { + content: "\f1d1"; +} +.fa-git-square:before { + content: "\f1d2"; +} +.fa-git:before { + content: "\f1d3"; +} +.fa-hacker-news:before { + content: "\f1d4"; +} +.fa-tencent-weibo:before { + content: "\f1d5"; +} +.fa-qq:before { + content: "\f1d6"; +} +.fa-wechat:before, +.fa-weixin:before { + content: "\f1d7"; +} +.fa-send:before, +.fa-paper-plane:before { + content: "\f1d8"; +} +.fa-send-o:before, +.fa-paper-plane-o:before { + content: "\f1d9"; +} +.fa-history:before { + content: "\f1da"; +} +.fa-genderless:before, +.fa-circle-thin:before { + content: "\f1db"; +} +.fa-header:before { + content: "\f1dc"; +} +.fa-paragraph:before { + content: "\f1dd"; +} +.fa-sliders:before { + content: "\f1de"; +} +.fa-share-alt:before { + content: "\f1e0"; +} +.fa-share-alt-square:before { + content: "\f1e1"; +} +.fa-bomb:before { + content: "\f1e2"; +} +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: "\f1e3"; +} +.fa-tty:before { + content: "\f1e4"; +} +.fa-binoculars:before { + content: "\f1e5"; +} +.fa-plug:before { + content: "\f1e6"; +} +.fa-slideshare:before { + content: "\f1e7"; +} +.fa-twitch:before { + content: "\f1e8"; +} +.fa-yelp:before { + content: "\f1e9"; +} +.fa-newspaper-o:before { + content: "\f1ea"; +} +.fa-wifi:before { + content: "\f1eb"; +} +.fa-calculator:before { + content: "\f1ec"; +} +.fa-paypal:before { + content: "\f1ed"; +} +.fa-google-wallet:before { + content: "\f1ee"; +} +.fa-cc-visa:before { + content: "\f1f0"; +} +.fa-cc-mastercard:before { + content: "\f1f1"; +} +.fa-cc-discover:before { + content: "\f1f2"; +} +.fa-cc-amex:before { + content: "\f1f3"; +} +.fa-cc-paypal:before { + content: "\f1f4"; +} +.fa-cc-stripe:before { + content: "\f1f5"; +} +.fa-bell-slash:before { + content: "\f1f6"; +} +.fa-bell-slash-o:before { + content: "\f1f7"; +} +.fa-trash:before { + content: "\f1f8"; +} +.fa-copyright:before { + content: "\f1f9"; +} +.fa-at:before { + content: "\f1fa"; +} +.fa-eyedropper:before { + content: "\f1fb"; +} +.fa-paint-brush:before { + content: "\f1fc"; +} +.fa-birthday-cake:before { + content: "\f1fd"; +} +.fa-area-chart:before { + content: "\f1fe"; +} +.fa-pie-chart:before { + content: "\f200"; +} +.fa-line-chart:before { + content: "\f201"; +} +.fa-lastfm:before { + content: "\f202"; +} +.fa-lastfm-square:before { + content: "\f203"; +} +.fa-toggle-off:before { + content: "\f204"; +} +.fa-toggle-on:before { + content: "\f205"; +} +.fa-bicycle:before { + content: "\f206"; +} +.fa-bus:before { + content: "\f207"; +} +.fa-ioxhost:before { + content: "\f208"; +} +.fa-angellist:before { + content: "\f209"; +} +.fa-cc:before { + content: "\f20a"; +} +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: "\f20b"; +} +.fa-meanpath:before { + content: "\f20c"; +} +.fa-buysellads:before { + content: "\f20d"; +} +.fa-connectdevelop:before { + content: "\f20e"; +} +.fa-dashcube:before { + content: "\f210"; +} +.fa-forumbee:before { + content: "\f211"; +} +.fa-leanpub:before { + content: "\f212"; +} +.fa-sellsy:before { + content: "\f213"; +} +.fa-shirtsinbulk:before { + content: "\f214"; +} +.fa-simplybuilt:before { + content: "\f215"; +} +.fa-skyatlas:before { + content: "\f216"; +} +.fa-cart-plus:before { + content: "\f217"; +} +.fa-cart-arrow-down:before { + content: "\f218"; +} +.fa-diamond:before { + content: "\f219"; +} +.fa-ship:before { + content: "\f21a"; +} +.fa-user-secret:before { + content: "\f21b"; +} +.fa-motorcycle:before { + content: "\f21c"; +} +.fa-street-view:before { + content: "\f21d"; +} +.fa-heartbeat:before { + content: "\f21e"; +} +.fa-venus:before { + content: "\f221"; +} +.fa-mars:before { + content: "\f222"; +} +.fa-mercury:before { + content: "\f223"; +} +.fa-transgender:before { + content: "\f224"; +} +.fa-transgender-alt:before { + content: "\f225"; +} +.fa-venus-double:before { + content: "\f226"; +} +.fa-mars-double:before { + content: "\f227"; +} +.fa-venus-mars:before { + content: "\f228"; +} +.fa-mars-stroke:before { + content: "\f229"; +} +.fa-mars-stroke-v:before { + content: "\f22a"; +} +.fa-mars-stroke-h:before { + content: "\f22b"; +} +.fa-neuter:before { + content: "\f22c"; +} +.fa-facebook-official:before { + content: "\f230"; +} +.fa-pinterest-p:before { + content: "\f231"; +} +.fa-whatsapp:before { + content: "\f232"; +} +.fa-server:before { + content: "\f233"; +} +.fa-user-plus:before { + content: "\f234"; +} +.fa-user-times:before { + content: "\f235"; +} +.fa-hotel:before, +.fa-bed:before { + content: "\f236"; +} +.fa-viacoin:before { + content: "\f237"; +} +.fa-train:before { + content: "\f238"; +} +.fa-subway:before { + content: "\f239"; +} +.fa-medium:before { + content: "\f23a"; +} +.mix-no-border-radius { + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + border-radius: 0px; +} +/* Lists */ +ul, +ol { + padding-left: 30px; +} +li p { + margin: 0 auto; +} +.unstyled li { + list-style-type: none; +} +dl dt { + font-weight: bold; +} +dl dd { + padding: 0 0 0.2em 0; +} +/* Headings */ +h1, +h2, +h3, +h4, +h5, +h6 { + color: #111111; + border-bottom: 1px solid #dddddd; +} +h1 { + text-align: center; +} +/* Blocks */ +blockquote { + border-left: 3px solid #dedede; + padding: 0px 10px; + margin: 10px 0; + font-style: italic; +} +pre { + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin: 10px auto; + padding: 2px 4px 0 4px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + color: #333333; + background-color: #f8f8f8; + border: 1px solid #cccccc; + margin: auto; + font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace; + padding: 0; +} +pre a { + color: #264c72; +} +pre p { + margin: 0 auto; +} +pre code { + box-shadow: none; + background: #f8f8f8; + padding: 0px 2px 0 2px; + border: none; + line-height: 1.2em; +} +pre .hljs { + padding: 0 3px; +} +@media screen and (max-width: 639px) { + .responsive { + width: 100%; + overflow-y: hidden; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .responsive td { + white-space: nowrap; + } +} +table { + border-collapse: collapse; + margin: 15px auto; + border-spacing: 0; + empty-cells: show; +} +table thead { + background: #f8f8f8; + color: #222; + text-align: left; + vertical-align: bottom; +} +table td, +table th { + background-color: transparent; + border: 1px solid #999999; + font-size: inherit; + margin: 0; + overflow: visible; + padding: 6px 12px; +} +address { + font-style: italic; + color: #999999; +} +hr { + border: 0; + height: 1px; + background-image: -webkit-linear-gradient(left, rgba(99, 99, 99, 0), rgba(99, 99, 99, 0.75), rgba(99, 99, 99, 0)); + background-image: -moz-linear-gradient(left, rgba(99, 99, 99, 0), rgba(99, 99, 99, 0.75), rgba(99, 99, 99, 0)); + background-image: -ms-linear-gradient(left, rgba(99, 99, 99, 0), rgba(99, 99, 99, 0.75), rgba(99, 99, 99, 0)); + background-image: -o-linear-gradient(left, rgba(99, 99, 99, 0), rgba(99, 99, 99, 0.75), rgba(99, 99, 99, 0)); +} +.center { + margin: auto; + text-align: center; +} +/* Inline */ +[class^="fa-"] { + font-family: "FontAwesome"; +} +code, +span.code { + color: #333333; + background-color: #f8f8f8; + padding: 0 3px 0; + display: inline-block; + width: auto; + margin: 1px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + margin: 2px 0px; + font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace; + font-size: 85%; + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + -o-hyphens: none; + hyphens: none; +} +kbd, +span.kbd { + color: #333333; + background-color: #f8f8f8; + padding: 0 3px 0; + display: inline-block; + width: auto; + margin: 1px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace; + font-weight: bold; + border-right: 1px solid #bbbbbb; + border-bottom: 1px solid #bbbbbb; + line-height: 1em; + font-size: 80%; + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + -o-hyphens: none; + hyphens: none; +} +mark, +span.mark { + padding: 0 1px; + color: #222222; +} +abbr, +span.abbr { + font-variant: small-caps; + font-weight: bolder; + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + -o-hyphens: none; + hyphens: none; +} +abbr:hover, +span.abbr:hover { + cursor: help; +} +samp, +span.samp { + font-size: 90%; + color: #333333; + background-color: #f8f8f8; + padding: 0 3px 0; + display: inline-block; + width: auto; + margin: 1px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + -o-hyphens: none; + hyphens: none; +} +var, +span.var { + font-size: 90%; + font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace; + font-weight: bold; + font-style: normal; + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + -o-hyphens: none; + hyphens: none; +} +cite, +span.cite { + font-weight: bold; + font-style: italic; + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + -o-hyphens: none; + hyphens: none; +} +q, +span.q { + font-style: italic; + color: #666666; + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + -o-hyphens: none; + hyphens: none; +} +span.tt, +span.cmd, +span.opt, +span.arg, +span.kwd, +span.ext, +span.file, +span.dir { + font-size: 90%; + font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace; + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + -o-hyphens: none; + hyphens: none; +} +span.ext, +span.kwd { + font-weight: bold; +} +/* Links */ +a, +a:visited { + color: #b5190c; + text-decoration: none; +} +a:hover, +a:visited:hover { + text-decoration: underline; +} +a[href^="http://"]:before, +a[href^="https://"]:before, +a[href^="ftp://"]:before, +a[href^="sftp://"]:before { + content: "\f0ac" "\202F"; + font-family: "FontAwesome"; +} +a[href^="mailto:"]:before { + content: "\f0e0" "\202F"; + font-family: "FontAwesome"; +} +a[href^="tel:"]:before { + content: "\f095" "\202F"; + font-family: "FontAwesome"; +} +a[href^="skype://"]:before, +a[href*="skype.com"]:before { + content: "\f17e" "\202F"; + font-family: "FontAwesome"; +} +a[href*="twitter.com"]:before { + content: "\f099" "\202F"; + font-family: "FontAwesome"; +} +a[href*="linkedin.com"]:before { + content: "\f08c" "\202F"; + font-family: "FontAwesome"; +} +a[href*="foursquare.com"]:before { + content: "\f180" "\202F"; + font-family: "FontAwesome"; +} +a[href*="facebook.com"]:before { + content: "\f082" "\202F"; + font-family: "FontAwesome"; +} +a[href*="flickr.com"]:before { + content: "\f16e" "\202F"; + font-family: "FontAwesome"; +} +a[href*="github.com"]:before { + content: "\f09b" "\202F"; + font-family: "FontAwesome"; +} +a[href*="stackoverflow.com"]:before { + content: "\f16c" "\202F"; + font-family: "FontAwesome"; +} +a[href*="youtube.com"]:before { + content: "\f167" "\202F"; + font-family: "FontAwesome"; +} +a[href*="dropbox.com"]:before { + content: "\f16b" "\202F"; + font-family: "FontAwesome"; +} +a[href*="instagram.com"]:before { + content: "\f16d" "\202F"; + font-family: "FontAwesome"; +} +a[href*="google.com"]:before { + content: "\f1a0" "\202F"; + font-family: "FontAwesome"; +} +a[href*="plus.google.com"]:before { + content: "\f0d4" "\202F"; + font-family: "FontAwesome"; +} +a[href*="yahoo.com"]:before { + content: "\f19e" "\202F"; + font-family: "FontAwesome"; +} +a[href*="tumblr.com"]:before { + content: "\f174" "\202F"; + font-family: "FontAwesome"; +} +a[href*="vimeo.com"]:before { + content: "\f194" "\202F"; + font-family: "FontAwesome"; +} +a[href*="bitbucket.com"]:before { + content: "\f171" "\202F"; + font-family: "FontAwesome"; +} +a[href*="pinterest.com"]:before { + content: "\f0d2" "\202F"; + font-family: "FontAwesome"; +} +a[href*="reddit.com"]:before { + content: "\f1a1" "\202F"; + font-family: "FontAwesome"; +} +a[href*="digg.com"]:before { + content: "\f1a6" "\202F"; + font-family: "FontAwesome"; +} +a[href*="news.ycombinator.com"]:before { + content: "\f1d4" "\202F"; + font-family: "FontAwesome"; +} +a[href*="jsfiddle.com"]:before { + content: "\f1cc" "\202F"; + font-family: "FontAwesome"; +} +a[href*="deviantart.com"]:before { + content: "\f1bd" "\202F"; + font-family: "FontAwesome"; +} +a[href^="git@"]:before { + content: "\f1d3" "\202F"; + font-family: "FontAwesome"; +} +a[href*="wikipedia.com"]:before { + content: "\f266" "\202F"; + font-family: "FontAwesome"; +} +#footer a:before { + content: ""; +} +a[href="#document-top"] { + vertical-align: super; + font-weight: normal; + font-size: 15px; + float: right; +} +a[href="#document-top"]:before { + content: "\f102" "\202F"; + font-family: "FontAwesome"; +} +#footer a:hover { + text-decoration: none; +} +#footer a:after { + content: none; +} +.note { + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin: 10px auto; + padding: 2px 4px 0 4px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + color: #264c72; + background-color: #d8ebf8; + border: 1px solid #a4d1ef; + font-size: 90%; +} +.note a { + color: #264c72; +} +.note p { + margin: 0 auto; +} +.note p { + margin: 0 auto; +} +.note p:first-child { + font-weight: bold; + color: #264c72; +} +.note p:first-child:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #264c72; + content: "\f08d" " "; +} +.note a { + color: #132639; +} +.tip { + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin: 10px auto; + padding: 2px 4px 0 4px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + color: #009926; + background-color: #d8f5cd; + border: 1px solid #b0eb99; + font-size: 90%; +} +.tip a { + color: #264c72; +} +.tip p { + margin: 0 auto; +} +.tip p { + margin: 0 auto; +} +.tip p:first-child { + font-weight: bold; + color: #009926; +} +.tip p:first-child:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #009926; + content: "\f058" " "; +} +.tip a { + color: #004d13; +} +.warning { + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin: 10px auto; + padding: 2px 4px 0 4px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + color: #705400; + background-color: #ffebad; + border: 1px solid #ffdb70; + font-size: 90%; +} +.warning a { + color: #264c72; +} +.warning p { + margin: 0 auto; +} +.warning p { + margin: 0 auto; +} +.warning p:first-child { + font-weight: bold; + color: #705400; +} +.warning p:first-child:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #705400; + content: "\f071" " "; +} +.warning a { + color: #241b00; +} +.sidebar { + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin: 10px auto; + padding: 2px 4px 0 4px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + color: #555555; + background-color: #f8f8f8; + border: 1px solid #f8f8f8; + font-size: 90%; +} +.sidebar a { + color: #264c72; +} +.sidebar p { + margin: 0 auto; +} +.sidebar p { + margin: 0 auto; +} +.sidebar p:first-child { + font-weight: bold; + color: #555555; +} +.sidebar p:first-child:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #555555; + content: "\f05a" " "; +} +.sidebar a { + color: #2f2f2f; +} +.output { + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin: 10px auto; + padding: 2px 4px 0 4px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + color: #555555; + background-color: #f8f8f8; + border: 1px solid #f8f8f8; +} +.output a { + color: #264c72; +} +.output p { + margin: 0 auto; +} +.terminal { + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin: 10px auto; + padding: 2px 4px 0 4px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + color: #eeeeee; + background-color: #222222; + border: 1px solid #cccccc; + padding: 0 3px; + border: 2px solid #999999; + border-top: 10px solid #999999; +} +.terminal a { + color: #264c72; +} +.terminal p { + margin: 0 auto; +} +.terminal p, +.terminal p:first-child { + margin-top: 0; + margin-bottom: 0; + text-shadow: none; + font-weight: normal; + font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace; + font-size: 85%; + color: #eeeeee; +} +.terminal p:before, +.terminal p:first-child:before { + font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace; + font-style: normal; + font-weight: bold; + color: #009926; + content: "$ "; +} +.terminal-su { + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin: 10px auto; + padding: 2px 4px 0 4px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + color: #eeeeee; + background-color: #222222; + border: 1px solid #cccccc; + padding: 0 3px; + border: 2px solid #999999; + border-top: 10px solid #999999; + max-width: 850px; +} +.terminal-su a { + color: #264c72; +} +.terminal-su p { + margin: 0 auto; +} +.terminal-su p, +.terminal-su p:first-child { + margin-top: 0; + margin-bottom: 0; + text-shadow: none; + font-weight: normal; + font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace; + font-size: 85%; + color: #eeeeee; +} +.terminal-su p:before, +.terminal-su p:first-child:before { + font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace; + font-style: normal; + font-weight: bold; + color: #009926; + content: "$ "; +} +.terminal-su p:before, +.terminal-su p:first-child:before { + color: #cc3300; + content: "# "; +} +div .terminal { + margin: 2px auto; +} +.todo { + color: #cc3300; +} +.todo:before { + color: #cc3300; + background-color: #f8d8d8; + padding: 0 3px 0; + display: inline-block; + width: auto; + margin: 1px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + padding: 1px 1px 3px 1px; + line-height: 90%; + width: 50px; + text-align: center; + margin-right: 3px; + box-shadow: none; + font-variant: small-caps; + font-weight: bold; + content: "todo"; +} +.fixme { + color: #cc3300; +} +.fixme:before { + color: #cc3300; + background-color: #f8d8d8; + padding: 0 3px 0; + display: inline-block; + width: auto; + margin: 1px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + padding: 1px 1px 3px 1px; + line-height: 90%; + width: 50px; + text-align: center; + margin-right: 3px; + box-shadow: none; + font-variant: small-caps; + font-weight: bold; + content: "fixme"; +} +.deadline { + color: #cc3300; +} +.deadline:before { + color: #cc3300; + background-color: #f8d8d8; + padding: 0 3px 0; + display: inline-block; + width: auto; + margin: 1px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + padding: 1px 1px 3px 1px; + line-height: 90%; + width: 50px; + text-align: center; + margin-right: 3px; + box-shadow: none; + font-variant: small-caps; + font-weight: bold; + content: "deadline"; +} +.important { + color: #cc3300; +} +.important:before { + color: #cc3300; + background-color: #f8d8d8; + padding: 0 3px 0; + display: inline-block; + width: auto; + margin: 1px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + padding: 1px 1px 3px 1px; + line-height: 90%; + width: 50px; + text-align: center; + margin-right: 3px; + box-shadow: none; + font-variant: small-caps; + font-weight: bold; + content: "important"; +} +.urgent { + color: #cc3300; +} +.urgent:before { + color: #cc3300; + background-color: #f8d8d8; + padding: 0 3px 0; + display: inline-block; + width: auto; + margin: 1px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + padding: 1px 1px 3px 1px; + line-height: 90%; + width: 50px; + text-align: center; + margin-right: 3px; + box-shadow: none; + font-variant: small-caps; + font-weight: bold; + content: "urgent"; +} +.verify { + color: #705400; +} +.verify:before { + color: #705400; + background-color: #ffebad; + padding: 0 3px 0; + display: inline-block; + width: auto; + margin: 1px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + padding: 1px 1px 3px 1px; + line-height: 90%; + width: 50px; + text-align: center; + margin-right: 3px; + box-shadow: none; + font-variant: small-caps; + font-weight: bold; + content: "verify"; +} +.draftcomment { + color: #009926; +} +.draftcomment:before { + color: #009926; + background-color: #d8f5cd; + padding: 0 3px 0; + display: inline-block; + width: auto; + margin: 1px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + -moz-background-clip: padding; + -webkit-background-clip: padding-box; + background-clip: padding-box; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + padding: 1px 1px 3px 1px; + line-height: 90%; + width: 50px; + text-align: center; + margin-right: 3px; + box-shadow: none; + font-variant: small-caps; + font-weight: bold; + content: "comment"; +} +.red-circle:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #cc3300; + content: "\f111" " "; +} +.green-circle:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #00cc33; + content: "\f111" " "; +} +.yellow-circle:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #f5b800; + content: "\f111" " "; +} +.gray-circle:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #999999; + content: "\f111" " "; +} +.star:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #f5b800; + content: "\f005" " "; +} +.heart:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #cc3300; + content: "\f004" " "; +} +.square:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #cc3300; + content: "\f096" " "; +} +.check:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #00cc33; + content: "\f046" " "; +} +.lock:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #f5b800; + content: "\f023" " "; +} +.unlock:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #f5b800; + content: "\f09c" " "; +} +.bug:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #cc3300; + content: "\f188" " "; +} +.tag:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #f5b800; + content: "\f02b" " "; +} +.tags:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #f5b800; + content: "\f02c" " "; +} +.date:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #0f4bff; + content: "\f073" " "; +} +.time:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #0f4bff; + content: "\f017" " "; +} +.attachment:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #333333; + content: "\f0c6" " "; +} +.geo:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #cc3300; + content: "\f041" " "; +} +.danger:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #cc3300; + content: "\f071" " "; +} +.question:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #0f4bff; + content: "\f059" " "; +} +.phone:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #333333; + content: "\f095" " "; +} +.email:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #333333; + content: "\f0e0" " "; +} +.fax:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #333333; + content: "\f1ac" " "; +} +.website:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #333333; + content: "\f0ac" " "; +} +.hastyscribe:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 180%; + color: #333333; + content: "H" " "; +} +.hastyscribe:before { + font-family: "HastyScribe"; + font-size: 1.8em; + margin-right: -2%; + vertical-align: middle; +} +.btc:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 90%; + color: #333333; + content: "\f15a" ""; +} +.eur:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 90%; + color: #333333; + content: "\f153" ""; +} +.usd:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 90%; + color: #333333; + content: "\f155" ""; +} +.gbp:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 90%; + color: #333333; + content: "\f154" ""; +} +.jpy:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 90%; + color: #333333; + content: "\f157" ""; +} +.inr:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 90%; + color: #333333; + content: "\f156" ""; +} +.krw:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 90%; + color: #333333; + content: "\f159" ""; +} +.rub:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 90%; + color: #333333; + content: "\f158" ""; +} +.try:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 90%; + color: #333333; + content: "\f195" ""; +} +.copy:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #333333; + content: "\f1f9" " "; +} +.reg:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #333333; + content: "\f25d" " "; +} +.tm:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #333333; + content: "\f25c" " "; +} +.red-flag:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #cc3300; + content: "\f024" " "; +} +.green-flag:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #00cc33; + content: "\f024" " "; +} +.yellow-flag:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #f5b800; + content: "\f024" " "; +} +.story:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #0f4bff; + content: "\f075" " "; +} +.feature:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #00cc33; + content: "\f058" " "; +} +.project:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #705400; + content: "\f0b1" " "; +} +.user:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #0f4bff; + content: "\f007" " "; +} +.add:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #00cc33; + content: "\f055" " "; +} +.remove:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #cc3300; + content: "\f056" " "; +} +.html5:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #cc3300; + content: "\f13b" " "; +} +.css3:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #0f4bff; + content: "\f13c" " "; +} +.apple:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #aaaaaa; + content: "\f179" " "; +} +.windows:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #0f4bff; + content: "\f17a" " "; +} +.linux:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #000000; + content: "\f17c" " "; +} +.android:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #a4c739; + content: "\f17b" " "; +} +.idea:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #f5b800; + content: "\f0eb" " "; +} +.sticky:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #f5b800; + content: "\f249" " "; +} +.link:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #0f4bff; + content: "\f0c1" " "; +} +.chrome:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #f5b800; + content: "\f268" " "; +} +.firefox:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #ff6600; + content: "\f269" " "; +} +.ie:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #0f4bff; + content: "\f26b" " "; +} +.opera:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #cc3300; + content: "\f26a" " "; +} +.safari:before { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + font-size: 100%; + color: #0f4bff; + content: "\f267" " "; +} +.headings h1 { + font-size: 2em; +} +.headings h2 { + font-size: 1.5em; + counter-reset: h3; + counter-increment: h2; +} +.headings h2::before { + content: counter(h2) "\00A0\00A0"; +} +.headings h3 { + font-size: 1.2em; + counter-reset: h4; + counter-increment: h3; +} +.headings h3::before { + content: counter(h2) "." counter(h3) "\00A0\00A0"; +} +.headings h4 { + font-size: 1.1em; + counter-reset: h5; + counter-increment: h4; +} +.headings h4::before { + content: counter(h2) "." counter(h3) "." counter(h4) "\00A0\00A0"; +} +.headings h5 { + font-size: 1em; + counter-reset: h6; + counter-increment: h5; +} +.headings h5::before { + content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "\00A0\00A0"; +} +.headings h6 { + font-size: 1em; + counter-increment: h6; +} +.headings h6::before { + content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) "\00A0\00A0"; +} +/***************/ +.headings #toc { + counter-reset: toc2; +} +.headings #toc li li a { + counter-reset: toc3; + counter-increment: toc2; +} +.headings #toc li li a::before { + content: counter(toc2) "\00A0\00A0"; +} +.headings #toc li li li a { + counter-reset: toc4; + counter-increment: toc3; +} +.headings #toc li li li a::before { + content: counter(toc2) "." counter(toc3) "\00A0\00A0"; +} +.headings #toc li li li li a { + counter-reset: toc5; + counter-increment: toc4; +} +.headings #toc li li li li a::before { + content: counter(toc2) "." counter(toc3) "." counter(toc4) "\00A0\00A0"; +} +.headings #toc li li li li li a { + counter-reset: toc6; + counter-increment: toc5; +} +.headings #toc li li li li li a::before { + content: counter(toc2) "." counter(toc3) "." counter(toc4) "." counter(toc5) "\00A0\00A0"; +} +.headings #toc li li li li li li a { + counter-increment: toc6; +} +.headings #toc li li li li li li a::before { + content: counter(toc2) "." counter(toc3) "." counter(toc4) "." counter(toc5) "." counter(toc6) "\00A0\00A0"; +} +body { + font-family: 'Calendas Plus', serif; + -moz-font-feature-settings: "liga", "pnum", "frac", "zero"; + -webkit-font-feature-settings: "liga", "pnum", "frac", "zero"; + -ms-font-feature-settings: "liga", "pnum", "frac", "zero"; + font-feature-settings: "liga", "pnum", "frac", "zero"; + -moz-hyphens: auto; + -webkit-hyphens: auto; + -ms-hyphens: auto; + hyphens: auto; + text-align: justify; +} +.container h1, +.container h2, +.container h3, +.container h4, +.container h5, +.container h6, +.container h1 > a, +.container h2 > a { + -moz-font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; + -webkit-font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; + -ms-font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; + font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; + color: #000000; + text-decoration: none; +} +a { + -moz-font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; + -webkit-font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; + -ms-font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; + font-feature-settings: "liga", "dlig", "hlig", "clig", "calt", "swsh", "onum", "pnum", "frac", "zero", "hist", "salt"; +} +code, +pre { + -moz-hyphens: none; + -webkit-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} +sup { + -moz-font-feature-settings: "sups"; + -ms-font-feature-settings: "sups"; + -webkit-font-feature-settings: "sups"; + font-feature-settings: "sups"; +} +sub { + -moz-font-feature-settings: "subs"; + -ms-font-feature-settings: "subs"; + -webkit-font-feature-settings: "subs"; + font-feature-settings: "subs"; +} +article, +#legacy-comments, +#disqus_thread { + line-height: 1.4em; + font-size: 16px; + color: #111111; +} +article p, +#legacy-comments p, +#disqus_thread p { + margin: 1em 0; +} +article li, +#legacy-comments li, +#disqus_thread li, +article dt, +#legacy-comments dt, +#disqus_thread dt, +article dd, +#legacy-comments dd, +#disqus_thread dd { + line-height: 1.8em; +} +article .article-info li:before, +#legacy-comments .article-info li:before, +#disqus_thread .article-info li:before, +article .dropdown-menu li:before, +#legacy-comments .dropdown-menu li:before, +#disqus_thread .dropdown-menu li:before { + content: none; +} +article dt, +#legacy-comments dt, +#disqus_thread dt { + margin-top: 1.8em; +} +/* Headings */ +#main-content > article h2 { + line-height: 1em; + font-size: 1.6em; +} +#main-content > article h3 { + margin-top: 0; + line-height: 1em; + font-size: 1.3em; + color: #666666; + font-style: italic; +} +article.page > header h1 { + font-size: 2em; + margin-top: 0; + margin-bottom: 0; +} +#secondary-content > article h2 { + line-height: 1.2em; + font-size: 1.3em; +} +#secondary-content > article h3 { + margin-top: 0; + line-height: 1em; + color: #666666; + font-size: 1em; + font-style: italic; +} +#body-text section header h1, +footer h2, +#body-text h2 { + font-size: 1.8em; +} +h1 > code { + font-size: 0.9em; + border: none; + color: #000; + background: none; +} +article.page > header h2, +#body-text section section header h1, +#body-text h3, +h1.toc-header { + margin-top: 1.2em; + font-size: 1.5em; + font-style: italic; +} +article.page > header h2 { + margin: 0 0 1em 0; + font-size: 1.3em; + line-height: 1.2em; + color: #999; +} +#body-text section section section header h1, +#body-text h4 { + margin-top: 1.2em; + font-size: 1.3em; +} +#body-text section section section section header h1, +#body-text h5 { + margin-top: 1em; + font-size: 1em; + font-style: italic; +} +#body-text section section section section section header h1, +#body-text h6 { + margin-top: 1em; + font-size: 1em; +} +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2em; + text-align: left; + border-bottom: none; + font-weight: 400; +} +#body-text .projects-page h3 { + margin-top: 1.2em; + font-size: 1.5em; + color: #b5190c; +} +#body-text .projects-page h3:before { + content: "\eae1"; +} +#body-text .projects-page h3:hover { + color: #851209; +} +.article-aggregation i:before { + color: #b3b3b3; +} +/* HastyStyles Overrides */ +article #body-text h2:before, +article #body-text h3:before, +article #body-text h4:before, +article #body-text h5:before, +article #body-text h6:before { + content: "\e932"; +} +article #body-text h2:before, +article #body-text h3:before, +article #body-text h4:before, +article #body-text h5:before, +article #body-text h6:before { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'h3raldicons' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: #b3b3b3; + font-style: normal !important; +} +article #body-text h2.centered, +article #body-text h3.centered, +article #body-text h4.centered, +article #body-text h5.centered, +article #body-text h6.centered { + text-align: center; + margin: auto; +} +article #body-text h2.centered:before, +article #body-text h3.centered:before, +article #body-text h4.centered:before, +article #body-text h5.centered:before, +article #body-text h6.centered:before { + content: none; +} +a[href^="http://"]:before, +a[href^="https://"]:before, +a[href^="ftp://"]:before, +a[href^="sftp://"]:before { + content: none; +} +.article-info .tag:before, +code .tag:before, +ul.dropdown-menu a:before, +a[href].btn:before, +footer a[href]:before { + content: ""; +} +a.btn { + color: #fff; +} +a.btn-default { + color: #333; +} +code, +.code, +pre, +pre code { + font-size: 13px; + line-height: 1.4em; +} +code .tag:before, +.code .tag:before, +pre .tag:before, +pre code .tag:before { + content: none; +} +.navbar .input-group { + box-shadow: none; +} +.hastyscribe { + margin-right: 1%; +} +dl { + clear: both; +} +dl dt { + float: none; + clear: none; + width: 20%; + text-align: right; + font-weight: bold; +} +dl dd { + margin: 0 0 0 22%; + padding: 0 0 0.5em 0; +} +.note, +.tip, +.warning, +.sidebar, +.terminal, +.terminal-su, +pre, +blockquote { + max-width: 850px; +} +hr { + border: 0; + height: 1em; + background-image: none; + position: relative; +} +hr:before { + content: "\2749\00a0\00a0\2749\00a0\00a0\2749"; + font-size: 0.6em; + padding-left: 48%; +}
@@ -0,0 +1,73 @@
+pre.lazy .OcamlInfixFPOperator { + text-decoration: underline; +} +pre.lazy .OcamlInfixOperator { + color: #3B5BB5; +} +pre.lazy .MetaFunctionCallPy { + color: #3E4558; +} +pre.lazy .Superclass { + color: #3B5BB5; + font-style: italic; +} +pre.lazy .LatexEntity { + color: #D62A28; +} +pre.lazy .Constant { + color: #3B5BB5; +} +pre.lazy .OcamlFPConstant { + text-decoration: underline; +} +pre.lazy .Support { + color: #3B5BB5; +} +pre.lazy .OcamlOperator { + color: #000000; +} +pre.lazy .line-numbers { + background-color: #E3FC8D; + color: #000000; +} +pre.lazy .StringInterpolation { + color: #671EBB; +} +pre.lazy .InvalidIllegal { + background-color: #9D1E15; + color: #F8F8F8; +} +pre.lazy .OcamlVariant { + color: #7F90AA; +} +pre.lazy .MetaTag { + color: #3A4A64; +} +pre.lazy .OcamlPrefixFPOperator { + text-decoration: underline; +} +pre.lazy .OcamlPrefixOperator { + color: #3B5BB5; +} +pre.lazy .String { + color: #409B1C; +} +pre.lazy .Keyword { + color: #FF7800; +} +pre.lazy { + background-color: #FFFFFF; + color: #000000; +} +pre.lazy .InvalidDeprecated { + color: #990000; + font-style: italic; +} +pre.lazy .Variable { +} +pre.lazy .Entity { + color: #3B5BB5; +} +pre.lazy .Comment { + color: #8C868F; +}
@@ -0,0 +1,175 @@
+@h3-css3-01: "\e900"; +@h3-html5-01: "\e901"; +@h3-prog-golang01: "\e902"; +@h3-prog-bash02: "\e903"; +@h3-prog-perl: "\e904"; +@h3-prog-rails: "\e905"; +@h3-prog-drupal: "\e907"; +@h3-prog-php01: "\e908"; +@h3-prog-nodejs01: "\e909"; +@h3-prog-nodejs02: "\e90a"; +@h3-prog-jquery: "\e90b"; +@h3-prog-lua01: "\e90c"; +@h3-prog-visualstudio: "\e90d"; +@h3-prog-java: "\e90e"; +@h3-prog-js02: "\e90f"; +@h3-prog-objc: "\e910"; +@h3-prog-ccplusplus: "\e911"; +@h3-prog-cplusplus: "\e912"; +@h3-prog-csharp: "\e913"; +@h3-prog-js01: "\e914"; +@h3-prog-ruby: "\e915"; +@h3-prog-c: "\e916"; +@h3-github-01: "\e918"; +@h3-instagram: "\e919"; +@h3-github-02: "\e91a"; +@h3-angularjs: "\e91b"; +@h3-prog-cakephp: "\e91d"; +@h3-dropbox: "\e91e"; +@h3-tl-toolbox: "\e91f"; +@h3-vc-fossil: "\e920"; +@h3-vc-bitbucket-01: "\e921"; +@h3-vc-git: "\e922"; +@h3-dbs-mongodb: "\e923"; +@h3-dbs-mysql: "\e924"; +@h3-os-apple: "\e925"; +@h3-os-linux: "\e926"; +@h3-os-win-04: "\e927"; +@h3-os-ios: "\e928"; +@h3-brw-chrome: "\e929"; +@h3-dbs-sqlite: "\e92a"; +@h3-os-osx_1: "\e92b"; +@h3-brw-firefox: "\e92c"; +@h3-brw-safari-01: "\e92d"; +@h3-brw-safari-02: "\e92e"; +@h3-brw-explorer: "\e92f"; +@h3-brw-opera: "\e930"; +@h3-android: "\e931"; +@h3-hc-book-02: "\e932"; +@h3-lb-book-01: "\e933"; +@h3-lb-book-02: "\e934"; +@h3-calendar-empty: "\e936"; +@h3-terminal: "\e937"; +@h3-clock: "\e938"; +@h3-windows: "\e939"; +@h3-twitter: "\e93b"; +@h3-twitter-alt: "\e93c"; +@h3-stumble_upon: "\e93d"; +@h3-skype: "\e93e"; +@h3-share: "\e93f"; +@h3-reddit: "\e940"; +@h3-rss: "\e941"; +@h3-paypal: "\e942"; +@h3-mail: "\e943"; +@h3-amazon: "\e944"; +@h3-tags: "\e945"; +@h3-pin-3: "\e947"; +@h3-tag: "\e948"; +@h3-tablet: "\e949"; +@h3-mobile: "\e94b"; +@h3-google: "\e94c"; +@h3-gmail: "\e94d"; +@h3-foursquare_2: "\e94e"; +@h3-com-laptop: "\e950"; +@h3-foursquare_1: "\e951"; +@h3-linkedin: "\e952"; +@h3-anchor: "\e906"; +@h3-axe: "\e917"; +@h3-battered-axe: "\e91c"; +@h3-bolt-shield: "\e935"; +@h3-book: "\e93a"; +@h3-broadsword: "\e946"; +@h3-broken-shield: "\e94a"; +@h3-burning-embers: "\e94f"; +@h3-campfire: "\e954"; +@h3-candle-fire: "\e957"; +@h3-candle: "\e958"; +@h3-capitol: "\e95a"; +@h3-castle-emblem: "\e95d"; +@h3-clockwork: "\e969"; +@h3-clovers-card: "\e96b"; +@h3-cog: "\e970"; +@h3-cracked-shield: "\e976"; +@h3-crossed-axes: "\e979"; +@h3-crossed-sabres: "\e97c"; +@h3-crossed-swords: "\e97d"; +@h3-crystal-ball: "\e982"; +@h3-daggers: "\e989"; +@h3-diamond: "\e992"; +@h3-diamonds-card: "\e993"; +@h3-diamonds: "\e994"; +@h3-dice-five: "\e995"; +@h3-dice-four: "\e996"; +@h3-dice-one: "\e997"; +@h3-dice-six: "\e998"; +@h3-dice-three: "\e999"; +@h3-dice-two: "\e99a"; +@h3-emerald: "\e9af"; +@h3-eye-shield: "\e9b4"; +@h3-feather-wing: "\e9bb"; +@h3-feathered-wing: "\e9bc"; +@h3-fire-shield: "\e9c1"; +@h3-fire: "\e9c3"; +@h3-fizzing-flask: "\e9c6"; +@h3-flame-symbol: "\e9c7"; +@h3-flat-hammer: "\e9cc"; +@h3-forging: "\e9d3"; +@h3-gear-hammer: "\e9db"; +@h3-hammer: "\e9ee"; +@h3-hand-emblem: "\e9ef"; +@h3-hearts-card: "\e9f9"; +@h3-heavy-shield: "\e9fd"; +@h3-helmet: "\e9fe"; +@h3-help: "\e9ff"; +@h3-hydra: "\ea0b"; +@h3-ice-cube: "\ea0c"; +@h3-jigsaw-piece: "\ea12"; +@h3-kettlebell: "\ea14"; +@h3-key: "\ea16"; +@h3-knife: "\ea19"; +@h3-large-hammer: "\ea1d"; +@h3-leaf: "\ea21"; +@h3-lightning-bolt: "\ea2d"; +@h3-lightning-trio: "\ea30"; +@h3-load: "\ea34"; +@h3-match: "\ea3a"; +@h3-musket: "\ea49"; +@h3-nuclear: "\ea4d"; +@h3-octopus: "\ea50"; +@h3-overhead: "\ea54"; +@h3-perspective-dice-five: "\ea59"; +@h3-perspective-dice-four: "\ea5a"; +@h3-perspective-dice-one: "\ea5b"; +@h3-perspective-dice-random: "\ea5c"; +@h3-perspective-dice-six-two: "\ea5d"; +@h3-perspective-dice-six: "\ea5e"; +@h3-perspective-dice-three: "\ea5f"; +@h3-potion: "\ea72"; +@h3-quill-ink: "\ea75"; +@h3-raven: "\ea7a"; +@h3-relic-blade: "\ea7e"; +@h3-round-shield: "\ea87"; +@h3-rune-stone: "\ea89"; +@h3-sapphire: "\ea8b"; +@h3-save: "\ea8d"; +@h3-scroll-unfurled: "\ea8f"; +@h3-seagull: "\ea92"; +@h3-shield: "\ea96"; +@h3-sickle: "\ea9d"; +@h3-sideswipe: "\ea9e"; +@h3-small-fire: "\eaa3"; +@h3-spades-card: "\eaa9"; +@h3-speech-bubble: "\eaad"; +@h3-speech-bubbles: "\eaae"; +@h3-target-arrows: "\eac3"; +@h3-telescope: "\eac7"; +@h3-three-keys: "\eacc"; +@h3-tower: "\ead2"; +@h3-trefoil-lily: "\ead4"; +@h3-trident: "\ead5"; +@h3-trophy: "\ead7"; +@h3-underhand: "\eadc"; +@h3-vase: "\eade"; +@h3-vial: "\eae1"; +@h3-wooden-sign: "\eae9"; +@h3-wyvern: "\eaeb";
@@ -1,30 +0,0 @@
---- -data_sources: -- items_root: / - layouts_root: / - type: filesystem_unified - identifier_type: legacy -text_extensions: -- css -- erb -- haml -- htm -- html -- js -- less -- markdown -- md -- php -- rb -- sass -- txt -- xml -- textile -- bbcode -- glyph -- scss -output_dir: output -base_url: "http://www.h3rald.com" -author_name: "Fabio Cevasco" -author_email: "h3rald@h3rald.com" -dev: false
@@ -1,6 +0,0 @@
------ -permalink: "403" -title: Forbidden -type: page ------ -There's obviously nothing to see here. Go "home":/!
@@ -1,6 +0,0 @@
------ -permalink: "404" -title: Page Not Found -type: page ------ -The page you're looking for cannot be found. Try searching the "archives":/archives/, maybe you'll have better luck!
@@ -1,6 +0,0 @@
------ -permalink: "500" -title: Internal Server Error -type: page ------ -Something went wrong. Try to go back "home":/ and if things improve. If not, send a "tweet":/ to _@h3rald_ and I'll try to sort it out.
@@ -1,20 +0,0 @@
------ -permalink: about -title: About -type: page ------ -H3RALD.com was created in 2004 by Fabio Cevasco, a system architect, technical writer, programmer and IT enthusiast. It features over a hundred "articles":/archives/ covering a wide range of topics, from programming to writing, productivity and traveling. - -As of version 8, H3RALD.com is a completely static web site, except for a few AJAX calls. All the files are generated automatically thanks to the "nanoc":http://nanoc.stoneship.org/ publishing system, an ingenious creation of "Denis Defreyne":http://www.stoneship.org/. Nanoc can be used to easily create static web sites using Ruby, as explained in "this article":http://www.h3rald.com/articles/take-back-your-site-with-nanoc/. - -The following ruby libraries (gems) are used to compile this web site: - -* "nanoc":https://rubygems.org/gems/nanoc, to generate the entire web site -* "Extlib":https://rubygems.org/gems/extlib, in some custom Rake tasks -* "BB-Ruby":https://rubygems.org/gems/bb-ruby, for BBCode support -* "Builder":https://rubygems.org/gems/builder/, to create RSS and ATOM feeds -* "Less":https://rubygems.org/gems/less/, for the SASS filter -* "The Ruby Racer":https://rubygems.org/gems/therubyracer, to execute Javascript code (needed by Less) -* "RedCloth":https://rubygems.org/gems/redcloth/, for Textile support -* "RDiscount":https://rubygems.org/gems/rdiscount, for Markdown support -* "Glyph":https://rubygems.org/gems/glyph, for Glyph support
@@ -1,16 +0,0 @@
------ -permalink: archives -filters_pre: -- erb -title: Archives -type: page ------ -<div class="container article-aggregation"> -<% c = 0 -articles_by_month.each do |m| - c = c+1 %> - <%= %{<div class="row">} if c%4 == 1 %> - <div class="col-md-3"><i class="h3-lb-book-01"></i> <%= month_link_with_count(m[0], m[1].length) %></div> - <%= "</div>" if c%4 == 0 %> -<% end %></div> -</div>
@@ -1,15 +0,0 @@
------ -:title: 'Archive: April 2006' -:type: page -:filters_pre: -- erb -:permalink: april-2006 ------ - -<p>14 articles were written in <em>April 2006</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "April 2006"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: April 2008' -:type: page -:filters_pre: -- erb -:permalink: april-2008 ------ - -<p>2 articles were written in <em>April 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "April 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: April 2009' -:type: page -:filters_pre: -- erb -:permalink: april-2009 ------ - -<p>3 articles were written in <em>April 2009</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "April 2009"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: April 2010' -:type: page -:filters_pre: -- erb -:permalink: april-2010 ------ - -<p>2 articles were written in <em>April 2010</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "April 2010"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: April 2013' -:type: page -:filters_pre: -- erb -:permalink: april-2013 ------ - -<p>1 article was written in <em>April 2013</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "April 2013"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: April 2014' -:type: page -:filters_pre: -- erb -:permalink: april-2014 ------ - -<p>1 article was written in <em>April 2014</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "April 2014"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: August 2006' -:type: page -:filters_pre: -- erb -:permalink: august-2006 ------ - -<p>3 articles were written in <em>August 2006</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "August 2006"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: August 2007' -:type: page -:filters_pre: -- erb -:permalink: august-2007 ------ - -<p>1 article was written in <em>August 2007</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "August 2007"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: August 2008' -:type: page -:filters_pre: -- erb -:permalink: august-2008 ------ - -<p>1 article was written in <em>August 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "August 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: August 2011' -:type: page -:filters_pre: -- erb -:permalink: august-2011 ------ - -<p>2 articles were written in <em>August 2011</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "August 2011"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: December 2005' -:type: page -:filters_pre: -- erb -:permalink: december-2005 ------ - -<p>9 articles were written in <em>December 2005</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "December 2005"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: December 2007' -:type: page -:filters_pre: -- erb -:permalink: december-2007 ------ - -<p>5 articles were written in <em>December 2007</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "December 2007"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: December 2008' -:type: page -:filters_pre: -- erb -:permalink: december-2008 ------ - -<p>1 article was written in <em>December 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "December 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: December 2010' -:type: page -:filters_pre: -- erb -:permalink: december-2010 ------ - -<p>1 article was written in <em>December 2010</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "December 2010"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: December 2012' -:type: page -:filters_pre: -- erb -:permalink: december-2012 ------ - -<p>1 article was written in <em>December 2012</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "December 2012"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: February 2006' -:type: page -:filters_pre: -- erb -:permalink: february-2006 ------ - -<p>2 articles were written in <em>February 2006</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "February 2006"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: February 2009' -:type: page -:filters_pre: -- erb -:permalink: february-2009 ------ - -<p>1 article was written in <em>February 2009</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "February 2009"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: February 2011' -:type: page -:filters_pre: -- erb -:permalink: february-2011 ------ - -<p>1 article was written in <em>February 2011</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "February 2011"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: January 2006' -:type: page -:filters_pre: -- erb -:permalink: january-2006 ------ - -<p>2 articles were written in <em>January 2006</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "January 2006"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: January 2007' -:type: page -:filters_pre: -- erb -:permalink: january-2007 ------ - -<p>1 article was written in <em>January 2007</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "January 2007"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: January 2008' -:type: page -:filters_pre: -- erb -:permalink: january-2008 ------ - -<p>1 article was written in <em>January 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "January 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: January 2009' -:type: page -:filters_pre: -- erb -:permalink: january-2009 ------ - -<p>2 articles were written in <em>January 2009</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "January 2009"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: January 2010' -:type: page -:filters_pre: -- erb -:permalink: january-2010 ------ - -<p>1 article was written in <em>January 2010</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "January 2010"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: January 2011' -:type: page -:filters_pre: -- erb -:permalink: january-2011 ------ - -<p>1 article was written in <em>January 2011</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "January 2011"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: July 2005' -:type: page -:filters_pre: -- erb -:permalink: july-2005 ------ - -<p>1 article was written in <em>July 2005</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "July 2005"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: July 2006' -:type: page -:filters_pre: -- erb -:permalink: july-2006 ------ - -<p>4 articles were written in <em>July 2006</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "July 2006"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: July 2007' -:type: page -:filters_pre: -- erb -:permalink: july-2007 ------ - -<p>5 articles were written in <em>July 2007</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "July 2007"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: July 2008' -:type: page -:filters_pre: -- erb -:permalink: july-2008 ------ - -<p>1 article was written in <em>July 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "July 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: July 2009' -:type: page -:filters_pre: -- erb -:permalink: july-2009 ------ - -<p>1 article was written in <em>July 2009</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "July 2009"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: July 2011' -:type: page -:filters_pre: -- erb -:permalink: july-2011 ------ - -<p>1 article was written in <em>July 2011</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "July 2011"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: July 2014' -:type: page -:filters_pre: -- erb -:permalink: july-2014 ------ - -<p>1 article was written in <em>July 2014</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "July 2014"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: June 2005' -:type: page -:filters_pre: -- erb -:permalink: june-2005 ------ - -<p>1 article was written in <em>June 2005</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "June 2005"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: June 2006' -:type: page -:filters_pre: -- erb -:permalink: june-2006 ------ - -<p>2 articles were written in <em>June 2006</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "June 2006"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: June 2007' -:type: page -:filters_pre: -- erb -:permalink: june-2007 ------ - -<p>3 articles were written in <em>June 2007</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "June 2007"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: June 2008' -:type: page -:filters_pre: -- erb -:permalink: june-2008 ------ - -<p>4 articles were written in <em>June 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "June 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: June 2009' -:type: page -:filters_pre: -- erb -:permalink: june-2009 ------ - -<p>2 articles were written in <em>June 2009</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "June 2009"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: June 2010' -:type: page -:filters_pre: -- erb -:permalink: june-2010 ------ - -<p>2 articles were written in <em>June 2010</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "June 2010"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: March 2006' -:type: page -:filters_pre: -- erb -:permalink: march-2006 ------ - -<p>1 article was written in <em>March 2006</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "March 2006"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: March 2007' -:type: page -:filters_pre: -- erb -:permalink: march-2007 ------ - -<p>2 articles were written in <em>March 2007</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "March 2007"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: March 2008' -:type: page -:filters_pre: -- erb -:permalink: march-2008 ------ - -<p>2 articles were written in <em>March 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "March 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: March 2009' -:type: page -:filters_pre: -- erb -:permalink: march-2009 ------ - -<p>4 articles were written in <em>March 2009</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "March 2009"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: March 2011' -:type: page -:filters_pre: -- erb -:permalink: march-2011 ------ - -<p>1 article was written in <em>March 2011</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "March 2011"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: May 2006' -:type: page -:filters_pre: -- erb -:permalink: may-2006 ------ - -<p>12 articles were written in <em>May 2006</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "May 2006"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: May 2008' -:type: page -:filters_pre: -- erb -:permalink: may-2008 ------ - -<p>1 article was written in <em>May 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "May 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: May 2009' -:type: page -:filters_pre: -- erb -:permalink: may-2009 ------ - -<p>1 article was written in <em>May 2009</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "May 2009"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: May 2010' -:type: page -:filters_pre: -- erb -:permalink: may-2010 ------ - -<p>1 article was written in <em>May 2010</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "May 2010"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: November 2005' -:type: page -:filters_pre: -- erb -:permalink: november-2005 ------ - -<p>4 articles were written in <em>November 2005</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "November 2005"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: November 2006' -:type: page -:filters_pre: -- erb -:permalink: november-2006 ------ - -<p>1 article was written in <em>November 2006</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "November 2006"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: November 2007' -:type: page -:filters_pre: -- erb -:permalink: november-2007 ------ - -<p>3 articles were written in <em>November 2007</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "November 2007"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: November 2008' -:type: page -:filters_pre: -- erb -:permalink: november-2008 ------ - -<p>3 articles were written in <em>November 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "November 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: November 2009' -:type: page -:filters_pre: -- erb -:permalink: november-2009 ------ - -<p>3 articles were written in <em>November 2009</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "November 2009"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: November 2010' -:type: page -:filters_pre: -- erb -:permalink: november-2010 ------ - -<p>1 article was written in <em>November 2010</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "November 2010"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: October 2007' -:type: page -:filters_pre: -- erb -:permalink: october-2007 ------ - -<p>3 articles were written in <em>October 2007</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "October 2007"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: October 2008' -:type: page -:filters_pre: -- erb -:permalink: october-2008 ------ - -<p>1 article was written in <em>October 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "October 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: October 2009' -:type: page -:filters_pre: -- erb -:permalink: october-2009 ------ - -<p>2 articles were written in <em>October 2009</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "October 2009"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: September 2006' -:type: page -:filters_pre: -- erb -:permalink: september-2006 ------ - -<p>1 article was written in <em>September 2006</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "September 2006"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: September 2007' -:type: page -:filters_pre: -- erb -:permalink: september-2007 ------ - -<p>6 articles were written in <em>September 2007</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "September 2007"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: September 2008' -:type: page -:filters_pre: -- erb -:permalink: september-2008 ------ - -<p>1 article was written in <em>September 2008</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "September 2008"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: September 2009' -:type: page -:filters_pre: -- erb -:permalink: september-2009 ------ - -<p>1 article was written in <em>September 2009</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "September 2009"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: September 2010' -:type: page -:filters_pre: -- erb -:permalink: september-2010 ------ - -<p>3 articles were written in <em>September 2010</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "September 2010"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,15 +0,0 @@
------ -:title: 'Archive: September 2015' -:type: page -:filters_pre: -- erb -:permalink: september-2015 ------ - -<p>1 article was written in <em>September 2015</em>:</p> -<ul> - <% articles_by_month.select{|i| i[0] == "September 2015"}[0][1].each do |a|%> - <%= render 'dated_article', :article => a %> - <% end %> -</ul> -
@@ -1,561 +0,0 @@
------ -popular: true -summary: "A quick comparison of 10 non-mainstream programming languages, highlighting their main features, pros and cons. Each section contains also a list of links to get you started with a particular language." -permalink: 10-programming-languages -filters_pre: -- redcloth -title: 10 programming languages worth checking out -subtitle: A quick comparison of 10 non-mainstream programming languages -comments: -- :date: - :author: Nikhil - :url: http://kodeclutz.blogspot.com - :id: 2593 - :body: Great list. It's good to see factor getting more and more publicity, although I haven't 'got' it yet. -- :date: - :author: Dmitriy Kopylenko - :url: http://grailscrowd.com/members/dima767 - :id: 2594 - :body: No mention of Groovy. Sad... :-( -- :date: - :author: Dmitriy Kopylenko - :url: http://grailscrowd.com/members/dima767 - :id: 2595 - :body: On the other hand one might consider Groovy 'mainstream' and not so 'esoteric' -- :date: - :author: James - :url: http://jamesconroyfinn.com - :id: 2596 - :body: Great article. I was hoping to see Brainfuck and Whitespace. ;) -- :date: - :author: Foo - :url: "" - :id: 2598 - :body: |- - I like to think of Groovy as "poorly conceived". The slowness of Ruby without the elegance. - - Here's the least smart piece of text in the piece: "Unlike other Lisps (and Schemes) you may have encountered before, Clojure comes with some interesting additions:" - - Um... Common Lisp has two of those (data types, multimethods), and the other two are trivially added with macros. Clojure's cute, sort of, but Common Lisp is where most of the momentum is. -- :date: - :author: Walter Bright - :url: http://www.digitalmars.com/d/ - :id: 2599 - :body: One can also consider the D programming language, http://www.digitalmars.com/d, which is a modern systems programming language. -- :date: - :author: Chris Papadopoulos - :url: http://informationrain.com/ - :id: 2600 - :body: |+ - I've had a lot of fun lately playing around with Processing and would mention it as an alternative to programmers who want something fun to escape their normal work. Also, learning to problem solve in a visual environment instead of working with things like databases can be very stimulating. - - http://processing.org/ - - -- :date: - :author: Mitch - :url: http://softwareindustrialization.com - :id: 2601 - :body: What do you think of F#? -- :date: - :author: Tim Locke - :url: "" - :id: 2602 - :body: "Another interesting project written in Smalltalk is Scratch: http://scratch.mit.edu/" -- :date: - :author: Michael - :url: http://videotree.blogspot.com - :id: 2603 - :body: "Have a look at newLisp -- Lisp as a lighter weight scripting language. " -- :date: - :author: Jeff - :url: "" - :id: 2604 - :body: | - REBOL should be on the list. http://www.rebol.com/ - - Otherwise, it is a great list. My only real disappointment is that the "newer" versions of old standby languages are there in place of the goodies. Factor vs. Forth, Clojure vs. Lisp. While those new incarnations might breath new life into the old, I can almost guarantee that Factor will fade away, but good ol' Forth will still be around. - - Also, if you were going to put a Forth language on the list that wasn't ANS Forth, I'd have put Colorforth up there (http://www.colorforth.com/cf.html) - as least that one is made by the inventor of Forth. ;-) - -- :date: - :author: Brian - :url: http://htdp.org/ - :id: 2607 - :body: |- - Another great resource for PLT Scheme is the book How to Design Programs. Its free online at http://htdp.org/ - - My Computer Science Fundamentals class at northeastern university used PLT Scheme and that was the book which was used to teach not just the language but good design practices. - - I definitely recommend you check it out. -- :date: - :author: mgroves - :url: http://www.mgroves.com - :id: 2608 - :body: Interesting that you mention C# 1 time, and never mention VB, even though those are two languages that "pay the bills" for many, many programmers. -- :date: - :author: WebGlad - :url: http://www.webglad.com/ - :id: 2610 - :body: "Really good article. I liked this statement:\n\n\ - \xE2\x80\x9CThe most obvious common \xE2\x80\x98personality\xE2\x80\x99 characteristics of hackers are high intelligence, consuming curiosity, and facility with intellectual abstractions.\"\n\n\ - While I don't consider myself to be a hacker, I have a curiosity that I can't hamper. Sometimes it works to the detriment of my productivity. Still, it does lead me to explore articles like yours." -- :date: - :author: chomotus - :url: http://www.google.com - :id: 2611 - :body: for me J has no competition as a functional language.. -- :date: - :author: Ed Borasky - :url: "" - :id: 2614 - :body: "Most of us programmers fall into the class \"specially if 500 developers in your company already develop in C# and you don\xE2\x80\x99t, as a matter of fact, have a saying on the matter.\" A programming language needs a *compelling* advantage over the more general and widely-used ones in order to be worth studying for most of us.\n\n\ - And I find the argument that learning another language makes you a better programmer somewhat flawed. It's more the other way around -- really good programmers find it easy to learn the semantics of programming languages." -- :date: - :author: Elmer - :url: "" - :id: 2617 - :body: |- - Revolution: Is a must on this list! http://www.runrev.com - - Revolution is a programming environment you can quickly understand. Achieve immediate results with a visual, drag-and-drop interface builder. Use English, the language you already know, to describe program logic. Deploy powerful cross-platform solutions without the huge learning curve of other development environments. - - http://www.runrev.com -- :date: - :author: Glad_if_I - :url: "" - :id: 2623 - :body: |- - When you wrote that Haskell's has "Speed that rivals C and <notextile>C++</notextile>" I looked at the link that you provided and it proved you wrong. That is to say it stated that in computer processing that both C and <notextile>C++</notextile> is processes faster. While it stated that in some instances it beat C++ it did suggest that if optimization was a factor you had better write the program in C. The speed it talked about in the article was how fast it was for the programmer to write the code in Haskell than in C and <notextile>C++</notextile>. - - Now if you had stated: - "The Speed at which it takes to program something in Haskell rivals that of C and <notextile>C++.</notextile>" - - I would be okay with that but the way you stated it was misleading. It was a lie. I am not trying to be mean but when you talk about programming speed that means how fast the computer processes. Each programmer creates and edits code at their own speed. It is a subjective property of each programmer. Maybe it is easier to program in Haskell and thus faster supposedly. But the way you wrote it was misleading. - - C is the fastest language for a reason. Because it is one step above assembler which in turn is faster than C. If you are going to make statements that are a lie. Do not link to a page that disagrees with you. -- :date: - :author: pRtkL xLr8r - :url: http://www.deadpumpkin.com - :id: 2624 - :body: Why on earth isn't QuickBasic on this list??? -- :date: - :author: Mark Stock - :url: http://machete-lang.blogspot.com/ - :id: 2625 - :body: |- - No mention of my _fill_in_the_blank_ language! :( - - ;) -- :date: - :author: sam - :url: http://www.skyfly-travels.com - :id: 2626 - :body: | - Really good article. I liked this. - -- :date: - :author: sam - :url: http://www.skyfly-travels.com - :id: 2627 - :body: | - Really good one - -- :date: - :author: Christian - :url: "" - :id: 2630 - :body: |- - You may want to take a look at PowerShell. Focused on Administration of IT, but able to do so much more. - - http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx - - http://blogs.msdn.com/powershell/ -- :date: - :author: BK - :url: http://puppylinux.com - :id: 2632 - :body: | - Here's another, Genie (and Vala): - - http://puppylinux.com/genie - -- :date: - :author: Oliver - :url: "" - :id: 2635 - :body: |- - I'd second the mention of J above. I'm only starting out on it, but it's very satisfying how your initial bewilderment of the program text turns into comprehension relatively quickly. - - My language <i>du jour</i> is Mozart/Oz (http://www.mozart-oz.org). Mozart made me get to grips with Emacs just to play with the Oz Programmer's Interface (Oz is a virtual machine Mozart runs on). -- :date: - :author: Andreas Schipplock - :url: http://schipplock.de - :id: 2636 - :body: And what about Ada 2005? Ada is breathing! :) -- :date: - :author: clj - :url: "" - :id: 2637 - :body: "Alright, you've just motivated me to write the critique of Clojure (+ the annoyance with the (background) FUD against Java that sometimes accompanies Clojure.) " -- :date: - :author: Dave - :url: http://www.davidrware.com - :id: 2640 - :body: Very awesome article! I'm on Christmas vacation and was bored, looking for something to occupy my time and now I think I found something to. Thanks for the great read and hours of amusement. -- :date: - :author: Ulf Wiger - :url: http://ulf.wiger.net/weblog - :id: 2641 - :body: | - Damien Katz' article is indeed an interesting read, but it mainly addresses those already sold on Erlang. Others might perhaps first want to read http://sdtimes.com/link/33124, in which Katz explains how he threw away his <notextile>C++</notextile> based CouchDB after having played around with Erlang for a week, and then rewrote in 1.5 months what had taken him 6 months to write in <notextile>C++</notextile>. Otherwise, one could easily get the impression that Katz isn't very fond of Erlang... ;-) - -- :date: - :author: Phil - :url: http://technomancy.us - :id: 2647 - :body: "> Foo: Um\xE2\x80\xA6 Common Lisp has two of those (data types, multimethods), and the other two are trivially added with macros. Clojure\xE2\x80\x99s cute, sort of, but Common Lisp is where most of the momentum is.\n\n\ - Common Lisp's non-list compound data types are crippled because they're not composable in the same way lists are. Furthermore, only vectors have syntax literals, making the rest a huge pain do deal with. Clojure's biggest innovation was making it so you could start writing your program with lists, then swap in a more appropriate data structure for perf later without modifying any of your code.\n\n\ - Common Lisp has a lot of things, but momentum is not one of them." -- :date: - :author: PatzZ - :url: http://tutorial-net.blogspot.com/ - :id: 2651 - :body: hey you changed my mind i'll look into those future thanks -- :date: - :author: JeGX - :url: http://www.geeks3d.com - :id: 2665 - :body: |- - Nice overview! - Another programming/scripting language is <a href="http://squirrel-lang.org">Squirrel</a>. And here is a tool to play with Lua: <a href="http://www.ozone3d.net/demoniak3d/">Demoniak3D</a>. -- :date: - :author: Dan - :url: http://mayerdan.com - :id: 2678 - :body: Learning a new language is on my list as well, good list keep it up. -- :date: - :author: Michael - :url: "" - :id: 2679 - :body: What about the greatest and most serious language out there? LOLcode was totaly forgotten in this article. -- :date: - :author: Napolux - :url: http://www.napolux.com - :id: 2680 - :body: Well. If squeak is here I want also LOLcode. -- :date: - :author: botchagalupe - :url: http://johnmwillis.com - :id: 2681 - :body: Great post... -- :date: - :author: w43L - :url: http://blog.w43l.com - :id: 2682 - :body: "nice article, but who have time for learning of these languages\n\n\ - :(" -- :date: - :author: e - :url: "" - :id: 2686 - :body: |+ - yeah, leaving off J? The J community is like a parallel universe where they are quietly going about their own thing . . . undaunted by the rest of the world. You download it. You get an IDE, training materials, tons of examples, tutorials . . .access to all kinds of free, whole, books. You can make GUIs and games and 3D stuff ... - - I want to freeze time and spend like two or three uninterrupted years on J. You don't even need parameters if you don't want. Want to operate on whole matrices? Go ahead. insanely beautiful plots? http://www.jsoftware.com/ - - Also get ready for something amazing and quite entertaining at the same time in Frink: http://futureboy.homeip.net/frinkdocs/ I won't spoil the surprise. - - Try Joy to see how simple it can get, especially to get a taste of the theory. - - Clean is supposed to be fast, fast fast. - - - -- :date: - :author: Bertrand - :url: "" - :id: 2687 - :body: <a href="http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/">mod_lua</a> coming to an apache server near you. -- :date: - :author: Etienne - :url: http://madariaga.wordpress.com - :id: 2688 - :body: |- - Nice article. - - One of the things I find useful when looking for a new language to learn, is having a quick glance at its syntax. I know if I don't like how its code _looks_ I won't like the language. If I am interested by it, I might give some more insight to a particular language. -- :date: - :author: David - :url: http://www.autohotkey.com - :id: 2689 - :body: I think you missed Autohotkey.com which is excellent for its purpose. -- :date: - :author: Astor - :url: "" - :id: 2693 - :body: "Even if it's not really a \"functionnal paradigm oriented\" programming language, you should definitively take a look at \"the D programming language\" : http://www.digitalmars.com/d/ . It kind of tries to compell with C/C++ for system programming (yep inline assembly code is possible), but also offer some nice features as far as concurrency is concerned, like \"pure\" keyword for functions or shared/unshared global state for multithreaded operations." -- :date: - :author: MAK - :url: "" - :id: 2707 - :body: |- - Hello, I wanted to communicate with you via email, but the email link on your floating menu uses a mailto mechanism and since I'm under OpenBSD with no mailto link set in Firefox, I'm unable to get through to you (I even tried viewing source :-) - - Could you please write back to me on the email address mentioned in this post? - - Thanks. -date: 2008-12-21 15:01:15 +01:00 -tags: -- programming -type: article -toc: true -intro: | - If you program for fun or profit, chances are that you know C, C++, Java, PHP, Perl, Python or Ruby. These programming languages are all widely known, and, to a different degree, used in commercial applications. At least some of them can safely be considered _mainstream_, even if that word has become so overused and misused that has almost lost its original meaning, if it ever had one. - -extended_intro: | - If you are earning your living by coding, it's often one of these languages that pays the bills. Nevertheless, true hackers frequently meander in other directions, exploring and discovering different paradigms and methodologies, sometimes to the most "esoteric":http://esolangs.org/wiki/Main_Page extremes. ------ - -bq. — This article has been translated into <a href="http://science.webhostinggeeks.com/10-programskih-jezika">Serbo-Croatian</a> by ??<a href="http://webhostinggeeks.com/">Web Geeks</a>?? — - - -If you program for fun or profit, chances are that you know C, C++, Java, PHP, Perl, Python or Ruby. These programming languages are all widely known, and, to a different degree, used in commercial applications. At least some of them can safely be considered _mainstream_, even if that word has become so overused and misused that has almost lost its original meaning, if it ever had one. - -If you are earning your living by coding, it's often one of these languages that pays the bills. Nevertheless, true hackers frequently meander in other directions, exploring and discovering different paradigms and methodologies, sometimes to the most "esoteric":http://esolangs.org/wiki/Main_Page extremes. - -bq. "The most obvious common 'personality' characteristics of hackers are high intelligence, consuming curiosity, and facility with intellectual abstractions. Also, most hackers are 'neophiles', stimulated by and appreciative of novelty (especially intellectual novelty). Most are also relatively individualistic and anti-conformist." - -p((((. – Eric S. Raymond, ??"The Jargon File":http://catb.org/jargon/html/personality.html?? - -Even if you're particularly devoted to one of the languages mentioned above, it is normal to be curious about what else is out there. As the end of the year approaches, I find myself thinking about learning – or at least become acquainted with – some less known, more experimental, programming languages. -I was originally planning on learning another programming language as a New Year's Resolution, which is quite common among programmers. The most difficult task turned out to be _choosing_ a particular language: there are so many out there which makes it very hard to decide. - -This article deals with ten possible candidates, and it's far from being an exhaustive list. The programming languages described henceforth are very different from each other, but they all have one thing in common: they all stimulate my curiosity in their own, very different ways. - -h3(#haskell). Haskell - -I tried to learn Haskell in the past. Quietly, I started diving into the multitude of articles, tutorials, overviews and even books about this fascinating academic language which claims to achieve functional purity though remaining extremely useful, practical and efficient. Sadly, I'm still not able to fully grasp some of its most crucial concepts, such as "monads":http://en.wikibooks.org/wiki/Programming:Haskell_monads, but this still doesn't put me off _wishing_ to learn the language. - -If you've never enountered Haskell before, I find "The Evolution of a Haskell Programmer":http://www.willamette.edu/~fruehr/haskell/evolution.html an amusing and informative read. Although aiming to be humorous in a way, it serves a very important didascalic purpose: it is one of the most complete collections of the different paradigms and programming approaches Haskell allows. - -Besides its very elegant, pragmatic and almost-magical syntax, what really intrigues me about this language is what it offers, in terms of features: - -* 9 different "implementations":http://www.haskell.org/haskellwiki/Implementations (multiple compilers _and_ interpreters) -* Countless "standard libraries":http://haskell.org/ghc/docs/latest/html/libraries/ "packages":http://hackage.haskell.org/packages/archive/pkg-list.html which can be used to solve _any_ programming challenge -* Abundant "learning material":http://www.haskell.org/haskellwiki/Books_and_tutorials -* "Speed":http://www.haskell.org/haskellwiki/Why_Haskell_matters#The_speed_of_Haskell that rivals C and C++ -* Very mature cross-platform compatibility - -The catch? It is likely to be very different from any other language you might have encountered before, and that's probably the reason why some people find it difficult to learn and master. That being said, if you are looking for a challenging (but very rewarding, I believe) New Year's Resolution, you should definitely go for this. - -h4. To get you started... - -* "Official Haskell Wiki":http://www.haskell.org/ -* "Haskell Wikibook":http://en.wikibooks.org/wiki/Haskell -* "Real World Haskell":http://book.realworldhaskell.org/read/index.html -* "37 Reasons to Love Haskell":http://cdsmith.wordpress.com/2007/07/29/37-reasons-to-love-haskell-playing-off-the-ruby-article/ -* "Haskell for the Ruby Guy":http://antoniocangiano.com/2007/03/13/haskell-eye-for-the-ruby-guy/ -* "A-Z of Programming Languages: Haskell":http://www.techworld.com.au/article/261007/-z_programming_languages_haskell -* "Learn you a Haskell for Great Good!":http://learnyouahaskell.com/ -* "Haskell Hacking":http://cgi.cse.unsw.edu.au/~dons/blog/2008/05/16 - -h3. Erlang - -"Erlang":http://erlang.org/ is a concurrent programming language originally developed by Ericsson for their real-time applications. It goes without saying that with these premise, Erlang seems the most natural answer to all concurrency problems you may encounter in your life as a programmer. -Developing with concurrency in mind feels natural and easy in Erlang, and the performance of Erlang-powered systems can be unmatched. - -Quite a few interesting applications have been developed in this language, such as: - -* "CouchDB":http://couchdb.apache.org/, a popular distributed, document-oriented database -* "Yaws":http://yaws.hyber.org/, a high-performance web server -* even "Facebook Chat":http://www.facebook.com/note.php?note_id=14218138919&id=9445547199 - -The price Erlang adepts have to pay, as Damien Katz (CouchDB creator and Erlang enthusiast) "points out":http://damienkatz.net/2008/03/what_sucks_abou.html, is: - -* Awkward syntax, inspired by Prolog -* Weird if expressions -* Difficult string operations -* No classes or namespaces - -...this list could go on. Damien's article is an interesting read, enough to put anyone off learning the language if read superficially. On the other hand, it provides an invaluable resource for newcomers who wish to be prepared before taking on the challenge of learning Erlang to build their next scalable, concurrent and industry-proof application. - -h4. To get you started... - -* "Official Erlang Web Site":http://www.erlang.org/ -* "An Introduction to Erlang":http://www.onlamp.com/pub/a/onlamp/2007/09/13/introduction-to-erlang.html -* "Erlang Style Concurrency":http://www.defmacro.org/ramblings/concurrency.html -* "PlanetErlang":http://www.planeterlang.org/ -* "Erlang Projects":http://www.erlang-projects.org/ - -h3(#io). Io - -"Io":http://iolanguage.com/ is a relatively new programming language by Steve Dekorte which recently surfaced from Google's oblivion (if you tried googling for it a few months ago, you couldn't event find its home page) thanks to a short vut stimulating "article":http://hackety.org/2008/01/05/ioHasAVeryCleanMirror.html by "_why":http://whytheluckystiff.net/. It doesn't have the best name for a programming language, that's for sure, but it's definitely a breath of fresh air in terms of the way it works. - -Its unusual, minimalist and yet elegant and powerful syntax reminds of Smalltalk, but the language goes far beyond that. Io is an object-oriented, prototype-based, message-based and fully-reflective programming language. This means that you use messages like in Smalltalk, you create objects like in Javascript and every bit of your code can be inspected and passed around as you see fit. - -If you think Ruby allows fancy (and potentially dirty) tricks like metaprogramming and monkey-patching, Io takes this to a whole different level, imposing virtually no limitation to the programmer. What's truly amazing is that its grammar and syntax are so minimal that you can learn them in literally 10 minutes. After that, you can start experimenting, first with its extremely small core and then with its extension libraries and bindings. - -Io has indeed a lot of potential. Granted, it's still young and under development, but also already quite efficient and suitable for real-world tasks demanding high speed and concurrency. It is implemented in C, but Ola Bini started to design a similar language called "Ioke":http://kenai.com/projects/ioke/ for the Java Virtual Machine. - -h4. To get you started... - -* "Official Io Web Site":http://iolanguage.com/ -* "Io Repository on Github":http://github.com/stevedekorte/io/tree/master -* "Io user group":http://tech.groups.yahoo.com/group/iolanguage/ -* "Io has a very clean mirror":http://hackety.org/2008/01/05/ioHasAVeryCleanMirror.html -* "Io Notes":http://iota.flowsnake.org/ -* "Io Language Notes":http://wiki.type-z.org/index.php/Io/IoLanguage -* "Blame it on Io! A slow-paced introduction to the Io language":http://ozone.wordpress.com/2006/03/15/blame-it-on-io/ -* "Io Wikibook":http://en.wikibooks.org/wiki/Programming:Io - -h3(#plt-scheme). PLT Scheme - -I stumbled upon the "PLT Scheme web site":http://plt-scheme.org/ while browsing for different Lisp flavors about a year ago. At the time, I was determined to learn the rudiments of Lisp and I started reading a few articles and books on this old and yet still popular language. -Although I was originally put off by certain Common Lisp literature, which dismissed Scheme as an almost-heretic attempt to revitalize an venerable language, I soon found out that Scheme – and PLT Scheme in particular – is definitely worthy of attention and interest. - -Being a technical writer, I immediately became fond of the "PLT Scheme Guide":http://docs.plt-scheme.org/guide/, one of the clearest and most well-organized examples of documentation available for a programming language I've ever come across. -The manual is exquisitely crafted as a Getting Started Manual and a Reference Book at the same time, though remaining pleasant to read sequentially: a rare trait in technical documentation. Best of all, it's free: you simply have no real excuse not to read it. - -Besides its excellent documentation, PLT Scheme feels like a fresh and modern implementation of one of the two most important dialects of Lisp. It's cross-platform, it has an extensive "collection of packages":http://planet.plt-scheme.org/ and a very active community behind it. -After my first attempt to learn Haskell, I felt compelled to try out PLT Scheme and it immediately felt much easier and more user friendly to learn, partly because of "DrScheme":http://download.plt-scheme.org/drscheme/ a dedicated IDE/learning tool optimized to get you started and feel comfortable with the language. -Caveats? None, unless you have an adversion for parenthesis, that is. - -h4. To get you started... - -* "Official PLT Scheme Web Site":http://plt-scheme.org/ -* "PLT Scheme Guide":http://docs.plt-scheme.org/guide/index.html -* "PLaneT":http://planet.plt-scheme.org/ -* "Quick: An Introduction to PLT Scheme with Pictures":http://docs.plt-scheme.org/quick/ -* "More: Systems Programming with PLT Scheme":http://docs.plt-scheme.org/more/ - -h3(#clojure). Clojure - -"Clojure":http://clojure.org/ is the most recent and notable attempt to bring Lisp back to life and ready to face the challenges posed to IT systems by the new century: concurrency and scalability. Because it runs on the Java Virtual Machine, you also get Java interoperability for free, in a more Lispy flavour. Although I'm a bit reluctant to deal with anything related to Java nowadays, Clojure's approach makes it more appealing. - -Unlike other Lisps (and Schemes) you may have encountered before, Clojure comes with some interesting additions: - -* "Multimethods":http://clojure.org/multimethods -* "Agents asynchronous actions":http://clojure.org/agents -* Some interestings "special forms":http://clojure.org/special_forms -* Many pre-built "data structures":http://clojure.org/data_structures, like Vectors, Maps, Sets, Collections, ... - -Despite all this, Rich Hickey became increasingly popular both in the Lisp and Java world for creating such an interesting and well-designed language. Unlike with many new (and old) programming languages, I have yet to find a single blog post or article which is seriously criticizing Clojure in any way. - -h4. To get you started... - -* "Official Clojure Web Site":http://clojure.org -* "Clojure User Group":http://groups.google.com/group/clojure -* "Clojure presentation on InfoQ":http://www.infoq.com/presentations/hickey-clojure -* "Trying Clojure":http://netzhansa.blogspot.com/2008/10/trying-clojure.html -* "My first look at Clojure":http://groups.google.com/group/clojure/msg/f038decc18c7da37 -* "Enclojure":http://enclojure.net/Index.html - -h3(#squeak). Squeak - -"Squeak":http://www.squeak.org/ has become one of the most popular Smalltalk implementations available. It has been used in some very interesting projects: - -* "EToys":http://wiki.laptop.org/go/Smalltalk_Development_on_XO, a kids-oriented but powerful development environment built in Squeak, was included as part of the educational sofware suite of the "OLPC":http://www.laptop.org. -* "Seaside":http://www.seaside.st/ is a modern and very productive web framework running on Squeak. -* "Croquet":http://www.croquetproject.org/index.php/Main_Page is a development solution to build complex, multi-user virtual worlds. - -If you ask "Randal Schwartz":http://www.stonehenge.com/merlyn/, he'll explain you "why":http://www.infoq.com/articles/smalltalk-comeback-schwartz Squeak and Smalltalk are at least worth a look. Personally, while I'm attracted by Smalltalk's unique approach to programming and its friendly syntax, I am still a bit overwhelmed by the way it works. -Squeak, and Smalltalk in general, runs inside (literally) a virtual machine written in Squeak itself. This means that: - -* You write your code inside Squeak -* You debug, inspect and interact your code inside squeak -* You run your code inside Squeak -* You can install Squeak on virtually any platform, including mobile phones, fairly easily - -Everything lives inside Squeak. It's very weird to picture this without actually trying it, so I suggest you "download it":http://www.squeak.org/Download/ and give it a try: it will definitely be an unusual but intriguing experience. - -Smalltalk takes programming to a whole different level, which is simply unimaginable for other languages. In return, it asks you to fully embrace the Smalltalk way of doing things, according to which external text editors, external version control systems and other common tools familiar to traditional programmers simply loose their purpose. - -h4. To get you started... - -* "Official Squeak Web Site":http://www.squeak.org/ -* "Squeak by Example":http://squeakbyexample.org/ -* "SqueakLand":http://www.squeakland.org/ -* "Ruby's Roots: Smalltalk Comeback and Randal Schwartz on Smalltalk":http://www.infoq.com/articles/smalltalk-comeback-schwartz -* "FLOSS Weekly 29: Dan Ingalls":http://twit.tv/floss29 - -h3(#ocaml). OCaml - -Like Smalltalk, "OCaml":http://caml.inria.fr/ has been getting more attention recently than in the past. Sure, not everyone is planning to learn is these days, but after reading "this article":http://enfranchisedmind.com/blog/2008/04/14/useful-things-about-static-typing/ I admit I was eager to give it a proper try. - -Despite being statically typed, OCaml offers some of the features which are common in dynamically typed languages like Ruby, such as duck typing, the possibility of creating Domain-Specific Languages and even extending the language syntax with custom operators and constructs. - -Additionally, the "OCaml Batteries Included":http://batteries.forge.ocamlcore.org/ project was created as an attempt to bundle a standard set of commonly-used library together with the language core. Even if this project is still in alpha stage, it definitely "looks promising":http://dutherenverseauborddelatable.wordpress.com/2008/11/07/a-taste-of-ocaml-batteries-included/. - -h4. To get you started... - -* "Official Caml Web Site":http://caml.inria.fr/ -* "Objective Caml Tutorial":http://www.ocaml-tutorial.org/ -* "A Concise Introduction to Objective Caml":http://www.csc.villanova.edu/~dmatusze/resources/ocaml/ocaml.html -* "The OCaml Alliance Network":http://wiki.cocan.org/ -* "OCaml News":http://ocamlnews.blogspot.com/ -* "OCaml Batteries Included":http://batteries.forge.ocamlcore.org/ - -h3. Factor - -"Factor":http://factorcode.org/ is to Forth what "Clojure":http://clojure.org is to Common Lisp: a reincarnation of an ancient language in a more modern and practical form. In the specific case, although it borrows from Lisp and Self as well, Factor retains the main characteristics of its ancestor: it's stack-based, concatenative and has postfix notation. -While this is enough to put some people off, if you digg deeper you'll discover that Factor offers all the most important features available in contemporary programming languages: garbage collection, dynamic typing, an object system, ... they're just presented in a very different way: - -bq. "Learning Factor is tough. One reason for this is that Factor is very different from other programming languages. Programmers today are used to imperative programming languages where data is stored and passed around in named variables (or function calls, which name their variables). Factor is the opposite of this. A lot of code tends to be written in a functional style, and even more jarringly, variables are rare, only referenced in a small fraction of words. Nobody intends to change any of this; it's a feature, not a bug!" - -p(((. – Daniel Ehrenberg, ??"Learning Factor":http://useless-factor.blogspot.com/2008/01/learning-factor.html?? - -Like Haskell, Factor demands a completely different programming approach to what you may be used to, but once you get past that, it can be as useful as any other language, if not more. The "Furnace":http://docs.factorcode.org/content/article-furnace.html web framework, which powers the "Concatenative":http://concatenative.org/ wiki, is entirely built in Factor and runs on top of a Factor web server. - -h4. To get you started... - -* "Official Factor Web Site":http://factorcode.org/ -* "Factor on the Concatenative Wiki":http://concatenative.org/wiki/view/Factor -* "Factor Documentation":http://docs.factorcode.org/ -* "Learn Factor":http://learnfactor.org/ -* "Planet Factor":http://planet.factorcode.org/ - -h3(#lua). Lua - -"Lua":http://www.lua.org/ ("Moon" in Portuguese), is a lightweight and fast scripting language which can be easily embedded in other systems. Compared to the other languages mentioned in this article, it is definitely the less alien of the lot: if you know a tiny bit of C or Java, you'll be able to understand (and possibly write) 80% of Lua code without reading a single line of its documentation. - -Despite its simplicity, Lua is considered a multi-paradigm language supporting imperative, functional and even object-oriented approaches. More specifically, Lua's _tables_ provide a simple but powerful way to create arrays, hashes and even classes (or better, prototypes). Simple (and multiple) inheritance is achieved through _metatables_, which allow calls to undefined functions to be _transferred_ to parent tables. - -Lua programs are not interpreted in the traditional way: they are compiled to bytecode and then executed in the Lua Virtual Machine. As a result, Lua code tends to be executed much faster than other interpreted languages, so fast that "as fast as Lua" has become a proverbial expression. -Lua found its niche in embedded applications and games development, basically everywhere there's the need to provide a fast scripting language which is also very easy to learn and extend with C or other languages. - -h4. To get you started... - -* "Official Lua Web Site":http://www.lua.org/ -* "Lua Manual":http://www.lua.org/manual/ -* "Lua-users":http://lua-users.org/ -* "Learning Lua":http://icculus.org/~theoddone33/lua/ -* "Lua for Beginners":http://lua.gts-stolberg.de/en/index.php?uml=1 - -h3(#scala). Scala - -You may not be happy to see "Scala":http://www.scala-lang.org/ in this list instead of other very valid and equally powerful languages for the Java Virtual Machine such as "Groovy":http://groovy.codehaus.org/. While there was no doubt on whether Clojure should have been included or not, I was a bit hesitant to include Scala. In the end, I chose to do so simply because Scala fits better in this list than other languages: as you should have noticed by now, I am somehow more inclined to learn functional languages as opposed to their object-oriented counterparts. - -Scala is both object oriented and functional. It offers the best of both worlds: classes, traits and mixins which may be familiar to OOP lovers but also anonymous functions, currying and pattern matching which may please Haskell enthusiasts. Additionally, it's also compatible with Java: so if you use Java for work, trying out Scala for pleasure is definitely the most logical next step, especially if you want to experiment with functional programming in the meantime. - -Compared to learning a fully-functional (no pun intended) language like Haskell, Clojure or PLT Scheme, learning Scala is definitely easier and will feel less alien. - -h4. To get you started... - -* "Official Scala Web Site":http://www.scala-lang.org/ -* "The Case for Scala":http://blogs.zdnet.com/Burnette/?p=690 -* "Scala Wiki":http://scala.sygneca.com/ -* "Learning Scala with Project Euler":http://grok-code.com/75/learning-scala-with-project-euler/ -* "Roundup: Scala for Java Refugees":http://www.codecommit.com/blog/scala/roundup-scala-for-java-refugees - -h3. Epilogue - -There are so many interesting programming language out there that it's very hard to keep track of all of them. I hope this list can aid you in the right direction, whichever it may be. -Some people may debate over the very essence of this article: why _choosing_ a programming language? Why spending time and energy in a task which may lead to a lot of confusion in your mind and lead you nowhere? What's the purpose of learning something which may feel totally alien to you? - -A programming language is ultimately just a tool to get your job done. If you have to write an end-user, desktop GUI application which will always run on Windows and which needs to inteface with Microsoft technologies, you'll choose C# over Haskell, there's no doubt about that. Especially if 500 developers in your company already develop in C# and you don't, as a matter of fact, have a saying on the matter. - -But what if you _could_ choose? What if you wanted to develop your own geeky command line application to automate a particular task for yourself, and not because someone else tells you to do so? Would you be willing to experiment with something totally different and potentially difficult just for the sake of learning new things? - -If the answer is yes, then you should take a look at this list again. Not now, maybe not this month or this year, but when you feel the time is right, and give one of these languages a shot. It may not end well (so far I attempted to learn Haskell twice, with no luck), but I promise you it will be worthwhile, in the long run. -If you already mastered some of these languages already, or even all of them, be assured that they're plenty out there ready to be discovered and open your mind even more. Or, if you prefer, there are a lot of minds out there which may need guidance in learning and discovery. Help them. Write articles, tutorials, books, educate and evangelize: ultimately, that will be your greatest reward.
@@ -1,496 +0,0 @@
------ -subtitle: "Ten possible reasons to learn the Ruby Programming Language" -popular: true -permalink: 10-reasons-to-learn-ruby -filters_pre: -- erb -- redcloth -title: "10 Reasons to Learn Ruby" -comments: -- :date: 2007-09-05 17:33:43 +02:00 - :author: Joel Moss - :url: http://joelmoss.info - :id: 48 - :body: "Great article! It just explains perfectly why Ruby is starting to take over my life. And why Rails makes CakePHP look like a very weak wannabe. But I don't blame Cake (I use it every day); it's PHP's fault. " -- :date: 2007-09-05 22:55:39 +02:00 - :author: paddy3118 - :url: http://paddy3118.blogspot.com - :id: 49 - :body: |- - No mention of maintenance or testing? - - Now you have learnt Ruby, would you defend being able to write code where the indentation is contrary to the code structure? - - - Paddy. -- :date: 2007-09-06 01:07:22 +02:00 - :author: Fabio Cevasco - :url: http://www.h3rald.com/ - :id: 50 - :body: "@Joel: Glad you discovered Ruby! Good luck!\n\n\ - @Paddy: You're right. I should have mentioned at least testing. I updated the article (Reason #1) to at least mention Test::Unit. And yes, as a matter of fact since I've been using Ruby my code indentation definitely makes more sense. You seem to be a Python enthusiast, from your site at least: sorry about the silly remark about Python's indentation in my article... I just couldn't resist (but I did added an interesting note about Python's indentation in the notes too). " -- :date: 2007-09-06 07:57:41 +02:00 - :author: Chris - :url: "" - :id: 51 - :body: Thanks so much for this. I've been teaching myself to program for several months now with Ruby, and this very much helped me put things I've learned into context. -- :date: 2007-09-07 03:14:21 +02:00 - :author: Frank Spychalski - :url: http://amazing-development.com - :id: 53 - :body: |- - Very nice writeup. I totally agree. - - There's only one thing I really hate about Ruby: it made me realize how bad the other languages are and took a lot of fun out of the "normal" software development. - - Right now I have to code PHP (BTW, Joel is 100% correct, CakePHP is a pretty good framework and makes working with PHP bearable) and more than a few times every day I would like to puke because the language sucks. -- :date: 2007-09-07 05:17:27 +02:00 - :author: Masklinn - :url: "" - :id: 54 - :body: "> Interactive Shell: the Interactive Ruby Shell can be used to test Ruby code instantly, similar to the Python console. - Similar, but much much worse. The Python consoles (both CLI launched by typing \"python\" and the IDLE environment) are more flexible, more practical and much less annoying than IRB (I suppose that's what you were talking about) - > Unfortunately this means that you won't be able to write your whole program in a single line of code, like the C++ folks - that'ss too bad, isn't it? - In reality, you can. The statement terminator (in both Ruby and Python) is either a newline or \";\". - So you can write your whole Ruby program on a single line, I think (you'd need to use parens to define functions, but it can be done. - > Everything is an object, as it should be - I think you should use examples with things that aren't objects in \"popular\" languages, such as integers or booleans, or even 'nil'. Strings aren't object in PHP because PHP barely has objects, so it's not really fair. - > Everything has a value - You should emphasize that point by showing that e.g. if/else blocks return a value. - > the value of the last assignment will always be returned. - Didn't you mean \"the last value evaluated\" or \"the value of the last expression\"? Because you definitely aren't limited to assignments. - > You can do the same thing in PHP as well, but most people don't really use the function. - Because it's ugly, hackish, and since you create functions by providing strings there is no syntax checking before runtime itself." -- :date: 2007-09-07 05:44:24 +02:00 - :author: Fabio Cevasco - :url: http://www.h3rald.com - :id: 55 - :body: "@Masklinn: Thanks a lot for your comment. I updated the article where necessary!" -- :date: 2007-09-08 01:33:10 +02:00 - :author: Kookoolen - :url: "" - :id: 56 - :body: |- - Nice article. - - For feature #4, you should add that even nil is an object. Try nil.to_i for example. - - Moreover you can open NilClass and add your own methods ! Rails does so to add debugging information when you called a method on nil. -- :date: 2007-09-08 01:39:37 +02:00 - :author: IronRuby - :url: http://ironruby.blogspot.com - :id: 57 - :body: |- - - Hi, - - Nice and happy to see your 10 Reasons added to "10 another advantages":http://ironruby.blogspot.com/2007/09/many-reasons-to-fall-in-love-with.html on a blog that is based on IronRuby. - - The Author claims 10 + 10 Advantages as 100 rather tan 20. - - Happy Reading there. -- :date: 2007-09-08 10:35:28 +02:00 - :author: FlySwat - :url: "" - :id: 60 - :body: | - So ruby has all of the features that C# has, except that its slower. - - Cool! - -- :date: 2007-09-10 01:28:59 +02:00 - :author: Shantanu - :url: "" - :id: 61 - :body: Have you taken a look at Scala, or Erlang? -- :date: 2007-09-11 13:06:50 +02:00 - :author: Steffen - :url: http://www.ruzee.com - :id: 62 - :body: |- - Correction for #8: - - The syntax for hash initializers is - - { :key1 => value1, :key2 => value2, ... } - - ('=>' instead of just '=') - - ... -- :date: 2007-09-11 15:19:16 +02:00 - :author: Fabio Cevasco - :url: http://www.h3rald.com - :id: 63 - :body: |+ - @Shantanu: I am now, they sound interesting actually. - - @Steffen: You're 100% right. This was due to the fact that I accidentally stripped all the > symbols out of the article when I converted it from BBCode to Textile. Thanks! - -- :date: 2007-09-11 16:13:25 +02:00 - :author: Erik Ordway - :url: "" - :id: 64 - :body: |- - The thing that everyone always seems to forget about XML is that it was never meant to be read/written buy humans. It was and is meant to be a cross language/platform transport methodology. It is easy process on each end without having to dealt with things like big and small endingness , line feed and carriage returns in files, and crap like that. The core of it is that if you personally are reading or writing XML then you are doing something wrong. Ant on java being a classic exampl, it was not even valid xml. - All that said I love Ruby too. -- :date: 2007-09-11 23:47:36 +02:00 - :author: !binary | - 5pel - - :url: "" - :id: 66 - :body: !binary | - 5pel77yM5oiR6YO955yL5LiN5oeC - -- :date: 2007-09-12 04:19:26 +02:00 - :author: jim - :url: "" - :id: 67 - :body: And make sure to read through resources such as http://snippets.dzone.com/tag/ruby as well. A real time saver from time to time! -- :date: 2007-09-12 20:11:38 +02:00 - :author: wayne - :url: "" - :id: 68 - :body: !binary | - 5oiR5LqG6KejcnViee+8jOS9huaYr+eci+WujOWQjuaIkeWGs+WumuW8gOWn - i+WtpuS5oHJ1Ynk= - -- :date: 2007-09-14 07:24:57 +02:00 - :author: Josh S. - :url: http://www.fireandknowledge.org - :id: 70 - :body: |- - Very interesting -- makes me more interested in Ruby than I've ever been. - - BTW, your PHP number example is missing semicolons. -- :date: 2007-09-14 09:21:16 +02:00 - :author: wefwefwef - :url: "" - :id: 72 - :body: |- - 10 reasons to NOT learn ruby: - - 1. It's Shit - 2. It's Shit - 3. It's Shit - 4. It's Shit - 5. It's Shit - 6. It's Shit - 7. It's Shit - 8. It's Shit - 9. It's Shit - 10. It's Shit -- :date: 2007-09-14 12:15:41 +02:00 - :author: Anders Persson - :url: "" - :id: 73 - :body: | - Still Java and C# have nice built-in GUI handling, and i don't have to download a lot of package like TCL/TK. - Ok Ruby like other language is nice, but for people like me that have to develop GUI-apps from time to time Java and C# still is my choice. - - I was looking into Ruby, and it is nice but... - Maby the language expands in the future. - -- :date: 2007-09-15 01:06:37 +02:00 - :author: Anon - :url: "" - :id: 74 - :body: |+ - Do I smell Blub programmers in the previous two comments? - -- :date: 2007-09-16 12:23:53 +02:00 - :author: Anders Persson - :url: "" - :id: 83 - :body: | - Hmm start to get old, i don't know what a Blub is, - But i guess it some one don't like eg Ruby. - I can't talk for others, just for me. - I like the syntax, and the language - I have written a script to build my company software on Windows, looked a Perl as i have worked with before but thout that i could be nice to test Ruby, and it did a great jobb, easy to read etc. - But to start using it as regular no 1 language i still missing easy GUI stuff like in Java. - Maby you thing i am a "Blub" if so okej a put it on my card *smile* - // Anders - -- :date: 2007-09-17 15:13:43 +02:00 - :author: Fielding Feng - :url: "" - :id: 84 - :body: 10 reasons that describe in this article are either already exist in Java, or not very useful to me. Except the unless condition. -- :date: 2007-09-24 20:28:57 +02:00 - :author: toby - :url: "" - :id: 89 - :body: |- - Python, en, i like it. - Ruby, nothing -- :date: 2007-10-07 13:32:09 +02:00 - :author: riffraff - :url: http://www.goto10.it - :id: 100 - :body: | - good list, but a detail: lambda is a method, not a keyword :) - >> Kernel.method :lambda - => #<Method: Kernel.lambda> - -- :date: 2007-10-23 13:04:15 +02:00 - :author: el_vartauy - :url: "" - :id: 105 - :body: |- - good list, but... why if you don't like the python indentation problems, you prefer yaml over xml? - i think a handy built in method is not enough? - good luck! -- :date: 2008-04-07 08:44:15 +02:00 - :author: http://prayas.blogvis.com/ - :url: "" - :id: 228 - :body: |- - liked your article and visitors arguments. - Ruby rockssssss. -- :date: - :author: kraig - :url: "" - :id: 453 - :body: ruby is so cool, i love it as well! -- :date: - :author: "Arya A. " - :url: http://asemanfar.com - :id: 455 - :body: |- - To those bashing Ruby without giving real reasons: you're not really accomplishing anything by posting. - - @el_vartauy YAML is especially good for configuration files because it makes it really easy to edit/read. As for using XML or YAML for data transfer, you're actually probably better off using JSON because XML tends to be larger in byte size and YAML isn't as supported as JSON or XML. And you should note that even Google, software engineer giant, decided XML wasn't right for their usage and developed Protocol Buffers (and recently open sourced it). - - @Masklinn More of a question than anything: What are the annoyances of IRB that Python interactive console lacks? -- :date: - :author: alan - :url: "" - :id: 456 - :body: |- - @flyswat: so C# has all the features of C++, except that its slower. Since you're probably a microsharft fan, try ironruby and get essentially the same speed. - - @fabio: you can do ruby deployment as easily as php deployment with phusion passenger. -- :date: - :author: postmodern - :url: http://houseofpostmodern.wordpress.com/ - :id: 479 - :body: |- - Nice article, it summarizes many of the things that I use in everyday work. - - I'd suggest covering the Range class and the methods in Enumerable (such as each/map/select/inject/find/sort). Maybe talk about the other cool things you can do with blocks (aka closures). These tools have made solving projecteuler.net problems a cake walk. - - 5.times { puts "oooh yeah" } - - 5.downto(0) { |i| - puts "t - #{i} minutes, until launch" - sleep 60 - } - - (1..10).to_a - => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] - - (1..10).map { |i| i * i } - => [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] - - (1..10).select { |i| i % 2 == 0 } - => [2, 4, 6, 8, 10] - - (1..100).inject { |sum,i| sum + i } - => 5050 - - (1..1000).to_a.reverse.find { |i| i % 11 == 0} - => 990 - - Also, might want to give a shout-out to Ruby 1.9.1, which is due to be released in 1.5 months. I'm currently using Ruby 1.9.1-preview1 for projecteuler.net stuff, it's byte-code VM is quite fast. - - As for the other comments that I noticed, it appears that other languages have some angry trolls. Not a language/community feature I'm really interested in. -date: 2007-09-05 12:40:00 +02:00 -tags: -- ruby -type: article -toc: true -intro: | - I discovered Ruby fairly recently, through the excellent Ruby on Rails framework. Although I don't consider myself a Ruby expert by any means, I read the PickAxe[2], I've coded a few utilities for my personal use in Ruby and I'm currently developing with Rails during my free time. -extended_intro: | - Ruby is currently my programming language of choice; I started off with Turbo Pascal in high school, discovered C and C++ at university, did my thesis in Java and learned PHP from scratch because I wanted to learn how to make websites quickly and easily. I guess I feel compelled to code sometimes, more as a form of entertainment than anything else. Rather dissatisfied with what I tried language-wise, I was determined to start learning either Python or Ruby. I chose the latter because I didn't want incorrect indentation to break my code, and here I am, heaping praise upon it. ------ -h3. Preamble - -I discovered Ruby fairly recently, through the excellent Ruby on Rails framework[1]. Although I don't consider myself a Ruby expert by any means, I read the PickAxe[2], I've coded a few utilities for my personal use in Ruby and I'm currently developing with Rails during my free time. - -Ruby is currently my programming language of choice; I started off with Turbo Pascal in high school, discovered C and C++ at university, did my thesis in Java and learned PHP from scratch because I wanted to learn how to make websites quickly and easily. I guess I feel compelled to code sometimes, more as a form of entertainment than anything else. Rather dissatisfied with what I tried language-wise, I was determined to start learning either Python or Ruby. I chose the latter because I didn't want incorrect indentation to break my code[3], and here I am, heaping praise upon it. - -There are plenty[4] of introductions, tutorials, articles and essays of different sorts which aim to guide the novice and advise the guru on how to get the most out of Ruby. This article, however, is not one of them. - -It's more of a modest, humble, and incomplete list of a few reasons which may (or may not) entice you to use Ruby or at least play with it a bit. A word of caution: if you are using another programming language for work or whatever, don't complain to me if you don't want to use it anymore - that's exactly what happened to me, but luckily, it didn't matter. Ruby is a very beautiful and elegant language, but like all things of this sort, it may well poison your mind and corrupt your soul... - -You have been warned. -h3. Why learn Ruby? - -h4. #1 - You get all the treats without the tricks - -Ruby borrows from all the best programming languages out there, from smalltalk to Java, Perl to Python[5]. Basically, here's the features and functionalities Ruby gives you which you may have seen elsewhere: - -* _Exceptions:_ Believe it or not, exceptions are one of the most important things to master when developing any kind of application. PHP4 programmers probably won't know anything about them and they'll tell you to just print stuff on the screen or use their "extremely advanced" class for error handling. Please, ignore them. Fortunately for all of us, Ruby comes with try/catch (or better, begin/rescue) blocks and a series of predefined, extensible Exceptions to handle errors properly. -* _Namespaces:_ Ruby modules make excellent and easy-to-use namespaces, for the joy of Java and C++ enthusiasts. -* _Built-in Regular Expressions:_ For all the Perl monkeys, you can put something between slashes and it will become a regular expression, ready to be matched with a =~ operator. -* _Overloadable operators:_ Ruby lets you define operators like +, -, etc., for any of your classes. -* _Packages:_ Called "gems", they really are solid and precious indeed...and they work! Packages support dependencies, and they can be either cross-platform or platform-dependent. -* _Interactive Shell:_ the Interactive Ruby Shell can be used to test Ruby code instantly, similar to the Python console. -* _Unit Testing_: The @Test::Unit@ module makes things so easy that you really don't have any excuse not to test your code. - - -h4. #2 - You'll love the little things - -Ruby is elegant. Why's that? Because it doesn't focus on making code _concise_ so much as _readable and usable_. Here are some tips to help you out: - -* You can use both _if_ and _unless_ in condition statements. Of course you can just use _if_ and negate the condition, but _unless_ can be less error-prone at times. Furthermore, you can use both operators as conditional modifiers, after a statement rather than before: _order.new unless order.exists_. -* You can use question marks and exclamation marks at the end of your methods. Although no convention is enforced, ? is added if the method should return true or false, while ! is used to clarify that the method does something forcefully, like destroying a database record, chopping off the last character of a string, etc. -* You can use the _alias_ directives to create an alias for a method already defined. In this way you can have an _exist_ and an _exists_ method at no additional cost or repetition. -* You can use the _attr_reader_, _attr_writer_ or _attr_accessor_ directives to automatically generate getter and setter methods for specified class members. -* Some naming conventions are enforced for your own sanity: constants, classes and modules are capitalized, methods and members must start with a lowercase letter; global variables are prepended by a $, instance variables by <code>@</code> and class variables by <code>@@</code>; etc. -* Parentheses are optional in method calls. You can therefore write _File.open("/home/h3rald/test.txt")_ or simply _File.open "/home/h3rald/test.txt"_, which is particularly handy with methods that don't take parameters. - - -h4. #3 - You won't ever use a semicolon again - -You want to add another instruction? Just go on the next line. Hit <return> and you're done. In Ruby, like in Python, newlines matter and you don't have to remember to end your instructions with a semicolon. Unfortunately this means that you won't be able to write your whole program in a single line of code, like the C++ folks... that's too bad, isn't it? - -*UPDATE:* Indeed you CAN use semicolons as line delimiters in Ruby as well, the point, however, is that you don't have to. - -h4. #4 - Everything is an object, as it should be - -When I studied Java they taught me that everything is an object. - -_- "So 14 and 374346.678 are objects then?"_ -_- "No, silly, they are numbers!"_ - -In Ruby, numbers, strings, Boolean values _et al_ are objects. Really. This means you'll write things like: - -<% highlight :ruby do %> -"YOU SHOULDN'T ALWAYS USE CAPITALS".downcase #=> outputs "you shouldn't always use capitals" --12.abs #=> outputs 12 -<% end %> - -instead of something like: - -<% highlight :ruby do %> -# PHP Code - -strtolower("YOU SHOULDN'T ALWAYS USE CAPITALS"); -abs(-12); -<% end %> - -You save time, you save brackets, and it just makes more sense. - -h4. #5 - Everything has a value - -Or "you'll hardly ever use return to return values". In a nutshell, all Ruby instructions return a value, even variable assignments, so you don't really need to use the "return" keyword at the end of a method; the value of the last assignment or _any_ other expression will always be returned. - -h4. #6 - You can alter your environment in any way you like - -The first time I saw this, it really freaked me out. Imagine a typical programming situation: you start using a system class or a class written by someone else and you notice that you'd like to have an additional method. At this point you have a few ways to handle this in ordinary programming languages: -s -* You modify the developer's source code, if you have access to it. This is normally not a good idea, and you shouldn't do it. -* You derive a new class from the original one, and you implement the new method there. This is a good idea, but it could be overkill for just one method, and you may have to update some of your other code accordingly. -* You give up, and you just create the method outside the class, somewhere else. This can be done, but it is not very elegant and goes against Object Oriented Programming. - -In Ruby, you can simply add the method to the original class, without having to hack the original source code, and even for system classes! You want to have a method to automatically convert a measurement from meters to feet? You can simply extend the Numeric class as follows: - -<% highlight :ruby do %> -class Numeric - def feet - self*3.2808399 - end -end -<% end %> - -From now on, all your numbers will have a _feet_ method, which can be used just like any other method that was originally defined for the class: - -<% highlight :ruby do %> -5.feet #=> Returns 16.4041995 -<% end %> - -Basically, Ruby classes are never closed and can be modified at any time from anywhere. Use with care, of course. - -h4. #7 You won't get unicorns from birds and horses, but you'll still get donkeys if you want - -I distinctly remember my C++ professor at university using animals to illustrate key object-oriented concepts like classes and inheritance. Weird things came in when she tried to explain multiple inheritance to inherit a class Pegasus from a class Bird and a class Horse. It had methods like "fly" and "neigh"... crazy stuff, anyhow, Ruby does not offer multiple inheritance. -This seems to be the trend, after all, and of course it's up to tastes. I don't quite fancy multiple inheritances, as they may lead to unpredictable things. Nevertheless, it is possible to create "mix-ins" using Ruby modules, so that members and methods defined in a module will be added to a particular class if the module is included in it. - -h4. #8 You don't really need XML - -XML is a nice, general-purpose markup language which can be processed by every programming language and used everywhere. Unfortunately, it can also be quite verbose to write, very difficult to parse, and let's be honest, it's not really readable at first glance in many cases, unlike the following code snippet: - -<% highlight :yaml do %> -regexp: !ruby/regexp /a-zA-Z/ -number: 4.7 -string: a string -<% end %> - -This is definitely easier and more readable than XML, isn't it? Welcome to YAML, Ruby's favorite markup (but not really[6]) language, which can be used to represent any Ruby object in a simple, clear and yet complete way. -Ruby _can_ parse XML, but YAML's simplicity convinced a lot of developers to use it as an alternative to XML for configuration files, for example (Rails does this). -The code snipped presented before was obtained by executing the following line of Ruby code: - -<% highlight :ruby do %> -{"string" => "a string", "number" => 4.7, "regexp" => /a-zA-Z/}.to_yaml -<% end %> - -The _to_yaml_ method is defined for the Object class, which is the father of all of the other classes, and thus it is available in all Ruby objects. This means that you can convert anything into YAML _and_ re-convert anything back into Ruby objects, with total transparency for the developer. So much for parsing, huh? - -h4. #9 Lambda is much more than a Greek letter - -Ruby borrows some magic from Lisp and Perl with Proc objects and blocks. Procs are _"blocks of code that have been bound to a set of local variables. Once bound, the code may be called in different contexts and still access those variables." _[7] Consider the following: - -<% highlight :ruby do %> - def gen_times(factor) - return Proc.new {|n| n*factor } - end - - times3 = gen_times(3) - times5 = gen_times(5) - - times3.call(12) #=> 36 - times5.call(5) #=> 25 - times3.call(times5.call(4)) #=> 60 -<% end %> - -I could have used the _lambda_ method instead of _Proc.new_ and gotten the same result. This should ring a bell for people who know Perl and Python (or Lisp)[8]. You can do the same thing in PHP as well, but most people don't really use the function.[9] - -Additionally, Ruby makes extensive use of blocks, sort of "unborn Procs"[10], for example, to iterate the contents of an object and execute some code, like the _each_ method available for the Array class: - -<% highlight :ruby do %> -[1, 2, 4, 6, 8].each {|c| puts c*2} #=> outputs each element multiplied by 2 in a new line. -<% end %> - -Should the code in the block exceed one line, you're advised (but not required) to include the block within _do ... end_ instead of using braces. Ruby folks don't like braces much, really. - -h4. #10 - You can go on Rails - -Last but not least, you can always use Ruby on Rails for developing web applications. Deployment may not be as easy as it is with PHP, but Rails was built in Ruby because Ruby has features no other language can offer. - -h3. Conclusion - -Time's up. You've probably made up your mind about Ruby already, and you are either playing with it already, or you're totally ignoring it. However, the next time you're frustrated because your code looks ugly and you think you could have done the same thing with half the code you got, don't blame me! - -h3. Notes - -fn1. "Ruby on Rails":http://www.rubyonrails.org, MVC Web Development Framework. - -fn2. "Programming Ruby (2nd Ed.)":http://pragprog.com/book/ruby/programming-ruby/, by Dave Thomas & others, Pragmatic Programmers, 2004 - -fn3. Not entirely correct, but sort of. For more information on Python's indentation rules and myths, read "Python: Myths about Indentation":http://www.secnetix.de/~olli/Python/block_indentation.hawk. - -fn4. For a list of Ruby tutorials, refer to the "Documentation":http://www.ruby-lang.org/en/documentation/ section of the Official Ruby Website. - -fn5. For more information on Ruby, and in particular on the similarities and differences with other languages, refer to "Ruby from Other Languages":http://www.ruby-lang.org/en/documentation/ruby-from-other-languages/. - -fn6. YAML is Not a Markup Language. - -fn7. Definition and example taken from the official Ruby documentation for class "Proc":http://www.ruby-doc.org/core/classes/Proc.html. - -fn8. For some example on lambda functions in Python, see "Python: Lambda Functions":http://www.secnetix.de/~olli/Python/lambda_functions.hawk. - -fn9. For examples of "lambda functions" in PHP using create_function(), see "this":http://www.webmasterworld.com/forum88/7414.htm. - -fn10. For more detailed information on Ruby's Procs, blocks etc. refer to "Understanding Ruby blocks, Procs and methods":http://eli.thegreenplace.net/2006/04/18/understanding-ruby-blocks-procs-and-methods.
@@ -1,147 +0,0 @@
------ -permalink: 10-reasons-why-i-didnt-update-my-blog -filters_pre: -- redcloth -title: 10 reasons why I didn't update my blog -comments: -- :date: 2008-10-09 01:44:25 +02:00 - :author: tcd - :url: "" - :id: 265 - :body: |- - Feeling guilty is stupid, IMHO. One should be free to do whatever s/he wishes to do with his/her OWN blog. - - Dammit, *you* are the owner of this blog. :) - - It is NOT the blog owning you! :p - - I have a blog that gets updated irregularly, with a lot of postponing behind the scenes, but I usually don't waste time in pondering about all those points you've highlighted in your post. - - I just write in it whenever I have something I _really_ want to write. :) - - Blogging should be a pleasure, not a via crucis :p - - (apologies about double or triple copies of this comment: had noscript activated LOL) -- :date: 2008-10-09 02:41:58 +02:00 - :author: Fabio Cevasco - :url: http://www.h3rald.com/ - :id: 266 - :body: |- - Yep, you're definitely right, and if you notice, my blog is _still_ updated irregularly. - - It was a rant about not being able to keep up with "mainstream" blogs: my blog is not "optimized" for a particular audience interested on a specific subject. - - I gave up on that when I got upset with the whole CakePHP thing, and I noticed that the minute I stopped being a "CakePHP blog" the number of visitors significantly dropped. - - Nowadays... well, I'm just like you I guess: I write only when I have the time to write and when I have something _significant_ to write about almost any subject. - - Unfortunately sometimes I do end up feeling guilty about not writing though, but let's say I'm slowly improving... -date: 2008-06-12 03:30:00 +02:00 -tags: -- internet -- rant -- personal -- writing -type: article -toc: true ------ -_"It has been a while since my last post, sorry about that"_ -I read this sentence (or something along those lines) on many blogs on the Internet, including mine. As a matter of fact, I actually didn't write a meaningful post on my blog for a long time and no, probably this is not going to change that either. - -Yesterday I started thinking *why* this happens, not only to me but to a lot of other non-professional bloggers. A professional blogger &emdash; for what I can tell &emdash; is someone like Michael Arrington or Gina Trapani: someone who has the luck (or course) to be able to just blog for a living. - -I don't blog for a living: my site is self-sustaining via a few very unobtrusive ads, just that. I have a full time job, and I blog in my spare time about my interests, without even trying to make "proper" money from my site. There's nothing wrong with it: I believe there are some other people in my condition, and that's quite normal. - -That being said, let's examine the ten most common reasons why I (and you too, maybe) end up not updating my blog, _even when I have time to do so_.h3. Someone already blogged about it - -This is very irritating. I am obsessed with original content. I want to write about something other people _never_ (or hardly ever) wrote about. As a consequence, I often find myself googling the same topic I'm planning my blog post on, and I _obviously_ often get quite a few results, too! - -I actually wanted to title this very post "The Blogger's Block", but I immediately thought of putting that very title into Google, just to see if someone else already blogged about it. Sure they did! Not original at all, tough luck. -It also happened a few weeks ago: I wanted to write about the current state of tech news sites and Antonio Cangiano comes up with a similar "post":http://antoniocangiano.com/2008/05/29/random-thoughts-on-social-sites/. Very interesting indeed, but quite annoying as well! - -OK scrap that, think about something else... - -This can potentially go on for days, and the only solution is of course trying not to worry about it, and just write the damn thing (that's what I did to write this post). - -h3. I didn't research enough on the subject - -This happens tipically with reviews, round-ups, etc. Things I actually enjoy writing, but which may be easily subject to (harsh) criticism unless ou do them right. -I wanted to write a review of the new Treo 750 I bought. I've been using for a while, I learnt a few interesting hacks etc. etc. Unfortunately the 3G iPhone came out, so everyone is all hyped up about it. Too bad that I, being Italian and living in Italy, I never actually touched the damn thing! -What has that got to do with my Treo 750? Well, it would be nice to write a review of a Windows Mobile 6 phone comparing to the upcoming Apple wonder, wouldn't it? - -The solution to this would be trying to limit the scope of your post: screw Apple, let's just focus on my Treo 750 and on the amazing amount of programming languages I can use on it! - -h3. After researching for X days, I realized it was all a waste of time - -This happens with big articles. I once thought about writing a comprehensive article about all the possible ways to deploy a Ruby on Rails web site. Cool, isn't it? I started researching about all the most esoteric lightweight web servers, about JRuby, Glassfish, IronRuby, ... A lot of things. And new solutions kept coming up, and with them more and more posts, and then even entire books on the subjects. - -Very frustrating. I abandoned the whole thing, because there was simply no reason to go on researching: it was all a waste of time. - -How to fix this? Again, reduce the scope of your article so that you are able to reduce the time you spend researching about it. Or maybe try to get paid to write it, so that even if there's plenty of articles about the same subject, at least you have a concrete purpose to write yours. - -Erhm, yes, by the way, keep an eye on "SitePoint":http://www.sitepoint.com in the next few days/weeks, OK? - -h3. I only write when I'm inspired, and now I'm not - -Very, very common. I normally think about a very cool article to write in the evening, or early in the morning, or whenever I don't have access to a computer or the Internet. -Of course I don't forget about it, but by the time I have a chance to actually write it, I really don't fancy doing so. Oh, the irony! -It happened today, actually, during my lunch break: I was supposed to write this post but I didn't feel like it. I lost my inspiration and all my artistic verve, so no, it can't be done. Tough luck, wait until next time. - -How did I solve this? Well, I started writing the post in my coffee break: there was no way to finish it in time, of course, but at least I started it. -I also saved it to my PDA and continued writing it when I had a chance. Eventually, I managed to finish it during my lunch break, the next day. - -Try to write _whenever you are inspired_. If you are not inspired in your lunch break, do some work in your lunch break and then write when, in an hour or so, probably, you feel like writing again. - -h3. This won't make Digg's front page - -Digg, Reddit, DZone, you name it. They are all excellent free tools for promoting your content. Don't tell me you never wrote a post _for the sake of making the front page_ of one of those sites. I did, I confess. -I didn't make Digg's front page in a while, and I'm probably never going to make it again. The reason? When it comes to promoting the right content in a fair way Digg *sucks*. As a consequence, 80% of the articles which appear on Digg *suck*. I'm sure you'll be able to forgive my French when I say that *Digg utterly sucks*. - -No matter how clever your story may be, unless you're backed up by a swarm or an active community willing to Digg your story, you simply aren't going to make it. When is the last time a proper programming article made it to Digg? I don't remember, probably way before I unsubscribed to the Digg's Technology feed, about a year or so ago. - -Just write for the sake of writing. Don't even submit your story to Digg (unless you're writing about the iPhone, of course, then you may have a chance): post it to a less-known site, maybe, or to Reddit, instead. You won't get as much traffic, granted, but you also won't get tons of idiots writing pointless crap on your site and you won't risk a server crash. If it's destiny, then some good soul will post it to Digg, but nobody will digg it. That's just life, I'm afraid. - -h3. It has been too long since my last post: the next one will have to make up for it - -This happens when you start feeling guilty because you didn't post in a long time. - -_"My next post is going to be superb, long, interesting and everyone will start flocking back to my blog!"_ - -Wrong. First of all because statistically people just don't "flock back" because you bestowed them of one interesting post (you have to keep up, too), and second because by doing so your mind will automatically discard all those bits of things you wanted to write about, but you never did because you're waiting for that special _next post_ which will be _so much better_ and will bring your blob back to -spam- life. - -It happened, it happened... again, all you have to do is just post all the tidbits you need, while you're preparing your big shot: your blog will remain "fresh" and more people will enjoy your interesting posts, whenever they'll come. - -h3. Nobody gives a damn, anyway - -I didn't want to upset my younger audience by using a nasty f-word in the title, but that's exactly how it feels like it, sometimes. -I went to Rome last week, did you know? I twittered about it, you *ought* to know! And of course you'll all be waiting for the usual 10-page-long article on my awesome vacation. Like when I "went to London":http://www.h3rald.com/articles/incomplete-guide-to-london, remember? -No, sadly not everyone may be interested in this crap. So I probably won't post about it: who cares? When you start thinking like this, you may stop posting for weeks: not everyone may be interested in everything you post, and I believe that's normal. -Especially for a blog like mine, which is deliberately open to all my interests: programming, technology, travelling, etc. That's why most blogs try to be themed: they write about a particular subject, even a single programming project, and they (try to) do it well. The trade-off is that a themed blog may run out of posts amazingly quickly, if you're not carefula and if you're not 100% devoted to your blog's theme. -A themed blog will build up a faithful audience, like when I was writing almost exclusively about CakePHP: a lot of PHP programmers where flocking here daily. Then things "went wrong":http://www.h3rald.com/blog/42 and I really couldn't be bothered to write about the same crap. Which leads us to the next topic... - -h3. If I write about this, a large chunk of my audience is going to be upset - -This applies especially to themed blogs: if you're a well-known Firefox addict, you can't suddenly start writing about "Opera":http://www.h3rald.com/articles/firefox-lovers-guide-to-opera, praising its speed and the features it offers out-of-the box! -If you take a side, you'd better stick to it, if you want your audience to stick to you: the ten people who happen to read this blog are probably quite shocked by the amount of times I "changed side": from CakePHP and PHP to Rails and Ruby, from Firefox to Opera (well, wait until my next SitePoint article comes out, at least...). Probably they are not the same people who read this blog a year or so ago. - -In the end, it's entirely up to you: if you are prone to radically change our opinion (and this happen in technology, much more than in politics), which involves changing the whole theme of your blog, maybe you should consider not having a themed blog at all. -And if you don't feel 100% sure you want a themed blog, you definitely shouldn't go for a themed domain name, or you may end up abandoning it afterwards. And when that happens, unless you're writing damn cool posts like "Why":http://redhanded.hobix.com/, it's going to hurt your audience. On the other hand, if you're sure you'll get ten times more visitors, go for it. -No, h3rald.com stays... I may end up raving about Safari at some point within the next ten years though, don't be upset! - -h3. I'm not an expert on the subject, so I shouldn't blog about it - -This is a common problem I have when I try to write about something I don't know extensively enough. When I started to learn Ruby, I was eager to start writing about it: it seemed just too cool to be true! -I thought about writing a longish post on learning Ruby from scratch, but then I realized it wouldn't have been a great idea: I was just starting to learn a new language, I didn't know all the nitty-gritty and writing about it to teach others was going to be a bit presumptuous, maybe! -Instead, I opted for a lighted "10 reasons to learn Ruby":http://www.h3rald.com/articles/10-reasons-to-learn-ruby article, clearly stating in the first paragraph that I was just a noob getting excited about his new toy. It worked, actually: people seemed to enjoy it, and I was partially excused for the few mistakes I made here and there. -You don't have to be an expert to blog about something: you just have to be totally honest about what you know, and what you don't know. - -h3. There are a lot of professional bloggers out there, and I'm not one of them - -Finally, this can be summarized in two words: inferiority complex. "Proper" blogs fire out 10+ posts _per day_, and I don't even write ten points in _a month_! Again, those a professional bloggers: they live for blogging (and make an awful lot of money out of it), and they most likely have someone else blogging for them, too! -Think of TechCrunch or LifeHacker, for example: they have a small legion of talented writers working for them &emdash; even if Michael Harrington does rant about Twitter about three times a week himself, though. -At the end of the day, what matters is the _quality_ of your posts. Not the length minf, the Quality. I personally think that non-professionals (I said "non-professionals", not "amateurs"!) are _allowed_ to write about once a week, if they can provide good content, that is. - -But you still do have to write _at least_ once a week (OK, let's make it ten days), otherwise either you're justified (you genuinely don't have time) or you may be a victim of one of these common fears. Watch out, and happy blogging! - - -
@@ -1,77 +0,0 @@
------ -permalink: "10" -filters_pre: -- redcloth -title: Italian General Elections - 2006 -comments: [] - -date: 2006-04-09 07:33:00 +02:00 -tags: -- italy -- politics -type: article -toc: true ------ -!>http://www.berluscastop.it/v_imag/sodom1.gif! - -Another five years have passed and here we go again: General Elections time! -Today and tomorrow Italy -must- should vote for a new government, and the choice is _again_ between two main contenders to the Prime Minister's -throne- chair: - -- "Romano Prodi":http://news.bbc.co.uk/1/hi/world/europe/299254.stm -- "Silvio Berlusconi":http://news.bbc.co.uk/1/hi/world/europe/3034600.stm - -Just today I was reading an interesting article titled "_'The End of Silvio's Show?'_":http://service.spiegel.de/cache/international/spiegel/0,1518,409538,00.html in which the author examines the possibility that Berlusconi's five years of subtle pseudo-dictatorship may end in favour the former president of European Commission Romano Prodi. - -_Who are they?_ - -*Silvio Berlusconi* -!>http://www.consapevolezza.it/notizie/gen-mar-2002/imgs/berlusconi_corna_5.jpg! - -I can't imagine someone asking this question, at least I can't think of anyone who doesn't know Silvio Berlusconi as the icon of the latest _national oddity_. -Forthose who need their memory refreshed, here's a small collection of links featuring him: - -* "BBC NEWS Profile":http://news.bbc.co.uk/1/hi/world/europe/3034600.stm -* "Wikipedia Page":http://en.wikipedia.org/wiki/Silvio_Berlusconi about him -* "An Italian Story":http://www.economist.com/displaystory.cfm?story_id=587107 - An article written in 2001 published by the Economist, _before_ he was elected Prime Minister -* "Fit to run Italy?":http://www.economist.com/displaystory.cfm?story_id=593654 - Another article by the Economists explaining why Berlusconi should _not_ lead the Italian Government -* "Meglio coglioni che mafiosi":http://grabbyeducational.blogspot.com/ - Italian blog against Berlusconi (warning: profanity). -* "Basta 2006 - Geocities":http://www.geocities.com/basta2006/ - a comprehensive directory of websites dedicated to Berlusconi, a really good resource. - -There are millions more. In particular, I'd like to add one more: "The Empire of Silvio Berlusconi":http://www.consapevolezza.it/notizie/gen-mar-2002/impero_berlusconi.asp, which features an image taken from an Italian magazine listing (roughly) everything owned (the image is dated 2002) by our current (for now) Prime Minister, such as: - -* Mediaset Television (100%) - which includes three national channels -* Medusa Film (100%) - Movie productions -* Milan A.C. (99%) - Football team -* Edilnord (63%) - Real Estate -* Blockbuster (51%) - Video retal shops -* Mondadori Spa (48%) - Biggest Italian editorial company -* Mediolanum (35.5%) - Financial sociaty - banks, insurances etc. - -Nice, isn't it? Of course he had to give those societies to some trusted administrators before becoming Prime Minister... but let's not talk about this... - - -*Romano Prodi* -!>http://upload.wikimedia.org/wikipedia/en/thumb/0/04/Prodi.jpg/200px-Prodi.jpg! - -Perhaps not as well known abroad as Silvio, but was recently the President of the European Commission for a while. Here are some (more serious) links about him: - -* "European Commission Archives":http://europa.eu.int/comm/archives/commission_1999_2004/prodi/index_en.htm -* "eitb24's profile of Romano Prodi":http://www.eitb24.com/portal/eitb24/noticia/en/international-news/centre-left-candidate--profile-of-romano-prodi-?itemId=D23503&cl=%2Feitb24%2Finternacional&idioma=en -* "Answers.com on Romano Prodi":http://www.answers.com/topic/romano-prodi -* "New York Times archives about Romano Prodi":http://topics.nytimes.com/top/reference/timestopics/people/p/romano_prodi/index.html?inline=nyt-per - -Known as "The Professor" for his education... - -bq. _"He graduated in economics at Milan's Catholic University in 1961 and did postgraduate studies at the London School of Economics. He also spent a year as visiting professor at Harvard in 1974"_ -_("Prodi's BBC profile":http://news.bbc.co.uk/1/hi/world/europe/299254.stm)_ - -...Romano Prodi is the candidate proposed by the current Italian opposition, grouping roughly all the center-left parties. He's the one who pushed Italy - as President of the European Commission - to accept the Euro as new currency, back in the day, and also the one who was blamed for than after a few months when the _Euro effect_ occurred: prices went higher and didn't seem to be an _exact conversion_ from Lire to Euro. He was chubby enough ("mortadella" is one of his most recurring nicknames) to be quickly appointed as scapegoat for the unpleasant situation. - -!<http://www.dsmirandola.it/sg/img/berlusconi_corna.jpg! - -Besides that, if someone asks me what's the difference between the two candidates, I'll answer: one is a politician and devoted all his life to Politics, while the other partly devoted only the last 10-years-or-so to politics because it seemed to be _a cool and worthwhile investment_... - -_*Who am going to vote?*_ - -Well, one thing is sure: I don't want Silvio to win again, I don't want Italy to be publicly ridicolized abroad all the time that muppet opens his mouth or simply does something _he_ thinks is funny... -
@@ -1,209 +0,0 @@
------ -summary: "All you need to know about my wedding, from the arrival in Ireland 'till the departure from AbbeyGlen Castle. With official pictures and famous quotes." -permalink: 11-07-2009 -filters_pre: -- redcloth -title: 11th of July 2009 -comments: -- :date: - :author: Roxanne - :url: "" - :id: 2722 - :body: |- - Unfortunately, I can only fully comprehend a small number of your articles,this being one of them of course! and as are all the ones I can understand, it's very good. - the wife - Roxanne. -- :date: - :author: Fabio Cevasco - :url: http://www.h3rald.com - :id: 2723 - :body: Look! The one above is the _first_ comment by my wife on this web site! I love you little one, thanks!! -- :date: - :author: Elora - :url: http://www.eloradaphne.wordpress.com - :id: 2726 - :body: How touching you guys! I wish I could have been there, you guys seem to have had a great time...I would love to see a video of you dancing Fabio, could be interesting...... -- :date: - :author: Roxanne - :url: "" - :id: 2727 - :body: |- - Eeek, I suppose I should be keeping a better eye on what you do in your spare time now! - I love you too. -date: 2009-07-26 12:54:00 +02:00 -tags: -- wedding -type: article -toc: true ------ -* "Prologue":#prologue -* "The wedding party":#party -* "The stag night":#stag -* "The preparations":#preparations -* "The ceremony":#ceremony -* "The reception":#reception -* "The honeymoon":#honeymoon -* "Photos":#photos -* "Trivia":#trivia -* "Famous quotes":#quotes - -h3(#prologue). Prologue - -Roxanne and I arrived in Ireland on the 3rd of July, just over a week before the wedding day. We thought a week would have been more than enough to finish organizing our big day, and we were right: we spent a few days enjoying our holiday with relatives and going around to meet the photographer, the florist and all the others. - -Slowly guests started arriving into the country from Italy, England, Romania etc. For some reason, everyone chose a different day to get to Killenaule, so we had people turning up right until the very day before. - -In a similar fashion, I was waiting for my waistcoat to arrive until the last minute: it turns out that the guy I bought it from decided to send it through normal post about 10 days before -- "They normally arrive in less than two weeks", he wrote to me in his last email. - -I ended up having to drive to Clonmel the afternoon before the wedding with half the wedding party in my car looking for a waistcoat. I eventually managed to rent one (with matching shirt and cravat) for _just_ 40 Euro. - -h3(#party). The wedding party - -The following table lists all the members of the wedding party, for your own reference. - -|_. Name |_. Role | -| Fabio Cevasco | Groom | -| Roxanne O'Mahoney | Bride | -| Matteo Lagomarsino | Best man | -| Simona Angheluta | Maid of Honor | -| Roberto Pischedda | Head Usher | -| Delia Angheluta | Bridesmaid | -| Zacharry O'Mahoney | Usher | -| Caspar O'Mahoney | Usher | - -h3(#stag). The stag night - -In Italy, England, US and in many other countries a "stag night" may end up in many different ways: dinner with friends, strip club, wild practical jokes to the groom, and so on. In Ireland, it generally means one thing: _drink_. It occasionally ends up badly (there are rumors a poor fellow who was thrown out in a river and got married with a broken nose), but generally everything turns out just fine: have a few pints, sing and dance, and have a couple of eggs in the morning. That normally does the trick -- if you're an Irishman. - -I was well aware of my in-laws drinking habits, so I decided to take uncle Felix's offer: "I'll have a taxi ready for you whenever you want to sneak out of the pub, and make sure you do" -- he said. - -The evening started with a few pints at Laffansbridge, an old country pub in the middle of nowhere, probably one of the best places for a pint of Guinnes in the whole Tipperary. The little smart guy who runs it has one simple rule: at midnight the light goes off and no more drinks are served, so all 16 of us got into a minibus by then, heading for the next pub. - -_Quinn's_ is the family pub, in the sense that it is owned by Felix Quinn Jr, son of Felix Quinn Sr, brother of Anastasia Quinn, mother of James O'Mahoney, father of Roxanne O'Mahoney, my wife (families are still very large and very close, in Ireland). Being the family pub, _Quinn's_ doesn't close at midnight; in fact, it often doesn't close at all for family and friends (i.e. the entire village of Killenaule). -As soon as we got in, Claire (wife of Felix, son of Felix, etc. etc.) greeted us with a full round of pints, and then another, and yet another... - -Around the third round someone asked me if I could sing a song -- a request I politely but firmly declined due to my total ignorance in Irish folk songs and my total inability to utter sounds in even the slightest musical way. Luckily, someone else volunteered and sang a beautiful ballad, perfectly in-tune, with no music backing at all: Irish people are amazingly musical when sober, imagine when drunk! - -When people started getting into _their_ fourth round (note the pronoun), I decided to try out an old trick to keep myself sober: I drank less than half a pint, and then pretended to drink the rest, leaving always something in my glass. In that way – I thought – I could pretend I didn't need yet another pint. Unfortunately the pub owner spotted me straight away and said "That pint is stale... here, have another one, on the house!". At that point I decided it was better for me & the rest of the Italians to quietly sneak out. - -I was at home (uncle Martin's house) and in bed at about 1:30 AM. I almost didn't sleep at all that night, as expected, so I wasn't too bothered when the rest of the drinking comrades came back, singing and shouting at 4:30 am. Simona [the Maid of Honor and girlfriend of my brother-in-law Zac], on the other hand, wasn't too amused when Zac turned up after drinking the (Irish) Nightly Guideline Drink Amount: approx. 10-11 pints of Guinness -- those he could count, that is. - -h3(#preparations). The preparations - -This part of the day is best reported in chronological tabular form: - -|_. Time |_. Event | -| 7:35 | The groom -wakes up- decides to stop pretending to sleep. | -| 8:00 | The bridesmaids are up and about, ready to go to the hairdresser | -| 9:00 | Uncle Martin and the rest of the gang slowly regain consciousness. The groom spends about half an hour trying to explain uncle Martin that he's his only hope to collect and bring back the flowers for the church (_"Ahhhh you want _me_ to do it... you could have said so since the beginning!"_). | -| 9:45 | The groom takes the bridesmaids into town, to the hairdresser | -| 10:00 | The groom attempts to gather his groomsmen for the first time | -| 10:15 | The groom starts having a chat with the best man and the head usher. The other ushers are _somewhere around_. | -| 10:30 | The groom realizes that one of the ushers (Zac) has the most terrible hangover on Earth and the other (Caspar) slept solidly from 3 am (while still in the pub) until now | -| 11:00 | The groom attempts to gather his groomsmen for the second time, this time telling them it's time to get ready (he's not taken seriously) | -| 11:30 | The groom attempts to gather his groomsmen for the third and final time, now everyone is starting to try out their suits | -| 11:45 | For some weird reason auntie Noelle decides to call the groom and tell him that the florist is not accepting checks, after 5 minuts of absolute panic, she says we're going to get the flowers anyway and there's nothing to worry about. | -| 12:00 | All groomsman are dressed. It starts raining. | -| 12:30 | Zac decides he needs some fresh air and takes a walk outside in his morning suit, regardless of the heavy rain and the groom's prayers | -| 13:10 | The groomsmen go to the church. | -| 14:00 | Guests start arriving | -| 14:20 | The brides arrives and the ceremony starts. | - -h3(#ceremony). The ceremony - -The wedding ceremony was very suggestive, almost magic. As soon as I looked at Roxanne in her wedding dress all worries faded away, and we both enjoyed the wedding rite. I must say I also don't remember much of the whole ceremony, but I'm told it's a common thing to happen. - -As the ceremony started, we sat down without looking at the audience, so I didn't feel paranoid and enjoyed listening to the priest's speech, the readings and the songs. Canon Liam Ryan embodies the typical Irish priest: about 70-year-old, tall, extremely talkative, cheerful and very charismatic. He shocked us all during the reharsal telling us what we'd have had to do the day after, and it felt like a lot of work. The groomsmen and the bridesmaids were terrified: _"So I have to help you sit down, move the chair... like that... then... go back... no, wait, what was that again?"_. Matteo and Roberto couldn't believe the whole choreography involved in the event: it's nothing like that in Italy, but they were glad they were part of it in the end. - -It all happened exactly like Father Ryan predicted, he even guessed almost all the few mistakes we made: "You have to walk slowly in front of the bride" – he said to Delia, the bridesmain – "and if you _think_ you're going slow while you're doing it, you're probably going _way too fast_". But nobody noticed, really, and nobody cared: they were all too excited to mind that, and everyone's eyes were on Roxanne, anyway. She was really, really gorgeous and her dress was fabulous. It felt unreal, at times: we both felt we were in one of those movies... - -The most peculiar thing about the whole ceremony was perhaps the different languages involved: English, Italian, Gaelic and Latin. I doubt there was a single person among us who could understand the entirety of the mass, but it was very evocatory. The whole mass was predominantly in English, with the following exceptions: - -* The First Reading was in Latin (my mum read it superbly -- she's a Latin teacher!) -* The Second Reading was in Italian -* _Our Father_ was sung in Gaelic - -By our own common decision, we didn't ask for a professional video of the ceremony, only "photos":#photos. Nevertheless, my uncle captured most of the ceremony (and the most embarassing bits of the dancing after the "reception":#reception) using my dad's video camera. - -h3(#reception). The reception - -When the ceremony ended it was still raining heavily, so after an endless amount of pictures taken we went straight into our Rolls. Technically, that was not _our_ Rolls of course: we rented it from a local car hirer, and it was worth every penny. A lot of people get married in a VW Beatle or in a Mercedes at most, but Roxanne and I really love old cars, so when we saw "Ruby":http://www.alleventslimos.com/Wedding/rolls_silver_cloud.html, a red 1961 Silver Cloud II, we just had to get it. Champagne and chauffeur included, of course. - -The chauffeur was a very jolly and chatty fellow from Waterford, and drove that beauty of a car for a very long time. Unfortunately though his sat nav decided to stop working and he wasn't really _local_, so erhm..., well, let's just say we were really lucky that at least _the bride_knew her way around. We made it safe and sound to Raheen House in no time: so fast that everyone else arrived about 10-15 minutes afterwards. - -"Raheen House":http://www.raheenhouse.ie/ is a very charming XIX century Georgian House. One of those places you normally see only in movies: tapestries on the walls, old armchairs, stuffed heads over the doors (an african buffalo, a huge deer, an antelope, and some more)... you get the picture. Unfortunately it can only accomodate 120 people, so it isn't a very popular location for wedding receptions in Ireland, because the number of people invited at Irish weddings ranges from 150 to 300. We were about 60 in total, nevertheless the dining hall looked quite full and lively, with 7 big tables covering all the room. - -As soon as we got there, my best man was informed by the staff that he _had to_ introduce the bride and groom. _"What? No, wait! What do I say... how... what? Fabio, come back!"_ he freaked out, but as soon as I wrote down the two lines he was supposed to say in English everything was OK. Not only did he introduce us properly, he also made a _terrific_ speech: he obviously gave it a lot of thought and it sounded just perfect. - -After he spoke, it was my dad's turn. Now, my dad speaks perfect French but never got a chance to learn and practice English (yet), so not only he had to write down his entire speech, he also had to annotate the pronunciation of _every_ word. He managed fine though. It felt a little bit long, but he said really wonderful and touching words about Roxanne and I, our respective families, and countries. I'll publish it soon on the Internet, for posterity's sake. - -The last three speeches were Jim's (the father of the bride), who did great as always, without reading anything, right on the spot. And so did Roxanne and I: we basically just said a few words thanking all the guests for coming, and half of them for helping us with the wedding as well. Every speech (except mine and Roxanne's) was characterized by subtle and very discreet exhortations to produce progeny (_"get on with it!"_), but other than that they were fine. - -After all the traditional obligations, we finally started our dinner. The food was delicious and extremely tasty: Raheen House is renown for that, as we were told, but we honestly weren't 100% sure until we started trying it. And there was also _plenty_ of it, so everyone felt really satisfied towards the end of the meal. So satisfied that we decided to postpone the cake till later (see below) and indulge with wine instead. - -Wine, right. They were going to charge us 20€ per bottle for some weird Chilean or Australian stuff. Silly and almost offending, especially considering that my family has been producing wine for family and friend's use for at least three generations! This was my dad's primary concern until we left for Ireland: "You sort the restaurant out, because I'm going to bring some bottles, no matter what". He shipped over _96_ special bottles of our 2005, 2006, 2007 and 2008 vintages. Ninety-six. We used about 25 of them for the meal and the rest of the evening, then we gave one to almost every guest, three to the staff of the restaurant, a few more to other hotel and B&B owners, six to each uncle of the bride, etc. etc. None came back to Italy, that's for sure. - -Right after the meal the band came in, and we got ready to dance. Roxanne and I had to start with our First Dance, of course, then everyone else slowly joined in. The group was playing a mixture of traditional Irish music, ballads and rock 'n' roll: they were amazing, and especially the Italian's were really impressed. - -Not as impressed as when they noticed uncle Martin dancing. I've never seen _anyone_ in my life dancing so vigorously and wildly in my life. He has his own special technique that cannot be described with words. I'll try to post a video of him soon. He really felt the rythm and never missed a step. Like a whirlwind he dragged everyone in, dancing with him: first his daughters and sons, then his brothers, the he thought he'd take my auntie for a spin, then the bride (well, mostly her dress), then even me! I don't remember much, I think I was in the air at one point, and then all over the place... - -Everyone of course joined in and started drinking and dancing for the whole evening. When the band performed the last two songs, I just remember a _huge_ circle of nearly all the guests holding hands dancing around Roxanne and I, then coming closer, then far, then closer again. It was definitely the wildest night in our whole life. - -h3(#honeymoon). The honeymoon - -The day after we slowly recovered. We didn't sleep much, but we managed to get up and have breakfast with some of the guests at the hotel, before they started heading back. Then we decided to go shopping in town: it was basically Roxanne and I, plus her brothers, her parents, and my parents. Not much of a honeymoon, as my mum pointed out, but we didn't mind. - -After spending the following day saying goodbye and thanks to all the relatives, we finally headed to Co. Galway, in Connemara. We booked three nights in the fabulous "Abbeyglen Castle":http://www.abbeyglen.ie/, highly recommended. Our superior room had a fireplace, a four-poster bed and jacuzzi bath: the bare essentials for a honeymoon really. Roxanne and I really enjoyed those three days, finally alone in the most breathtaking and romantic area of Ireland. Three days weren't enough, really, but we'll eventually go back there hopefully: maybe Sir Paul Hughes, proprietor of the castle, will still remember _"the bride and groom"_, as he kept calling us throughout our brief, but very pleasant stay. - -Exactly as auntie Noelle said, everything was over in a blink: the ceremony, the reception, the honeymoon... everything went back to normal, eventually. It took a while to get used to our normal life: we had to go on a shopping spree before we went back to work... let's say the money we got as present from most of the guest was well spent in a 42" LCD HD TV, surround sound system, etc. etc. - -...And we still have our other half of the honeymoon, too! Probably Miami Beach and Bahamas, next November. - -h3(#photos). Photos - -Our wedding photos were taken by "Pat McCoole":http://www.patmccoole.ie/, who did a truly amazing job portraying the magic of our special day. - -<embed type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" width="600" height="400" flashvars="host=picasaweb.google.com&hl=en_US&feat=flashalbum&RGB=0x000000&feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fh3rald%2Falbumid%2F5359762418204291649%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed> - - -h3(#trivia). Trivia - -* On the wedding day, it rained non-stop from 12 am to 7 pm. -* The groom drove for a total of 1758.7 Km in 14 days. -* On his stag night, the groom only drank 2.5 pints of Guinness (almost everyone else had 10, on average). -* The night before the wedding, the groom slept only from 5:30 to 7:30. -* Only the middle tier of the wedding cake was eaten on the wedding day. The top tier was eaten during the following days by relatives and the bottom tier was shipped to Italy, together with the Bride's dress. -* The father of the bride decided to change into more comfortable clothes right after the ceremony. He borrowed a waistoat and a jacket for the speech. -* Uncle Martin danced with a lot of people after the meal, including the bride, her father, and the groom. -* When he arrived at the church, the groom immediately realized he left the mass booklets and the confetti in the back of his car, at home. They were eventually brought to the church by a cousin of the bride just a few minutes before she arrived. -* At the very start of the ceremony, the groom told the priest to tell the best man to get a mass booklet so that he and the bride can follow the mass properly. After 30 seconds of lip-reading and signalling, the best man understood and fetched one of the infamous booklets. -* The bride forgot her change of clothes in uncle John's car, who had to drive in early in the morning or she would have had her breakfast in her wedding dress. - -h3(#quotes). Famous quotes - -bq. "This journey feels like going to Lourdes: you come back and your life changed forever."<br /><br /> -- The best man, when he arrived in Killenaule. - -bq. "Is there a garage around?"<br /><br /> -- Auntie Isa while waving a car mirror, when she arrived in Killenaule - -bq. "Do I really have to do a speech? Are you sure?"<br /><br /> -- The best man, when he met the groom in Ireland. - -bq. "My preciousssss!"<br /><br /> -- The best man, when he was given the rings in custody. - -bq. "She's the most calm and organized bride in history."<br /><br /> -- Auntie Noelle, about the bride on the wedding day. - -bq. "You could tell he was panicking on the phone"<br /><br /> -- Auntie Noelle, about the groom on the wedding day. - -bq. "Potatoes, potatoes, potatoes..."<br /><br /> -- The father of the bride to the groom, during the traditional handshake of the wedding rehearsal. - -bq. "Potatoes, potatoes, potatoes..."<br /><br /> -- The groom to the father of the bride, during the traditional handshake of the wedding ceremony. - -<blockquote> - -*Best man:* "[...] this is the first time for me to speak in public, in front of an _English_ audience [...]"<br /> -*Audience:* "Irish! IRISH!!!"<br /> -*Best man:* "...oh, right, Irish! Sorry..."<br /> - -</blockquote> - -bq. "I need another shirt!"<br /><br /> -- Uncle Martin, after about 2 hours of continuous dancing with almost all the guests. -
@@ -1,52 +0,0 @@
------ -permalink: "11" -filters_pre: -- redcloth -title: Meet some Cake(PHP) bakers! -comments: [] - -date: 2006-04-11 17:03:00 +02:00 -tags: -- cakephp -type: article -toc: true ------ -I should write more. I noticed that I since I decided to take a break from "zZine Magazine":http:www.zzine.org I more or less stopped writing - and started _baking_ again with "CakePHP":http://www.cakephp.org/. As a result I finally recoded this website and _refreshed_ a little bit my almost-rusty baking skills. - -!<http://base--/img/pictures/cakephp.png! - -Why not taking advantage of this and write more about CakePHP then? After all, my last "article":http://base--/articles/view/cakephp/ turned out well enough and some people even bookmarked it online on del.icio.us and ma.gnolia... Now it's a bit out of date, I must admit: it was based on a pre-beta release of the framework, and we're (more or less) stable now. -A lot of things changed in the Bakers Community since then! At the time the "wiki":http://wiki.cakephp.org/ barely started and there was no "manual":http://manual.cakephp.org/ whatsoever, only my long and perhaps _slightly_ boring article describing Cake's functionalities. Now there things are much better for newcomers: they have a continuously growing community to rely upon, both on the Google user group and on IRC (#cakephp on FreeNode counted 63 members today, while back in the day 20 was a big number). There are also a few people who started blogging and starting websites about CakePHP: while I was the first to write an article about Cake I was _the last_ so far to start a blog :/ Oh well, nobody's perfect! - -The first site I came across - although not a blog really - is Graham Bird's "Cake for Beginners":http://grahambird.co.uk/cake/. When someone asks me some basic questions about CakePHP I send him there because first of all they'll find a short FAQ about the framework, i.e. something everybody should know before even start thinking about learning Cake. Similarly, the guy has a "Glossary":http://grahambird.co.uk/cake/glossary/ in progress to help those souls who feel lost in Cake's terminology. If you don't consider yourself a total beginner anymore, the "Tutorials":http://grahambird.co.uk/cake/tutorials/ section can be a very interesting read: I wanted to add some AJAX bits to my site, but the documentation about this seemed pretty scarce, so I headed to the "Ajax Task List":http://grahambird.co.uk/cake/tutorials/ajax.php tutorial and it really helped. - -On the blogs front, on the other hand, "Cake Baker":http://cakebaker.42dh.com/ seems to be the most active: I'm starting to check this one often (OK, I'd better subscribe to the RSS feeds, perhaps) because it seems to be THE best place to get the latest news about everything concerning CakePHP: The author seems to post quite frequently (there's always a new post every 1-3 days maximum) includes short code snippets when necessary and report news when there's anything to report. - -"Sentino":http://sentino.wordpress.com/ is also an interesting place to learn new things about CakePHP: the only problem is that the author seems to post less frequently... the blog seems to have some sort of "milestone" schedule, publishing something when there's something big enough to justify a post. If you want to subscribe to a less frequent blog with only the essentials about Cake, this is a good choice. - -"RosSoft":http://rossoft.wordpress.com/ unlike the others mentioned up to now has a much more technical approach: no news about Cake or anything, just some REALLY useful real-world example of Cake helpers, components etc. etc., with FULL source code to cut and paste. Really handy if you need something specific, truly excellent for beginners to have a look at how Cake classes should be written. -Among the most interesting fully working snippets: -"IP-to-country component":http://rossoft.wordpress.com/2006/03/29/ip-to-country-component-geo-location/ -"Poor man's cron component":http://rossoft.wordpress.com/2006/03/27/poor-mans-cron-component/ -"Image Auth - CAPTCHA component":http://rossoft.wordpress.com/2006/03/16/image-auth-component/ - -!>http://xcite-online.de/spliceit/themes/SpliceIt/logo.png! - -"ThinkingPHP":http://www.thinkingphp.org/ is another "technical" Cake blog, with interesting code snippets and thoughts about our favourite PHP framework. For those who don't know or don't remember him (yes, like me...), he's the author of "SpliceIt!":http://xcite-online.de/spliceit/... what? - -bq. SpliceIt!'s mission is to provide a clean and light-weight code base for people who want to create complex webapps faster then ever. The things we want to provide are: - - User/Right Managment - - Theming Support - - i18n - - Url Aliasing - - and most notabily: Modularization of often used Code Segments - -i.e. something I should have checked before recoding this website. I'll definitely keep this in mind for the next release of h3rald.com. - -!<http://rdos.rd11.com/img/rd11/rdlogo.gif! - -"Posts@ rd11":http://rd11.com/posts a.k.a. gwoo [and seth]'s blog. Moment of silence. Gwoo is CakePHP's project manager (respect+) and one of the lead developers of CakePHP and he also actually uses Cake for his website and blog instead of WordPress :) -What can I write about him. It's difficult. I'll avoid all possible pseudo-religious comparisons but when I say that _he created CakePHP_ I think I say it all. The code he used for his blog is part of a collection of open-source, Cake-powered tools all prefixed with rd- or Cake, available on "CakeForge":https://cakeforge.org/projects/rdos. I personally think that looking at his sample applications can be one of the best way to learn how to bake _properly_, and yes, I *did* check them out before coding this site for the second time. Demos are "online":http://rdos.rd11.com/. - -That's it. These are perhaps the most well-known bakers and/or Cake bloggers on the planet. There are certainly others, maybe even in other languages, but now I'd better stop writing now, because this is a rather long blog post. Sorry. I'm new to blogging and I just can't help myself: especially with Cake, I need to write lenghty texts! -More to come...
@@ -1,85 +0,0 @@
------ -permalink: "12" -filters_pre: -- redcloth -title: Choosing the right IT job -comments: [] - -date: 2006-04-13 13:47:08 +02:00 -tags: [] - -type: article -toc: true ------ -The time has come. The times when I used to meander around reading stuff on the Net and writing about whatever I wanted are over. Incidentally, the world may end, _your_ laptop could explode and I could knock at your door in a few minutes asking for money, imagine that! - -Nothing of the above, alright, bad joke, but sooner or later the time to _start doing something_ comes, at some point you ought to start making some real money. It's time to settle down, my fianceé are eager to get our own independence, move to our new house (which we're still doing up) etc. etc. Fair enough. I spent the last five months wasting my time looking for a job, a _proper_ job having something to do with IT(Information Technology) and finally something seems to be possible. - -_Either nothing or everything_ - I may even say that: now I have to face a difficult choice between two job proposals that seem both fairly interesting. -_"Go wherever you can get more bucks, you nutter!"_ - Well, there's more to it. -Let's examine now the two similar but yet different realities I have to choose from. Maybe you'll never be in my situation, but I hope this can help at least those who experienced or could experience something similar someday. - -_*Working under Uncle Bill's wing*_ -!>http://base--/img/pictures/genova.jpg! Not Microsoft. No, not directly at any rate. I've recently been contacted by a well known multi-national company which does almost anything ranging from computers, phones, electrical stuff to huge self-aware robots designed to conquer new worlds... Not quite, but let's just say that this image contributes to give an idea of a Corporate-type reality. - -_Preliminaries_ -I happen to be an Italian whose English skills go a bit beyond the _"Hello, me Italian and like to do friendship with you"_, I applied in the above (un)mentioned company as _Software Tester_ and got contacted twenty days afterwards about a possible position as _Technical Writer_. It makes perfect sense. Well, at any rate I was pleased and I went to the pre-selection which was something like a pre-GCSE English test with a bunch of "technical" questions ("What does HTTP mean?"...). -Thanks to our Merciful God I passed it (and thus avoided endless teasing by my British fianceé), and they wanted to have a proper interview with me today. -I went there and came back a few hours ago, and I think it wasn't too bad, let's say I may stand good chances but as normally happens in such companies in the end it was just something like _Thank you for coming, we'll call you by the end of April_. Although I mentioned that I recently had some other job offer obviously they couldn't give a damn: as any other big company, they need to interview all the possible candidates to be sure they pick the right one, and that's fair enough. - -_The job_ -In the remote eventuality they decide to take me on board, I'd be part of a Documentation Team in charge of writing technical documents, manuals and silly jokes - perhaps - about some semi-classified huge internal semi-intelligent corporate framework. -Now, although some people may already start to feel bored even at thinking about a job like that, I think this role would fit me perfectly. I love writing. I love researching. I love crating documentations, howtos, reports and any other boring (for other people) stuff! And they want me to write in English, not in Italian, which is - it may sound weird - a true relief for me. -At the interview I had a chance to talk about my "articles":http://base--/articles/ and they seemed interested in this activity of mine... I even mentioned my "CakePHP article":http://base--/articles/view/cakephp/ and they say they're gonna check it out. Oh well, this site's stats are always one Firefox tab away from my current main browsing tab, so you can bet I'll be tracking that. - -_The contract and the salary_ -_Classified_. They didn't say anything, as usual, but presumably it should be a permanent (or semi-permanent) contract with all the contributions, health insurance, taxes etc. paid. And free cookies. Yum! -Salary... well, it shouldn't be too bad, anyway. - -_PROs_ - -* I'll be doing something I really enjoy: writing in English -* Steady job, steady contract, more security -* Corporare Environment -* I can show off with my friends who are still studying pointless stuff and tell them I'm working for <company name removed> - -_CONs_ - -* There's a risk I'll lose my individuality -* The salary could be lower than expected - at least initially -* They'll get back to me at the end of this month, and I have to give an answer to someone else before that -* My friends and fianceé will probably hassle me to give them free goodies they think I'll get from the company - - -_*Working in a 'cool place', and fly high*_ -!>http://base--/img/pictures/lambruschini.jpg! Nope, sorry, the "Cake Software Foundation":http://www.cakefoundation.org/ unfortunately is not hiring. The alternative is a small company in my city, Genoa, which recently merged with a slightly bigger company based in Milan, which _might_ merge with a big national company involved in producing some successful (here in Italy and even abroad, a little bit) TV programs. Network involved are Italy's national channels, good ol' pal Berlusconi's channels, Sky Italy and (drums) MTV. -Cool, innit? What do they do? Well, interaction between mobile phones and TV through software and networks. Polls, SMS chat services, WAP application downloads, "take matey out of Big Brother's house", SMS/MMS blind dates related to some well known TV programs, tele-voting at Sanremo Festival etc. etc. - -_Preliminaries_ -Their first interview was the most unusual I've ever had, and I "already wrote":http://base--/blog/view/9/ about it: they even asked me to solve a riddle. Then they wanted to meet me again and showed me how they work in two different areas (see next section). They are really chilled out, friendly, they seem alright, even the main boss who deals with the company's financial side, which is always a plus. -By the way, they already offered me the job, and I'll have to give an answer next Tuesday - that's the bad part. - -_The Job_ -The Lead Developer of the company apparently seemed satisfied enough with my knowledge and Java skills. A first possibility for mewould be working for them as full-time Java Developer. Coding. Wake up, go to work, Code for eight hours, go home, sleep/other things, wake up, go to work... -It would be a good experience, and other people would choose this immediately over anything else. Coding what? Parsing algorythms for the SMS we receive, data manipulation, storage, re-formatting etc. etc. -The other possibility which they suggested after noticing my ability to write and research would be 2nd Level Help Desk. Get dozens of technical emails every day, file reports, notify developers when something goes wrong, propose solutions, implement solutions, monitor the systems and even execute queries on the production server on the fly, in real time (eeek!). -This could sound boring/annoying/scary but since I'm a freak I think it's an interesting prospective. Perhaps not as qualifying as being a Java Developer, perhaps not. - -_The contract and the salary_ -1200-1250 (or more) €/month, after tax. Which in my country is considered a more-than-reasonable pay, especially for a first job. Differnt form of contract, from consultant-with-VAT to renewable yearly projects, which is probably what I'd go for. Contributions/taxes paid, kind of, holidays and other vacancies included, kind of. - -_PROs_ - -* Perhaps better salary -* I know exactly what they offer, they told me their offer in detail -* Chilled out environment -* Perhaps I can sneak and read my desperate friends' SMS when they try to pull birds - -_CONs_ - -* Less steady contract, less security -* I'll hardly ever use my English skills, perhaps -* They NEED a yes or no by next tuesday -* My friends will probably hassle me to spy on other people's SMS traffic and/or make them win TV contests - -Here's where I stand. I can't complain, alright, but I must choose and act carefully. I'll sleep on it.
@@ -1,26 +0,0 @@
------ -permalink: "13" -filters_pre: -- redcloth -title: Baking a new CakeArticle -comments: [] - -date: 2006-04-13 16:21:00 +02:00 -tags: -- cakephp -- writing -type: article -toc: true ------ -Too right. Enough being a lazy writer, it's time to seriously produce something. I could sit here and pretend that long blog posts can make up for the lack of new articles, but I'd like to write something _proper_ and new. Judging by the latest stats people come here hoping to find either a blog _entirely_ devoted to CakePHP or some CakePHP related content. Well, actually they can "find":http://base--/tags/CakePHP/ quite a bit, but I'd like to be able to sport more Cake-related articles, bookmarks, and posts. My main problem is that I could add ten bookmarks about Cake right away, but the _latest addition_ showed on the front page would feature only bookmarks, which would be bad (yes, I do worry about silly things). At the moment this blog is the second easiest way to provide fresh content frequently enough to encourage visitors to come back, but articles could be even better. - -!<http://base--/img/pictures/baking_bear.png! - -Without further ado, I hereby announce that _I am working on some new articles on CakePHP_, at least one. I'd like to write something technical about CakePHP's advanced features, because that's where the current documentation is lacking, at the moment: associations, caching, some advanced components... they are topics which seem to interest those bakers who already baked their first cake and are now looking for some more icing. - -Interested? Good! Sadly, that's not what I'm going to write now, at least not the first article I'll be releasing. Please stop calling me names, there's no need to say that I'm just a lazy coward who doesn't want to get his hands dirty and write some tough stuff. And stop pulling those sad faces! Think about... new bakers. There are new people learning about Cake and I know there are, I just discovered "one":http://www.480x.com/2006/04/12/eureka/ yesterday almost by chance: he seems to be really enthusiastic about Cake, judging by his "latest post":http://www.480x.com/2006/04/13/eureka-part-deux/ (OK, nevermind the pic). -Those people are mostly more-or-less experienced PHP programmers who want to find an answer to all their development problems and annoyance. Well, my good friends, the answer lies in Cake. Cake can save us all and bestow powerful blessings of Good PHP Design and Well-structured Programming upon our messy spaghetti code! - -I almost considered writing a humorous article about Cake, but luckily I changed my mind. My old "CakePHP article":http://base--/articles/view/cakephp/ is already a few months old and was written when Cake was in pre-beta. I feel it's time for a more up-to-date howto and introduction to our framework, something maybe not as lenghty but easily readable by almost anyone interested in starting to learn about Cake. - -Baking lessons. Yes, that's it. I'm currently writing an article divided in ten lessons which could potentially turn casual cowboy coders into (apprentice) bakers. That could be easy for those already enlightened by OOP(Object Oriented Programming) and MVC(Model-View-Controller), and perhaps more difficult for others: at any rate, I'll try my best.
@@ -1,56 +0,0 @@
------ -permalink: "14" -filters_pre: -- redcloth -title: CakePHP hybrids -comments: [] - -date: 2006-04-14 09:55:00 +02:00 -tags: -- cakephp -- webdevelopment -- php -type: article -toc: true ------ -When I first talked to gwoo, CakePHP's project manager, I asked him if Cake had any potential _limitations_. I asked him - I was kidding actually - wether it would be possible to build an application like Gmail using the framework and he - very seriously - simply said _"yes, why not?"_. -I repeat myself when I say that CakePHP leaves plenty of freedom to developers within the bounds of its MVC structure: once you grasp the basic logic behind it, your possibilities are endless. I don't want to act as a Ruby on Rails fanatic and boast that _you can do anything with CakePHP_ and things like that, but I can certainly say that CakePHP can be _extended_ and _integrated_ with other collections of scripts, frameworks and projects. With limitations, of course: you probably don't want to force an integration between CakePHP and another MVC/Event Driven/Whatever framework, simply because it would be rather pointless and potential conflicts may occur. - -What I keep finding online is other open source projects adopting CakePHP as _backend_ and _structure_. I'm sure there are many examples which could be mentioned here, but I chose two in particular: one has been around for a few months and the other is just born. - -!<http://base--/img/pictures/amfphp.jpg! - -"AMFPHP":http://amfphp.org/ is quite an interesting project: - -bq. "[it] is an open-source Flash Remoting gateway. It's fast, reliable, 100% free and open-source. Flash Remoting is a technology built into the Flash player core that enables sending data between the server and the client seemlessly." - -In other words, it makes lifes much easier for developers who'd like to integrate their flash animations and script more tightly into their PHP application. If you are curious to see some results, head off to AMFPHP "showcase":http://amfphp.org/showcase.html. -Cool, but what has this project to do with CakePHP? Well, gwoo recently created "CakeAMFPHP":http://cakeforge.org/projects/cakeamfphp/, a CakeForge project which just yesterday reached its "0.4.0 release":http://rd11.com/posts/view/21, and it's fully compatible with AMFPHP 1.2.3 and CakePHP 0.10 final. -Here's an excerpt taken from CakeAMFPHP README.txt file: - -bq. "[...] -1) get CakePHP 0.10 final (http://cakephp.org) -2) get amfphp 1.2.3 (http://amfphp.org) -3) get the UFO js http://www.bobbyvandersluis.com/ufo/ -4) put amfphp into /app/vendors -5) put cakeamfphp into vendors -6) put the cake_gateway.php in /app/webroot -7) put the cakeamfphp.php in /app/views/helpers -8) put CakeMySqlAdpater.php in /app/vendors/amfphp-core/adapters -9) Voila: NetServices.setDefaultGatewayUrl( 'http://localhost/cake_install/cake_gateway.php'); -Access the service browser through -http://localhost/cake_install/vendors/cakeamfphp/cakebrowser/" - -The installation doesn't seem too painful at all. And - guess what - gwoo recently updated a very informative tutorial showing how to create a simple - but still impressive - bullettin board with CakeAMFPHP. - -_"Cool, but I never liked flash, what about AJAX?"_ - -!<http://base--/img/pictures/qooxdoo.gif! - -CakePHP has a nice AJAX helper to be used in conjunction with "prototype":http://prototype.conio.net/, but there are truly a lot of libraries, mini-frameworks, pre-built applications to create interactive desktop-like user interfaces. Some people may already know "qooxdoo":http://qooxdoo.oss.schlund.de/, - -bq. "[...] an advanced open-source JavaScript-based GUI toolkit. qooxdoo continues where simple HTML is not enough. This way qooxdoo can help you implement your AJAX-enhanced web 2.0 application - easier than ever before." - -In a recent "discussion":http://groups.google.com/group/cake-php/browse_thread/thread/ba219c64cd794764/1d77973293514618?lnk=raot on CakePHP user group someone suggested the possibility to integrate qooxdoo with CakePHP. Apparently qooxdoo people were "evaluating":http://www.nabble.com/Re%3A-qooxdoo-PHP-framework-project-p3799302.html various MVC frameworks, and Cake was obviously listed together with two other Rails clones for PHP. The good news is that "100rk":http://cakeforge.org/users/a100rk/ just started a new project called "CQX":http://cakeforge.org/projects/cqx, which - although still in pre-alpha a development demo is already available, and it _shows off_ most of qooxdoo's features... "Take a look":http://cqx.100rk.org/trunk/ - -Best of luck to 100rk and his brand new project, I really hope to see more of it soon!
@@ -1,81 +0,0 @@
------ -permalink: "15" -filters_pre: -- redcloth -title: I18n -comments: [] - -date: 2006-04-15 15:15:00 +02:00 -tags: -- cakephp -- webdevelopment -type: article -toc: true ------ -_"CakePHP will officially support Internationalization (i18n) from version 2.0"_. That is to say: not right now. That doesn't mean we have to wait, no chance! I'm Italian and there are plenty of bakers speaking a language other than English who might want to develop a multi-lingual website. - -I did, "once":http://v60.h3rald.com/, and the final result wasn't too bad in the end: every page of the site (except the articles) could be translated into Italian. Before examining my solution (which is far from optimal) I'd like to mention an excellent CakePHP package which allows basic (mostly statuc) i18n. -It looks like I missed an important baker in my recent "blog post":http://base--/blog/view/11: "Andy Dawson":http://www.noswad.me.uk/, creator - among other things - of the "Locale Package":http://cakeforge.org/snippet/detail.php?type=package&id=2, available at CakeForge. His solution actually came out after H3RALD.com v60 was already developed so I didn't use it for my own site. -At a first glance Andy's solution truly solves basic l18n problems in an elegant way: the most important code snippet is the "Locale Component":http://cakeforge.org/snippet/download.php?type=snippet&id=74 which provides the following functionalities: - -* automatic language detection based on browser's UserAgent string -* loading of locale files -* setting of customizeable (translated) messages - -The getString() method provided in the locale component is actually used through the double underscore function, which is already defined (but not yet implemented) in the standard CakePHP file @cake/basics.php@ (yes, this is a small core hack). Andy's double underscore function can take five parameters: - -bc. function __($msgId, $MessageArgs=NULL, $capitalize=1, $punctuate=0,$Code=NULL) -{ - require_once(COMPONENTS.'locale.php'); - $Locale = LocaleComponent::getInstance(); - return $Locale->getString( $msgId, $MessageArgs, $capitalize, $punctuate, $Code ); -} - - -These parameters are: - -* a "message id" or the message itself -* some parameters which can be passed to the message -* the message's capitalization: -** 0 = no change -** 1 = first letter of first word -** 2 = fist character of all words -* the message's punctuation: -** 0 = "" -** 1 = . -** 2 = ! -** 3 = ? -* the language code, if you need to override your page's language - -This is a convenient method which can be used everywhere, both in your controllers and in your views, to translate simple pre-stored messages. Where are those messages stored? In various locale files which must be placed in @app/controllers/components/messages/@ and look like this: - -bc. $messages = Array ( - 'LocaleSetTo'=>"Site locale set to UK English", - 'LocaleChangeTo'=>"Change site locale to UK English", - // Time related messages - 'ago' => "%s ago", - 'ages' => "a long time ago (%s)", -) - - -The locale package also comes with a _Language Controller_ you can use to handle language changes, and a useful rewrite of the _Time Helper_. Andy recently updated his "i18n tutorial":http://wiki.cakephp.org/tutorials:i18n available on CakePHP Wiki, a very interesting read on how to quickly add i18n support to yout first Cake blog (yes, the one described in the "Blog Tutorial":http://wiki.cakephp.org/tutorials:blog_tutorial_-_1). - -So far so good. The Locale Package provide some basic multi-lingual support in an efficient way, and I'd certainly use it if I decide to (re-)develop a multi-lingual site, but unfortunately this does not fully solve the problem. -If you want *full* i18n, for sure you'd like to have all the contents of your website translated, which is - normally - dynamic and maybe stored in a database. That was the case of my old website: all the pages are dynamic, not static, so I had to think about something else. -Since I only had plans to develop a _dual_ language site, I opted for a very lazy (but yet effective) solution: each table - more or less - had "duplicate" fields, something like this: - -* id -* title_en -* title_it -* text_en -* text_it -* created -* modified - -I basically defined a global $lang variable set to "en" by default and then I accessed the record's fields (for example in views) like this: - -@echo $data['Project']['text_'.$lang]@ - -Ugly, perhaps, but did the job. The good (or bad) thing about this technique was that I could modify the contents of a project, for example, regardless of the current language: in my add/edit view, I chose to generate _all_ the fields of a table and therefore modify all the fields of a project without switching to the other language. - -How will Cake support locales? Will we have "localized" database tables (and models?) Only time will tell...
@@ -1,40 +0,0 @@
------ -permalink: "16" -filters_pre: -- redcloth -title: Databases supported by CakePHP -comments: [] - -date: 2006-04-17 07:30:00 +02:00 -tags: -- cakephp -- webdevelopment -- databases -type: article -toc: true ------ -One of the most recurring questions on CakePHP User Group is probably _"Does Cake support X database?"_. Sure, most of us tend to use just MySQL for our websites and applications, but in certain situations some more _exotic_ database support makes the difference. A partial answer to the question above could be _"Yes, probably, at least partially"_: CakePHP offers support for some database "natively" (i.e. Cake folks made some _ad hoc_ database drivers), others through either "ADOdb":http://adodb.sourceforge.net/ or "PEAR::DB":http://pear.php.net/package/DB. - -CakePHP seems to use a _multiple level_ database abstraction: in other words, popular abstraction layers like ADOdb or PEAR::DB have been wrapped in a "driver" which basically extends the DboSource class (which is the most high level database abstraction). Some people don't like the idea, because this means that the could be some performance issues, for one, and also that inevitably not _all_ features offered by either ADOdb or PEAR::DB are used. In my very, very, very modest opinion (I'm not an expert on this matter), this solution focus on achieving good database compatibility leaving the doors open for further tinkering, if needed. - -!<http://base--/img/pictures/postgres.png! - -Having said this, yes, the possibilities are good that your favorite database is supported by CakePHP, more or less. Of course, as repeatedly pointed out by some CakePHP core developers, Cake dev team didn't and is not going to test _every_ database with Cake, using either of the two abstraction layers, but users are more than welcome to do so. - -Let's now have a look at what is _known to work_ with Cake: - -*MySQL* works fine, and is currently recommended as _preferred_ database solution. What about *MySQLi*? Well, thanks to mappleJoe there's a (PHP5 only!) "driver":http://cakephp.org/pastes/show/770e73e77e4d7a3d32c2f3de3f175512 ready to be used. - - *PostgreSQL*'s support is continuously improving. Something may work, something may not: the good news is that the folks who are using it are "sharing their thoughts":http://groups.google.com/group/cake-php/browse_thread/thread/85a29ab6ec6826a0/8eecea26ba53e1fd?q=postgres&rnum=1#8eecea26ba53e1fd with the rest of us. - -!>http://base--/img/pictures/sqlite.gif! - -*SQLite* is supported natively, or so it seems... what about the newest SQLite3? Yes, probably: there's a quick "howto":http://www.thompsonlife.net/index.php?section=9 on ThompsonLife.net to make it work through the dbo_pear driver. - -*Access* works through the ADOdb driver, as reported in CakePHP "wiki":http://wiki.cakephp.org/docs:databases (thanks ivanp). - -"FileMaker":http://www.filemaker.com/ is getting there: things aren't that easy, but bdb is doing "all his best":http://groups.google.com/group/cake-php/browse_thread/thread/572d8dd2ba4cbdf7/dca851c795247c0b?q=database&rnum=2#dca851c795247c0b to make it work, good luck! - -Neil Fincham was also trying to develop a custom driver to support "Pervasive":http://www.pervasive.com/ through a "unixODBC":http://www.unixodbc.org/ driver. Best of luck! - -For other databases, check ADOdb's "list of supported databases":http://phplens.com/adodb/supported.databases.html and use the @dbo-adodb@ driver, or use PEAR::DB (for fbsql, ibase, informix, msql, mssql, mysql, mysqli, oci8, odbc, pgsql,sqlite and sybase) using the @dbo-pear@ driver.
@@ -1,26 +0,0 @@
------ -permalink: "17" -filters_pre: -- redcloth -title: New CakePHP Manual (with associations!) -comments: [] - -date: 2006-04-18 08:47:00 +02:00 -tags: -- cakephp -type: article -toc: true ------ -Gustavo Carreno just "announced":http://groups.google.com/group/cake-php/browse_thread/thread/4e13231cc383b9bb/6414184c1058fadb#6414184c1058fadb a new release of the "CakePHP Offline Manual":http://cakeforge.org/frs/?group_id=53&release_id=82. Personally I was extremely happy to download this new release because it finally contains documentation and howtos related to CakePHP's Model Associations, which is perhaps one of the most used _advanced_ CakePHP features. -So I'll have no excuses not to learn how to use them, great... - -The manual is available in the following formats: - -* Windows compressed HTML (.chm) -* PDF -* HTML (multiple pages or single page) - -Furthermore, the CakePHP API is also available for download in .chm format, thanks to Mladen Mihajlovic. - -Well done guys. Really useful for people like me who are on dialup sometimes :) -
@@ -1,69 +0,0 @@
------ -permalink: "18" -filters_pre: -- redcloth -title: Textiling -comments: [] - -date: 2006-04-21 09:39:03 +02:00 -tags: [] - -type: article -toc: true ------ -Once upon a time I used "BBcode":http://en.wikipedia.org/wiki/BBCode. "CyberArmy":http://base--/bookmarks/view/cyberarmy and all its affiliated sites adopted it as _de-facto_ standard for forums and articles, so consequently more or less all my articles are bbcoded. -I could copy and paste the _BBcodeHelper_ I coded for this site, and it could be quite an interesting read for some people... well, tough luck: today I'd like to talk about "Textile":http://base--/bookmarks/view/textile-reference/ instead, which now I consider _the answer_ to all text formatting problems. - -If what I wrote up to here doesn't make sense to you, I'm rambling about the apparent necessity and the undeniable need of web developers, content managers, and writers to use something else other than HTML for adding style and formatting text. What's wrong with HTML? Nothing, it's just too "tiresome" to use: you have to remember to close all tags, break lines, use the @<strong>@ tag every time you want *bold text*, etc. etc. -Some people even freak out when you tell them that they have to use HTML in their text: "it's just _waaaaaay too difficult_ to learn and use" ...things like that. - -Whether you are scared to learn HTML, you don't want to, or you know it but you're too lazy to seriously thinking about manually use a markup language to write your article, I can say that you'll definitely become addicted to Textile. What? _"WYSIWYG(What You See is What You Get) HTML editors?"_ - C'mon, let's at least _try_ to be serious :) -Why BBcode doesn't help enough? Well, simply because I don't see why <code>[i]this[/i]</code> is easier than @<i>this</i>@: unless you have a particular phobia for angular brackets, it seems quite similar to me! - -What about @_this_@ instead? You use only two additional characters instead of seven. SEVEN. If I only want italcized text I honestly can't imagine myself using more than two extra characters. It's natural. It's human. - -!<http://base--/img/pictures/pear2.gif! - - Precisely. Textile is a _"Humane web text generator(TM)"_, it's simple, elegant and produces standard compliant XHTML code. "Dean Allen":http://www.textism.com/about/ should be worshipped by entire generations of web developers for inventing something so easy to use and so _elegant_ at the same time. Maybe not worshipped, but for sure respected. -I won't copy and paste the extremely useful "TextileHelper":http://cakeforge.org/projects/textilehelper/ for CakePHP either, simply because it's 4085 lines long and it would be pointless: you can just get it and use it. - -I'll just include some examples of textile formatting... - -| *Textile Code* | *Result* | -| @*text*@ | *bold* text | -| @_text_@ | _italicized_ text | -| <code>@text@</code> | @fixed width@ text| -| @"text":url@ | "linked":http://base--/ text | -| @!path/to/image!@ | image | - - -These are just some trivial examples. With textile you can also format text blocks, add custom CSS code and even float images or text! Tables? Sure, how do you think I created the table above? - -<pre><code> -| *Textile Code* | *Result* | -| @*text*@ | *bold* text | -| @_text_@ | _italicized_ text | -| <code>@text@<code>| @fixed width@ text| -| @"text":url@ | "linked":http://base--/ text | -| @!path/to/image!@ | image | -</code></pre> - -The simplest and most intuitive way possible! - -Regardless, Textile is not perfect and may have some quirks, at least the CakePHP helper: the_undefined pointed out in a "blog post":http://www.thinkingphp.org/2006/03/22/textile-a-personal-love-of-mine/ that external links are opened in the same window, so he provided a patch to the textile helper to handle this situation. -I also noticed that sometimes empty @style=""@ and @class=""@ attributed are generated, which don't do any particular harm, but they are not needed either... so here's a quick fix to improve your Textile experience in CakePHP: You can use this function ideally in your customized textile helper, @$data@ should be the return value of TextileHelper's @process()@ method. - -<pre><code> -function _fixTextile($data) -{ - $patterns = array( '/http://base--/', - '/style=""/', - '/class=""/', - '/ >/'); - $replaces = array($this->base, - '', - '', - '>'); - return preg_replace($patterns, $replaces, $data); -} -</code></pre>
@@ -1,93 +0,0 @@
------ -permalink: "20" -filters_pre: -- redcloth -title: In memory of Vittorio Cevasco (1916-2006) -comments: [] - -date: 2006-04-26 05:36:00 +02:00 -tags: -- personal -type: article -toc: true ------ -Yesterday my grandpa passed away, due to an aggravation of his health condition, breathing problems and various other complications. He died in hospital, on Liberation Day, the Italian national holiday celebrating the liberation of our country from the nazi-fascist regime by the Allied troops and partisans on April 25th 1945. He died exactly 61 years after that day. - -I'd like to remember my grandpa today, because he most certainly deserves it, as he was a really extraordinary person. - -_"Yes, I'm sure he was, isn't everybody extraordinary in some way?"_ - -Definitely: everybody is special, and people tend to say that especially when someone passes away. In my grandpa's case, actually I can say that in a slightly more absolute sense: his life was truly uncommon and very active. - -*A very active life* - -!<http://base--/img/pictures/grandpa.jpg! - -Vittorio Cevasco, my grandfather, was certainly the most active member of my family. We're talking about a man who was still able to drive a car up to last September (he was nearly 90 years old), and used to drive 500 Km on the motorway and mountain roads every year to go on vacation: he went to the same place, Mals Vinschgau, near the Italian-Austrian-Swiss border for over fifty years. He never had particular troubles to walk, and just in the past months started using a walking stick... before that he used to walk around the city by himself everyday, in his endless meanderings. He always had something to do: visit friends, go to public offices, go to our house in the countryside - he still used to cultivate the land with potatoes, tomatoes and basil as a hobby until a few months ago - and so on: he was really a busy man. -I can certainly say that I never though he was really old until after his wife, my grandma, died, about a year ago. Since then he really aged, and quickly, as she probably was one of the main reasons of his existance. - -When he was "young" (i.e. less than 80) he used to _compete_ with the lift in his flat running down the stairs. Everyone else was taking the lift, but he always chose to go on foot down the stairs, to keep in exercise. His other exercise was cultivating our land in Sessarego, near Bogliasco (Genoa, Italy), as a hobby more than anything, providing us with fresh _biological_ products like that extraordinary basil essential to make our very tasty local "pesto sauce":http://www.pesto.net/eng/index.php. -He always tried to convince me to do some work there, and he actually taught me various tips and secrets which will hopefully be useful in near future. Sadly, when he was alive I wasn't too keen on the idea of cultivating and maintain our land from time to time... but I kind of changed my mind recently, and I know he realized that just a few days before he died. - -After WWII he did various things, he even was erhm... somehow active in _certain international import/export activities_ of watches from Switzerland to Italy - quite a common thing back in the day, especially considering that the border was at just a few hours drive. -Later on he became an estate agent, working for a local office and then helping out some friends running their activity. In 2001 he hit his own personal record selling a fancy villa worth one billion of the old Italian Lire - which convert to approx. 500,000 Euro, but at the time it was much bigger money than that. With the commission generated by that sale he bought a brand new Ford Fiesta: he was 85 years old. - -But no, these are not the most extraordinary episodes of his life of course. He could fly - literally. - -He was one of the first man in Italy and the the first in Genoa area to get a flying license, back in 1934. A news which made the local papers at the time, and we still have that article somewhere. He wanted to become a civil pilot, but he never did: the Country needed him to protect our sky, when Italy joined the War in 1941. - -*The Aviator* - -!<http://base--/img/pictures/sessarego.jpg! - -My grandpa lived the early years of his youth in the village of Sessarego, where my great-grandfather bought an old house, after taking part in "Giuseppe Garibaldi":http://www.italian-american.com/garib-it.htm's expedition at Marsala (1860) fighting for the Italian independence (he's listed among "the ones":http://www.italian-american.com/garibal.htm who actually landed there). -There his parents used to have a few cows and produce milk, and one of his tasks was milking delivery... no scooters or cars, at the time, of course, and certainly not for a teenager like him: he often had to carry the milk barrels up and down the hill _on foot_, and I'm talking about 1-2 Km with at least 30-40 kilos on your shoulders! - -But my grandpa's plans were much different: he wanted to fly away, and high - literally. You can imagine the face of my grand-grandfather when he expressed his wish to become a pilot! Nobody ever did that, in the area, and becoming a pilot was, at the time, like becoming an astronaut in the seventies. -The price of the license was really high at the time, 1,200 Lire. That would be like at least 30,000 Euro now, especially considering that his parents weren't exactly rich. In the very end, my father supported him and provided as much money as he could afford: 1000 Lire. -But he still needed 200 Lire, so after hassling the flying instructors he signed an agreement stating that if they anticipated him the money he'd have paid them back once he started working: it was clear in fact that he'd have became a military pilot, as the Regime needed people for their brand new aircrafts, and the was felt imminent. -He paid them back, eventually, after passing both the civil and military tests. He became a sergeant for the _Regia Aviazione_ (Royal Airforce), with a salary of 20 Lire/month, ten of which went to the flying school, for many months, but he was still earning some very decent money. - -One of the most peculiar things about my grandpa was his memory: he was always able to tell you the story of his life, all the events, with the same details and _all the exact dates_, on every occasion. Even when we took him to the hospital, a few weeks ago, when we asked the nurse if he was self-conscious she said: _"Yes... well, he was talking a few hours ago, but I don't know if he was raving or what... he said he was a pilot, and that he used to fly at 350Km/h..."_ - -!>http://base--/img/pictures/r2002-main.jpg! - -Damn right. His old "Re 2002":http://www.comandosupremo.com/Re2002.html was able to fly at 350 Km/h if pushed, at a standard altitude of 35,000 m, while carrying a 500Kg bomb. It was _his_ plane, and he never forgot that, even a few days before he passed away. He'd tell you all the stats, the mechanics, the technical details and all the tricks to perform acrobatic maneuvers if you asked him... Not that actually anybody ever did, because _every_ time something reminded him of that, even slightly, he'd start talking about the old days when he was commanding his squad patrolling the Italian borders. - -Last year, after my grandma died and he didn't feel like driving 500Km to go to the mountains (for the first time in his life), I had to drive his _Fiesta_ myself in my first long driving journey. At first I wasn't too sure I'd have enjoyed the drive, partly because of the long distance and partly because I was going to be alone with my grandpa for about six hours, and I was afraid of not be able to find enough topics of conversation... - -That fear went away almost instantly right a few minutes after we started the journey. -When we got on the motorway, I started complaining that my dad was going slightly over the limit with his brand new Peugeot 307: _"Look, he's already going at 140km/h and we just started the journey!"_ - -_"Centûcäranta chilumetri l'ûa... û më aeruplannu pûeivä fâ ï trexëntusincûanta cûmme ninte!"_ -[140 kilometers per hour... my plane could easily do 350!] - -He normally used to speak in _zeneise_ ("Genovese"), Genoa's dialect, mixed with some Italian _if he really had to_. That was it: if you started talking about speed, technology, engines, history or any other topic which was _slightly_ related to his plane, the war, the regime etc. he always started off talking about his past and his plane, ignoring everything else. -My grandma used to get kinda annoyed about it... on every occasion, if he had a chance, he'd start talking about _that particular day in 193x/4x_ and so on: we all knew that, and actually I enjoyed listening to his stories, mostly because they were genuine and authentic relics of an old and glorious past. I think in his mind he wanted us all to remember him in that way, to always keep in mind that he was a pilot and how he enjoyed it, even when he went in jail for it, even when his plane was taken down... - -!<http://base--/img/pictures/Re2002.jpg! - -On that day right after he was assigned to a new base, they asked him to perform some exercises in the air, loops and all sort of acrobatics: _"ë sölite cöse che së dûviëiva fä in t'ë l'aviäsiûn"_ [the usual things you had to do in the airforce]. -He was just starting practicing the Re 2002 at the time, but he quickly found out that it was _extremely_ maneuvrable, at least to the standards of the time: the equivalent of a top range today's fighter. -He started off with some usual things, performing various twists in the air, loops, etc. etc. until he had to end his exhibition with a dive from an altitude of 10,000m down at maximum speed to a limit of 1500m... On that particular day a colonel from another base and some other high-ranking officer were down on the ground near the aircraft to enjoy the show, and check that everything was performed correctly. My grandpa was aware of that, so he decided to perform a great show especially for them that day: he went up to 10,000m, and then dove down accelerating, helped by gravity... he went down and down, faster and faster, people down on the ground were staring at him waiting for him to pull up the plane, but nothing, he still went down and down so that quickly the small crowd of captains and colonels got scared and run away in every direction: _"He'll crash, he'll crash!"_ -He did not crash, not that day... he went down up to slightly less than 100m and _then_ pulled up the plane: ar real wonderful _extreme_ performance. Now imagine this beast of a plane coming down at 300Km/h and accelerating, making a terrible noise typical of the engines of the time and then _pull up suddenly_ right above your head: one more second and he wouldn't have been able to tell that story. -He was called by the commander of the base who told him: _"Cevasco, you're hell of a skilled pilot, but now I have to put you in jail for a day for not obeying your orders of staying above 1500m"_ - That, I reckon, was one of the best days of my grandpa's life. - -He was never captured, but his plane was taken down by an English _Spitfire_ in the South of Italy. The war was nearly finished, and there were just those little air fights from time to time. He really risked a lot that day, and managed to attempt an emergency "landing" completely destroying his plane along as part of his jaw, which was alright after a few months. -Since then he never flew again, and managed to escape to be re-called in duty. But he did like flying back with his memories to those glorious days. - -A few years ago my dad showed him Microsoft's _"Flight Simulator 98"_, and some other flying games. He was amazed at the graphic, but not so satisfied with the whole _simulation_ thing: not even close to reality, too damn easy. - -_"Cäu më, te vûeive vedde tïe a fä vûlá û më aeruplannu"_ -[My dear, I'd have liked to see you trying to fly _my_ plane] - -...and that was it: the beginning of another journey back in time. - -He always had a very practical view of life and especially of technology. He wouldn't take you seriously and would not be interested in knowing about programming and the Internet, unless it could produce some concrete result: - -_"Ti che ti stûddi da insegnë e che ti stë sempre davanti a-û cumputer, nun te puriësci truvä ûn sistemmä de anä in t'ë a banca e piggië qualche miliûn the Euro?"_ -[You that you're studying to become an engineer and that spend so long in front of the computer, couldn't you find a way to get into a bank and get out some million of Euro?] - -He'd have loved me to become a [rich] hacker, probably... But the last time I saw him, last Friday, he seemed happy enough to hear that I was just about to start working. - -He realized that I finally found a good job after my studies, and then my dad told him Roxanne and I would have moved to the countryside, in Sessarego... He made a big effort to move the muscles of his mouth in a large smile: he was happy.
@@ -1,127 +0,0 @@
------ -permalink: "21" -filters_pre: -- redcloth -title: Birthday present? Web space, please... -comments: [] - -date: 2006-04-27 14:47:00 +02:00 -tags: -- website -- review -type: article -toc: true ------ -Today is my birthday! "Not too happy":http://base--/blog/view/20/, but still my birthday after all. What presents did I get from my relatives and friends? Well, various things, but I told my parents and uncles I actually needed some web space... _"What? Didn't you have the hosting sorted out?"_ -Well, I had, up to a few days ago when my friends and hosting provider, DeWayne Lehman, decided to close down his "company":http://www.block-house.com. The reason being, to cut a long story short, that he can't keep up with competition: he doesn't have enough customers, and he can't afford server upgrades, while other companies are literally giving space away. -That was a pity, not only because Block House used to host various non-profit orgs and initiatives, but also because the guy who run it was an excellent admin, always offering excellent support. - -Anyhow, in the end I'll have to transfer all five of my sites to a new host, so here we go again: _what's the best hosting company?_ -Obviously it depends a lot on what you're looking for, and here's what I need: - -* At least 4GB of space -* At least 30GB/month bandwidth -* PHP of course, but also other languages like Perl, Python and Ruby (+ Rails support) -* MySQL databases... at least 10-20 -* Be able to host 5-6 sites minimum -* Subdomains allowed (10 in total?) -* FTP _and SSH_ access -* Subversion, if possible - -All this for less than 10$/month, ideally 5$, on shared hosting. I already made my choice and if you're reading this post it means everything worked fine, but anyway, let's have a look at what the market can offer for my needs. I only went for US-based hosts: Italian hosts are terrible and US hosts are normally more reliable and cheaper. - -!<http://base--/img/pictures/dreamhost.gif! - -The first hosting company I was tempted by was "DreamHost":http://www.dreamhost.com. They can literally sell you anything but their mother, at stupidly cheap rates for what you get (apparently): - -* 20GB of space -* 1TB (!) bandwidth -* PHP4, PHP5 Perl, Python and Ruby + RoR support -* Unlimited databases -* Unlimited hosted domains -* Unlimited hosted subdomains -* FTP and SSH access -* Subversion and CVS -* ...and more - -For 7.95 if you pay two years in advance. And the first time you can get up to 97$ off by using one of the thousands referrer's coupons available on the net. OK, where's the catch? Well, there's a "bad review":http://futurosity.com/231/why-dreamhost-sucks about them which points out that their reliability is not too great, for example, and that the seem to be rather dodgy in general. "They are overselling, they'll soon enforce CPU restrictions" etc. etc. -_...let's move along_ - -!>http://base--/img/pictures/rails.gif! - -I might try out Ruby on Rails someday, so perhaps I thought it would be wise to choose a host supporting it, for a change. The first Rails friendly I thought about was "RailsPlayground":http://www.railsplayground.org, which started off as FREE Rails host and then ended up offering interesting commercial hosting plans. They are not bad, and I'd have probably gone with them if I had only one site to manage: for 60$ a year you get: - -* 3GB of space -* 30GB bandwidth -* PHP4, PHP5 Perl, Python and Ruby + RoR support -* Unlimited databases -* Unlimited add-on domains -* Unlimited hosted subdomains -* FTP and SSH access -* Subversion and CVS -* ...and more - -Well, the only reason why I didn't go with them was that I did slightly more space, only that. The plan for 5GB of space costs 11$/month, which was too expensive for my liking. - -!<http://base--/img/pictures/textdrive.gif! - -Since we're talking about Rails, why not "Textdrive":http://www.textdrive.com? Founded by 200 IT professional, hosts high quality sites, it's the official Rails host... An "elite" solution, here's what you get: - -* Use Apache and Lighttpd web servers side-by-side -* Host PHP4 and PHP5 web pages and applications -* Host a weblog using Textpattern, Wordpress, MovableType, Typo, etc -* Host Ruby and Ruby on Rails applications (including FCGI and hundreds of gems) -* Host Perl applications (including 100's of Perl modules) -* Host Python applications like Django -* Manage your code base with version control (Subversion, SVK, Darcs, Monotone & Arch) -* Share iCal files over WebDAV -* Mount a WebDAV drive on your desktop (like iDisk) -* Easily create free subdomains with wildcard DNS -* Store your Basecamp file uploads over SFTP -* Access your account via SFTP and SSH -* Add domains, unlimited IMAP and POP mail boxes and mail aliases through a control panel -* Check your email through Webmail -* Host Mailman mailing lists complete with archives -* Use MySQL (default), PostgreSQL, SQLite and Berkeley databases - -Plans start at 12$/month for 1GB of space and one website... The 3GB one is 40$/month, for 20 sites in total. Too bad it's too expensive for me as they are truly the top for shared hosting - I think. - - -"Host Gator":http://www.hostgator.com/, which seems to be one of the most frequently recommended at SitePoint.com forums, is not bad either. They have a "hatchling" plan for 3,5GB at 6.95, which wasn't bad, but it only allows one domain to be hosted. The "Baby" plan allows unlimited domains and is 9.95$/month, which is kinda dear. You get: - -* 5GB of space -* 75GB bandwidth -* PHP4, PHP5 Perl and Python -* Unlimited databases -* Unlimited add-on domains -* Unlimited hosted subdomains -* FTP access -* ...and more - -No SSH, no SVN and no Rails: out. - -"Site5":http://www.site5.com/ is also one of SitePoint's favourite, but still has limitations on the number of sites. I would have got the SuperHosting XTREME, for 7,77$/month: - -* 11GB of space -* 400GB bandwidth -* PHP4, PHP5 Perl, Python, Ruby + RoR support -* Unlimited databases -* 5 domains hosted -* Unlimited hosted subdomains -* FTP and SSH access -* ...and more - - Not bad, a little bit too much for only 5 sites... I needed 6, too bad :/ - -<div style="float:right; padding:3px;"><script src="http://www.bluehost.com/src/js/h3rald/CODE2/488x160/1.jpg"></script> </div> This site is currently hosted on "BlueHost":http://www.bluehost.com, a hosting company established in 1996, which seems to be reliable enough (not many complaints on the net) and seems serious enough. They don't offer subversion and WebDAV for "security reasons" and in order to get a shell account you have to send them a copy of an ID card. Annoying? Well, perhaps for some: this made me understand that they don't allow just anybody to get SSH access unconditionally, and I didn't mind. I sent them a scansion of my ID card and I got a friendly support email after a few minutes, confirming that it was activated. Here's what I got: - -* 15GB of space -* 400GB bandwidth -* PHP4, PHP5 Perl, Python, Ruby + RoR support -* 20 MySQL databases + 10 PostgreSQL databases -* 6 domains hosted in one account (easier for me!) -* 20 subdomains + 20 parked domains -* FTP and SSH access -* ...and more - -For 6,65$/month, 2 years pre-payment. One of the good things is that they are not fussy about giving the money back if you cancel. Anyhow... let's hope for the best, so far, so good.
@@ -1,141 +0,0 @@
------ -permalink: "22" -filters_pre: -- redcloth -title: Ten minutes on Rails (while eating Cake) -comments: [] - -date: 2006-04-29 15:29:00 +02:00 -tags: -- cakephp -- rails -- webdevelopment -type: article -toc: true ------ -Today I decided to do something different, something I've been dying to do since before coming across CakePHP: give Rails a _proper_ try. Like many other PHP developers out there, when "Ruby on Rails":http://www.rubyonrails.org came out I felt damn jealous and terribly tempted to learn Ruby _only_ to start using such an amazing web development framework. At the time I actually even started reading various tutorials about it, and I was literally amazed at how RoR revolutioned the way of developing web applications. - -!<http://base--/img/pictures/rails.gif! - -One of the main problems which made me - sadly - abandon Rails was Ruby itself: personally I've never seen a programming language with a cleaner and more elegant syntax, but also - at least at the time - there weren't many hosts supporting it. LuckilyI found CakePHP quickly after that... -Now however, more and more hosting companies boast full Rails support, and so when recently I "had to move":http://base--/blog/view/21/ to a new host, I made sure it was Rails-friendly, _just in case I wanted to give Rails another try, someday_. -Oh well, the temptation was so strong that today, only a two days after switching to my new host, I felt I _had_ to try it, I _had_ to taste something different than the usual Cake. - -I decided to (re-)read and follow the "OnLamp tutorial":http://www.onlamp.com/pub/a/onlamp/2005/01/20/rails.html about RoR, step by step, once again. I quickly typed @rails cookbook@ from my shell and voilá, rails silently creates the skeleton of my application: - -README -Rakefile -app/ -components/ -config/ -db/ -doc/ -favicon.ico -index.html -lib/ -log/ -public/ -script/ -structure.txt -test/ -tmp/ -vendor/ - -That's familiar: it's very similar to what CakePHP's directory structure used to look like. Now Cake _evolved_ and adopted its own schema, which - I must say - seems more functional than RoR's, at least at a first glance: - -* app/ -** config/ -** controllers/ -** models/ -** plugins/ -** tmp/ -** vendors/ -** views/ -** webroot/ -* cake/ -** config/ -** docs/ -** libs/ -* vendors/ - -!>http://base--/img/pictures/cakephp.png! - -Cake felt the necessity to divide what you can mess with (@app/@, @vendors/@) from what you'd better not touch (@cake/@). Rails just left everything on the same level. - -After creating my database and the necessary tables I have to edit @config/database.yml@, which corresponds to Cake's @app/config/database.php@. Then things start to become a bit different from Cake, as Rails offers some very handy built in scripts which can be used to automatically create your application's files, i.e. executing @ruby script/generate controller Recipe@ creates the controller and other bits: - -bc. exists app/controllers/ -exists app/helpers/ -create app/views/recipe -exists test/functional/ -create app/controllers/recipe_controller.rb -create test/functional/recipe_controller_test.rb -create app/helpers/recipe_helper.rb - - -And so on. Anyhow... I followed the tutorial and yes, it was a nice read. CakePHP borrowed a lot from Rails but not everything. Inevitably Ruby's syntax is less verbose and looks very very clean: - -<% highlight :ruby do %> -class RecipeController < ApplicationController - scaffold :recipe - - def list - @recipes = Recipe.find_all - end - - def edit - @recipe = Recipe.find(@params["id"]) - @categories = Category.find_all - end -end -<% end %> - -While CakePHP's, simply because it uses PHP and not Ruby, looks less pretty: - -<% highlight :php do %> -class RecipesController extends AppController -{ - var $scaffold; - - function list() - { - $this->set('recipes', $this->Recipe->findAll()); - } - - function edit($id) - { - $this->set('recipe', $this->Recipe->find("id = $id")); - $this->set('categories', $this->Category->findAll()); - } - -} -<% end %> - -CakePHP Development Team did a great job translating some of Rails functionalities into PHP, and the while CakePHP's syntax is *much* cleaner if compared to PHP's standard spaghetti-code approach, Ruby just looks much more clear, sorry. _Imagine a world without funny unnecessary brackets, pointless semicolons and where everything just looks better_: that's Ruby. - -Sigh. Now I do understand why Rails was built in Ruby and not in PHP: simply because a PHP's Rails would have been outscored by its "Ruby port"! - -One thing I liked about Rails which has not been ported in Cake (yet) is a somehow smarter way of scaffolding. While the Ruby code above actually works, the CakePHP's edit method doesn't, or better, it does but not as expected: when you remove @var $scaffold@ the scaffold is just plain gone, and you have to code everything yourself, while in Ruby you can leave the scaffold and then develop methods one by one, and still be able to use scaffolded methods if you didn't define the custom ones. - -The other thing I noticed about RoR is that it definitely handles errors better! This is probably another language issue. I basically forgot to set a category for the recipes, and when executing my custom list of recipes I got a very, very well structured error page showing something like: - -<% highlight :ruby do %> -NoMethodError in Recipe#index - -Showing app/views/recipe/index.rhtml where line #18 raised: - -You have a nil object when you didn't expect it! -The error occured while evaluating nil.name - -Extracted source (around line #18): - -15: <% @recipes.each do |recipe| %> -16: <tr> -17: <td><%= link_to recipe.title, :action => "show", :id => recipe.id %></td> -18: <td><%= recipe.category.name %></td> -19: <td><%= recipe.date %></td> -20: </tr> -21: <% end %> -<% end %> - -I took a screenshot of the page, because it was too nice: "check it out":http://base--/img/pictures/rails_error.jpg. This error page really tells you what's wrong, and even prints the lines of code around the error! It also lets the developer check the full backtrace and every sort of information... Can we have this in CakePHP please? I actually started to develop something like this, but seemed quite hard to do in PHP.
@@ -1,85 +0,0 @@
------ -permalink: "23" -filters_pre: -- redcloth -title: A look at Symfony -comments: [] - -date: 2006-05-01 13:42:46 +02:00 -tags: [] - -type: article -toc: true ------ -CakePHP is THE perfect PHP framework, so _we_ don't need anything else. Oh well, no. I personally love CakePHP, but I do believe other PHP frameworks can be interesting and maybe even useful, so today I thought I'd have a look at the "Simfony Project":http://base--/bookmarks/view/simfony/. This framework seems to be mentioned here and there on the Net in many different ways, someone said it can do wonders, some said it's more advanced, others said something like _"qcodo sucks.. cake stinks.. symfony rocks!!!!!"_, so it OUGHT TO be pretty cool, definitely. - -!<http://base--/img/pictures/symfony.gif! _Know thy enemy_ someone said (OK, bad joke), so let's have a look at this interesting alternative to CakePHP. _No dude, not another MVC-like, pseudo-Rails, AJAX-worshipping framework!_ Yes, another one. Actually Symfony is more than that: while people _can_ say CakePHP is similar to RoR for some features and for the strong MVC architecture, Symfony chose another road. Yes, MVC is still there, but the first thing I noticed after reading their "beginners' tutorial":http://www.symfony-project.com/tutorial/my_first_project.html was that one of the things which Symfony seems to use quite regularly (and Cake doesn't)is code generators. Things like executing @symfony propel-build-sql@ or even @symfony propel-generate-crud frontend post Post@ from command line to generate your code automagically, which CakePHP - except for our little _bake_ script - doesn't use. -_See? Simfony is MUCH better and MUCH more advanced than Cake!_ No, hang on a minute... I just listed one thing which Symfony has more than Cake, is there any more? Yes, there is, for now: i18n - internationalization. Symfony comes with native multi-lingual support and Cake doesn't - yet - although there are rumors that i18n for Cake 2.0 is _almost done_. This is not speculation, re-read the sentence: First off I'm referring to Cake _2.0_ (which means it will take a while) and also I read it in the "Cake 2.0 ToDo List":https://trac.cakephp.org/wiki/Proposals/2.0ToDoList. - -One of the most recurring and yet pointless critiques to CakePHP from Symfony enthusiasts is that the sites developed with CakePHP look terrible. I perfectly agree, look at "this":http://www.h3rald.com/ and tell me if the developer is not a complete and hopeless idiot when it comes to design and look 'n' feel! -I do agree that some CakePHP sites (mine, mainly) don't look too good, and probably the Cake Software Foundation should pay me to put it offline. I also agree that the Symfony website looks nice and is more pleasant to the eye than CakePHP's, but I do hope that the old "design contest" doesn't get forgotten... - -!>http://base--/img/pictures/askeet.gif! The Symfony team also did something truly remarkable: a comprehensive tutorial, an advent calendar, some great free source code to download and a fully functional Web 2.0-compliant online application _all in one_. I'm referring to "Askeet":http://base--/bookmarks/view/askeet/, a Symfony-powered website which has been built from scratch using the framework and its development is well documented in "twenty-four tutorials":http://www.symfony-project.com/askeet. In one move these guys made an interesting website, some useful documentation and self promotion... what can I say: for next Christmas we'd better chain PHPnut, gwoo, nate & the others to their chairs, close them in a small room and force them to code something like that in twenty-four days. -If I were to mention something which Symfony did well I'd certainly say the "documentation":http://www.symfony-project.com/content/documentation.html. Screencasts, tutorials, advent calendars, a book, a wiki, API etc. etc. All done, and all good, I must admit that. The good news is that CakePHP is slowly catching up, and now the "manual":http://manual.cakephp.org looks pretty decent. - -OK, enough flattering and let's talk about something I didn't like about Symfony. I downloaded the thing and it turns out it's 1.2MB in size, _a hell of a framework!_ After extracting the beast I had a look inside and found three directories: @data@, @lib@ and @bin@. Not bad. I opened @bin@ and found the three magic symfony scripts, alright; I opened @data@ and found nine directories, I opened @lib@ (the real deal) and found 25 directories! These guys maybe never heard of something called _"an organized directory structure"_, or perhaps I'm just too used to Cake's logic and essentiality. -Browsing around I found something like 247 .dat files defining country names and currencies in all the languages of the world, script.aculo.us and prototype libraries, javascript calendars and other wonders... Weeeeheee! -The good thing is that Symfony seems to include pretty much everything you'd ever need, the bad thing is that _personally_ I will never use any of the thirteen Chinese-related .dat files in th i18n directory. This philosophy is exactly the opposite to Cake: at first i got pissed off when I noticed that CakePHP doesn't include prototype by default, but then I realized that if they started include _everything_ you _might_ need _someday_ we'd end up like... like Symfony, with 1.2MB of stuff 500KB of which - at least - will most likely not be of any use for the average developers. - -The other dangerous consequence of including more and more stuff is the so called _widget-temptation_: If you include script.aculo.us you MUST show off and offer some weird toy someone _may_ use... well, Symfony seems to go in that direction, and someone compared it to component-driven frameworks like eZ Publish rather than more general-purposes projects. I'm sure the "admin generator":http://www.symfony-project.com/content/book/page/generator.html can be damn handy, but what happens if I'm a terribly annoying guy who'd like to tweak it and change it so that it fits _my_ needs? In Cake... well, there's nothing "official" included in the core, and when you find a third-party helper or component you feel you can take a look and poke around, extend it, or change it totally. It's all up to the developers and their needs: personally think that widgets are useful, but some times people like a bit more flexibility. - -So the overall impression of Symfony is that - regardless its arguable, self-proclaimed, _enterprise-ready_ status - it is rather complex, with a steep(er) learning scheme which doesn't justify the extra features. - -From the "My first Symfony project":http://www.symfony-project.com/tutorial/my_first_project.html tutorial: - -bq. So, the weblog will handle posts, and you will enable comments on them. Edit the file sf_sandbox/config/schema.xml and paste the following configuration: -<small> -<pre><code> -<?xml version="1.0" encoding="UTF-8"?> -<database name="propel" defaultIdMethod="native" noxsd="true"> - <table name="weblog_post" phpName="Post"> - <column name="id" type="integer" required="true" primaryKey="true" autoIncrement="true" /> - <column name="title" type="varchar" size="255" /> - <column name="excerpt" type="longvarchar" /> - <column name="body" type="longvarchar" /> - <column name="created_at" type="timestamp" /> - </table> - - <table name="weblog_comment" phpName="Comment"> - <column name="id" type="integer" required="true" primaryKey="true" autoIncrement="true" /> - <column name="post_id" type="integer" required="true" /> - <foreign-key foreignTable="weblog_post"> - <reference local="post_id" foreign="id"/> - </foreign-key> - <column name="author" type="varchar" size="255" /> - <column name="email" type="varchar" size="255" /> - <column name="body" type="longvarchar" /> - <column name="created_at" type="timestamp" /> - </table> -</database> -</code></pre> -</small> -This code is longer to read than to explain: It describes two tables Post and Comment. - -NO! Sorry, no. This is NOT simple. It is logic, clear and makes perfect sense, it's not that I'm retarded and I can't write or read XML files, it's just unnecessary. You create this and then call the slave-script to create the model and the corresponding database table... This is exactly the _enterprise_ way of doing things CakePHP made me forget. _Convention over configuration_. Not hundreds of configuration files. - -But there's more: you can even configure your views with some simple @.yml@ (!) file: -<pre><code> -default: - http_metas: - content-type: text/html; charset=utf-8 - metas: - title: The best weblog ever - robots: index, follow - description: symfony project - keywords: symfony, project - language: en -</code></pre> - -Sure, it's good. It helps, and it's certainly useful, but I'd rather code a custom component to do the same thing with a few arrays. Again, this is arguable. -Validation is done through .yml files, and you can configure your administrator backend through a .yml file too! Cake has .ini-based ACL, and that's about it: if I don't want to use them I don't use them. -Clearly you probably don't have to edit all settings in the configuration files, but I just don't like the approach, personally. - -Oddly enough, Symfony's slogan seems to be "professional web tools for lazy folks"... - -It all depends on what you need. For _my_ needs I chose CakePHP, and "here's why":https://trac.cakephp.org/wiki/Cake/About.
@@ -1,65 +0,0 @@
------ -permalink: "24" -filters_pre: -- redcloth -title: CakePHP 1.0 released -comments: [] - -date: 2006-05-03 05:06:00 +02:00 -tags: -- cakephp -- webdevelopment -type: article -toc: true ------ -As "Digg":http://digg.com/programming/CakePHP_1.0_has_been_released_ points out, the first _stable_ version of CakePHP was released, yesterday. I should have posted yesterday about it, and no, I didn't forget: I was just busy downloading the new version, have a look at the new site, talk to people etc. - -Anyhow, it's ready, just baked and smells damn good. Go get it if you didn't already, it's available at "the usual place":http://cakeforge.org/frs/?group_id=23, even this time you won't be disappointed. CakePHP now reached the 1.0 milestone, in a way which reminds me a lot about Mozilla Firefox: a lot of people were already using it _before_ it went stable officially! - -!<http://base--/img/pictures/CakePHP_1.0.png! - -The CakePHP Team has been humble enough not to declare their product _stable_ before the time. I personally considered CakePHP stable _enough_ since RC2... and considering that this site and many others have been built on alpha, beta and RC version, I think people can get an idea of Cake's reliability. -Nothing (too) new came out the oven this time: CakePHP 1.0 is mainly a bugfix release, with all the features we've learnt to love. It's just _better_: a lot of things have been fixed, model associations work better, etc. etc. You can read the "changelog/announcement":http://cakeforge.org/frs/shownotes.php?group_id=23&release_id=85 or have a look below for a quick summary of the new features and most interesting fixes: - -<pre><code> -Revision: [2420] -Added fix for Ticket #320. -Fixed Model::save() so it will only allow a model to save itself. -Fixed Model::save() when saving a HABTM association - -Revision: [2437] -Adding fix for Model::findNeighbours(). -Was returning all associations and fields. Now recursive -is set to 0 and only returns the prev and next keys array - -Revision: [2456] -"Enables use of Controller::$data in addition to Controller::$params['data']" - -Revision: [2490] -Fixing a bug that occurs when connecting to two different -databases on the same server, and enabling cross-database -model associations - -Revision: [2491] -Adding Microsoft SQL Server driver [EXPERIMENTAL] - -Revision: [2577] -Adding $alias property to enable future Oracle support - -Revision: [2625] -Bringing all DB drivers up to date - -Revision: [2653] -Adding check for custom error class in app/. -Added check for AppController::appError(); will be called if this method -is in AppController. -</code></pre> - -!>http://base--/img/pictures/cakesite.png! - -If you're not too excited about this new release, maybe you should have a look at "www.cakephp.org":http://www.cakephp.org. Different? Damn right it is: it looks like someone listened to our prayers for a new website design. The merciful soul is "Armando Sosa":http://www.nolimit-studio.com/, the winner of CakePHP's design contest. He's a latin-american web designer who had the GREAT idea of thinking about an _innovative_ design for the Cake site... Actually my dad didn't think that way: _"That's not new, that way of advertising was all over the place when I was a kid!"_ And he's right, Armando thought that a fifties-like template would have been perfect for Cake. Forget all the smooth, roundy-and-chubby, toons-like "official" Web 2.0 designs (beta), the new Cake site needs to stand out of the crowd... - -!<http://base--/img/pictures/fonz.jpg! - -<br /><br /> -_Heyyy! Well done guys..._
@@ -1,38 +0,0 @@
------ -permalink: "25" -filters_pre: -- redcloth -title: Digg Effect - the day after -comments: [] - -date: 2006-05-05 03:59:00 +02:00 -tags: -- web20 -- webdevelopment -- internet -type: article -toc: true ------ -...So it turns out that my "last article":http://www.h3rald.com/articles/view/rails-inspired-php-frameworks/ appeared on "Digg":http://www.digg.com homepage. -This was quite a pleasant surprise: I didn't expect that an article submitted to _my own site_ could make it that far! I thought you'd need a relatively well-known website, mafia's support, some divine intervention and a terrific amount of luck, but it seems that sometimes an interesting article about an interesting subject can be enough. I'll probably write a more detailed report of what happened soon, in another article rather than a blog post, but for now I just wanted to post a short summary here. - -Two days ago I decided to write a roundup of the six Rails-inspired PHP frameworks, CakePHP, Symfony, PHP on Trax, Code Igniter, Biscuit and Pipeline. The reason for this was that I couldn't find anything comparing all of them and such comparison could have been useful for some new _bakers_. OK, I confess, when I started writing the article I thought I'd submit it to Digg and see what happens: I saw that another "roundup":http://www.phpit.net/article/ten-different-php-frameworks/ made it to the first page and people were quoting it everywhere on the net. It's a nice article, but - in my humble opinion - not too exhaustive. -Then I read a comment by someone to the "digg":http://digg.com/programming/CakePHP_1.0_has_been_released_ of the latest Cake release stating: - -bq. Yes, they are similar - both were inspired by Rails, but Cake has gone further to differentiate themselves. Here's a decent (but not great) overview of some frameworks: http://www.phpit.net/article/ten-different-php-frameworks/ - -At that point, I thought that another round up, perhaps more Cake-centric, was in order. The other reason was that in one of my recent "blog posts":http://www.h3rald.com/blog/view/23/ I tried to compare CakePHP and Symfony, but obviously my emotions got in the way and in the end I noticed I was kinda _attacking_ Symfony. That was a blog post though, and that's half-allowed, but I felt that I should have written a slightly more objective _article_ mentioning also all the other competitors. - -Anyhow, right when I went to submit my article to Digg, it turns out that another guy wrote "a similar round up":http://digg.com/programming/5_Next_Generation_PHP_Frameworks, which made it to Digg's homepage. That was an annoying cohincidence, but in the end things didn't go too bad: his roundup was more generic, while mine was more specific and detailed. - -!<http://base--/img/pictures/dugg_detail.png! - -After submitting my article the reaction wasn't instantaneous... 5, 7, 10, 13 diggs in the first two hours. Then shortly I made it to 30 and when the 40th visitor dugg it my article was moved to the first page! -I immediately noticed it when I refreshed my stats page: a minute before my girlfriend was here telling me "oh look, over 400 visitors... not too bad". Then I refreshed the page and it said _539_, I refreshed again and said 600-something... eeep... Digg effect! - -A special praise goes to my new hosting company, "BlueHost":http://www.bluehost.com/track/h3rald/CODE5: the server didn't go down and it managed the extra traffic fine! A good test for CakePHP as well, since I built this site with it. - -So here I am... over 5000 visitors read my article, about 600 people dugg it, nearly 40 people commented it on digg.com and 20 directly on my site. And - except for the usual _Rails-is-better-than-anything-else_ comments - they were generally positive. Over 250 people bookmarked on del.icio.us and many blogs mentioned it in many different countries. - -Money? Didn't make much with adsense at all: programmers _don't_ click on ads! -Bandwidth? About 1GB was gone in the first five hours, now is obviously slowing down: oh well, I still have another 398GB available till the end of the month :P
@@ -1,136 +0,0 @@
------ -permalink: "26" -filters_pre: -- redcloth -title: bake.php - Easy baking for lazy folks -comments: [] - -date: 2006-05-06 15:43:00 +02:00 -tags: -- cakephp -- frameworks -type: article -toc: true ------ -When I first tried Ruby on Rails I was literally amazed by the _generator_ script. Yes, I was young and inexperienced then (six/seven months ago), but you must admit that getting a controller, a model, all the basic views generated automatically by - -@rails script/generator scaffold Posts@ - -is not a bad thing. Especially if the same script allows you to create model, views and controller separately and other things. "Symfony":http://www.symfony-project.com/ and PHP on Trax already tried to port this functionalities, with mixed results. What about Cake? Oh well, yes, we do have something like that... something rather different, but still something: the @bake.php@ script. -This cute little thing is located in the @cake/scripts/@ folder and can be used - hear, hear - from command line. You can run Ruby and Perl scripts, so yes, you can actually run PHP from command line, although it's not its primary purpose. - -!http://base--/img/pictures/bake.jpg! - -Cool then, let's open a *nix shell, Windows command prompt, etc. etc., go into the @cake/scripts/@ folder and run: - -@php bake.php@ - -Assuming that the php executable is in your _PATH_ environment variable - if not, either you add it or you'll have to type something like: - -@D:SERVERphpphp.exe bake.php@ - -depending on where your php executable is. You'll be be greeted by a "CAKEPHP BAKE" text, and then you'll be asked a few questions. One thing to realize before proceeding any further: bake.php is _not_ a generator, not in the traditional "Rails" sense, anyway. It's rather a handy but more verbose dialogue-based configuration script - which will also generate _something_ eventually if you provide all the necessary details. -A different approach, which may be good or bad according to your taste: personally I think we should also have something faster to use, like a Rails generator, and I opened a "ticket":https://trac.cakephp.org/ticket/768 about it, but let's see what bake.php can do, for now. - -The answer is... nearly anything. It annoying enough to please, but if you follow its directions it can do a prettu decent job in the end, it's far from being sentient, but let's say it's smart enough for a script. First of all if you try it out on a fresh Cake install it will notice that you haven't configured your database yet, so it will ask for a hostname, username, password, database name etc. etc. and generate your @app/config/database.php@ for you, not a bad start. - -Once that's done - and it won't go on unless you configure a (MySQL only?) database - you can proceed with the rest. You can start creating either a controller, model or view; I tried a @Posts@ controller, for example. The script then asks quite a few questions: - -* The controller's name -* Whether it will use other models besides posts -* Whether you want to include any helper -* Whether you want to include any component -* Whether you want to generate the base CRUD methods - -Then finally it generates the damn thing. The result is good enough: - -<small> -<pre><code> -<?php -class PostsController extends AppController -{ - //var $scaffold; - var $name = 'Posts'; - - function index() - { - $this->set('data', $this->Post->findAll()); - } - - function add() - { - if(empty($this->params['data'])) - { - $this->render(); - } - else - { - if($this->Post->save($this->params['data'])) - { - $this->flash('Post saved.', '/posts/index'); - } - else - { - $this->render(); - } - } - } - - function edit($id) - { - if(empty($this->params['data'])) - { - $this->set('data', $this->Post->find('Post.id = ' . $id)); - } - else - { - if($this->Post->save($this->params['data'])) - { - $this->flash('Post saved.', '/posts/index'); - } - else - { - $this->set('data', $this->params['data']); - $this->validateErrors($this->Post); - $this->render(); - } - } - } - - function view($id) - { - $this->set('data', $this->Post->find('Post.id = ' . $id)); - } - - function delete($id) - { - $this->Post->del($id); - $this->redirect('/posts/index'); - } - - function postList() - { - $vars = $this->Post->findAll(); - foreach($vars as $var) - { - $list[$var['Post']['id']] = $var['Post']['name']; - } - - return $list; - } -} -?> -</code></pre> -</small> - -It's more or less the same with models and views: it will still ask a lot of questions and in the end generate the thing. -This behaviour is more advanced than a standard generator, you can include helpers and components already, if you want, but do you _really_ want that? For models it even asks if you want to include particular associations and validation rules! Personally, I'd rather a generator script which generates something _immediately_ and accepts maybe some parameters to further customization, like: - -@php bake.php scaffold Posts@ -@php bake.php controller Posts@ -@php bake.php model Posts@ -@php bake.php model Posts@ -@php bake.php controller Posts helper +Html -Time,Javascript@ -@php bake.php model Posts assoc +hasMany comments,tags@ - -Bah... just some random thoughts. How about custom-made generators ("Rails-inspired":http://wiki.rubyonrails.org/rails/pages/AvailableGenerators)?
@@ -1,67 +0,0 @@
------ -permalink: "27" -filters_pre: -- redcloth -title: "rdBaker: Bake your CakePHP application online" -comments: [] - -date: 2006-05-08 11:50:00 +02:00 -tags: -- cakephp -type: article -toc: true ------ -Right after my "last blog post":http://base--/blog/view/26 I decided to log on #cakephp on irc.freenode.org as usual, and gwoo pops in and says "h3raLd, you didn't review rdBaker yet!" -That's right, I didn't yet, so I may as well do it today. - -I remember hearing about rdBaker months ago, waaay before CakePHP 1.0, way before the RCs, I remember someone mentioning it on CakePHP user group in right after the bake.php script was created. _"How about having an online baking utility?"_ - and that's precisely what rdBaker is, a more PHP-ish version of bake.php, which runs like any other PHP scripts: in your browser. - -This cute little thing is obviously available for free on "CakeForge":http://cakeforge.org/frs/?group_id=13&release_id=74 and is part of "gwoo":http://www.rd11.com 's "rdOpenSource":http://cakeforge.org/projects/rdos/ project which includes various other Cake-powered applications. -I personally recommend new (and old) bakers to download them and play with them, try to understand how they were coded, because they can really teach you _a lot_ on how to code a CakePHP application or website properly. - -So anyway, get your copy of rdBaker, unzip it and have a look at the @README.txt@ file for the installation instructions: - -<quote> -1. Place rdBaker in the root along side /cake_install/app. -2. chmod /cake_install/rdBaker/tmp to 0777 -3. launch http://localhost/cake_install/rdBaker/ -</quote> - -Not too hard, innit? - -!http://base--/img/pictures/rdbaker.jpg! - -Good. So you try accessing something like @http://localhost/php/test/cakephp/cake_test/rdBaker/@ (that's on my own local WAMP server) and you'll get a nice page asking you to "supply your ingredients" via a simple form. -Unlike its command line cousin, rdBaker doesn't require you to fill in _all_ the fields, but just the full path to the save directory (which is normally already filled in) and of course the name of the model (Post, User, Comment). -Then you can select the type of output and choose whether you want to generate an empty controller, a scaffolded one or the _full_ option including all the most common CRUD(Create, Retrieve, Update, Delete) methods. -Finally - if you like - you can enter any association or valitation rules for your model, then press the _Bake it!_ button and voilá, in you'll find three directories (controllers, models and views) in your save directory containing all the MVC(Model View Controller) entities you need regarding a particular model: - -<pre><code> - rdBaker Result Array -( - [0] => notes_controller.php created and written. Look in D:SERVERwwwphptestcakephpcake_testtmpcontrollers - [1] => note.php created and written. Look in D:SERVERwwwphptestcakephpcake_testtmpmodels - [2] => index.thtml created and written. Look in D:SERVERwwwphptestcakephpcake_testtmpviews/notes - [3] => add.thtml created and written. Look in D:SERVERwwwphptestcakephpcake_testtmpviews/notes - [4] => edit.thtml created and written. Look in D:SERVERwwwphptestcakephpcake_testtmpviews/notes - [5] => view.thtml created and written. Look in D:SERVERwwwphptestcakephpcake_testtmpviews/notes -) -</code></pre> - -But there's more! By checking the appropriate checkbox, you can get all the stuff packed in a zip file! - -Not bad at all, and fast as well. - -Now the bad things... -The script works fine, but there's something which could be improved, perhaps: - -* If you choose to put everything in a zip file, the file will be named "baked_by_rdBaker.zip" - not a big deal, but maybe it could be personalized according to the model name entered. -* Regardless you want to add validation rules to your model or not, you'll _always_ find some validation rules for a _title_ and _body_ field. I checked and they are hardcoded in the template file (rdBaker/views/helpers/templates/full/model.txt): -<pre><code> - var $validate = array( - 'title'=>VALID_NOT_EMPTY, - 'body'=>VALID_NOT_EMPTY); -</code></pre> -* In the baked index.thtml view, there will always be a column named "Title". This, again, is hardcoded in the template. - -Other than these things, everything seems to work fine. A really nice script!
@@ -1,23 +0,0 @@
------ -permalink: "29" -filters_pre: -- redcloth -title: Writing more articles... -comments: [] - -date: 2006-05-14 06:26:00 +02:00 -tags: -- website -- writing -type: article -toc: true ------ -Yes, I know, I've been slaking a little bit, and haven't posted on my blog in a while. Well, I actually _didn't_ slack at all in these days getting ready to start my job, looking for a damn fitted kitchen for my house and... writing more articles. - -Nothing special, and nothing too technical, to be honest, but equally interesting. First of all I updated my "An IE Lover's Guide to Firefox":http://base--/articles/view/ie-lovers-guide-to-firefox/ a little bit and people at SpreadFirefox.com and "FirefoxFacts":http://www.firefoxfacts.com/ liked it. Glad to hear that, unfortunately some guy who wrote about "Firefox Myths":http://mywebpages.comcast.net/SupportCD/FirefoxMyths.html wasn't too impressed, but at any rate he read it anyway. - -OK, this wasn't a new article at all, but "this one":http://base--/articles/view/the-internet-philosopher/ is fresh, at least. It's about a Swedish guy who decided to emigrate to India pursuing an ideal: writing for his own opinions and ideas. And he gets paid for that too! After reading more about him on his "website":http://base--/bookmarks/view/ropix I decided to write something about him. An interesting and rather unusual read. Pity that some sections of his homepage are in Swedish only. - -Finally, yesterday I felt inspired and decided to write "another roundup":http://base--/articles/view/social-bookmarking-services featuring ten popular social bookmarking websites. Trying all those services was fun, with a few exceptions of course. The bad news is that there are already various reviews about social bookmarking sites and thus the Digg folk doesn't seem to be particularly interested in "reading another one":http://digg.com/software/Ten_popular_social_bookmarking_services_reviewed, but hey! After all I can't expect of getting dugg for every roundup I write, can't I? - -That's about it. And what about the CakePHP article I promised "long ago":http://base--/blog/view/13/ to CakePHP beginners? It's done, written and ready to be published! Unfortunately the magazine I submitted it to is taking quite a bit to review it and - most important - to tell me whether they'll publish it or not. Let's hope for the best.
@@ -1,95 +0,0 @@
------ -permalink: "31" -filters_pre: -- redcloth -title: "Watch out: CakePHP screencasts" -comments: [] - -date: 2006-05-20 15:47:00 +02:00 -tags: -- cakephp -- tutorial -type: article -toc: true ------ -Tutorials are great, articles are helpful, manuals are essential and the API is your best friend, but there's still something missing there... Unfortunately podcasts are not yet available, but the CakePHP team is proud to announce the creation of two "screencasts":http://cakephp.org/pages/screencasts in an effort to help new bakers familiarizing with CakePHP's concepts. -This is old news now, the screencasts section came together with the "site overhaul":http://base--/blog/view/24 but I only got a chance to take a look at them (one of them only, to be totally honest) recently, and so here's a spoil... erhm, a _detailed_ description of John Anderson's screencast about the "Blog Tutorial":http://manual.cakephp.org/chapter/18. - -!<http://base--/img/pictures/CakePHP_1.0.png! - -There's something I'll never do: a screencast. Recording every mouse movement, every word or piece of code typed in half an hour? No way! And what happens if I mistype something? People will keep pointing out the fact that I was starting to type @</h2>@ to close a @</h1>@ tag, or that I waited an eternity like five full seconds before deciding what to do. I guess I'm quite paranoid... John did it, and he did it well. Using just bash, vim and Safari he was able to record an excellent 30-minutes screencast featuring the blog tutorial. -Before people start complaining that the blog tutorial should be completed in fifteen minutes, keep in mind that John's screencast is meant to show everything clearly to new users, via a trial and error approach if necessary. - -Here's what happens in the screencast, nothing new if your read the blog tutorial, but still interesting, especially if you're new to Cake. Unfortunately there's no audio, but the video talks by itself and John will occasionally write some comments here and there. - -_*0:01 - 5:00*_ - -* SVN checkout to get the latest CakePHP version -* make app/tmp writeable -* execute queries (table posts) -* insert some test posts -* create database config file: modify 3 lines of database.php -* CakePHP is now able to connect to database -* create app/models/post.php model -* create posts_controller.php [John uses Vim as preferred PHP editor] -* try to access /posts/, error: missing method index() -* create function index() in postscontroller.php able to fetch posts -* refresh, missing index view -* create index.thtml displaying the raw posts array - -_*5:01 - 10:00*_ - -* index.thtml: display posts with table and foreach iteration -* add hyperlink in index.thtml to view posts -* access /posts/view/1 -> missing method view() -* add view() method in postscontroller.php -* create view.thtml to display -* Raw view post with pre tags and print_r() - -_*10:01 - 15:00*_ - -* display post properly with @<p>@ tags -* add link in index.thtml to add a post -* missing method -> add() -* add add() in controller -* missing view [trial and error, trial and error...] -* create add.thtml, using the Html Helper to create input tags easily - -_*15:01 - 20:00*_ - -* add.thtml (continued) -* testing add form -* view added post -* start adding another (for validation purposes) [stop before submitting] -* modify post.php model, valid_not_empty for title and body -* modify view to trigger validation @$html->tagErrorMsg()@ -* test: no body, message displayed -* test: no title, message displayed -* add another post, everything works -* [pause: five seconds] -* back to the controller, create delete() function - -_*20:01 - 25:00*_ - -* delete function (continued) -* add "Actions" table column in index.thtml, with link delete post -* delete two posts -* take a breath -* add link in index.thtml to edit post -* refresh page, mouse over edit links... -* back to controller, add edit function [we learnt abour CakePHP errors alright] - -_*25:01 - 27:38*_ - -* pause, 5 sec [should I write edit.thtml from scratch] -* copy add.thtml as edit.thtml -* change just the title and form action -* [pause: 3 sec] -* test edit link -* edit a post -* move around, switch views -* edit config/routes.php -* set default route to posts/index -* refresh - all done! - -That's it. All in a 40MB .mov file. Download it from "here":http://www.archive.org/download/CakePHP_BlogTutorialJohn/BlogTutorial.mov.
@@ -1,41 +0,0 @@
------ -permalink: "32" -filters_pre: -- redcloth -title: Writing Tools -comments: [] - -date: 2006-05-25 14:57:00 +02:00 -tags: -- writing -- tools -type: article -toc: true ------ -Since in these days (and even more in near future) I'm really writing a lot I thought it would be good to share my thoughts on some writing programs and tools I started using for writing these blog posts, articles, and more. - -I'm going to examine a few applications which I find useful for different tasks, since I recently came to the conclusion that I cannot use the same editor for everything I write: some magazines require a .doc document, others want just plain text, my site uses the truly excellent "textile":http://http://www.textism.com/ markup, zZine Magazine used BBcode, other site use their own "proprietary" styles and so on. One could just give up and use Notepad - or better, "Notepad++":http://notepad-plus.sourceforge.net/uk/site.htm - for everything, while someone else like me might opt for various applications according to the task. - -One of the few essential requirements for a _writer_ is some spell checking functionality. Sad but true, this is enough to leave the most popular multi-purpose programming editor out: programmers don't need a spell checker, a highlighter for their favourite language is more than enough. -I will not mention all the applications I tried to find the Perfect Editor, and I'll just focus on the programs I ended up using in the end. Some may be well known, others may not, anyway, here we go. - -!<http://base--/img/pictures/wp/bill.jpg! - -"Word 2007 Beta 2":http://www.microsoft.com/office/preview/default.mspx - Yes, I know that OpenOffice is free and OO Writer works great, but perhaps at work you'll be asked to use MS Word. Some editors may require that as well, and their templates may not be correctly rendered by OpenOffice, so in the end you'll still have to use Redmond's most popular Word Processor - _if you have it_. If you got it with your laptop (I didn't) or your auntie gave you 300$ to buy it you're all set, but if you don't? -Oh well, yes, OpenOffice is the right choice perhaps, but at least until February 2007 uncle Bill lets you try the bleeding (quite literally) edge of all the commercial word processors: Word 2007 beta 2. You can download the whole Office Suite (and more) for free, "run":http://www.microsoft.com/office/preview/beta/overview.mspx. I did it yesterday and well, it's nice to try this brand-new piece of eye candy. the interface is completely new, you won't find the usual drop down menu but with some imagination you'll manage to save/create/open a new document by clicking on the big roundy Office logo on the top left corner. More user friendly? Perhaps, once you get used to it. It STILL doesn't have a tabbed interface, so you STILL have to clutter your taskbar if you want to keep more than one document open. -At any rate, it does the job, exactly in the same way as it did in the previous versions. -I use it if people ask me to, and for writing stuff which doesn't need to be formatted with a particular markup or style but rather look nice and have pictures embedded. - -!>http://base--/img/pictures/wp/writely.gif! - -"Writely":http://base--/bookmarks/view/writely/ - Now this is much more fun. A _online_, AJAX-powered word processor recently acquired by Google. IT's currently in closed beta, but I was lucky enough to get an account before they closed registrations and I can invite people to use it. -It's nice. It's nice if you have to work with MS Word documents or create PDF files, and it supports the most essential features offered by desktop word processors, plus some more, really convenient functionalities. -It can import MS Word documents pretty well and also any kind of text file, so that you can edit it online anytime and anywhere. You can star, tag, archive, edit and delete your documents in a really easy way and - which is one of its killer features - you can grant access to certain documents to collaborators for editing or viewing. Other word processors out there offer similar features, but Writely is by far the nicest to use and perhaps even the more advanced. I recently wrote a couple of articles about CakePHP (coming soon-ish to some online magazines near you) and then gave access to gwoo and PhpNut for editing, so that they could check the code snippets, in particular: it was a success. Magazine editors were happy and impressed as well. -Another really wonderful feature is _version support_. I discovered this recently: when you edit a document and save it, Writely automatically creates a new version of it, storing the old ones as well, so that you can even compare them to highlight differences if you wish: a great feature to keep track of the editing process and know exactly who edited which. When I noticed it that was it, Writely has become my online _repository_ for my articles and writings. - -!<http://base--/img/pictures/wp/cream.png! - -"Cream":http://base--/bookmarks/view/cream-editor - I discovered this a while ago, and it's perhaps the most multi-purpose editor out there. It's built on top of Vim (respect+) but it has a friendlier interface by default, and that's exactly what I'm using right now for typing this post. The reasons are simple: it supports ANY kind of file format and any character encoding. There's an highlighter for everything, including BBcode and textile, and of course you can make your own. It also includes spell checking on-the-fly which is missing in many simple editors. -Whenever I have to write something which requires some particular formatting or markup I use Cream, it does the job pretty well, and whenever I feel brave I can always switch to "expert" view and challenge my vi skills ;) - -That's pretty much what I use for writing articles, posts, and other documents... I tried other alternatives like RoughDraft or similar programs but I'm now really happy with these three applications. Commercial "writer's programs"? There are some out there, but who wants to spend 40$ or more for something which offer less than MS Word when you can use OpenOffice and Writely for free?
@@ -1,77 +0,0 @@
------ -permalink: "33" -filters_pre: -- redcloth -title: Information Mapping -comments: [] - -date: 2006-06-02 06:10:00 +02:00 -tags: -- productivity -- writing -type: article -toc: true ------ -As I thought, my job also represents a great opportunity to learn new things. I don't mean only new technical stuff, but also a great deal of tips, best practices and methods to efficiently write documentation material in proper English. Some theory about "Information Mapping":http://www.infomap.com/ was by far the most interesting topic I learnt about this week. - -h3. What is Information Mapping? - -*Definition[1]* -<blockquote>The Information Mapping method is a research-based approach to the analysis, organization, and visual presentation of information.</blockquote> - -*Information Mapping is media independent* -<blockquote>The method is both subject matter and media independent; that is, it can be applied to the subject matter of any industry, and it can be presented on paper, on a computer screen, verbally, or in a multimedia presentation. </blockquote> - -*Key Concepts* -<blockquote>Information Mapping is an integrated set of easy-to-learn principles, techniques, and standards. It enables authors to break complex information into its most basic elements and then present those elements optimally for readers. The result is a set of precisely defined information modules that are consistent from author to author and document to document.</blockquote> - - -*Purpose* -<blockquote> -The method helps writers analyze, organize, and present information with clarity focus and impact. Information That Works. The goal of the analysis component is to determine the - -* purpose -* audience needs, and -* information types. - -The goal of the organization is to create an overall structure for the information, based on the results of your analysis. Finally, the goal of the presentation component is to format the information to make it clear and accessible to your audience. -</blockquote> - -fn1. Contents were taken from "InfoMap.com":http://www.infomap.com/index.cfm/TheMethod/ and were re-formatted and re-organized into an information map. - - -h3. Key Concepts - -*Introduction* -<blockquote>The Information Mapping method relies on some important principles according to which information should be organized. This method also defines new units of information to replace paragraphs, sections and chapters and tries to divide information into a few main set types, each with its own rules and structures.</blockquote> - -*Principles* -<blockquote> - -| *Name* | *Explanation* | -| Chuncking | Writers should group information into small, manageable units. | -| Relevance | Writers should make sure that al information in a chunck relates to one main point (function or purpose). | -| Labeling | Writers should provide a label for every unit of information. | -| Consistency | Writers should use similar labels, word, formats for similar subject matters. | -| Integrated Graphics | The use of tables, images, diagrams and lists is encouraged. | -| Accessible Detail | Documents should provide sufficient details where necessary, to make the information more accessible for the readers. | -| Hierarchy | Small, relevant units of information should be organized into a hierarchy. | - -</blockquote> - -*Information Types* -<blockquote> - -| *Name* | *Definition* | -| Procedure | Set of steps to obtain a specified outcome | -| Process | A series of changes through the time for some purpose | -| Structure | Something which can be defined into multiple parts | -| Concept | Group of physical objects, conditions, relations, ... | -| Principle | Statement of what should be done, assumptions | -| Fact | Statement presented with no supporting evidence | -| Classification | The sorting of a group of specimen into classes | - -</blockquote> - -*Conclusion* -<blockquote>Although it may initially seem too schematic, Information Mapping is a valid method to organize and present information to those readers who just need "facts" without any unnecessary distraction. This method it is used with some modifications in many technical manuals and documentation written by many companies.</blockquote>
@@ -1,85 +0,0 @@
------ -permalink: "34" -filters_pre: -- redcloth -title: "Akelos Framework: too good to be true?" -comments: [] - -date: 2006-06-10 11:26:00 +02:00 -tags: -- frameworks -- php -- webdevelopment -- review -type: article -toc: true ------ -Someone recently added a comment to my article about "Rails-inspired PHP frameworks":http://base--/articles/rails-inspired-php-frameworks/ pointing out that I forgot another Rails-like framework, in my round-up. He obviously posted a link to this rather mysterious Rails port in PHP and spam or not, I'd like to thank this guy for letting me know of the existance of "Akelos":http://base--/bookmarks/view/akelos-framework, a new PHP framework which seems simply too good to be true. - -!<http://base--/img/pictures/frameworks/akelos_framework.png! - -Let me just spend a few words more before writing more about it though. First off, it's not available yet. OR at least it doesn't seem to be: the author is planning to release his work to the Open Source community but... well, he's a bit concerned about the current "PHP Framework War": he wouldn't like to end up like "Subway":http://subway.python-hosting.com/ or just be slagged off by those merciless reviewers who enjoy write round-ups and comparisons about frameworks. "Bermi Ferrer":http://www.bermi.org/page/about_me is "just" a talented PHP developer who decided to create his own framework and he really enjoyed doing so, nothing more, nothing less. - -_"I considered other PHP ports of Ruby on Rails, but we could not find all we needed on them. One feature that I needed on the core was internationalization and Unicode support, so I decided to roll my own framework trying to keep most of the original rails interface so most of its documentation could work for it."_ - -Where did I hear that? Nothing new: it's always the same story of frameworks not being as we want them to be etc., it's human. And yes, it's _*another*_ attempt to port Ruby on Rails to PHP, and a damn good one -- or so it seems. - -<small>Before proceeding any further, I'd like to write a short warning for a few people who may or may not want to pop in and start commenting about the Rails-is-better-than-any-PHP-clone issue: *If I see a single comment slagging off this framework (or any other) only because it's a port of Rails to PHP, it will be deleted, may it be David Heinemeier Hansson himself*. Stop it, no seriously, I think it will be counter productive for Rails in the end: I really like RoR and I love the way it works, and yes, I think Ruby is definitely the best language to do that sort of things, EVERYBODY KNOWS THAT. Please, please, save us poor PHP developers the usual preaching.</small> - -!>http://base--/img/pictures/frameworks/bermi_ferrer.png! - -Right, back to Akelos now. Curious as I am I immediately checked out the official page and all i found was a pretty long list of features which made me dribble, literally... ooops! - -Let's just quote the most juicy ones, shall we? - -Active Record ["Model"] - -* Associations -* Callbacks -* *Transactions* -* *Finders* [ @$Project->findFirstBy('language AND start_year:greater', 'PHP', '2004');@ ] -* Versioning -* ... - -Action Controller ["Controller"] - -* Filters -* Pagination -* Mime Type -* Mime Response -* *Code Generation* -* Response handler -* ... - -Action View ["View"] - -* *Templates (using Sintags)* -* Web 2.0 javascript using prototype and script.aculo.us -* Helpers -* Partials -* *Template Compilers* -* ... - -And then more Akelos-only goodies: - -* *Multilingual Models and Views* -* *Locale alias integrated on URLS (example.com/spanish will load the es_ES locale)* -* Database migrations using DB Designer files -* *Pure PHP support for Unicode (no extensions required)* -* *Unit Tested source code* -* Code Generators -* Built in XHTML validator -* Automated locale management -* *Clean separation from HTML and Javascript using CSS event selectors.* -* Ajax file uploads -* *AFLAX integration* -* Dojo Rich Text Editor -* Format converters -* File handling using SFTP for shared host running Apache as user nobody (as most CPanel server do) -* *Distributed sessions using databases* - -Impressed? I was, honest. And I'm talking as a CakePHP fanatic here, and I must say that if this framework can really offer all this _and_ -- and this is what really matters -- is also as simple as Cake to learn and well performing... well, this is definitely going to be quite a promising player in the "PHP Framework War" (but is not a real war, is it?), although the author is quite worried about that: - -_"I'm also concerned about the PHP Framework war, I don't want to play that game. Building this Framework was a great experience, it works great for me and it has helped me to become a better programmer so I don't want to spend my time discussing about if this is better or not than other solutions. That's the reason I'll first look for great developers interested in the Framework to help me releasing it."_ - -Really, this will be an interesting project to check out, once it goes open source, and yes, I really wish Bermi all the best. Good luck, "Akelos Framework":http://www.bermi.org/projects/akelos_framework.
@@ -1,36 +0,0 @@
------ -permalink: "36" -filters_pre: -- redcloth -title: "ITALIA: CAMPIONE DEL MONDO!" -comments: [] - -date: 2006-07-12 09:19:00 +02:00 -tags: -- italy -type: article -toc: true ------ -_*Italy has won the World Cup!*_ - -It doesn't matter if Zidane first scored on a totally unfair penalty kick at the 7th minute and then, totally out of his mind, headbutted Materazzi... WE WON, AND WE KICKED THEIR ASS, end of story :) - -<div align="center"> -!http://base--/img/italy/worldcup.jpg! </div> - -<blockquote> -!<http://base--/img/italy/grosso.jpg! - -"Italy beat France 5-3 in a penalty shoot-out to win the World Cup after an absorbing 1-1 draw in Berlin. - -!>http://base--/img/italy/italy1.jpg! - -Fabio Grosso scored the winning goal after France's David Trezeguet missed. - -Playing his last game before retiring, Zinedine Zidane's career ended in disgrace after he was sent off for crazily headbutting Marco Materazzi. - -Zidane had put France ahead early on with a coolly-taken chipped penalty, before Materazzi levelled with a header from an Andrea Pirlo corner. -The result caps an incredible period for Italian football, with the domestic game embroiled in a corruption scandal similar to 1982 when they last won the World Cup. " -</blockquote> - -"Read More":http://news.bbc.co.uk/sport2/hi/football/world_cup_2006/4991652.stm
@@ -1,44 +0,0 @@
------ -permalink: "37" -filters_pre: -- redcloth -title: Some updates -comments: [] - -date: 2006-07-25 03:07:00 +02:00 -tags: -- website -- cakephp -type: article -toc: true ------ -Quite a bit of time passed since the last blog post, and I'm actually sorry about that, but as I thought, I don't have as much free time as I used to be. Work is work, after all! -This post will be multipurpose as actually I bluid up a few things to write about in the last few days... erhm, ok, _weeks_. - -h3. New Website Design - -Something different eh? Yep, definitely! Some time ago I started a small project called "h3raLd.com Re-design":http://base--/projects/view/h3rald-redesign hoping that some GFX guru could provide a new template for this website, and actually in the end I decided to accept the work of _*Bartus F. Teipel*_ a Brazilian CakePHP enthusiast. -Bartus is obviously (MUCH) more talented than me when it comes to design, and I was amazed at the quality of the template he provided, in a really short time. -Unfortunately he didn't yet provide a link to his main website/portfolio, but for now all I can show you is his website for party pics, "CircusCircus":http://www.circuscircus.com.br/. - -The new template sports a more contemporary Web2.0-ish look which I like a lot, and Bartus used libraries like "prototype":http://prototype.conio.net/, "moo.fx":http://moofx.mad4milk.net/ and "Nifty Corners Cube":http://www.html.it/articoli/niftycube/index.html for the AJAX effects and functionalities. -A really outstanding work, thanks Bartus! - -h3. The CakePHP Herald project has been completed - -With my "latest article":http://www.h3rald.com/articles/view/cakephp-first-bite/ about CakePHP published on SitePoint, the "CakePHP Herald":http://base--/projects/view/cakephp-herald/ project was completed. -I must say that I really enjoyed writing all those articles about CakePHP, and the only thing I regret is not to have written anything (yet) about some more advanced topic about CakePHP. This was mostly due to - again - lack of time to focus on advanced topic and produce some quality examples. - -However, judging by the positive feedback I received about the articles, I am really happy of the final result: even more people discovered the power of CakePHP and became _bakers_. Happy baking to all of you! - -_So... no more articles about Cake?_ Maybe not for a while, I think I'll be rather busy in the following months. Curious? Read on :-) - -h3. My biggest and most important project - -I actually got really pissed off with Larry, Garret & the other Master Bakers because of what they wrote on the "announcement":http://cakeforge.org/forum/forum.php?forum_id=244 for the latest CakePHP release: - -bq. "[...]In other news, some new articles were published on Sitepoint [3] and in the International PHP magazine [4]. Fabio Cevasco [5] is the man behind these articles. Together with Fabio, we will be writing a book that will be published [...]" - -After all this time I spent _trying desperately not to say a word about it_ they came out and heralded it out of nowhere. Sigh... they ruined the surprise effect! Oh well, it's too late now, isn't it? - -So yes, when I say that I'm spending at least 60% of my time (at work and at home) writing I really mean it. The rest? Well, I do have a lovely girlfriend after all!!!
@@ -1,118 +0,0 @@
------ -permalink: "38" -filters_pre: -- redcloth -title: Akelos is real, after all... -comments: -- :date: 2007-09-06 22:57:09 +02:00 - :author: jervis - :url: "" - :id: 52 - :body: nice -- :date: 2008-05-23 09:05:07 +02:00 - :author: ": ]" - :url: "" - :id: 234 - :body: shit happens. . . -date: 2006-08-02 01:33:00 +02:00 -tags: -- frameworks -- php -- webdevelopment -- review -type: article -toc: true ------ -Bermi Ferrer kept his promise, and even if a few were skeptic on the "pre-announced":http://base--/blog/view/34/ features of his upcoming Akelos framework, last week he sent me a "development preview" and a few days ago he opened the development SVN repository to the public: - -<a href="svn://akelos.org/trunk" target="_blank">svn://akelos.org/trunk</a> - -Go, get it: it's worthwhile (see below). - -"[...] The Akelos Framework is an open-source port of Ruby on Rails to the PHP programming language. -The main goal of the Akelos Framework is to help programmers to build multilingual database-backed web applications according to the Model-View-Control pattern. It lets you write less code by favoring conventions over configuration." - -At the Akelos Framework Features page you can find detailed information about what has been already implemented into the framework. -</blockquote> - -I think it says it all, well almost. Some people will undoubtedly be disgusted by yet-another-hopeless-Rails-clone: _not again!_ I hear them crying... - -Well, yeah, I think this - to be honest - should be the last attempt someone makes to port Rails to PHP or at least port _some features and the overall philosophy_, like "CakePHP":http://base--/bookmarks/view/cakephp did: there are honestly too many for one single language. Look at Python, "Django":http://www.djangoproject.com/ seems to be the only "Rails-inspired" framework available and everyone is happy with it, while as a general rule PHP folks are never happy with what they already got. - -Bermi is undoubtedly one of them, and that's the reason he decided to code his very own Rails-inspired framework for PHP, which is, to date, the most remarkable of the ones I left out (it wasn't available at the time) in my "article":http://base--/articles/rails-inspired-php-frameworks/. - -h3. Confirmed Features & Contents - -So well, although I didn't really have a proper chance to play with Akelos I can certainly herald some of its - verified, this time - features. - -For one, it's huge. Take Cake, add _every excellent, useful third party library or class you can possibly thing of_ and you'll get Akelos. No kidding. The unzipped source of the whole framework is a massive 16MB, 8.5 of which constitute the @vendors@ folder. What's in it? Well, all this: - -* ADOdb -* Domit -* FPDF -* Excel (reader library) -* Hyper Estraier full-text search system -* Inutio XML-RPC Library -* _Many_ PEAR packages -* PHPCodeAnalyzer -* PHPmailer -* SimpleTest -* A Simple PHP YAML Class -* Textile - -Then, similarly, all the state-of-the-art Javascript/AJAX hyper-hyped libraries are included: - -* AFLAX -* Behaviour -* Builder -* various Scriptaculous packages -* Prototype -* FileUploader (by the author, using prototype) -* Window -* EventSelectors - -!<http://base--/img/pictures/frameworks/akelos_framework_logo.gif! - -Good, well, kind of: that's just what _others_ did, but it's worth noting that it's all there and - apparently - integrated with the framework, hopefully not too tightly. But people are fussy, and do not get excited easily anymore, long gone are the early days of Rails, when the whole Internet shake at hearing about _code generators_... Aye, there are in Akelos as well, of course! - -Coming to the more juicy stuff, _lo' and behold, ye contents of /lib folder (with comments):_ - -* AkActionController (controller) -* AkActionView (view) -* AkActionWebservice (Web services) -* AkActiveRecord (model) -* AkAdodbCache (content caching) -* AkCharset (utf8 support, includes _all_ mappings) -* AkConfig (load config settings) -* AkConverters (conversions!) -** DBDesigner > AkelosDatabaseDesign -** Excel > Array (bi-dimensional) -** Excel > CSV -** HTML > RTF -** HTML > Text -** Word > Unicode -** PDF > Text -** Xdoc > Text -* AkHeaders (HTTP headers, redirections) -* AkImages (Image operations, resizing) -* AkLocalize (Localization, countries and timezones) -* AkInflector -* AkLogger -* AkFtp -* AkInstaller -* AkRouter -* AkZip -* ... - -Well, it's all there, at any rate. The best way to know if it all works, and _how_ it works, is simply to try it out: "www.akelos.org":http://www.akelos.org/. - -h3. Remarks - -As I said earlier, Akelos looks like _CakePHP on steroids_: agreed, the Cake philosophy of "no we-may-use-it code in the trunk" has been _completely_ (and intentionally) ignored, but this is our chance to peek at what CakePHP could have become if such philosophy didn't become a lifestyle for the Cake Dev Team. -Akelos code is Rails-inspired, so yes, it's _very_ similar to Cake, although with some rough edges and some re-used parts, but it's the work of ONE person with no community support (yet), don't forget. Remarkable. - -And he needs co-developers, by the looks of it, so there you are then: there's _your_ chance! - -My personal opinion about it? Well, I think Akelos can learn from CakePHP and vice-versa: a merge? Well, at least it would reduce the number of Rails-inspired framework for PHP and _possibly_ meet the needs of more people: those who want just the essentials, as a framework, and those who like to be _virtually almighty_ and be able to do anything, _if they wanted to_. - -Two flavours of the same framework? _CakePHP_ and _cAkePHP_ (note the case)? Bah, let's stop raving now, shall we?
@@ -1,34 +0,0 @@
------ -permalink: "39" -filters_pre: -- redcloth -title: Why I like Netvibes -comments: [] - -date: 2006-09-18 05:51:00 +02:00 -tags: -- web20 -- ajax -- review -type: article -toc: true ------ -The so-called "AJAX Start Pages" are not a new concept anymore, and like for almost any other offspring of Web 2.0 there is more than one to chose from. Hence the increasing number of comparative reviews on the Web nowadays (Yes, I'm guilty of that too). I soon learnt that for any "good and useful thing" on the web there are at least _n_ clones: consider for example social bookmarking, community-powered news sites, php frameworks... -And no, you can't use the word clone because it has a strong negative connotation nowadays so let's just say that whenever someone comes up with a new idea, others examine it, process it and in a few weeks (days?) some _very, very similar application_ comes out, and it's _better_ than the previous one. -Now, I don't know exactly whether "NetVibes":http://www.netvibes.com/ was one of the first AJAX Start Pages created or not, but at any rate - in my very, very, very humble opinion, is the most advanced and the most usable of "the lot":http://www.techcrunch.com/2005/12/07/ajax-desktops-wont-stop/, and an essential tool for lazy folks like me who want to keep up-to-date with what's going on without having to visit dozen of websites everyday. - -!<http://base--/img/pictures/netvibes.jpg! - -I can see people jumping up and down shouting "Pageflakes is better", "Protopage kicks a$$" etc. etc. Well, yes, probably, as you like: different people like different things, and when it comes to AJAX Start Pages there's really a lot to choose from: 3spots has an excellent (and complete, I believe) "list":http://3spots.blogspot.com/2006/03/ajax-or-flash-startpages-or-homepages.html of all the start pages currently available on the Net, so yes, you can try them out yourself and make out your mind :) - -I made up my mind long ago after experimenting a few of those. Why Netvibes? OK, let's see: - -# *Fast to load*: Netvibes is fast. Relatively fast, of course, for sure is not as fast as a plain, old-style html page, but I think it's perhaps one of the fastest AJAX start pages ever created. As they "pointed out":http://blog.netvibes.com/?2006/08/17/75-the-future-of-netvibes, with a 15 million investment performance can only get better... -# *Tabbed pages*: After tabbed browsing, tabs within a single page seem to gain popularity. Netvibes allows you to create more than one page to prevent cluttering and general chaos: you can create a tab for CakePHP feeds, one for some cute AJAX widgets you'll never use, another for al that Web 2.0 rubbish you'll never read -- that's what I do at least. -# *Smart Google Module*: Finally Netvibes has a _proper_ Google search module, which enable users to search with Google and view results _on Netvibes_ instead of opening up a browser tab. -# *RSS done right*: Their RSS reader is nice: by clicking on a feed title it opens up a _virtual window_ inside the page with the whole story and a menu with links to the other stories included in the feed. This is the most convenient way to read whole articles like TechCrunch's ones without leaving the page (and without loading the heavy TechCrunch UI). -# *Public API for modules*: For those who - unlike me - has some proper free time and would like to develop their own module, the "Netvibes Mini Module API":http://eco.netvibes.com/developers/ is public... -# *Ecosystem* : Netvibes "Ecosystem":http://eco.netvibes.com/ includes hundreds of modules and podcasts and thousands of feeds and tabs which can be integrated into any Netvibes page with a single click. Some of my favourites: "XE":http://eco.netvibes.com/modules/3492/xe.com-currency-converter Currency Converter, "Quick Translator":http://eco.netvibes.com/modules/3709/quick-translator, "Google Map":http://eco.netvibes.com/modules/6776/google-map "Daily Cartoons":http://eco.netvibes.com/modules/91/daily-cartoons and "Bitty Browser":http://eco.netvibes.com/modules/6/bitty-browser. -CakePHP feeds? "Loads":http://eco.netvibes.com/?type=all&q=cakephp! - -Enough?
@@ -1,78 +0,0 @@
------ -permalink: "40" -filters_pre: -- redcloth -title: "Introducing: \"CakePHP Recipes\"" -comments: -- :date: 2007-11-05 02:43:33 +01:00 - :author: naxis - :url: "" - :id: 108 - :body: can you give a date about when the book will on stores physically? -- :date: 2007-11-16 09:45:10 +01:00 - :author: Sam - :url: http://www.samoliver.com - :id: 124 - :body: |- - Just got this from Amazon after 6 months back order: - - Dear Customer, - - We wanted to give you an update on the status of your order [***]. - - We are sorry to inform you that we have been unable to obtain the - following item: - - Fabio Cevasco (Author) "CakePHP Recipes" [Perfect Paperback] - - We apologise for the length of time it has taken us to reach this - conclusion. Until recently, we had still hoped to obtain this item for - you. - - This item has now been cancelled from your order and we can confirm that - you have not been charged for it. - - Please accept our apologies for any disappointment or inconvenience - caused. - - Any ideas when the book will be out? -- :date: 2007-11-16 11:36:08 +01:00 - :author: Fabio Cevasco - :url: http://www.h3rald.com - :id: 125 - :body: |- - This book has been canceled, so it will never be available. - - For more information on the reasons for this, see: - - -- "http://www.h3rald.com/blog/42":http://www.h3rald.com/blog/42 - - -- "http://www.h3rald.com/blog/too-many-cooks-take-2":http://www.h3rald.com/blog/too-many-cooks-take-2 -date: 2006-11-02 05:25:00 +01:00 -tags: -- cakephp -- writing -type: article -toc: true ------ -Despite all my efforts to keep the whole thing quiet for the time being, a few days ago I entered the words "CakePHP Recipes" in Google and discovered - to my astonishment - that my new book about the CakePHP framework is already for (pre)sale in many popular online bookstores. - -Up to now I never made any formal announcement myself (although the Cake Software Foundation already did, months ago), nor gave out any juicy details about it, but maybe now the time has come to post something more about it. Yes, I am indeed writing a book about the CakePHP framework, and yes, you can already buy it but no, you can't phisically get it simply because it's still in progress (miracles of the modern publishing industry!). - -!<http://base--/img/cakephp-recipes/cover.jpg! - -I'd like to point out that I'm not the _only_ author of the book: all the code examples and snippets included in the book is provided by the Cake Software Foundation staff, in the person of Larry E. Masters and Garrett J. Woodworth mainly, who will also act as technical editors and first reviewers of the book, together with other trusthworthy CakePHP core developers. -It is our intent to produce an enjoyable and yet very useful book which will hopefully help CakePHP enthusiasts to use the framework in real-world situations: the book will not focus on theory but on practice, by providing a lot of interesting "recipes" on how to implement a particular functionality in a CakePHP web application. - -Why should you get it? Here are some reasons: - -* It is a book written _by_ programmers _for_ programmers -* All the code included in the book has been created and tested by the creators of the framework -* Part of all the revenues generated by the book (including royalties) will go to the Cake Software Foundation, and hopefully contribute to improve our already excellent framework. - -Very special thanks to "Peachpit Press":http://www.peachpit.com/ for giving me and the Cake Software Foundation this chance to - -More to come... - - -bq. *UPDATE*: This book "has been canceled":http://www.h3rald.com/blog/42 and therefore will NEVER be available in bookshops or online stores.
@@ -1,16 +0,0 @@
------ -permalink: "41" -filters_pre: -- redcloth -title: Comments temporarily disabled -comments: [] - -date: 2007-01-07 06:53:00 +01:00 -tags: -- website -type: article -toc: true ------ -As a few of you might have noticed, I decided to disable comments on all the sections of this site, as a temporary measure against spam. - -Hopefully I'll try implementing something more effective and less drastic soon, but meanwhile this seems the quickest way to get rid of approx 600-800 spam comments per week.
@@ -1,147 +0,0 @@
------ -permalink: "42" -filters_pre: -- redcloth -title: Too many cooks spoil the Cake book -comments: -- :date: 2007-06-25 14:19:09 +02:00 - :author: anon - :url: "" - :id: 7 - :body: where did all the comments go? -- :date: 2007-06-25 14:35:50 +02:00 - :author: Fabio Cevasco - :url: "" - :id: 8 - :body: |- - All the comments of the old version of the site were not migrated due to the high volume of spam (last time I counted 9000+ records in the database, just in the comments table) and the impossibility of filtering the real comments. - - Feel free to re-start the whole thing all over again, _if you must_. I'd rather move on. -- :date: 2007-07-07 16:40:01 +02:00 - :author: needish - :url: "" - :id: 13 - :body: Why don't you publish the book online? You could even charge a few bucks for a PDF version. I think that probably most people wouldn't care about Cake foundation sponsorship. -- :date: 2007-07-07 23:08:59 +02:00 - :author: Nate Todd - :url: http://natetodd.com - :id: 14 - :body: |- - I agree with needish. - - I would gladly fork over some cash for a resource that provides well-commented and thought-out code examples. The one gripe I have with Cake is the dearth of applicable and up-to-date resources. -- :date: 2007-07-08 02:43:29 +02:00 - :author: Fabio Cevasco - :url: http://www.h3rald.com - :id: 16 - :body: "Thanks a lot for your suggestions and offers, but no.\n\ - Although I still think CakePHP is a great framework for PHP, I totally lost interest in it. \n\n\ - And besides, the book was never finished simply because nearly all the code examples where never provided by the Cake Software Foundation, so the few chapters I wrote would be kinda useless to the community now. " -- :date: 2007-07-08 11:33:27 +02:00 - :author: Tom - :url: http://www.concepthue.com/blog - :id: 17 - :body: |- - I agree as well, I would like to see a PDF version available online -- even if it isn't complete. - - There is such little documentation for CakePHP that I feel it turns many folks away and I find myself asking way too many questions in the irc channel lol to gwoo's dismay sometimes. - - I would love to get as many perspectives, examples, and thoughts as possible because I believe CakePHP is really good and should be promoted. Especially if it's ever gonna "make it" -- :date: 2007-07-08 12:06:41 +02:00 - :author: Fabio Cevasco - :url: http://www.h3rald.com - :id: 18 - :body: |- - Believe me, if you asked me months ago I would have contributed to expand Cake's documentation and write more articles about it quite willingly. - - But as I said, at the moment I'd like to contribute to other projects where I'm actually appreciated. - - I know Cake lacks of documentation, but the Cake Team lost a writer and contributor four months ago, and I'm sure things won't improve if they keep dealing with people in the same way. - - I know I keep going on about this, and I know I sound quite offensive sometimes, but I'm sure at least some of you can understand how this can be a "hot topic" for me. - I'd be glad to see Cake moving forward and "make it", although I will *not* do anything anymore to make that happen. -- :date: 2007-07-08 23:56:34 +02:00 - :author: anon - :url: "" - :id: 19 - :body: |- - Good thing the Internet Archive still has a copy of the lost comments - - http://web.archive.org/web/20070309125512/www.h3rald.com/blog/view/42/ -- :date: 2007-07-09 00:16:34 +02:00 - :author: Dan - :url: "" - :id: 20 - :body: |- - What a shame... I was really looking forward to that book! - - Btw, the new site design looks good... -- :date: 2007-07-09 05:26:37 +02:00 - :author: Fabio Cevasco - :url: http://www.h3rald.com/ - :id: 21 - :body: |- - @anon: Thanks. Now I hope you are not going to copy and paste them all back here, at least! - Sorry for the delay in showing your comment on the site btw, Askimet marked it as spam - posts with a link and nearly no meaningful content normally end up that way, I suspect :P -- :date: 2007-07-25 10:15:55 +02:00 - :author: Manny - :url: "" - :id: 32 - :body: | - I just came across your post. - - That totally sucks because cake's doc's SUCK huge. I would have considered using cake since people have been going on about how good it is because it's based on Rails. - - BTW, I don't have time to spend shifting through their API or searching newsgroup or dealing with some of the unfriendly "bakers". There's a huge difference between 1.1 and 1.2. - - I'm going to checkout Symfony. - - -- :date: 2007-08-11 04:35:14 +02:00 - :author: Joan Piedra - :url: "" - :id: 44 - :body: |- - Hello Fabio, - - It looks like I'm kinda late in this discussion, I remember I saw your book cover once, and was looking forward to buy it. - - After reading your comments, it seems you have lost all your interest in this project. Still I'd like to recommend you two ideas. - - 1. Look for another publisher that is more interested in open source software like Packt, they have done a nice job with the new jQuery book. - - 2. If it doesn't interest you anymore, you could 'free' the book, make it open source as an 'open book'. Then see how the cakephp community and open source magic works. - - Hope this book can get some light at last. - - My best regards, - Joan Piedra -- :date: 2007-09-14 08:13:51 +02:00 - :author: dustman - :url: "" - :id: 71 - :body: i myself knew that feeling yo got with cakephp core dev team, at least one or two persons... too sad man... but the happiest of it that now i'm converted to python :) -- :date: 2007-11-10 01:54:12 +01:00 - :author: Fred Jones - :url: "" - :id: 119 - :body: I don't know if I agree with posting a blog post like this. Sue them for damages. -date: 2007-03-07 02:45:00 +01:00 -tags: -- cakephp -- writing -type: article -toc: true ------ -I am sorry to announce that my upcoming book, CakePHP Recipes, will not be published anymore. As a matter of fact, it wasn't finished because some of the people involved failed to comply with the terms of their contract in delivering material which was suitable for publication. - -To quote an email I received from my publisher a few days ago, - -_"[...] The Cake Software Foundation has informed us they are withdrawing from the CakePHP Recipes project, and returning the advances they've received. This means we can no longer count on them for support, nor can we package the book as an official title._ - -_After careful consideration, we have determined that this renders the book no longer viable for us. So, regrettably we must cancel your contract as well. Please understand that we have no quarrel with your performance; you have been responsive and communicative for the entire time. [...]"_ - -This is a huge disappointment to me, in particular because I am not responsible for the cancellation. It was going to be my very first book to be published, and due to someone else's misjudgement and lack of motivation it will never be available to the readers. -I do not want to put the blame the whole Cake Software Foundation for this: nearly every person involved in the project did his best in reviewing parts of the book or offering me support. Regrettably this wasn't enough: unfortunately it seems that someone didn't like the idea of me writing the book and kept doubting not only my coding skills but also my ability as a writer all along. - -It is sad to see how certain individuals fail to understand the importance of marketing and public relations not only when working on a team project but also in ordinary life, but it is truly disappointing to see how the thoughts and opinions of a single individual affect the work of a whole team.
@@ -1,37 +0,0 @@
------ -permalink: "43" -filters_pre: -- redcloth -title: Time for a diet... -comments: [] - -date: 2007-03-09 11:59:00 +01:00 -tags: -- cakephp -- rant -- writing -type: article -toc: true ------ -My fiancée keeps telling me that too many cakes are not good for me, and I never listen: I always liked cakes! I *did* like the CakePHP(TM)[1] framework too, once, and I *did* write "some articles":http://www.h3rald.com/projects/view/cakephp-herald about it in the past, and I believe at least a bunch of Bakers found them useful, especially at the time. -I do believe the Cake(TM) Software Foundation[1] quite liked having their framework featured on popular websites like php|architect and SitePoint, and I believe that I contributed - to some extent - to make it one of the most popular frameworks available for the PHP programming language. - -Unfortunately though someone decided that two of such articles and my personal website were no longer worth a mention on CakePHP official website frontpage. To me, this makes sense since the two CakePHP-related series which are being published by IBM are much more up-to-date than my articles, and thus deserve such a mention instead. - -Oddly enough, I took a screenshot of the CakePHP website just yesterday _"by chance"_ and my articles were still there: - -!http://www.h3rald.com/img/pictures/cake-promo/cakephp-08032007.png! - -...while this morning they weren't anymore: - -!http://www.h3rald.com/img/pictures/cake-promo/cakephp-09032007.png! - -Of course I can't provide any proof that I took the screenshot yesterday, and of course I don't have any proof of the fact that someone in CSF may have thought that due to my recent "bad behavior":http://www.h3rald.com/blog/view/42/ my articles didn't deserve to be publicized anymore. I am confident that the Cake Software Foundation always does its best in keeping its site up-to-date, and I am glad that yesterday's accident reminded them that there were far better articles which needed to be featured on their site. At least I _finally_ did something good for the community! - - -Sarcasm apart, I feel I owe an apology for blowing this whole thing out of proportions: I disclosed embarassing details about our past project which - for the sake of the framework - should have never been made public, perhaps. -I want all of you to know that I still think that CakePHP is the best PHP framework ever made and I genuinely think that Larry E. Master did outstanding work in all this time, along with the rest of CSF members and contributors. Best of luck for your future editorial and development projects. - -Since now my contributions are no longer "officially recognized", I think I'd better to move on devoting my attention to something else. - -fn1. "CakePHP" and "Cake" _seems_ to be registered trademarks of the Cake Software Foundation Inc. I'm not sure if I'm allowed to use them in this blog -- If anyone has any problem with it, please let me know.
@@ -1,19 +0,0 @@
------ -permalink: "8" -filters_pre: -- redcloth -title: New site operative -comments: [] - -date: 2006-04-06 16:57:00 +02:00 -tags: -- website -- webdevelopment -- cakephp -type: article -toc: true ------ -Yes, it works. Perhaps it's a tiny bit slower than expected but the new h3raLd.com seems to work. -I'll probably find some new exciting bugs to fix in the next few hours, as usual - that will be annoying but perfectly normal. - --The good thing is that the new template seems to load faster, mostly due to the fact that I hardly used images- <- [not true, te new site appears to be slower, maybe not due to the images], at any rate, let's see how it goes. I can imagine I'll have to implement some sort of caching system for the tagging system in particular, but fortunately "CakePHP":http://www.cakephp.org/ apparently comes with a built-in caching mechanism for views, models etc. etc. although the documentation available seems to be "scarce":http://groups.google.com/group/cake-php/browse_thread/thread/f0f96751bb61bc7b/bcb43c97e91923c7?q=caching&rnum=1#bcb43c97e91923c7 at the moment, and I've been to lazy to investigate any further.
@@ -1,25 +0,0 @@
------ -permalink: "9" -filters_pre: -- redcloth -title: Riddle me this... and you'll get the job! -comments: [] - -date: 2006-04-07 16:13:58 +02:00 -tags: [] - -type: article -toc: true ------ -Today I had my _n^th^_ job interview. Yes, I'm getting used to them by now, and it's becoming quite entertaining: if they _paid_ me for just take interviews I'd do that for all my life quite happily! -But since that's not going to happen I'd better get a move on and find a so called _real job_. Actually this time it wasn't the usual complete waste of time and this company _nearly_ made me a proper offer: they're gonna see me again next week, so let's hope for the best. - -The interview was one of the best ever, no doubts. They were friendly enough, they seemed to like me enough and they were even entertaining enough... one thing which actually _never_ happened to me before: they asked me to solve a sort of pseudo-IQ-test(an annoying semi-pointless riddle, in other words), and here's a rough translation from Italian, the comments within square brackets are mine: - -bq. _You're alone in a pitch black room [...nice intro, eh?] and the only thing you have are two fuses of different length and a lighter [thank God for that, now it's all much better]. You know that both the fuses can burn in exactly one hour each, although there's no proportional law which bonds the lenght of the fuses to the time necessary to burn them; how can you measure 45 minutes, exactly?_ - -I solved that, eventually, and I got the job! Weheee! - -No, more or less, but not quite... I'm gonna see them again, and evaluate their offer along with the other(s). - -The solution of the riddle? NO CHANCE! Go and figure it out, it's not hard.
@@ -1,199 +0,0 @@
------ -permalink: a-look-at-drupal -filters_pre: -- bbcode -title: A look at Drupal -comments: [] - -date: 2006-01-12 07:42:44 +01:00 -tags: -- php -- webdevelopment -- review -type: article -toc: true ------ -[i][b]Important Notice:[/b] This article is about changes occurring to zZine Magazine's site[1]. At the time of writing, www.zzine.org uses the old site, and not the Drupal-based one presented in this article, which is currently under construction[18].[/i] - -"Why can't we log who edits the articles?" -"Can we send newsletters?" -"We should really have a members' area..." - -zZine.org[1] is a scratch-built site, coded from the ground up to offer zZine journalists, editors and readers all the functionalities and features they wanted. I'm not totally against sites being coded from scratch, but what happens if something needs to be fixed, or new functionalities have to be implemented and you realize that the code cannot be extended or patched easily? - -[b]Case Study: zZine Magazine[/b] - -zZine Magazine is an online magazine which publishes not only IT-related and other articles on a weekly basis, but also monthly publications containing CyberArmy[2] digests, special columns, and featured articles. A team of journalists, researchers, editors, publishers and outside contributors has access to the zZine site to write, submit, and edit articles, manage publications and perform various other tasks through a password-protected administration area. This is common to approximately 75% of the websites on the Internet: they have a front-end to present content to the general public and a semi-hidden administration backend which is normally more difficult and tedious to code. That's why someone started developing [i]Content Management Systems[/i][3]: ready-made, fully-featured administrative back-ends for creating and managing almost any kind of website, from blogs to eCommerce portals. - -Could a CMS be used for zZine Magazine? Probably - zZine doesn't need any innovative or advanced features, just a bunch of commonly-used functionalities like: -[list] - [*]Add, delete, edit and publish articles - [*]Customizable user permissions, ideally role-based (writer, editor, publisher, etc.) - [*]Creating and managing monthly publications - [*]Editor's tests - [*]User signups, notifications, etc. - [*]RSS feed generation - [*]Sending newsletters to subscribers - [*]Logging user actions -[/list] -Some members of my team raised some concerns regarding the usage of a CMS, which were mostly based on our past experience with just a particular product and not CMSes in general. Everybody agreed that if we were to go back to a CMS, we [i]had[/i] to choose the [i]best[/i] this time: something flexible, easy to use, fast, search-engine friendly, and extensible. I spent some time researching CMSes, because while I knew that there's no such thing as the best CMS, there was certainly a CMS that was best for our needs. - - -[b]Making the right choice[/b] - -In the past, I had played around with Xoops[4] when I first thought about creating websites, and I used Mambo[5] for some other sites. I admit that I never actually spent time creating complex Mambo components and modules, but I must say that in the end I felt somehow tied to third-party modules and unable to understand how they really worked: Mambo seemed to give developers too much freedom, and had neither a solid API nor conventions to follow, at least when I used it. - -So I decided to have a look around again, starting from the two most important sites people should look at when choosing the most suitable CMS for their work. -The first site is CMS Matrix[6] which - as the name implies - provides a really handy [i]matrix[/i], or chart, to compare the various features offered by nearly all CMS available, both proprietary and open-source. - -I remember choosing Mambo last time I used the matrix simply because it appeared to be one of the most feature-rich. This is actually something [i]not[/i] to do when choosing a CMS: always concentrate on what your site needs rather than what the CMS is able to offer. Otherwise, you run the risk of having too much to work with. - -The other important website to visit when choosing a Content Management System is OpenSourceCMS[7], which basically allows you to try a demo of every open source CMS online. This is perhaps more useful, but also much more time-consuming: it's better to narrow down the list of possible CMSes after checking CMS Matrix and then try each one rather than just picking one at random. - -At this point, an experienced CyberArmy staff member[8] suggested Drupal[9]. I asked her why, and she simply said that it seemed to be the best choice according to zZine's needs, as it basically offered all the features we were looking for, either natively or through modules. She also admitted to be biased, as she's actually [i]part of Drupal's documentation team[/i] and involved with Drupal development[10]. - -Before making any kind of commitment, I checked out Drupal's website to see how they organized things, and I was quite impressed. I immediately noticed the Handbooks section[11], which contains all the official Drupal documentation and it seemed pretty much complete. No "under construction", "please write content here" or "we're a new project, help us write the documentation" notes, just a load of good-quality documentation, including a fully documented and [i]stable[/i] API![12] - -This surprised me, because some projects I came across, even really good ones, lacked a proper documentation section. I think this is a common problem with new open source projects, and Drupal for this reason gave me the impression to be quite mature and useable already. After visiting the very clear and organized Downloads Section[13], I downloaded the CMS and a few modules and installed it on my laptop. - - -[b]Installation[/b] - -Drupal needs three things to run: -[list] - [*]A web server - Apache is fine, and ISS is reported to be working - [*]PHP - Either version 4 or 5, Drupal started supporting PHP5 since 4.6.0 release - [*]A PHP-compatible database - MySQL or PostgreSQL is recommended -[/list] -I used a WAMP[14] installation to test Drupal. First of all, I created a MySQL database, granting ALL privileges to the database user accessing the Drupal database. When I uploaded the site to the remote server, later on, I had some problems because the LOCK TABLES privilege wasn't granted by the host. Drupal requires this, so I had to contact my host to solve the problem. I then imported the database scheme located in the [i]database[/i] directory under the installation directory and modified the configuration settings (sites/default/settings.php) to allow Drupal to access the database. Installation complete. - -Drupal was now up and running with the default configuration settings, with a minimum of fuss. For all the details concerning the installation process, consult the exhaustive documentation.[15] I didn't read it when I installed it, but it can really be useful in some situations. - - There are actually two non-critical things to consider if you're planning to use Drupal for a medium-sized project: the first involves changing a few settings on php.ini, in particular increasing the amount of memory allocated to PHP from 8MB to 16MB, especially if you're planning to use either a lot of simple modules or a few complex ones, and the second is setting up your crontab to execute [i]http://www.yoursite.com/cron.php[/i] every hour or so. This is required by some semi-essential modules like the site-wide search, but a common alternative (if you don't want to setup the [i]cron[/i] task manually) is the poorman's [i]cron[/i] module[15], which I used myself and found to be workable. - - -[b]Keeping your site under control[/b] - -Perhaps one of the best things Drupal has to offer is a rock-solid general-purpose administrative backend. The first thing I found in the backend which really impressed me (and that also I never found in another CMS) is the ability to create [i]custom[/i] role-based user accounts and access permissions for [i]everything[/i]: every module can be configured so that, for example, not all people can see its output and just a few can administer and modify it. - -For zZine, I created four types of accounts: -[list] - [*][i]Administrator[/i] - Able to access everything and change every setting of the site - [*][i]Publisher[/i] - Able to write, edit and publish every kind of content on the site, but not able to administer user accounts, permissions and similar administrator-only tasks. - [*][i]Editor[/i] - Able to write and edit anything on the site, but not to publish it. - [*][i]Writer[/i] - Able to write articles, blogs and similar content, but in some cases not allowed to edit it. -[/list] -These were precisely the account types I was looking for in a CMS. Granted, other products offer them by default, but having pre-defined account types is one thing, and being able to customize them completely is another. - -User accounts are great, but sometimes it's good to know what the users of your sites are doing as well. On our old site we had user accounts for editors and administrators, and even if only a few people had access we had no way to determine who edited an article or who published something unless that person told us. Drupal comes with a radical solution to this: Almost every action is automatically logged by the [i]watchdog[/i] core module. Every website error, every page not found, and every PHP or MySQL error is logged, as well as every content submission or modification. Page accesses, meanwhile, can be logged through the statistics module. - -Themes & Templates - -"We shouldn't use a CMS: I don't want zZine to have the overly used *nuke-style look." I've heard this too many times. Sometimes people associate the word "CMS" with "lack of original design", and that's not true by any means, especially for Drupal. Of course, there are plenty of ready made themes[16] which can be freely used or modified for any Drupal-based site. - -I must confess that when I first saw the themes section I feared that Drupal "themes" used their own template engine, like some CMSes do nowadays, but I was wrong: currently Drupal supports some template engines[17] but also pure PHP-based ones. Theme engines do their job wonderfully and can offer some interesting features, but templates written natively in PHP tend to perform better, simply because there's no extra parsing or additional overhead involved. - -I decided to have a look at a standard PHP theme. Basically, it's nothing more than a PHP-enriched xHTML file and its corresponding stylesheet. There are a few functions which must be used to perform particular tasks, like showing the main navigation links, but nothing too hard to understand. It's also [i]very[/i] customizable. In fact, we're already working on a custom zZine theme, which doesn't seem any harder than coding a standard xHTML template. As design should always be the last thing to worry about, I decided to use a temporary template I created by slightly modifying an existing one.[18] - - -[b]To switch or not to switch?[/b] - -When creating a new site for an organization which already has one, there's something very important to consider: [i]what happens to the old data[/i]? -Assuming the old site was dynamic and using a database of some sort, there are three possibilities: -[list] - [*]Don't bother doing anything: any data on the old site will not be transferred to the new one. - [*]Make the old website available somewhere else as an [i]archive[/i] of old documents. - [*]Import all the data from the old site to the new one. -[/list] -Obviously we went straight for the third one, which is the most difficult to implement, but it was necessary: there were over 1000 articles on the old site- - -Of course, in reality, I didn't even mention the possibility of using Drupal until I figured out a way to import the old data into the new database structure. Never praise features or convince people to switch unless you're 100% sure you can handle the situation. Luckily for me, it turned out that everything could be imported easily enough. - -The first difference I found between Drupal and zZine was that we didn't really have proper user accounts. Every article had an author, but it was stored as a field in the article's record, and that was all. Drupal, on the other hand, supports (and perhaps requires) user accounts - everything present on the site must be written or edited by an existing user. - -The solution I cam eup with was rather drastic: I created about 120 user accounts, retrieving usernames from the articles and inserting them through a custom PHP script into Drupal's user table. Of course, those users never registered on the new site[18], so I didn't personalize the accounts at all: I simply put a notice on the first page asking everyone who contributed to zZine before to contact me in some way to enable their account with a valid email address. - -After this initial difficulty, importing articles was relatively easy. Pretty much every type of content in Drupal is, in its simplest form, a [i]node[/i]. Nodes have a title, which is a teaser generated automatically from the body text, and an author (the node table in the database has more fields, but these are the key ones for us). Essentially, Drupal's two default models for writing [i]stories[/i] and [i]pages[/i] write data to this table only. The most important thing to understand about Drupal is that almost every module used to create [i]something[/i] on the site - an article, a blog entry, even songs - will use the node table, and add everything else on other tables. This makes the whole system much easier to administer: every node can potentially be extended [i]in any way[/i] by third party modules! - -What about categories? Well, Drupal has become famous for its taxonomy module: whereas most CMSes only support, or in fact [i]impose[/i], a one- or two-level hierarchy for categories, Drupal's taxonomy module supports the creation of as many different terms to describe data as you can think of. Each piece of content (categorization can be applied to [i]any[/i] node, and since almost everything is a node-) can belong to none or [i]n[/i] different categories, which can be nested in a [i]n[/i]-level hierarchy. Since the zZine articles were already divided into categories, I imported all of them directly into Drupal. On the old zZine site, every article could have at most one category, which is fine, but it's good to know that we can now configure the system to support a more advanced categorizing system. - -After importing the articles, the last important thing to transfer to the new site were the zZine Publications. Publications are what we call the article collections that we release as an issue every month. I could have created a new module for this, and it wouldn't have been that hard, but there was already an excellent module for that. This was pure luck, but the [i]epublish[/i][19] module seemed like it was tailored specifically for our needs. - - -[b]Drupal API and Modules[/b] - -We were lucky enough to be able to use existing modules for the main functionalities of our site, but in some cases you might not be able to find [i]exactly[/i] what you're looking for. - -In our case, even if we could have used the [i]story[/i] module, which is part of the default installation, for zZine articles (stories have a body, a teaser, a title and an author, exactly like our articles) we decided not to. I wanted our editors and writers to know what to use when submitting articles, and the name "stories" sounds a bit too ambiguous for my liking. So, I decided to have a look at the standard story module to see how modules work, and create something similar. - -[i]Note: I'm curious by nature and I didn't read anything in the Drupal API[12], or about developing custom modules; I looked at the story module without any prior knowledge of Drupal's conventions.[/i] - -All I found in the story module was a bunch of functions like: -[code] -/** - * Implementation of hook_node_name(). - */ -function story_node_name($node) { - return t('story'); -} -[/code] - - which seemed to be enough to tell the Drupal core what to do. I was used to Mambo components, where developers have more liberty to do what they want, including outputting HTML code anywhere. Drupal is nothing like that; on the contrary, it has its own structure and coding conventions that developers have to follow when creating custom modules. Even if a simple function like the one above is fully commented, it has to have a standard indentation (two spaces) and an obviously standardized name. I noticed that all the functions similar to this one started with "[i]story_[/i]", so I created a new file named [i]zzarticle.module[/i], copied and pasted the story module code into it, and changed every function accordingly, like this: -[code] -/** - * Implementation of hook_node_name(). - */ -function zzarticle_node_name($node) { - return t('zZine Article'); -} -[/code] -Trivial enough, and it worked fine! I put my shamefully copied module in the /modules directory and I was able to create "zZine Articles" (which were nothing but stories with a different name). - -At this point I decided to have a proper look at the API, and read about hooks: - -[quote][i]"Drupal's module system is based on the concept of "hooks". A hook is a PHP function that is named foo_bar(), where "foo" is the name of the module (whose filename is thus foo.module) and "bar" is the name of the hook. Each hook has a defined set of parameters and a specified result type. - To extend Drupal, a module need simply implement a hook. When Drupal wishes to allow intervention from modules, it determines which modules implement a hook and call that hook in all enabled modules that implement it. [-]"[/i][/quote] -A [i]hook[/i] was used for the previously mentioned function, and this was diligently commented: - -[code] -/** - * Implementation of hook_node_name(). - */ -[/code] - -This made me understand how Drupal is actually geared towards developers and at the same time suitable for non-technical users. Wait a minute, what if someone is not familiar with PHP and still needs custom modules and features? Is there any way to extend Drupal without having to physically code new things? Yes, there is, and two modules come to mind: -[list] - - [*][i]Webform[/i] - allows the creation of any kind of web form. Users can customize field types, values, labels and messages. The module also provides ways to process forms by either saving data to the database or emailing it, which we can use for things like the Editor's Test and surveys. - [*][i]Flexynode[/i] - This module is simple and powerful - it allows users to create their own content types without coding a single line. In my example, I cloned the story module to create the zZine Article content type. This is easy to do, and functional, but what happens if someone wants to include an additional field to the article submission form? I can probably do this using hooks, but if I was lazy I could do the same thing with the [i]flexynode[/i] module. I actually used this module for our podcast section[20], and it did an excellent job. -[/list] - -[b]Conclusions[/b] - -For now I must say I'm very happy with what Drupal has to offer, and if there's something we need for the site, we can code it ourselves and then integrate it into Drupal. -One of the major strengths of this CMS is definitely its developer-friendliness: while other CMSes mainly focus on users at the price of limiting extensibility and trapping developers into predefined modules, Drupal even encourages developers to integrate their code into the existing structure, opening virtually unlimited possibilities. Granted, it may seem difficult to understand at first, some people I talked to told me that 'Drupal is too complex' or has a rather steep learning curve, but I just think everything becomes clearer after reading parts of the vast documentation section: this is the only price to pay, and believe me, it is definitely worthwhile. - - -[b]Notes[/b] -[small] -[1] zZine Magazine: [url]http://www.zzine.org[/url] -[2] CyberArmy Community: [url]http://www.cyberarmy.net[/url] -[3] Content Management System, Wikipedia page: [url]http://en.wikipedia.org/wiki/Content_management_system[/url] -[4] Xoops - Official Page [url]http://www.xoops.org/[/url] -[5] Mambo - Official Page: [url]http://www.mamboserver.com[/url] -[6]CMS Matrix: [url]http://cmsmatrix.org/[/url] -[7] Open Source CMS: [url]http://opensourcecms.com/[/url] -[8] Snarkles's CyberArmy Profile: [url]http://www.cyberarmy.net/~snarkles[/url] -[9] Drupal - Official Page: [url]http://www.drupal.org[/url] -[10]Webchick's Drupal Profile: [url]http://drupal.org/user/24967[/url] -[11] Drupal - Handbooks: [url]http://www.drupal.org/handbooks/[/url] -[12] Drupal API: [url]http://drupaldocs.org/api/head[/url] -[13] Drupal Downloads: [url]http://www.drupal.org/project/[/url] -[14] WAMP Server Package: [url]http://www.wampserver.com[/url] -[15] Drupal - Installing and Upgrading documentation: [url]http://drupal.org/node/258[/url] -[16] Drupal - Themes: [url]http://drupal.org/project/Themes[/url] -[17] Drupal - Theme Engines: [url]http://drupal.org/node/509[/url] -[18] zZine Beta site: [url]http://beta.zzine.org[/url] -[19] Drupal - ePublish module: [url]http://drupal.org/project/epublish[/url] -[20] zZine Podcasts: [url]http://beta.zzine.org/podcasts[/url] -[/small]
@@ -1,173 +0,0 @@
------ -:type: article -:tags: -- italy -- personal -- rant -:permalink: academic -:title: "Thoughts about the Italian Academic Education" -:summary: "An article written by a 22-year-old IT Engineering student, out of frustration for not passing his final exam. A rather emotional, but fairly accurate piece on the absurdities of the Italian Education System." -:toc: true -:pdf: true -:date: 2005-07-07 22:30:00.099000 +02:00 ------ -textile[ -I found this article today, buried in my mailbox. I wrote it just over five years ago, the evening after failing the last, insignificant exam necessary to get my degree in IT Engineering. - -I eventually passed the damn thing, got my B.Sc., and found a great job right afterwards, while all my former fellow students were still studying pointless crap. Maybe some of them are still studying pointless crap right now, and they're still living with their parents. - -I was very lucky. If I didn't fail that exam perhaps I would have kept studying for my master's degree for years, and maybe today I wouldn't even have a job, or be married! - -I decided to re-publish this article because it's part of what I am, and I'm not ashamed of it. I corrected a few of the most obvious spelling and grammar mistakes, but I didn't edit it or censor it otherwise. - -It may be a senseless rant, but my opinion of the Italian Education System is still the same: If I'll have a child who wants to study anything technical someday, I'll tell him/her to get the hell out of Italy and go abroad to study in a _real_ university. - -p(((((((((((((((. *Fabio Cevasco* -- _Saturday, July 31st 2010_ -] -section[ - @title[The Pre-computer Age] - textile[ -Who am I? I'm just an Italian student taking the last exams to obtain my B.Sc. in IT Engineering. Obviously I'm quite interested in Information Technology and everything concerning computers or the Internet, and - believe it or not - this probably came from my parents' original dislike of computers themselves. - -in Italy, unlike in most of the other capitalistic countries of the world, kids tends to listen to their parents until they reach their "full maturity", i.e. 25 years of age at least (by the way, I'm 22), so, to cut a long story short, I was allowed to have a computer at home when I was 16 years old. I couldn't believe it when the technician brought it at home: sure I'd seen a computer before in my life, but that was mine, and I could use it to do something amazing, as I dreamt many times. - -The point is, from another point of view, that I felt behind already compared to my friends who were already boasting their records at various computer games. Fools. -On another note, I was a bit different from other Italian kids: I always liked writing and reading in English since I was 6, because I found the language to be quite amazing or even magic for the way it sounded, as I used to say to my friends. Friends - the Italian ones, that is - who never really understood me totally, and in particular my -passion for the Anglo-Saxon cultures: for them, writing and reading in English were just boring and difficult things you had to do at school, while I enjoyed reading The Tempest by Shakespeare when my English teacher didn't even teach me the past tense, yet. A fool? - -My passion for the English language was soon noticed by my parents, who let me go to England a few times, to college: basically a fashonable way for english schools and travel agencies to rob honest families, promising them that their kids would have learnt a new language enjoying themselves. Result: the kids enjoyed their holiday a lot, but basically always spoke Italian to each other (and even to English people over there) and the families were happy when they came back because after spending so much money they must have learnt something... - ] -] -section[ - @title[Using the Computer and the Internet] - textile[ -Back to that amazing and weird magic box called computer: I immediately enjoyed experimenting new stuff, playing with Windows (for me the word "Linux" at the time would have sounded not too different from some names of medicines my grandparents were taking), and even playing games, why not, but in English of course, because I never -really liked Italian translations (yes, we even dub video games!). -I remember my biggest fear was not being able to catch up with my friends who had a computer for years: I was so obsessed with that that I often stayed on the PC more than the 2-3 hours allowed by my parents, when they were away. Some time later, and relatively recently, I discovered that I catched up relatively soon, without even noticing it. - -I've been allowed to access the Internet when I turned 18, because my parents were scared it could be just another bad thing, and still I found myself behind if compared to my friends, who've been surfing the web long before. - -Only now I notice that perhaps my parents made me discover new things about PCs which my friends never bother learning, even now that they're graduating. I remember my mum calling me for a silly pseudo-scientific divulgative program where they were describing this new, totally free operating system different from Windows who was supposed to work much better. "It said the name before... it's Luxi... lixi... lunis..." - Linux. - -When I had access to the Internet my life really changed. I do believe that unlike my friends I used the Internet for its very purpose: sharing knowledge, or, in my case, just learning. I also made a vow to myself: to surf ONLY (unless I had to) English/International websites; a vow which I'm keeping still nowadays, which seemed utterly illogic -to my friends and Italians in general. - -Immediately a whole new universe opened to my eyes: I quickly learnt how to keep up-to-date on the recent events regarding computers, I learnt some rudiments of Internet and Hacking Culture (thanks ESR for all your papers) and the Open Source movement, and linux, etc. and I noticed two things: -* I was definetely catching up with my friends' "knowledge" in computing -* I would have NEVER ever managed to learn even 1/10 of all you need to know about computers: the same as in life, and I was happy with it. - ] -] -section[ - @title[The Pre-academic Period] - textile[ -In the meantime I was studying in a Liceo Scientifico, a kind of scientific high school where basically they make you study all sort of subjects (from geography, to maths to phylosopy, to Latin) mainly focusing - they say - on Science-related disciplines. For those who don't know, in Italy you don't get to choose what you want to study: in -High School and University they let you choose basically a type of school, but subjects and courses cannot be changed, apart from a few exceptions. -I "chose" a particular type of scientific school (...the exception!) where basically I agreed to study an additional subject - Computer Science - in addition to all the rest, for a total of more than 30 hours per week. I studied a lot then, because my parents taught me that Culture was important, and that "if you're ignorant you can't do anything nowadays". No, my parents weren't ignorant themselves, my dad is a Mechanical Engineer and my mum a Latin/History/Italian professor ...and yes, that helped my forma mentis a lot. - -I studied a wide range of subjects, including something totally irrelevant with my favourite ones: English and Computing (note: I say "Computing", not Maths), and I did quite well in the end, graduating from High School with a mark of 100/100. While I was studying Latin, Phylosophy and alikes I was thinking that at least at University I'd have studied something really more specific. -Until the end I was undecided on which faculty to choose, whether IT Engineering or Foreign Languages. I was very fond of English and languages in general, but I primarly liked computers, so I thought that if I studied IT Engineering I'd have learnt more about computers and my already half-decent knowledge of the English language would -have helped me in my studies ("Now they REQUIRE a good knowledge of English, at university") and in my future, when I'd have started working. FOOL. - ] -] -section[ - @title[Alice in Wonderland] - textile[ -That was it, I remember exactly when I went to sign my pre-enrollment papers: IT Engineering. I was so happy to have made it! Now finally I would have studied what I was meant to. - -On a side note, I was never too good at Maths, I don't know why. I just didn't like it because it felt too theorethical for me, and not as useful as I thought, -especially for programming. In High School I was taught a bit of the Pascal 3 programming language, and that turned out to be perhaps one of the most useful things I've ever studied. - -The first disappointment came from the courses that they setup for the first year: two BIG Maths-oriented exams in particular, and Chemistry(!). What Chemistry has to do with Computer Science remained a mystery to me, people claimed that we might be asked in the future to do some programs to help studying the structure of matter and doing -chemical analysis... yes, and following the same logic I should have been studying the structure of languages, because AI programs and translators would certainly become key applications in the future. - -Oddly enough, they made us just study Chemistry. - -"But next year will be better" -- I was thinking, after getting fairly poor results in the Maths exams -- "next year we'll study something more exciting". - -Economics. - -They made us study Economics because they think that it's useful to know something about finance and salaries, especially when you start working. That makes sense, to an extent, of course, and it was kind of interesting even. But still I didn't study anything really useful. - -This is a little lie, actually, because we actually had two programming exams (out of 17) in which they taught us a bit of C++, and THAT was interesting, and I even managed to get 30/30 out of the last one: I liked it. - -I actually remember when the teacher came in, and insisted for us to use a unix emulator (Cygwin) to compile our C++ programs: people thought that "emulators" were used for running games released for a gaming console on the PC, and what the hell was unix? It looks like - they said - a bad copy of DOS with more difficult commands. (No comment) - -I lived my years at University (three, counting this one which will be the last one) feeling superior to my friends for knowing more about computers but at the same time inferior to them when it came to exams: I didn't really like most of the subjects, especially some rather abstract mathematical models which COULD BE useful, but - let's -say it all - most people outside Italy don't really give a sh...illing about. What's the point in learning the demonstration of Cauchy theorem? Just use it maybe, and it would have a sense... No, they wanted you to study the demonstration and tell them about it, without missing a passage, which normally - for 2/3 of people at least - meant -"learn it by heart". - -Also, unlike in other countries, professors are more similar to Gods than clever people, apart from a few exceptions. Every professor decides how the students have to take the exams, some of them opt for having some _compitini_ (little tests) during the semester and then the average mark on all of them (normally two or three) represents the -exam's final mark: that's the best, probably, but it could also mean that people can cheat trying to copy from their collegues, etc. - -Normal, get on, it's Italy! - -Some professors might allow you to use the notes you took during classes, but that's often considered a bad thing because people can potentially copy from one another ("What's that piece of paper, is it your friend's?" - "No, it's part of my notes"), and they often do. On the other hand, if a professor doesn't allow notes to be used, students -normally do their best to sneak and use them anyway. - -This is Italy, after all, the place where everything can be sorted out if you're cunning enough. - -But why do some people cheat? Oh well, simply because either you devote 3 full years of your life to studying pointless crap and forgetting that you're wasting the best years of your existence, or you have to do something to pass 10 exams a year. Because we REALLY do take 10 exams a year. - -My girlfriend (who's English and living in Italy, by the way) told me that her brother wanted to study Computing at University but switched to Politics & Journalism because they wanted him to learn Java on the very first year. I've never been taught Java -- I had to learn it all by myself for my final thesis (see below) -- but instead I learnt a ton of demonstrations of theorems and mathematical models. Great, isn't it? - -_"But you knew you were going to take those exams, because they are publicly available before enrolling"._ - -That's true and it makes sense, and I probably should have chosen Computer Science instead of IT Engineering if only it was considered equally important. In Italy if you study Engineering you can (after taking yet another exam) become an Engineer, which -- unlike other countries -- is not a competent person who knows how to fix stuff and can solve problems. Rather, he's someone who got an important academic title who is treated like a demi-god because he knows (or should know) what's a differential system and how can be solved but -- sometimes -- doesn't know how to use it. - -But he's an Engineer, and he can find work when others can't. - -To explain this concept to non-Italian, I can summarize all this with the following: - -In Italy Academic (Skool) Titles rulez - You ain't got none? You ain't nothin' coz I got one and I own you. - -And that's that. In Italy knowledge is dead. (This is an exaggeration, but please try to get my point). - -If you need to be competent in something, when you're working you'll have to do a practical course (even paying for it yourself) if some "knowledge" is needed. If there's no risk that things can blow up, you can remain ignorant. - ] -] -section[ - @title[The Vanishing Cheshire Cat] - textile[ -Up to today I could leave with it, I knew that abroad the situation was hopefully different, but I started to cope with the fact that I would have got my B. Sc. and in addition I knew more stuff than some of the others who got the degree at the same time. A few months ago I had just a few exams left and I started going to the lab for my thesis project, with a friend of mine. - -At that point -- oddly enough -- I was told to develop an application in Java, using some libraries, and actually make something fully functional and (somewhat) useful. I couldn't believe it! I was happy on one side, and angry on the other, because NOBODY ever taught us about Java or about creating an useful application. - -The Ph.D. Student who was appointed to help us with the project told us: "That's the way it works, it's normal that you don't know Java, but you know a bit of C++, and now it's time to research". That was again very shocking: it was the first time that someone ever told me something like this, and in the end we agreed on the project. - -Despite the fact we had to implement some new features and test them relatively at the last minute, we succeeded in developing the program. In particular, I actually played an important part being the one who actually researched something on Java already, and knew more about programming. - -Oddly enough, my collegue would have graduated with a higher mark than me, even if he originally thought that "SSH" was nothing but a sound used to shut people up and that HTML was a proprietary standard introduced by Microsoft having something to do with web pages. If you're reading all this mate, don't get angry at me: I have nothing against you, I just hate the System, as usual. - -He still probabally thinks that POP3 is something like the name of a band and that a shell can be found only at the sea. Mate, it's not your fault, don't blame me if I say this, blame the System! - -I mean, I don't consider myself an expert, but at least I'm better than that. I met students, at uni, who haven't the faintest idea of what a sever was. And that's pretty sad, if you ask me. - -Let's now come to the end of this apparently endless flow of thoughts: I still had an exam to pass in order to get the degree. Such exam counts 3/180 of the whole stuff we had to study in these three years (it is literally quantified like this on paper), and it's about Digital Controls. Cool, you may think, but it actually means MORE mathematical models to solve complex(?) situations, more theorems and other crap, even if -- I admit -- I had to take exams worse than this one. - -I admit I constantly underestimated the exam and took it various times without passing it: "it's so small, I'll have to pass it eventually". - -This was just the way of thinking they made us adopt, nothing more, nothing less. - -I was quite busy testing my program and writing the thesis in this period, although we were literally told not to worry too much about it: "just google a bit on the net, copy and paste, and change some words if you feel guilty..." - -To the guy who told me to do so: it's just an example that is bad to read, but it's true, you can't deny it. I don't blame you, because you've really taught me a lot about working on "proper" projects (and this is NOT sarcastic, really), I blame the System. - -In the meantime I spent days running around here and there trying to sort out all the bureaucracy necessary to have all the papers ready for my degree, and I also talked to the professor who commissioned the project: he's by far the most helpful and altruistic professor I've ever met, and obviously offered his complete availability for helping -us for the preparation of the degree. - -I just needed to pass my last exam. It was the last one, not as complex as others I took, and this time I studied more than the previous times... - -I didn't pass it. - -I don't blame the professor, because probably he's the only one who's normal in the whole lot: he's like me, I think, because I suspect he's aware that abroad students don't cheat and professors are not "flexible" on marks. I got 12/30, and I didn't pass, that was it, I didn't know his subject enough and he didn't feel he had to help me to get the degree at all. And he's right. I can't blame him, but I DO blame such a "flexible" system which in the end is totally absurd. I learnt the hard way that I shouldn't have "trusted" the Italian Way, because it has flaws. - -Oddly enough, people who can't even connect a network cable get their B.Sc., and all I get after spending months learning useful things and developing is just a load of B.S. - -I learnt my lesson and I'll probably re-take the exam, pass it, and maybe get the degree: my collegue and friend just emailed me telling me that I HAVE to help him doing the missing chapters of the thesis because he can't write them, he's not good at writing stuff, and doesn't know what to write either. He'll get his B.Sc. on September 23rd, provided that I actually decide to help him. - -I hope people who read this can understand my frustration apart from blaming me for being "lazy" when it came to exams and expecting help when technically I didn't deserve it. I probably won't win the nobel prize or get rich like those two american students who own the most profitable Internet business ever conceivable. I'm not as special, and I don't deserve anything special, and I never dreamt about it. - -All I dreamt was being able to learn, and do something useful. It looks like it will remain just a dream, here in Italy. - ] -] -
@@ -1,118 +0,0 @@
------ -permalink: akelos-interview -filters_pre: -- redcloth -title: An Interview with the creator of the Akelos Framework -comments: [] - -date: 2007-07-19 05:02:00 +02:00 -tags: -- php -- rails -- cakephp -- frameworks -type: article -toc: true ------ -I "already":http://www.h3rald.com/blog/34 "covered":http://www.h3rald.com/blog/38 the Akelos PHP framework in the past, but for those who don't know it, Akelos seems to be one of the few "Rails-inspired PHP frameworks":http://www.h3rald.com/articles/rails-inspired-php-frameworks still worth mentioning, besides CakePHP and Symphony of course. - -I recently has a look at their recently-relaunched <a href="http://www.akelos.org/">community website</a> and I noticed this phrase: - -bq. "Being port of Ruby on Rails to PHP Akelos is also optimized for programmer happiness and sustainable productivity" - -Bermi Ferrer, Akelos creator, openly admits the framework is a port of Ruby on Rails to PHP, an attempt to help _"Ruby on Rails developers who need to code in PHP"_, among others. Of course Akelos is not Rails, simply because Ruby is (thank God for that!) not PHP, however I decided to find out more, and I asked Bermi a few questions, which he promptly answered.<h4><em>There are a lot of frameworks for PHP, perhaps too many: why did you decide to create Akelos rather than using one of the existing ones?</em></h4> - -<p>I started coding <a href="http://www.akelos.org/">Akelos</a> back in 2004 for our internal developments. At that time I only found very few frameworks out there like <a href="http://www.mojavi.org/">Mojavi</a> and <a href="http://ez.no/">eZ Publish</a>. These frameworks were not my ideal of an <a href="http://en.wikipedia.org/wiki/Agile_software_development">Agile development</a> environment, so I decided to brew my own solution.</p> - -<p>After reading <a href="http://www.martinfowler.com/books.html">Patterns of Enterprise Application Architecture</a> it was clear to me the kind of framework I wanted <a href="http://www.akelos.org/">Akelos</a> to become, so I started to implement some of the design patterns from the book into Akelos.</p> - -<p>During the summer of 2005 I had a look into other PHP frameworks like <a href="http://www.cakephp.org/">CakePHP</a>, <a href="http://phpontrax.com/">PHP on Trax</a>, and <a href="http://www.bennolan.com/biscuit/">Biscuit</a> but none of them was more complete or easier to use than what Akelos was already at that time.</p> - -<p>Then I used <a href="http://www.rubyonrails.org/">Rails</a> for one small personal project and immediately found that <a href="http://www.akelos.org/">Akelos</a> interfaces, conventions and philosophy were close to the Rails approach. <a href="http://api.rubyonrails.org/files/vendor/rails/activerecord/README.html">Rails ActiveRecord</a> implementation was impressive, better than mine and much much better than other existing PHP implementations, so I first ported the ActiveRecord code using <a href="http://adodb.sourceforge.net/">PHP AdoDB</a> as the database abstraction layer.</p> - -<p>After that point, whenever I had a problem to solve while coding my customers applications I turned to Rails and they usually had the most elegant solution available. So I did like the idea of digging into Rails code to learn more Ruby and bringing Rails magic to the PHP world. It also helped the fact that Rails inline documentation is excellent so it could be easily adapted for Akelos.</p> - - -<h4><em>What’s new since last time I posted about Akelos?</em></h4> - -<p>The biggest change is the direction that the project has taken. Until now we have not dedicated time to promote Akelos, we just used it for our internal projects and we have been adding features as needed without a fixed roadmap or advocacy.</p> - -<p>Now this has changed. More and more developers are using Akelos and contributing functionalities they miss from Rails. After some serious contribution proposals and many developers telling us how much they like Akelos, we decided to take the time to build a nice community site which includes <a href="http://forum.akelos.org/">forums</a>, a <a href="http://wiki.akelos.org/">wiki</a>, a new <a href="http://www.akelos.org/docs/tutorials/booklink">tutorial</a> and <a href="http://www.akelos.org/screencasts">a screen-cast</a>.</p> - -<p>There are also some improvements like:</p> - -<ul> -<li>Sintags, now accepts ruby-like calls to helper methods from the views.</li> -<li>Action Webservice, a component for creating and consuming Web Services easily.</li> -<li>Action Mailer, which allows you to receive and send (directly or in delayed mode) emails from within your application. (this is almost ready to ship)</li> -<li>Acts as tree behavior for Models.</li> -<li>Many performance improvements.</li> -<li>Many small contributions and bug fixes.</li> -<li>Code base reduced from 16MB to 9MB.</li> -</ul> - -<h4><em>From the new site, it seems that Akelos is - or aims to be - a port of Rails for PHP. Is that true? Do you aim to target Rails developers as possible users of the framework in situations in which “they have no choice” but to use PHP instead of Ruby?</em></h4> - -<p>Akelos has ported many Ruby on Rails components keeping their interfaces and functionality whenever it was feasible to port the Ruby code to PHP. It might be considered a port in the sense of functionality, but there are some Rails strengths that rely on the Ruby language and that are impossible to port to PHP. However, Ruby developers will find that Akelos is the PHP framework with is the closest to Rails.</p> - -<p>On the other hand, many PHP developers have moved to Ruby because PHP lacked a hyper-productive and fun-to-use framework like Rails for building complex applications. That is no longer the case, and those who excel at PHP can start being productive from day one by using Akelos. In this way, Akelos target users are those who already know PHP and need to build complex applications that can run on almost any cheap shared hosting using a solid foundation based on good coding practices and widely accepted conventions.</p> - -<h4><em>What Rails features are missing in Akelos?</em></h4> - -<p>A standalone webserver like WebBrick, RJS, has and belongs to many through associations, string/number/date extensions and Active Resource.</p> - -<p>Ruby-powered features like modules, runtime class overriding and blocks will never be available in Akelos.</p> - -<p>Scaffolds in Akelos work by generating code, I found quite useless to enable $scaffold = true; and have magic functionality that you can’t modify, so I decided not to invest my time on that one.</p> - -<h4><em>I noticed quite a few generators available for Akelos, do they work as a Rails developer may expect them to work?</em></h4> - -<p>The ones that are available do pretty much the same as in RoR.</p> - -<h4><em>How does Akelos compare to other similar PHP frameworks like, say, CakePHP? What features does Akelos offer which Cake doesn’t offer and vice-versa?</em></h4> - -<p>I’m not aware of Cake’s functionalities. At the time I started porting Rails my feelings about CakePHP were that they missed the simplicity point in favor of architectural discussions that lead to confusing code, but that was long ago.</p> - -<p>Akelos (and Rails) do not implement ACL like Cake does, as that is a business logic component that varies too much from one case to other, it has no place inside the framework.</p> - -<p>Akelos is built with internationalization in its core. You can even internationalize your Models by prefixing the column name with the locale.</p> - -<p>I think that Cake only has an act_as_tree behavior on models while Akelos has Tree, Nested Set, and List. Akelos also implements handy features from Rails like <a href="http://en.wikipedia.org/wiki/Optimistic_concurrency_control">optimistic locking</a>, <a href="http://www.martinfowler.com/eaaCatalog/lazyLoad.html">lazy loading</a>, <a href="http://www.martinfowler.com/eaaCatalog/singleTableInheritance.html">table inheritance</a>, counters, automatic transactions, really powerful validations, calculations…, and I think most of these advanced features are still missing on Cake, but maybe I'm wrong.</p> - -<h4><em>Did you include unit tests for all the framework classes?</em></h4> - -<p>The main components are fully unit tested, and no new code or patch gets into the trunk without unit tests.</p> - -<h4><em>Did you or someone do any performance test or benchmarks on Akelos already?</em></h4> - -<p>During the last month a lot of code was refactored to improve performance with the help of <a href="http://xdebug.org/">Xdebug</a>, <a href="http://kcachegrind.sourceforge.net/">Kcachegrind</a> and <a href="http://httpd.apache.org/docs/2.0/programs/ab.html">ab</a>. We significantly improved the performance in one of our most complex intranet applications, a <a href="http://www.basecamphq.com/">basecamp</a>-like system.</p> - -<p>Akelos also implements caching at many levels, so it’s very easy to increase performance as we did with a new CMS that can handle +200 requests per second using <a href="http://www.apache.org/">Apache</a> in a cheap shared server environment.</p> - -<h4><em>Why should a PHP developer choose Akelos over another PHP framework?</em></h4> - -<p><a href="http://www.akelos.org/docs/tutorials/booklink#mvc">Akelos MVC implementation</a> and <a href="http://www.akelos.org/docs/tutorials/booklink#workflow">workflow</a> are really easy to understand.</p> - -<p>In Akelos all the methods and interfaces are thoroughly selected, so whenever you need to do something you just need to type what you think. Default options are selected with care so you don’t need to set any configuration unless you want to modify the default behavior.</p> - -<p>Coding multilingual applications, building complex relationships within models, distributing databases changes within your development team, building Ajax interfaces, unit testing your code and many other common tasks for PHP developers are really simple to accomplish when using Akelos.</p> - -<p>Akelos is designed to work on PHP4 and PHP5 and it comes with an easy web installer you can adapt for your application. It has functions for working with files and directories in common situations when the web server runs as a different user.</p> - -<p>And one of the main reasons for choosing Akelos is that it makes coding fun and lets you focus on solving user problems rather than wasting your time in repetitive technical annoyances. When coding with other developers the <em>convention over configuration philosophy</em> helps everybody to understand exactly how everything works and where to find things.</p> - -<h4><em>Is there any website using Akelos already?</em></h4> - -<p>The <a href="http://www.thechemicalbrothers.com/">Chemical Brothers</a> new website which has been developed by <a href="http://www.3ev.com/">3rd Eye Vision (3ev)</a> is using Akelos. </p> - -<p>The <a href="http://www.akelos.org/">Akelos.org</a> site is running a CMS named Editam which we will release as Open Source in a near future.</p> - -<p>Some small websites like <a href="http://www.fundaciocaixacarlet.com/">Fundacio Caixa Carlet</a> and many intranet/extranet sites that we’ve been coding during the last 2 years.</p> - -<h4><em>What are your future plans for Akelos? Anything new on the way?</em></h4> - -<p>A new manual, and a better API interface are the main priorities right now.</p> - -<p>Continuing bringing Rails functionality as needed.</p> - -<p>Releasing our sister project Editam CMS which will help developers who need to add functionality on the top of a CMS using a solid MVC framework like Akelos.</p>