Page MenuHomeMusing Studio

No OneTemporary

This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..89bcd59
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+
+all : local
+
+install :
+ cd less/; $(MAKE) install $(MFLAGS)
+
+clean :
+ cd less/; $(MAKE) install $(MFLAGS)
+
+local : force_look
+ cd less/; $(MAKE) $(MFLAGS)
+
+force_look :
+ true
diff --git a/less/Makefile b/less/Makefile
new file mode 100644
index 0000000..a2e8b63
--- /dev/null
+++ b/less/Makefile
@@ -0,0 +1,22 @@
+ifeq ($(shell which lessc),/usr/bin/lessc)
+ LESSC=/usr/bin/lessc
+else
+ LESSC=node_modules/.bin/lessc
+endif
+export LESSC
+
+CSSDIR=../static/css/
+
+all :
+ $(LESSC) app.less --clean-css="--s1 --advanced" $(CSSDIR)write.css
+ $(LESSC) fonts.less --clean-css="--s1 --advanced" $(CSSDIR)fonts.css
+ $(LESSC) icons.less --clean-css="--s1 --advanced" $(CSSDIR)icons.css
+
+install :
+ ./install-less.sh
+ $(MAKE) all
+
+clean :
+ rm -f write.css
+ rm -f fonts.css
+ rm -f icons.css
diff --git a/less/app.less b/less/app.less
new file mode 100644
index 0000000..7f32c1c
--- /dev/null
+++ b/less/app.less
@@ -0,0 +1,9 @@
+@import "new-core";
+@import "core";
+@import "pad";
+@import "pad-theme";
+@import "post-temp";
+@import "effects";
+@import "pages/error";
+@import "lib/elements";
+@import "lib/material";
diff --git a/less/core.less b/less/core.less
new file mode 100644
index 0000000..80b2b22
--- /dev/null
+++ b/less/core.less
@@ -0,0 +1,1458 @@
+@primary: rgb(114, 120, 191);
+@secondary: rgb(114, 191, 133);
+@subheaders: #444;
+@headerTextColor: black;
+@sansFont: 'Open Sans', 'Segoe UI', Tahoma, Arial, sans-serif;
+@serifFont: Lora, 'Palatino Linotype', 'Book Antiqua', 'New York', 'DejaVu serif', serif;
+@monoFont: Hack, consolas, Menlo-Regular, Menlo, Monaco, 'ubuntu mono', monospace, monospace;
+@dangerCol: #e21d27;
+@errUrgentCol: #ecc63c;
+@proSelectedCol: #71D571;
+@textLinkColor: rgb(0, 0, 238);
+
+body {
+ font-family: @serifFont;
+ font-size-adjust: 0.5;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ color: #111;
+
+ h1 {
+ a {
+ color: @headerTextColor;
+ .transition-duration(0.2s);
+ &:hover {
+ color: #303030;
+ text-decoration: none;
+ }
+ }
+ }
+ h1, h2, h3 {
+ line-height: 1.2;
+ }
+
+ &#post article, &#collection article p, &#subpage article p {
+ display: block;
+ unicode-bidi: embed;
+ white-space: pre;
+ }
+
+ &#post {
+ #wrapper, pre {
+ max-width: 40em;
+ margin: 0 auto;
+ a:hover {
+ text-decoration: underline;
+ }
+ }
+
+ article {
+ margin-bottom: 2em !important;
+
+ h1, h2, h3, h4, h5, h6, p, ul, ol, code {
+ display: inline;
+ margin: 0;
+ }
+ hr + p, ol, ul {
+ display: block;
+ margin-top: -1em;
+ margin-bottom: -1em;
+ }
+ ol, ul {
+ margin: 0.75em 0 -1em;
+ }
+ ul {
+ padding: 0 0 0 2em;
+ }
+ li {
+ margin-top: -0.5em;
+ margin-bottom: -0.5em;
+ }
+ h2#title {
+ .article-title;
+ }
+ h1 {
+ font-size: 1.5em;
+ }
+ h2 {
+ font-size: 1.17em;
+ }
+ }
+
+ header {
+ nav {
+ span, a {
+ &.pinned {
+ &.selected {
+ font-weight: bold;
+ }
+ &+.views {
+ margin-left: 2em;
+ }
+ }
+ }
+ }
+ }
+ .owner-visible {
+ display: none;
+ }
+ }
+
+ &#post, &#collection, &#subpage {
+ code {
+ .article-code;
+ }
+ img, video {
+ max-width: 100%;
+ }
+ pre {
+ .code-block;
+
+ code {
+ background: transparent;
+ border: 0;
+ padding: 0;
+ font-size: 1em;
+ white-space: pre-wrap; /* CSS 3 */
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
+ white-space: -pre-wrap; /* Opera 4-6 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
+ }
+ }
+ blockquote {
+ .article-blockquote;
+ }
+ article {
+ hr {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+ p.badge {
+ background-color: #aaa;
+ display: inline-block;
+ padding: 0.25em 0.5em;
+ margin: 0;
+ float: right;
+ color: white;
+ .rounded(.25em);
+ }
+ }
+ header {
+ nav {
+ span, a {
+ &.pinned {
+ &+.pinned {
+ margin-left: 1.5em;
+ }
+ }
+ }
+ }
+ }
+ footer {
+ nav {
+ a {
+ margin-top: 0;
+ }
+ }
+ }
+ }
+ &#collection {
+ #welcome, .access {
+ margin: 0 auto;
+ max-width: 35em;
+ h2 {
+ font-weight: normal;
+ margin-bottom: 1em;
+ }
+ p {
+ font-size: 1.2em;
+ line-height: 1.6;
+ }
+ }
+ .access {
+ margin: 8em auto;
+ text-align: center;
+ h2, ul.errors {
+ font-size: 1.2em;
+ margin-bottom: 1.5em !important;
+ }
+ }
+ header {
+ padding: 0 1em;
+ text-align: center;
+ max-width: 50em;
+ margin: 3em auto 4em;
+
+ .writeas-prefix {
+ a {
+ color: #aaa;
+ }
+ display: block;
+ margin-bottom: 0.5em;
+ }
+ nav {
+ display: block;
+ margin: 1em 0;
+ a:first-child {
+ margin: 0;
+ }
+ }
+ }
+ nav#manage {
+ position: absolute;
+ top: 1em;
+ left: 1.5em;
+ li a.write {
+ font-family: @serifFont;
+ padding-top: 0.2em;
+ padding-bottom: 0.2em;
+ }
+ }
+ pre {
+ line-height: 1.5;
+ }
+ }
+ &#subpage {
+ #wrapper {
+ h1 {
+ font-size: 2.5em;
+ letter-spacing: -2px;
+ padding: 0 2rem 2rem;
+ }
+ }
+ }
+ &#post {
+ pre {
+ font-size: 0.75em;
+ }
+ }
+
+ &#collection, &#subpage {
+ #wrapper {
+ margin-left: auto;
+ margin-right: auto;
+
+ article {
+ margin-bottom: 4em;
+
+ &:hover {
+ .hidden {
+ .opacity(1);
+ }
+ }
+ }
+ h2 {
+ margin-top: 0em;
+ margin-bottom: 0.25em;
+ &+time {
+ display: block;
+ }
+ }
+ time {
+ font-size: 1.1em;
+
+ &+p {
+ margin-top: 0.25em;
+ }
+ }
+ footer {
+ text-align: left;
+ padding: 0;
+ }
+ }
+ #paging {
+ overflow: visible;
+ padding: 1em 6em 0;
+ }
+ a.read-more {
+ color: #666;
+ }
+ }
+
+ &#me #official-writing {
+ h2 {
+ font-weight: normal;
+ a {
+ font-size: 0.6em;
+ margin-left: 1em;
+ }
+ a[name] {
+ margin-left: 0;
+ }
+ a:link, a:visited {
+ color: @textLinkColor;
+ }
+ a:hover {
+ text-decoration: underline;
+ }
+ }
+ }
+ &#promo {
+ div.heading {
+ margin: 8em 0;
+ }
+ div.heading, div.attention-form {
+ h1 {
+ font-size: 3.5em;
+ }
+ input {
+ padding-left: 0.75em;
+ padding-right: 0.75em;
+ &[type=email] {
+ max-width: 16em;
+ }
+ &[type=submit] {
+ padding-left: 1.5em;
+ padding-right: 1.5em;
+ }
+ }
+ }
+ h2 {
+ margin-bottom: 0;
+ font-size: 1.8em;
+ font-weight: normal;
+ span.write-as {
+ color: black;
+ }
+ &.soon {
+ color: lighten(@subheaders, 50%);
+ span {
+ &.write-as {
+ color: lighten(#000, 50%);
+ }
+ &.note {
+ color: lighten(#333, 50%);
+ font-variant: small-caps;
+ margin-left: 0.5em;
+ }
+ }
+ }
+ }
+ .half-col a {
+ margin-left: 1em;
+ margin-right: 1em;
+ }
+ }
+ nav#top-nav {
+ display: inline;
+ position: absolute;
+ top: 1.5em;
+ right: 1.5em;
+ font-size: 0.95rem;
+ font-family: @sansFont;
+ text-transform: uppercase;
+ a {
+ color: #777;
+ }
+ a + a {
+ margin-left: 1em;
+ }
+ }
+
+ footer {
+ nav, ul {
+ a {
+ display: inline-block;
+ margin-top: 0.8em;
+ .transition-duration(0.1s);
+ text-decoration: none;
+ + a {
+ margin-left: 0.8em;
+ }
+ &:link, &:visited {
+ color: #999;
+ }
+ &:hover {
+ color: #666;
+ text-decoration: none;
+ }
+ }
+ }
+ a.home {
+ &:link, &:visited {
+ color: #333;
+ }
+ font-weight: bold;
+ text-decoration: none;
+ &:hover {
+ color: #000;
+ }
+ }
+ ul {
+ list-style: none;
+ text-align: left;
+ padding-left: 0 !important;
+ margin-left: 0 !important;
+ .icons img {
+ height: 16px;
+ width: 16px;
+ fill: #999;
+ }
+ }
+ }
+}
+
+.post-title {
+ a {
+ &:link {
+ color: #333;
+ }
+ &:visited {
+ color: #444;
+ }
+ }
+ time, time a:link, time a:visited, &+.time {
+ color: #999;
+ }
+}
+
+.hidden {
+ -moz-transition-property: opacity;
+ -webkit-transition-property: opacity;
+ -o-transition-property: opacity;
+ transition-property: opacity;
+ .transition-duration(0.4s);
+ .opacity(0);
+}
+
+a {
+ text-decoration: none;
+ &:hover {
+ text-decoration: underline;
+ }
+ &.subdued {
+ color: #999;
+ &:hover {
+ border-bottom: 1px solid #999;
+ text-decoration: none;
+ }
+ }
+ &.danger {
+ color: @dangerCol;
+ font-size: 0.86em;
+ }
+ &.simple-cta {
+ text-decoration: none;
+ border-bottom: 1px solid #ccc;
+ color: #333;
+ padding-bottom: 2px;
+ &:hover {
+ text-decoration: none;
+ }
+ }
+ &.action-btn {
+ font-family: @sansFont;
+ text-transform: uppercase;
+ .rounded(.25em);
+ background-color: red;
+ color: white;
+ font-weight: bold;
+ padding: 0.5em 0.75em;
+ &:hover {
+ background-color: lighten(#f00, 5%);
+ text-decoration: none;
+ }
+ }
+ &.hashtag:hover {
+ text-decoration: none;
+ span + span {
+ text-decoration: underline;
+ }
+ }
+ &.hashtag {
+ span:first-child {
+ color: #999;
+ margin-right: 0.1em;
+ font-size: 0.86em;
+ text-decoration: none;
+ }
+ }
+}
+
+abbr {
+ border-bottom: 1px dotted #999;
+ text-decoration: none;
+ cursor: help;
+}
+
+body#collection article p, body#subpage article p {
+ .article-p;
+}
+pre, body#post article, body#collection article, body#subpage article, body#subpage #wrapper h1 {
+ max-width: 40rem;
+ margin: 0 auto;
+}
+textarea, pre, body#post article, body#collection article p {
+ &.norm, &.sans, &.wrap {
+ line-height: 1.4em;
+ white-space: pre-wrap; /* CSS 3 */
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
+ white-space: -pre-wrap; /* Opera 4-6 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
+ }
+}
+textarea, pre, body#post article, body#collection article, body#subpage article, span, .font {
+ &.norm {
+ font-family: @serifFont;
+ }
+ &.sans {
+ font-family: @sansFont;
+ }
+ &.mono, &.wrap, &.code {
+ font-family: @monoFont;
+ }
+ &.mono, &.code {
+ max-width: none !important;
+ }
+}
+textarea {
+ &.section {
+ border: 1px solid #ccc;
+ padding: 0.65em 0.75em;
+ .rounded(.25em);
+ &.codable {
+ height: 12em;
+ resize: vertical;
+ }
+ }
+}
+.ace_editor {
+ height: 12em;
+ border: 1px solid #333;
+ max-width: initial;
+ width: 100%;
+ font-size: 0.86em !important;
+ border: 1px solid #ccc;
+ padding: 0.65em 0.75em;
+ margin: 0;
+ .rounded(.25em);
+}
+
+p {
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ &.intro {
+ font-size: 1.25em;
+ text-align: center;
+ }
+ &.upgrade-prompt {
+ font-size: 0.9em;
+ color: #444;
+ }
+ &.text-cta {
+ font-size: 1.2em;
+ text-align: center;
+ margin-bottom: 0.5em;
+ &+ p {
+ text-align: center;
+ font-size: 0.7em;
+ margin-top: 0;
+ color: #666;
+ }
+ }
+ &.error {
+ font-style: italic;
+ color: @errUrgentCol;
+ }
+ &.headeresque {
+ font-size: 2em;
+ }
+}
+
+table.classy {
+ width: 95%;
+ border-collapse: collapse;
+ margin-bottom: 2em;
+
+ tr + tr {
+ border-top: 1px solid #ccc;
+ }
+ th {
+ text-transform: uppercase;
+ font-weight: normal;
+ font-size: 95%;
+ font-family: @sansFont;
+ padding: 1rem 0.75rem;
+ text-align: center;
+ }
+ td {
+ height: 3.5rem;
+ }
+ p {
+ margin-top: 0 !important;
+ margin-bottom: 0 !important;
+ }
+
+ &.export {
+ .disabled {
+ color: #999;
+ }
+ .disabled, a {
+ text-transform: lowercase;
+ }
+ }
+}
+
+body#collection article, body#subpage article {
+ padding-top: 0;
+ padding-bottom: 0;
+ .book {
+ a.hidden.action {
+ color: #666;
+ float: right;
+ font-size: 1em;
+ margin-left: 1em;
+ margin-bottom: 1em;
+ }
+ }
+}
+body#post article {
+ p.badge {
+ font-size: 0.9em;
+ }
+}
+
+article {
+ h2.post-title a[rel=nofollow]::after {
+ content: '\a0 \2934';
+ }
+}
+
+
+table.downloads {
+ width: 100%;
+ td {
+ text-align: center;
+ }
+ img.os {
+ width: 48px;
+ vertical-align: middle;
+ margin-bottom: 6px;
+ }
+}
+
+select.inputform, textarea.inputform {
+ border: 1px solid #999;
+}
+
+input, button, select.inputform, textarea.inputform {
+ padding: 0.5em;
+ font-family: @serifFont;
+ font-size: 100%;
+ .rounded(.25em);
+ &[type=submit], &.submit {
+ border: 1px solid @primary;
+ background: @primary;
+ color: white;
+ .transition(0.2s);
+ &:hover {
+ background-color: lighten(@primary, 3%);
+ }
+ &:disabled {
+ cursor: default;
+ background-color: desaturate(@primary, 100%) !important;
+ border-color: desaturate(@primary, 100%) !important;
+ }
+ }
+ &.error[type=text], textarea.error {
+ -webkit-transition: all 0.30s ease-in-out;
+ -moz-transition: all 0.30s ease-in-out;
+ -ms-transition: all 0.30s ease-in-out;
+ -o-transition: all 0.30s ease-in-out;
+ outline: none;
+ }
+ &.danger {
+ border: 1px solid @dangerCol;
+ background: @dangerCol;
+ color: white;
+ &:hover {
+ background-color: lighten(@dangerCol, 3%);
+ }
+ }
+
+ &.error[type=text]:focus, textarea.error:focus {
+ box-shadow: 0 0 5px @errUrgentCol;
+ border: 1px solid @errUrgentCol;
+ }
+}
+
+div.flat-select {
+ display: inline-block;
+ position: relative;
+ select {
+ border: 0;
+ background: 0;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+ }
+
+ &.action {
+ &:hover {
+ label {
+ text-decoration: underline;
+ }
+ }
+ label, select {
+ cursor: pointer;
+ }
+ }
+}
+
+input {
+ &.underline{
+ border: none;
+ border-bottom: 1px solid #ccc;
+ padding: 0 .2em .2em;
+ font-size: 0.9em;
+ color: #333;
+ }
+ &.inline {
+ padding: 0.2rem 0.2rem;
+ margin-left: 0;
+ font-size: 1em;
+ border: 0 !important;
+ border-bottom: 1px solid #999 !important;
+ width: 7em;
+ .rounded(0);
+ }
+
+ &[type=tel], &[type=text], &[type=email], &[type=password] {
+ border: 1px solid #999;
+ }
+ &.boxy {
+ border: 1px solid #999 !important;
+ }
+}
+
+#beta, .content-container {
+ max-width: 50em;
+ margin: 0 auto 3em;
+ font-size: 1.2em;
+
+ &.tight {
+ max-width: 30em;
+ }
+ &.snug {
+ max-width: 40em;
+ }
+ &.regular {
+ font-size: 1em;
+ }
+ .app {
+ + .app {
+ margin-top: 1.5em;
+ }
+ h2 {
+ margin-bottom: 0.25em;
+ }
+ p {
+ margin-top: 0.25em;
+ }
+ }
+
+ h2.intro {
+ font-weight: normal;
+ }
+ p {
+ line-height: 1.4;
+ }
+ li {
+ margin: 0.3em 0;
+ }
+ h2 {
+ &.light {
+ font-weight: normal;
+ }
+ a {
+ .transition-duration(0.2s);
+ -moz-transition-property: color;
+ -webkit-transition-property: color;
+ -o-transition-property: color;
+ transition-property: color;
+
+ &:link, &:visited, &:hover {
+ color: @subheaders;
+ }
+ &:hover {
+ color: lighten(@subheaders, 10%);
+ text-decoration: none;
+ }
+ }
+ }
+}
+.content-container {
+ &#pricing {
+ button {
+ cursor: pointer;
+ color: white;
+ margin-top: 1em;
+ margin-bottom: 1em;
+ padding-left: 1.5em;
+ padding-right: 1.5em;
+ border: 0;
+ background: @primary;
+ .rounded(.25em);
+ .transition(0.2s);
+
+ &:hover {
+ background-color: lighten(@primary, 5%);
+ }
+ &.unselected {
+ cursor: pointer;
+ }
+ }
+ h2 span {
+ font-weight: normal;
+ }
+ .half {
+ margin: 0 0 1em 0;
+ text-align: center;
+ }
+ }
+ div.features {
+ margin-top: 1.5em;
+ text-align: center;
+ font-size: 0.86em;
+ ul {
+ text-align: left;
+ max-width: 26em;
+ margin-left: auto !important;
+ margin-right: auto !important;
+ li.soon, span.soon {
+ color: lighten(#111, 40%);
+ }
+ }
+ }
+ div.blurbs {
+ >h2 {
+ text-align: center;
+ color: #333;
+ font-weight: normal;
+ }
+ p.price {
+ font-size: 1.2em;
+ margin-bottom: 0;
+ color: #333;
+ margin-top: 0.5em;
+ &+p {
+ margin-top: 0;
+ font-size: 0.8em;
+ }
+ }
+ p.text-cta {
+ font-size: 1em;
+ }
+ }
+}
+footer div.blurbs {
+ display: flex;
+ flex-flow: row;
+ flex-wrap: wrap;
+}
+div.blurbs {
+ .half, .third, .fourth {
+ font-size: 0.86em;
+ h3 {
+ font-weight: normal;
+ }
+ p, ul {
+ color: #595959;
+ }
+ hr {
+ margin: 1em 0;
+ }
+ }
+ .half {
+ padding: 0 1em 0 0;
+ width: ~"calc(50% - 1em)";
+ &+.half {
+ padding: 0 0 0 1em;
+ }
+ }
+ .third {
+ padding: 0;
+ width: ~"calc(33% - 1em)";
+ &+.third {
+ padding: 0 0 0 1em;
+ }
+ }
+ .fourth {
+ flex: 1 1 25%;
+ -webkit-flex: 1 1 25%;
+ h3 {
+ margin-bottom: 0.5em;
+ }
+ ul {
+ margin-top: 0.5em;
+ }
+ }
+}
+.contain-me {
+ text-align: left;
+ margin: 0 auto 4em;
+ max-width: 50em;
+ h2 + p, h2 + p + p, p.describe-me {
+ margin-left: 1.5em;
+ margin-right: 1.5em;
+ color: #333;
+ }
+}
+footer.contain-me {
+ font-size: 1.1em;
+}
+#official-writing, #wrapper {
+ h2, h3, h4 {
+ color: @subheaders;
+ }
+ ul {
+ &.collections {
+ margin-left: 0;
+ li {
+ &.collection {
+ a.title {
+ &:link, &:visited {
+ color: @headerTextColor;
+ }
+ }
+ }
+ a.create {
+ color: #444;
+ }
+ }
+ & + p {
+ margin-top: 2em;
+ margin-left: 1em;
+ }
+ }
+ }
+}
+
+#official-writing, #wrapper {
+ h2 {
+ &.major {
+ color: #222;
+ }
+ &.bugfix {
+ color: #666;
+ }
+
+ +.android-version {
+ a {
+ color: #999;
+ &:hover {
+ text-decoration: underline;
+ }
+ }
+ }
+ }
+}
+
+li {
+ line-height: 1.4;
+
+ .item-desc, .prog-lang {
+ font-size: 0.6em;
+ font-family: 'Open Sans', sans-serif;
+ font-weight: bold;
+ margin-left: 0.5em;
+ margin-right: 0.5em;
+ text-transform: uppercase;
+ color: #999;
+ }
+}
+
+.success {
+ color: darken(@proSelectedCol, 20%);
+}
+
+.alert {
+ padding: 1em;
+ margin-bottom: 1.25em;
+ border: 1px solid transparent;
+ .rounded(.25em);
+ &.info {
+ color: #31708f;
+ background-color: #d9edf7;
+ border-color: #bce8f1;
+ }
+ &.success {
+ color: #3c763d;
+ background-color: #dff0d8;
+ border-color: #d6e9c6;
+ }
+
+ p {
+ margin: 0;
+ &+p {
+ margin-top: 0.5em;
+ }
+ }
+ p.dismiss {
+ font-family: @sansFont;
+ text-align: right;
+ font-size: 0.86em;
+ text-transform: uppercase;
+ }
+}
+
+ul.errors {
+ padding: 0;
+ text-indent: 0;
+ li.urgent {
+ list-style: none;
+ font-style: italic;
+ text-align: center;
+ color: @errUrgentCol;
+ a:link, a:visited {
+ color: purple;
+ }
+ }
+ li.info {
+ list-style: none;
+ font-size: 1.1em;
+ text-align: center;
+ }
+}
+
+body#pad #target a.upgrade-prompt {
+ padding-left: 1em;
+ padding-right: 1em;
+ text-align: center;
+ font-style: italic;
+ color: @primary;
+}
+
+body#pad-sub #posts, .atoms {
+ margin-top: 1.5em;
+
+ h3 {
+ margin-bottom: 0.25em;
+ &+ h4 {
+ margin-top: 0.25em;
+ margin-bottom: 0.5em;
+ &+ p {
+ margin-top: 0.5em;
+ }
+ }
+ .electron {
+ font-weight: normal;
+ margin-left: 0.5em;
+ }
+ }
+ h3, h4 {
+ a {
+ .transition-duration(0.2s);
+ -moz-transition-property: color;
+ -webkit-transition-property: color;
+ -o-transition-property: color;
+ transition-property: color;
+ }
+ }
+ h4 {
+ font-size: 0.9em;
+ font-weight: normal;
+ }
+ date, .electron {
+ margin-right: 0.5em;
+ }
+ .action {
+ font-size: 1em;
+ }
+ #more-posts p {
+ text-align: center;
+ font-size: 1.1em;
+ }
+ p {
+ font-size: 0.86em;
+ }
+ .error {
+ display: inline-block;
+ font-size: 0.8em;
+ font-style: italic;
+ color: @errUrgentCol;
+
+ strong {
+ font-style: normal;
+ }
+ }
+ .error + nav {
+ display: inline-block;
+ font-size: 0.8em;
+ margin-left: 1em;
+
+ a + a {
+ margin-left: 0.75em;
+ }
+ }
+}
+
+h2 {
+ a, time {
+ &+.action {
+ margin-left: 0.5em;
+ }
+ }
+}
+.action {
+ font-size: 0.7em;
+ font-weight: normal;
+ font-family: @serifFont;
+
+ &+ .action {
+ margin-left: 0.5em;
+ }
+ &.new-post {
+ font-weight: bold;
+ }
+}
+article.moved {
+ p {
+ font-size: 1.2em;
+ color: #999;
+ }
+}
+span.as {
+ .opacity(0.2);
+ font-weight: normal;
+}
+span.ras {
+ .opacity(0.6);
+ font-weight: normal;
+}
+
+header {
+ nav {
+ .username {
+ font-size: 2em;
+ font-weight: normal;
+ color: #555;
+ }
+ &#user-nav {
+ margin-left: 0;
+ & > a, .tabs > a {
+ &.selected {
+ cursor: default;
+ font-weight: bold;
+ &:hover {
+ text-decoration: none;
+ }
+ }
+ & + a {
+ margin-left: 2em;
+ }
+ }
+ a {
+ font-size: 1.2em;
+ font-family: @sansFont;
+ span {
+ font-size: 0.7em;
+ color: #999;
+ text-transform: uppercase;
+ margin-left: 0.5em;
+ margin-right: 0.5em;
+ &.pro {
+ color: @proSelectedCol;
+ }
+ }
+ }
+ nav > ul > li:first-child {
+ &> a {
+ display: inline-block;
+ }
+ img {
+ position: relative;
+ top: -0.5em;
+ right: 0.3em;
+ }
+ }
+ ul ul {
+ font-size: 0.8em;
+ a {
+ padding-top: 0.25em;
+ padding-bottom: 0.25em;
+ }
+ }
+ li {
+ line-height: 1.5;
+ }
+ }
+ &.tabs {
+ margin: 0;
+ }
+ }
+ .dash-nav {
+ font-weight: bold;
+ }
+}
+
+li#create-collection {
+ display: none;
+ h4 {
+ margin-top: 0px;
+ margin-bottom: 0px;
+ }
+ input[type=submit] {
+ margin-left: 0.5em;
+ }
+}
+
+#collection-options {
+ .option {
+ textarea {
+ font-size: 0.86em;
+ font-family: @monoFont;
+ }
+ .section > p.explain {
+ font-size: 0.8em;
+ }
+ }
+}
+
+.img-placeholder {
+ text-align: center;
+ img {
+ max-width: 100%;
+ }
+}
+
+dl {
+ &.admin-dl-horizontal {
+ dt {
+ font-weight: bolder;
+ width: 360px;
+ }
+ dd {
+ line-height: 1.5;
+ }
+ }
+}
+dt {
+ float: left;
+ clear: left;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+form {
+ dt, dd {
+ padding: 0.5rem 0;
+ }
+ dt {
+ line-height: 1.8;
+ }
+ dd {
+ font-size: 0.86em;
+ line-height: 2;
+ }
+}
+div.row {
+ display: flex;
+ align-items: center;
+ > div {
+ flex: 1;
+ }
+}
+
+@media all and (max-width: 450px) {
+ body#post {
+ header {
+ nav {
+ .xtra-feature {
+ display: none;
+ }
+ }
+ }
+ }
+}
+@media all and (min-width: 1280px) {
+ body#promo {
+ div.heading {
+ margin: 10em 0;
+ }
+ }
+}
+
+@media all and (min-width: 1600px) {
+ body#promo {
+ div.heading {
+ margin: 14em 0;
+ }
+ }
+}
+
+@media all and (max-width: 900px) {
+ .half.big {
+ padding: 0 !important;
+ width: 100% !important;
+ }
+ .third {
+ padding: 0 !important;
+ float: none;
+ width: 100% !important;
+ p.introduction {
+ font-size: 0.86em;
+ }
+ }
+ div.blurbs {
+ .fourth {
+ flex: 1 1 15em;
+ -webkit-flex: 1 1 15em;
+ }
+ }
+ .blurbs .third, .blurbs .half {
+ p, ul {
+ text-align: left;
+ }
+ }
+ .half-col, .big {
+ float: none;
+ text-align: center;
+
+ &+.half-col, &+.big {
+ margin-top: 4em !important;
+ margin-left: 0;
+ }
+ }
+ #beta, .content-container {
+ font-size: 1.15em;
+ }
+}
+
+@media all and (max-width: 600px) {
+ div.row {
+ flex-direction: column;
+ }
+ .half {
+ padding: 0 !important;
+ width: 100% !important;
+ }
+ .third {
+ width: 100% !important;
+ float: none;
+ }
+ body#promo {
+ div.heading {
+ margin: 6em 0;
+ }
+ h2 {
+ font-size: 1.6em;
+ }
+ .half-col a + a {
+ margin-left: 1em;
+ }
+ .half-col a.channel {
+ margin-left: auto !important;
+ margin-right: auto !important;
+ }
+ }
+ ul.add-integrations {
+ li {
+ display: list-item;
+ &+ li {
+ margin-left: 0;
+ }
+ }
+ }
+}
+
+@media all and (max-height: 500px) {
+ body#promo {
+ div.heading {
+ margin: 5em 0;
+ }
+ }
+}
+
+@media all and (max-height: 400px) {
+ body#promo {
+ div.heading {
+ margin: 0em 0;
+ }
+ }
+}
+
+/* Smartphones (portrait and landscape) ----------- */
+@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
+ header {
+ .opacity(1);
+ }
+}
+
+/* Smartphones (portrait) ----------- */
+@media only screen and (max-width : 320px) {
+ .content-container#pricing {
+ .half {
+ float: none;
+ width: 100%;
+ }
+ }
+ header {
+ .opacity(1);
+ }
+}
+
+/* iPads (portrait and landscape) ----------- */
+@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
+ header {
+ .opacity(1);
+ }
+}
+
+@media (pointer: coarse) {
+ body footer nav a:not(.pubd) {
+ padding: 0.8em 1em;
+ margin-left: 0;
+ margin-top: 0;
+ }
+}
+
+@media print {
+ h1 {
+ page-break-before: always;
+ }
+
+ h1, h2, h3, h4, h5, h6 {
+ page-break-after: avoid;
+ }
+
+ table, figure {
+ page-break-inside: avoid;
+ }
+
+ header, footer {
+ display: none;
+ }
+ article#post-body {
+ margin-top: 2em;
+ margin-left: 0;
+ margin-right: 0;
+ }
+ hr {
+ border: 1px solid #ccc;
+ }
+}
+
+.code-block {
+ padding: 0;
+ max-width: 100%;
+ margin: 0;
+ background: #f8f8f8;
+ border: 1px solid #ccc;
+ padding: 0.375em 0.625em;
+ font-size: 0.86em;
+ .rounded(.25em);
+}
+pre.code-block {
+ overflow-x: auto;
+}
diff --git a/less/effects.less b/less/effects.less
new file mode 100644
index 0000000..102e997
--- /dev/null
+++ b/less/effects.less
@@ -0,0 +1,39 @@
+.effect {
+ -moz-animation-name: fadeIn;
+ -webkit-animation-name: fadeIn;
+ -ms-animation-name: fadeIn;
+ animation-name: fadeIn;
+ -moz-animation-duration: .4s;
+ -webkit-animation-duration: .4s;
+ -ms-animation-duration: .4s;
+ animation-duration: .4s;
+ -moz-animation-timing-function: ease-in-out;
+ -webkit-animation-timing-function: ease-in-out;
+ -ms-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out;
+ -moz-animation-fill-mode: forwards;
+ -webkit-animation-fill-mode: forwards;
+ -ms-animation-fill-mode: forwards;
+ animation-fill-mode: forwards;
+}
+
+.effect.fade-out {
+ -moz-animation-name: fadeOut;
+ -webkit-animation-name: fadeOut;
+ -ms-animation-name: fadeOut;
+ animation-name: fadeOut;
+}
+.del-undo {
+ display: none;
+}
+
+
+@-moz-keyframes fadeIn { 0% { opacity: 0; position: static; } 100% { opacity: 1; }}
+@-webkit-keyframes fadeIn { 0% { opacity: 0; position: static; } 100% { opacity: 1; }}
+@-ms-keyframes fadeIn { 0% { opacity: 0; position: static; } 100% { opacity: 1; }}
+@-keyframes fadeIn { 0% { opacity: 0; position: static; } 100% { opacity: 1; }}
+
+@-moz-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; position: absolute; top: -1000px; left: -1000px; }}
+@-webkit-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; position: absolute; top: -1000px; left: -1000px; }}
+@-ms-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; position: absolute; top: -1000px; left: -1000px; }}
+@-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; position: absolute; top: -1000px; left: -1000px; }}
diff --git a/less/fonts.less b/less/fonts.less
new file mode 100644
index 0000000..7ccc71c
--- /dev/null
+++ b/less/fonts.less
@@ -0,0 +1,64 @@
+/* open-sans-regular - latin */
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 400;
+ src: url('/fonts/open-sans-v13-latin-regular.eot'); /* IE9 Compat Modes */
+ src: local('Open Sans'), local('OpenSans'),
+ url('/fonts/open-sans-v13-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('/fonts/open-sans-v13-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
+ url('/fonts/open-sans-v13-latin-regular.woff') format('woff'), /* Modern Browsers */
+ url('/fonts/open-sans-v13-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('/fonts/open-sans-v13-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
+}
+/* open-sans-700 - latin */
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 700;
+ src: url('/fonts/open-sans-v13-latin-700.eot'); /* IE9 Compat Modes */
+ src: local('Open Sans Bold'), local('OpenSans-Bold'),
+ url('/fonts/open-sans-v13-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('/fonts/open-sans-v13-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
+ url('/fonts/open-sans-v13-latin-700.woff') format('woff'), /* Modern Browsers */
+ url('/fonts/open-sans-v13-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('/fonts/open-sans-v13-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
+}
+/* lora-regular - latin */
+@font-face {
+ font-family: 'Lora';
+ font-style: normal;
+ font-weight: 400;
+ src: url('/fonts/lora-v9-latin-regular.eot'); /* IE9 Compat Modes */
+ src: local('Lora'), local('Lora-Regular'),
+ url('/fonts/lora-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('/fonts/lora-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
+ url('/fonts/lora-v9-latin-regular.woff') format('woff'), /* Modern Browsers */
+ url('/fonts/lora-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('/fonts/lora-v9-latin-regular.svg#Lora') format('svg'); /* Legacy iOS */
+}
+/* lora-700 - latin */
+@font-face {
+ font-family: 'Lora';
+ font-style: normal;
+ font-weight: 700;
+ src: url('/fonts/lora-v9-latin-700.eot'); /* IE9 Compat Modes */
+ src: local('Lora Bold'), local('Lora-Bold'),
+ url('/fonts/lora-v9-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('/fonts/lora-v9-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
+ url('/fonts/lora-v9-latin-700.woff') format('woff'), /* Modern Browsers */
+ url('/fonts/lora-v9-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('/fonts/lora-v9-latin-700.svg#Lora') format('svg'); /* Legacy iOS */
+}
+@font-face {
+ font-family: 'Lora';
+ font-style: italic;
+ font-weight: 400;
+ src: url('/fonts/lora-v10-latin_latin-ext-italic.eot'); /* IE9 Compat Modes */
+ src: local('Lora Italic'), local('Lora-Italic'),
+ url('/fonts/lora-v10-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('/fonts/lora-v10-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
+ url('/fonts/lora-v10-latin-italic.woff') format('woff'), /* Modern Browsers */
+ url('/fonts/lora-v10-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('/fonts/lora-v10-latin-italic.svg#Lora') format('svg'); /* Legacy iOS */
+}
diff --git a/less/icons.less b/less/icons.less
new file mode 100644
index 0000000..2be5064
--- /dev/null
+++ b/less/icons.less
@@ -0,0 +1,38 @@
+@font-face {
+ font-family: 'Material Icons';
+ font-style: normal;
+ font-weight: 400;
+ src: url(MaterialIcons-Regular.eot); /* For IE6-8 */
+ src: local('Material Icons'),
+ local('MaterialIcons-Regular'),
+ url(/fonts/MaterialIcons-Regular.woff2) format('woff2'),
+ url(/fonts/MaterialIcons-Regular.woff) format('woff'),
+ url(/fonts/MaterialIcons-Regular.ttf) format('truetype');
+}
+
+.material-icons {
+ font-family: 'Material Icons';
+ font-weight: normal;
+ font-style: normal;
+ font-size: 24px; /* Preferred icon size */
+ display: inline-block;
+ width: 1em;
+ height: 1em;
+ line-height: 1;
+ text-transform: none;
+ letter-spacing: normal;
+ word-wrap: normal;
+ white-space: nowrap;
+ direction: ltr;
+
+ /* Support for all WebKit browsers. */
+ -webkit-font-smoothing: antialiased;
+ /* Support for Safari and Chrome. */
+ text-rendering: optimizeLegibility;
+
+ /* Support for Firefox. */
+ -moz-osx-font-smoothing: grayscale;
+
+ /* Support for IE. */
+ font-feature-settings: 'liga';
+}
diff --git a/less/install-less.sh b/less/install-less.sh
new file mode 100755
index 0000000..fc86ad2
--- /dev/null
+++ b/less/install-less.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+# Install Less via npm
+if [ ! -e "$(which lessc)" ]; then
+ sudo npm install -g less
+ sudo npm install -g less-plugin-clean-css
+else
+ echo LESS $(npm view less version 2>&1 | grep -v WARN) is installed
+fi
diff --git a/less/lib/elements.less b/less/lib/elements.less
new file mode 100644
index 0000000..9e45973
--- /dev/null
+++ b/less/lib/elements.less
@@ -0,0 +1,156 @@
+/*---------------------------------------------------
+ LESS Elements 0.9
+ ---------------------------------------------------
+ A set of useful LESS mixins
+ More info at: http://lesselements.com
+ ---------------------------------------------------*/
+
+.gradient(@color: #F5F5F5, @start: #EEE, @stop: #FFF) {
+ background: @color;
+ background: -webkit-gradient(linear,
+ left bottom,
+ left top,
+ color-stop(0, @start),
+ color-stop(1, @stop));
+ background: -ms-linear-gradient(bottom,
+ @start,
+ @stop);
+ background: -moz-linear-gradient(center bottom,
+ @start 0%,
+ @stop 100%);
+ background: -o-linear-gradient(@stop,
+ @start);
+ filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@stop,@start));
+}
+.bw-gradient(@color: #F5F5F5, @start: 0, @stop: 255) {
+ background: @color;
+ background: -webkit-gradient(linear,
+ left bottom,
+ left top,
+ color-stop(0, rgb(@start,@start,@start)),
+ color-stop(1, rgb(@stop,@stop,@stop)));
+ background: -ms-linear-gradient(bottom,
+ rgb(@start,@start,@start) 0%,
+ rgb(@stop,@stop,@stop) 100%);
+ background: -moz-linear-gradient(center bottom,
+ rgb(@start,@start,@start) 0%,
+ rgb(@stop,@stop,@stop) 100%);
+ background: -o-linear-gradient(rgb(@stop,@stop,@stop),
+ rgb(@start,@start,@start));
+ filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",rgb(@stop,@stop,@stop),rgb(@start,@start,@start)));
+}
+.bordered(@top-color: #EEE, @right-color: #EEE, @bottom-color: #EEE, @left-color: #EEE) {
+ border-top: solid 1px @top-color;
+ border-left: solid 1px @left-color;
+ border-right: solid 1px @right-color;
+ border-bottom: solid 1px @bottom-color;
+}
+.drop-shadow(@x-axis: 0, @y-axis: 1px, @blur: 2px, @alpha: 0.1) {
+ -webkit-box-shadow: @x-axis @y-axis @blur rgba(0, 0, 0, @alpha);
+ -moz-box-shadow: @x-axis @y-axis @blur rgba(0, 0, 0, @alpha);
+ box-shadow: @x-axis @y-axis @blur rgba(0, 0, 0, @alpha);
+}
+.rounded(@radius: 2px) {
+ -webkit-border-radius: @radius;
+ -moz-border-radius: @radius;
+ border-radius: @radius;
+}
+.border-radius(@topright: 0, @bottomright: 0, @bottomleft: 0, @topleft: 0) {
+ -webkit-border-top-right-radius: @topright;
+ -webkit-border-bottom-right-radius: @bottomright;
+ -webkit-border-bottom-left-radius: @bottomleft;
+ -webkit-border-top-left-radius: @topleft;
+ -moz-border-radius-topright: @topright;
+ -moz-border-radius-bottomright: @bottomright;
+ -moz-border-radius-bottomleft: @bottomleft;
+ -moz-border-radius-topleft: @topleft;
+ border-top-right-radius: @topright;
+ border-bottom-right-radius: @bottomright;
+ border-bottom-left-radius: @bottomleft;
+ border-top-left-radius: @topleft;
+ .background-clip(padding-box);
+}
+.opacity(@opacity: 0.5) {
+ -moz-opacity: @opacity;
+ -khtml-opacity: @opacity;
+ -webkit-opacity: @opacity;
+ opacity: @opacity;
+ @opperc: @opacity * 100;
+ -ms-filter: ~"progid:DXImageTransform.Microsoft.Alpha(opacity=@{opperc})";
+ filter: ~"alpha(opacity=@{opperc})";
+}
+.transition-duration(@duration: 0.2s) {
+ -moz-transition-duration: @duration;
+ -webkit-transition-duration: @duration;
+ -o-transition-duration: @duration;
+ transition-duration: @duration;
+}
+.transform(...) {
+ -webkit-transform: @arguments;
+ -moz-transform: @arguments;
+ -o-transform: @arguments;
+ -ms-transform: @arguments;
+ transform: @arguments;
+}
+.rotation(@deg:5deg){
+ .transform(rotate(@deg));
+}
+.scale(@ratio:1.5){
+ .transform(scale(@ratio));
+}
+.transition(@duration:0.2s, @ease:ease-out) {
+ -webkit-transition: all @duration @ease;
+ -moz-transition: all @duration @ease;
+ -o-transition: all @duration @ease;
+ transition: all @duration @ease;
+}
+.inner-shadow(@horizontal:0, @vertical:1px, @blur:2px, @alpha: 0.4) {
+ -webkit-box-shadow: inset @horizontal @vertical @blur rgba(0, 0, 0, @alpha);
+ -moz-box-shadow: inset @horizontal @vertical @blur rgba(0, 0, 0, @alpha);
+ box-shadow: inset @horizontal @vertical @blur rgba(0, 0, 0, @alpha);
+}
+.box-shadow(@arguments) {
+ -webkit-box-shadow: @arguments;
+ -moz-box-shadow: @arguments;
+ box-shadow: @arguments;
+}
+.box-sizing(@sizing: border-box) {
+ -ms-box-sizing: @sizing;
+ -moz-box-sizing: @sizing;
+ -webkit-box-sizing: @sizing;
+ box-sizing: @sizing;
+}
+.user-select(@argument: none) {
+ -webkit-user-select: @argument;
+ -moz-user-select: @argument;
+ -ms-user-select: @argument;
+ user-select: @argument;
+}
+.columns(@colwidth: 250px, @colcount: 0, @colgap: 50px, @columnRuleColor: #EEE, @columnRuleStyle: solid, @columnRuleWidth: 1px) {
+ -moz-column-width: @colwidth;
+ -moz-column-count: @colcount;
+ -moz-column-gap: @colgap;
+ -moz-column-rule-color: @columnRuleColor;
+ -moz-column-rule-style: @columnRuleStyle;
+ -moz-column-rule-width: @columnRuleWidth;
+ -webkit-column-width: @colwidth;
+ -webkit-column-count: @colcount;
+ -webkit-column-gap: @colgap;
+ -webkit-column-rule-color: @columnRuleColor;
+ -webkit-column-rule-style: @columnRuleStyle;
+ -webkit-column-rule-width: @columnRuleWidth;
+ column-width: @colwidth;
+ column-count: @colcount;
+ column-gap: @colgap;
+ column-rule-color: @columnRuleColor;
+ column-rule-style: @columnRuleStyle;
+ column-rule-width: @columnRuleWidth;
+}
+.translate(@x:0, @y:0) {
+ .transform(translate(@x, @y));
+}
+.background-clip(@argument: padding-box) {
+ -moz-background-clip: @argument;
+ -webkit-background-clip: @argument;
+ background-clip: @argument;
+}
\ No newline at end of file
diff --git a/less/lib/material.less b/less/lib/material.less
new file mode 100644
index 0000000..2442d39
--- /dev/null
+++ b/less/lib/material.less
@@ -0,0 +1,19 @@
+/* Rules for sizing the icon. */
+.material-icons {
+ &.md-18 { font-size: 18px; }
+ &.md-24 { font-size: 24px; }
+ &.md-36 { font-size: 36px; }
+ &.md-48 { font-size: 48px; }
+
+ /* Rules for using icons as black on a light background. */
+ &.md-dark {
+ color: rgba(0, 0, 0, 0.54);
+ &.md-inactive { color: rgba(0, 0, 0, 0.26); }
+ }
+
+ /* Rules for using icons as white on a dark background. */
+ &.md-light {
+ color: rgba(255, 255, 255, 1);
+ &.md-inactive { color: rgba(255, 255, 255, 0.3); }
+ }
+}
diff --git a/less/new-core.less b/less/new-core.less
new file mode 100644
index 0000000..7c46203
--- /dev/null
+++ b/less/new-core.less
@@ -0,0 +1,258 @@
+@actionNavColor: #999;
+
+body {
+ margin: 0;
+ padding: 0;
+ font-size: 100%;
+
+ footer {
+ text-align: center;
+ padding: 0 2em;
+
+ nav {
+ margin: 3em 0 4em;
+ color: #444;
+
+ a {
+ text-decoration: none;
+ + a {
+ margin-left: 0.8em;
+ }
+ &:link, &:visited {
+ color: #999;
+ }
+ &:hover {
+ color: #666;
+ }
+ &.home {
+ color: #333;
+ font-weight: bold;
+ &:hover {
+ color: #000;
+ }
+ }
+ }
+ }
+ }
+}
+
+header {
+ margin: 1em;
+
+ h1 {
+ display: inline;
+ }
+ nav {
+ display: inline;
+ margin: 0 1em;
+ line-height: 2.4em;
+ span, a {
+ margin: 0 0 0 1em;
+ }
+ a {
+ color: @actionNavColor;
+ &:hover {
+ text-decoration: underline;
+ }
+ }
+ }
+ p {
+ &.description {
+ color: #666;
+ font-size: 1.1em;
+ margin-top: 0.5em;
+ line-height: 1.5;
+ }
+ &.meta-note {
+ color: #333;
+ font-style: italic;
+ margin-top: 2em;
+ span {
+ text-transform: uppercase;
+ font-variant: small-caps;
+ font-size: 0.9em;
+ color: #666;
+ font-style: normal;
+ }
+ }
+ }
+}
+
+hr {
+ border: 0;
+ height: 1px;
+ background: #ccc;
+ max-width: 40em;
+ margin: 4em auto;
+ text-align: center;
+}
+textarea, textarea:focus {
+ border: 0;
+}
+textarea, textarea:focus, input {
+ outline: 0;
+}
+textarea {
+ width: 100%;
+ resize: none;
+ &#editor {
+ position: fixed;
+ top: 3em;
+ right: 0;
+ bottom: 2em;
+ left: 0;
+ padding: 2em 2em 0 2em;
+ font-size: 2em;
+ box-sizing: border-box;
+ }
+}
+
+#official-writing, #wrapper {
+ margin: 1em 2em;
+
+ ul {
+ margin: 0;
+ padding: 0 0 0 1em;
+ line-height: 1.4;
+
+ &.collections, &.posts, &.integrations {
+ list-style: none;
+ margin-left: 1em;
+ li + li {
+ margin-top: 0.4em;
+ }
+ }
+
+ &.collections li {
+ &.collection {
+ a.title {
+ font-size: 1.3em;
+ font-weight: bold;
+ }
+ }
+ }
+ }
+}
+
+.clearfix {
+ overflow: auto;
+}
+.half-col, .half, .third {
+ float: left;
+ + .half-col {
+ margin-left: 4em;
+ }
+}
+.half {
+ width: 50%;
+}
+.third {
+ width: 33%;
+}
+
+code, textarea#embed {
+ font-family: monospace, monospace;
+ font-size: 1em;
+}
+
+#wrapper {
+ max-width: 50em;
+}
+#official-writing, #wrapper {
+ h2 {
+ &.minor {
+ font-size: 1.3em;
+ }
+ &.bugfix {
+ font-size: 1.15em;
+ }
+
+ +.android-version {
+ margin-top: 0;
+ font-size: 1.1em;
+ a {
+ &:hover {
+ text-decoration: underline;
+ }
+ }
+ }
+ }
+}
+
+#beta, .content-container {
+ max-width: 50em;
+ margin: 0 auto 3em;
+ font-size: 1.2em;
+
+ &.tight {
+ max-width: 30em;
+ }
+ &.snug {
+ max-width: 40em;
+ }
+ .app {
+ + .app {
+ margin-top: 1.5em;
+ }
+ h2 {
+ margin-bottom: 0.25em;
+ }
+ p {
+ margin-top: 0.25em;
+ }
+ }
+
+ h2.intro {
+ font-weight: normal;
+ }
+ p {
+ line-height: 1.4;
+ }
+ li {
+ margin: 0.3em 0;
+ }
+ h2 {
+ &.light {
+ font-weight: normal;
+ }
+ }
+}
+
+#collection-options {
+ #title, #description {
+ width: 100%;
+ box-sizing: border-box;
+ }
+ .option {
+ h2 {
+ margin-top: 2em;
+ margin-bottom: 0.5em;
+ }
+ label {
+ &.option-text.disabled {
+ color: #999;
+
+ #domain-alias {
+ border-color: #ccc;
+ }
+ &+p {
+ color: #555;
+ }
+ }
+ }
+ label+p, p.describe {
+ font-size: 0.8em;
+ margin-top: 0.4em;
+ margin-left: 1.8em;
+ }
+ input.low-profile {
+ padding: 0.25rem 0.5rem;
+ margin-left: 0.25rem;
+ font-size: 0.8em;
+ }
+ .fedi-handle {
+ margin-left: 0.5em;
+ .transition-duration(0.25s);
+ }
+ }
+}
diff --git a/less/pad-theme.less b/less/pad-theme.less
new file mode 100644
index 0000000..af1f95c
--- /dev/null
+++ b/less/pad-theme.less
@@ -0,0 +1,217 @@
+@lightBG: #ffffff;
+@lightTextColor: #000;
+@lightLinkColor: #444;
+@lightNavBG: #fff;
+@lightNavHoverBG: #f6f6f6;
+@lightNavBorder: #ccc;
+
+@darkBG: #222222;
+@darkTextColor: #ffffff;
+@darkLinkColor: #ccc;
+@darkNavBG: #393939;
+@darkNavHoverBG: #555;
+@darkNavBorder: #333;
+
+.pad-theme-transition {
+ -moz-transition-property: background-color, color;
+ -webkit-transition-property: background-color, color;
+ -o-transition-property: background-color, color;
+ transition-property: background-color, color;
+ .transition-duration(0.25s);
+}
+
+body#pad-sub #posts, .atoms {
+ h3 {
+ a {
+ color: @lightTextColor;
+ &:hover {
+ color: darken(@lightTextColor, 10%);
+ }
+ }
+ }
+ h3, h4 {
+ a {
+ color: @lightTextColor;
+ &:hover {
+ color: darken(@lightTextColor, 10%);
+ }
+ }
+ }
+ date, .electron {
+ color: #999;
+ }
+ a.action, a {
+ color: @lightLinkColor;
+ &:hover {
+ color: darken(@lightLinkColor, 10%);
+ }
+ }
+}
+
+body#pad, body#pad-sub {
+ .pad-theme-transition;
+
+ &.light {
+ background-color: @lightBG;
+ color: @lightTextColor;
+ #tools {
+ .pad-theme-transition;
+ background-color: transparent;
+ h1 {
+ a {
+ color: @headerTextColor;
+ }
+ }
+ #belt {
+ a {
+ color: #000;
+ }
+ }
+ .tool {
+ &#status {
+ color: #999;
+ }
+ }
+ .hidden {
+ &#wc {
+ color: #777;
+ }
+ }
+ a:hover, a:active {
+ background-color: transparent;
+ color: @lightLinkColor;
+ }
+ }
+ .modal {
+ border-color: @lightNavBorder;
+ background: @lightNavBG;
+ }
+ }
+
+ &.dark {
+ background-color: @darkBG;
+ color: @darkTextColor;
+ #tools {
+ .pad-theme-transition;
+ background-color: #262626;
+ h1 {
+ a {
+ color: @darkTextColor;
+ }
+ }
+ #belt {
+ a {
+ color: white;
+ }
+ }
+ .tool {
+ &#status {
+ color: #666;
+ }
+ }
+ .hidden {
+ &#wc {
+ color: #ececec;
+ }
+ }
+ a:hover, a:active {
+ background-color: transparent;
+ color: @darkLinkColor;
+ }
+ nav {
+ &> ul > li a {
+ color: @darkTextColor;
+ }
+ ul {
+ ul {
+ background: @darkNavBG;
+ border-color: @darkNavBorder;
+ }
+ li {
+ &.current-user {
+ color: #fff;
+ }
+ &.selected {
+ a {
+ color: #777;
+ }
+ }
+ }
+ li:hover {
+ background: @darkNavHoverBG;
+ }
+ }
+ }
+ }
+ #posts {
+ h3 {
+ a {
+ color: @darkTextColor;
+ &:hover {
+ color: darken(@darkTextColor, 10%);
+ }
+ }
+ }
+ h3, h4 {
+ a {
+ color: @darkTextColor;
+ &:hover {
+ color: darken(@darkTextColor, 10%);
+ }
+ }
+ }
+ a.action, a {
+ color: @darkLinkColor;
+ &:hover {
+ color: darken(@darkLinkColor, 10%);
+ }
+ }
+ }
+ .modal {
+ border-color: @darkNavBorder;
+ background: @darkNavBG;
+ input {
+ color: #fff;
+ }
+
+ .form-hint {
+ color: #ccc;
+ }
+
+ a:link, a:visited {
+ color: lighten(@primary, 8%);
+ }
+ }
+ }
+}
+
+body#pad {
+ .pad-theme-transition;
+
+ textarea {
+ .pad-theme-transition;
+ }
+
+ &.dark {
+ textarea {
+ background-color: @darkBG;
+ color: @darkTextColor;
+ }
+ }
+ &.light {
+ textarea {
+ background-color: @lightBG;
+ color: @lightTextColor;
+ }
+ }
+}
+
+body {
+ &.dark {
+ nav#top-nav {
+ a {
+ color: @darkLinkColor;
+ }
+ }
+ }
+}
diff --git a/less/pad.less b/less/pad.less
new file mode 100644
index 0000000..d37c6bc
--- /dev/null
+++ b/less/pad.less
@@ -0,0 +1,464 @@
+.dropdown-nav {
+ font-family: @sansFont;
+ line-height: 2em;
+ span {
+ margin: 0;
+ }
+ .material-icons {
+ vertical-align: sub;
+ }
+ >ul>li {
+ line-height: 1.8;
+ bottom: -0.35em;
+ }
+ ul {
+ display: inline;
+ list-style:none;
+ position:relative;
+ margin:0;
+ padding:0;
+
+ ul {
+ display:none;
+ position:absolute;
+ top:100%;
+ left:0;
+ background:#fff;
+ padding:0;
+ max-height: 30em;
+ overflow-y: auto;
+ overflow-x: hidden;
+ border: 1px solid @lightNavBorder;
+ .rounded(.25em);
+ li {
+ line-height: 1.8;
+ display: block;
+ min-width: 9em;
+ max-width: 16em;
+ }
+ }
+ a {
+ display: block;
+ color:#333;
+ text-decoration:none;
+ padding: 0 0.5em;
+ margin: 0;
+ overflow: hidden;
+ white-space: -moz-nowrap; /* Mozilla, since 1999 */
+ white-space: -nowrap; /* Opera 4-6 */
+ white-space: -o-nowrap; /* Opera 7 */
+ white-space: nowrap;
+ &:hover {
+ text-decoration: none;
+ }
+ }
+ li {
+ display: inline-block;
+ position: relative;
+ margin: 0;
+ padding: 0;
+ &:hover {
+ background: @lightNavHoverBG;
+ }
+ &:hover > ul {
+ display: block;
+ }
+ &.selected {
+ a, a:hover {
+ color: #888;
+ }
+ }
+ &.current-user, &.menu-heading {
+ font-weight: bold;
+ padding: 0 .5em;
+ color: #000;
+ &:hover {
+ background-color: transparent !important;
+ }
+ }
+ &.menu-heading {
+ color: #666;
+ font-weight: normal;
+ font-size: 0.8em;
+ padding: 0.2em 0.8em;
+ cursor: default;
+ text-align: left;
+ }
+ hr {
+ margin: 0.5em 0.75em;
+ }
+ }
+ }
+}
+nav#manage {
+ .dropdown-nav;
+ ul ul li {
+ min-width: 11em;
+ img.ic-18dp {
+ margin-top: -2px;
+ }
+ }
+}
+
+img.ic-18dp {
+ width: 18px;
+ height: 18px;
+ vertical-align: middle;
+}
+
+img.ic-24dp {
+ width: 24px;
+ height: 24px;
+ vertical-align: middle;
+}
+
+body#pad, body#pad-sub {
+ margin: 0;
+ padding: 0;
+ font-size: 100%;
+ font-family: Lora, serif;
+
+ header {
+ height: 1.6em;
+ }
+
+ #tools {
+ margin: 0 0 1em;
+ padding: 1em 2em;
+ -moz-transition-property: opacity;
+ -webkit-transition-property: opacity;
+ -o-transition-property: opacity;
+ transition-property: opacity;
+ .transition-duration(0.4s);
+
+ &:hover {
+ .opacity(1);
+
+ .hidden {
+ .opacity(1);
+ }
+ }
+
+ .hidden {
+ &#wc {
+ position: relative;
+ top: -0.15em;
+ font-size: 0.9em;
+ margin-left: 0.75em;
+ }
+ }
+
+ h1 {
+ display: inline-block;
+ font-family: Lora, serif;
+ margin: 0;
+ font-size: 1.5em;
+
+ a {
+ color: white;
+ }
+ }
+
+ nav {
+ .dropdown-nav;
+ }
+
+ #clip {
+ display: inline-block;
+ margin-top: -0.35em;
+ }
+
+ #belt {
+ float: right;
+
+ a {
+ padding: 1em 1.2em;
+ vertical-align: middle;
+ .opacity(.75);
+ .transition-duration(0.2s);
+ -moz-transition-property: opacity;
+ -webkit-transition-property: opacity;
+ -o-transition-property: opacity;
+ transition-property: opacity;
+
+ &:hover {
+ .opacity(1);
+ }
+
+ &.disabled, &.disabled:hover {
+ .opacity(.3);
+ }
+
+ img.ic-24dp {
+ vertical-align: bottom;
+ }
+
+ .material-icons {
+ vertical-align: middle;
+ max-width: 24px;
+ overflow: hidden;
+ display: inline-block;
+ }
+
+ .material-icons, img.ic-24dp {
+ &+ span {
+ margin-left: .4em;
+ height: 24px;
+ vertical-align: bottom;
+ }
+ }
+ }
+ .tool:last-child a {
+ padding-right: 0;
+ }
+ }
+
+ .tool {
+ display: inline-block;
+ margin: 0;
+
+ &#status {
+ &.doing {
+ font-style: italic;
+ }
+ }
+ }
+ }
+}
+
+body#pad-sub {
+ .content-container {
+ p {
+ a:hover {
+ text-decoration: underline;
+ }
+ &.status {
+ text-align: center;
+ font-size: 1.1em;
+ &:first-child {
+ margin-top: 1.5em;
+ }
+ }
+ }
+ }
+}
+
+body#pad {
+ textarea,
+ textarea:focus {
+ border: 0;
+ outline: 0;
+ }
+ textarea {
+ position: fixed !important;
+ top: 3em;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: auto;
+ height: calc(~"100% - 3em - 1px");
+ padding: 1em 2em 2em;
+ font-size: 1.2em;
+ letter-spacing: 0.6px;
+ box-sizing: border-box;
+ resize: none;
+
+ &.classy {
+ font-family: Lora, serif;
+ letter-spacing: 0.7px;
+ }
+ &.mono, &.code {
+ padding-left: 1em;
+ padding-right: 1em;
+ white-space: -moz-pre; /* Mozilla, since 1999 */
+ white-space: -pre; /* Opera 4-6 */
+ white-space: -o-pre; /* Opera 7 */
+ white-space: pre;
+ word-wrap: normal;
+ }
+ &.norm, &.sans, &.wrap {
+ line-height: 1.4;
+ }
+ }
+
+ #tools {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ margin: 0;
+ .opacity(.2);
+
+ .mode-wp {
+ font-family: serif;
+ }
+ .mode-typewriter {
+ font-family: "Courier New", monospace;
+ font-size: 1em;
+ }
+ }
+}
+
+.modal {
+ display: none;
+ position: absolute;
+ z-index: 11;
+ top: 3em;
+ left: 50%;
+ width: 30em;
+ margin-left: -15em;
+ padding: 1.5em 2em;
+ .rounded(.25em);
+ background: @lightNavBG;
+ border: 1px solid @lightNavBorder;
+
+ h2 {
+ margin-top: 0;
+ }
+
+ input[type=text], input[type=email], input[type=password] {
+ background: transparent;
+ border: 0;
+ border-bottom: 1px solid #ccc;
+ -moz-transition-property: opacity;
+ -webkit-transition-property: opacity;
+ -o-transition-property: opacity;
+ transition-property: opacity;
+ .transition-duration(0.2s);
+ .opacity(1);
+
+ &:disabled {
+ .opacity(.4);
+ }
+ }
+
+ .short {
+ text-align: center;
+ }
+
+ .form-hint {
+ font-size: 0.78em;
+ color: #888;
+ }
+}
+
+#overlay {
+ display: none;
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ background: rgba(0, 0, 0, 0.4);
+ z-index: 10;
+}
+
+@media all and (max-height: 500px) {
+ body#pad {
+ textarea {
+ top: 2.25em;
+ padding-top: 0.25em;
+ }
+ #tools {
+ padding-top: 0.5em;
+ padding-bottom: 0.5em;
+ }
+ }
+}
+
+@media all and (min-width: 360px) {
+ body#pad #tools .if-room.room-1, body#pad-sub #tools .tool.if-room.room-1, .if-room.room-1 {
+ display: inline-block;
+ }
+}
+
+@media all and (min-width: 425px) {
+ body#pad #tools .if-room.room-2, body#pad-sub #tools .tool.if-room.room-2, .if-room.room-2 {
+ display: inline-block;
+ }
+}
+
+@media all and (min-width: 510px) {
+ body#pad #tools .if-room.room-3, body#pad-sub #tools .tool.if-room.room-3, .if-room.room-3 {
+ display: inline-block;
+ }
+}
+
+@media all and (max-width: 650px) {
+ body#pad #tools .tool.if-room, body#pad-sub #tools .tool.if-room, .if-room {
+ display: none;
+ }
+}
+
+@media all and (max-width: 600px) {
+ .modal {
+ margin-left: 0;
+ width: auto;
+ left: 0;
+ right: 0;
+ }
+ #user-nav .tabs {
+ display: block;
+ text-align: center;
+ margin: 0.5em 0 -2em;
+ a:first-child {
+ margin-left: 0;
+ }
+ }
+ #target-name {
+ max-width: 98px;
+ display: inline-block;
+ }
+}
+
+@media all and (min-width: 50em) {
+ body#pad {
+ textarea {
+ padding-left: 10%;
+ padding-right: 10%;
+ }
+ }
+}
+@media all and (min-width: 60em) {
+ body#pad {
+ textarea {
+ padding-left: 15%;
+ padding-right: 15%;
+ }
+ }
+}
+@media all and (min-width: 70em) {
+ body#pad {
+ textarea {
+ padding-left: 20%;
+ padding-right: 20%;
+ }
+ }
+}
+@media all and (min-width: 85em) {
+ body#pad {
+ textarea {
+ padding-left: 25%;
+ padding-right: 25%;
+ }
+ }
+}
+@media all and (min-width: 105em) {
+ body#pad {
+ textarea {
+ padding-left: 30%;
+ padding-right: 30%;
+ }
+ }
+}
+@media (pointer: coarse) {
+ body#pad, body#pad-sub {
+ #tools {
+ .opacity(.8);
+ .hidden {
+ .opacity(.8);
+ }
+ }
+ }
+}
diff --git a/less/pages/error.less b/less/pages/error.less
new file mode 100644
index 0000000..8c6552a
--- /dev/null
+++ b/less/pages/error.less
@@ -0,0 +1,21 @@
+.error-page {
+ text-align: center;
+ max-width: 40em;
+ margin: 0 auto;
+ a:link, a:visited {
+ text-decoration: none;
+ }
+ a:hover {
+ text-decoration: underline;
+ }
+
+ p {
+ line-height: 1.5;
+ &.msg {
+ font-size: 1.8em;
+ }
+ &.commentary {
+ font-size: 1.2em;
+ }
+ }
+}
diff --git a/less/post-temp.less b/less/post-temp.less
new file mode 100644
index 0000000..3ec682d
--- /dev/null
+++ b/less/post-temp.less
@@ -0,0 +1,68 @@
+body {
+ &#post, &#subpage {
+ header {
+ margin: 0 auto;
+ padding: 1em 2rem;
+ .opacity(0.4);
+ -moz-transition-property: opacity;
+ -webkit-transition-property: opacity;
+ -o-transition-property: opacity;
+ transition-property: opacity;
+ .transition-duration(.4s);
+ &:hover {
+ .opacity(1);
+ }
+
+ h1 {
+ font-size: 1.6em;
+ }
+ }
+ }
+}
+
+article, pre, .hljs {
+ padding: 0.5em 2rem 1.5em;
+}
+body#post article, pre, .hljs {
+ font-size: 1.2em;
+}
+
+/* Post mixins */
+.article-code() {
+ background-color: #f8f8f8;
+ border: 1px solid #ccc;
+ padding: 0.2em 0.4em;
+ font-size: 0.86em;
+ .rounded(.25em);
+}
+.article-blockquote() {
+ border-left: 4px solid #ddd;
+ padding: 0 1em;
+ margin: 0.5em;
+ color: #777;
+ display: inline-block;
+
+ p {
+ display: block;
+ margin: 0.5em 0;
+ }
+}
+.article-p() {
+ line-height: 1.4em;
+ white-space: pre-wrap; /* CSS 3 */
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
+ white-space: -pre-wrap; /* Opera 4-6 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
+}
+.article-title() {
+ font-size: 1.5em;
+ display: block;
+ margin-top: 0;
+ margin-bottom: 1em;
+}
+
+.hljs {
+ overflow-x: inherit;
+ background: transparent;
+}
diff --git a/static/css/.gitignore b/static/css/.gitignore
new file mode 100644
index 0000000..b3a5267
--- /dev/null
+++ b/static/css/.gitignore
@@ -0,0 +1 @@
+*.css
diff --git a/static/fonts/MaterialIcons-Regular.eot b/static/fonts/MaterialIcons-Regular.eot
new file mode 100644
index 0000000..70508eb
Binary files /dev/null and b/static/fonts/MaterialIcons-Regular.eot differ
diff --git a/static/fonts/MaterialIcons-Regular.svg b/static/fonts/MaterialIcons-Regular.svg
new file mode 100644
index 0000000..a449327
--- /dev/null
+++ b/static/fonts/MaterialIcons-Regular.svg
@@ -0,0 +1,2373 @@
+<?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" >
+<!--
+2016-2-8: Created with FontForge (http://fontforge.org)
+-->
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
+<metadata>
+Created by FontForge 20151118 at Mon Feb 8 11:58:02 2016
+ By shyndman
+Copyright 2015 Google, Inc. All Rights Reserved.
+</metadata>
+<defs>
+<font id="MaterialIcons-Regular" horiz-adv-x="512" >
+ <font-face
+ font-family="Material Icons"
+ font-weight="400"
+ font-stretch="normal"
+ units-per-em="512"
+ panose-1="2 0 5 3 0 0 0 0 0 0"
+ ascent="512"
+ descent="0"
+ bbox="0 0 512 512"
+ underline-thickness="50"
+ underline-position="-100"
+ unicode-range="U+0030-10FFFD"
+ />
+ <missing-glyph />
+ <glyph glyph-name="3d_rotation" unicode="&#x33;d_rotation"
+d="M256 512c134 0 244 -103 255 -234h-32c-7 80 -57 147 -127 180l-29 -28l-81 81zM353 260c0 34.9356 -13.6691 57 -47 57h-20v-123h19c25.6434 0 40.2719 13.9518 46 34c2 7 2 15 2 24v8zM306 341c38.1819 0 60.9327 -19.3318 72 -47c4 -10 5 -22 5 -34v-8
+c0 -26.4057 -7.57104 -45.571 -21 -59c-13.4122 -13.4122 -30.5519 -22 -57 -22h-49v170h50zM207 258c15.3033 -6.12131 28 -18.2465 28 -39c0 -8 -2 -14 -5 -20s-6 -12 -11 -16c-9.37815 -7.50252 -23.5479 -12 -40 -12c-31.0959 0 -54 15.7441 -54 47h27
+c0 -15.4518 11.6022 -25 27 -25c17.8699 0 28 8.53939 28 27c0 18.8434 -12.3951 27 -31 27h-16v22h16c17.3039 0 29 8.03066 29 25c0 16.5246 -8.84017 25 -26 25c-14.4441 0 -25 -8.58131 -25 -23h-28c0 14.8936 7.55163 24.5516 15 32c9.92709 7.94167 20.8987 13 38 13
+c25.6475 0 40.3859 -9.7718 49 -27c3 -6 4 -12 4 -20c0 -18.1878 -12.3353 -29.6677 -25 -36zM160 54l29 28l81 -81l-14 -1c-134 0 -244 104 -255 235h32c8 -80 57 -148 127 -181z" />
+ <glyph glyph-name="ac_unit" unicode="ac_unit"
+d="M469 277v-42h-89l69 -69l-30 -31l-99 100h-43v-43l100 -99l-31 -30l-69 69v-89h-42v89l-69 -69l-31 30l100 99v43h-43l-99 -100l-30 31l69 69h-89v42h89l-69 69l30 31l99 -100h43v43l-100 99l31 30l69 -69v89h42v-89l69 69l31 -30l-100 -99v-43h43l99 100l30 -31l-69 -69
+h89z" />
+ <glyph glyph-name="access_alarm" unicode="access_alarm"
+d="M256 85c83 0 149 67 149 150s-66 149 -149 149s-149 -66 -149 -149s66 -150 149 -150zM256 427c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM267 341v-112l85 -50l-16 -26l-101 60v128h32zM168 440l-98 -82l-27 32l98 82zM469 390
+l-27 -33l-98 83l27 32z" />
+ <glyph glyph-name="access_alarms" unicode="access_alarms"
+d="M256 85c83 0 149 67 149 150s-66 149 -149 149s-149 -66 -149 -149s66 -150 149 -150zM256 427c107 0 192 -85 192 -192s-85 -192 -192 -192s-192 85 -192 192s85 192 192 192zM267 341v-113l85 -51l-17 -26l-100 62v128h32zM169 439l-99 -81l-27 32l98 81zM469 390
+l-27 -32l-99 84l28 32z" />
+ <glyph glyph-name="access_time" unicode="access_time"
+d="M267 363v-112l96 -57l-16 -27l-112 68v128h32zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="accessibility" unicode="accessibility"
+d="M448 320h-128v-277h-43v128h-42v-128h-43v277h-128v43h384v-43zM256 469c23 0 43 -19 43 -42s-20 -43 -43 -43s-43 20 -43 43s20 42 43 42z" />
+ <glyph glyph-name="accessible" unicode="accessible"
+d="M274 128h44c-10 -49 -53 -85 -105 -85c-59 0 -106 47 -106 106c0 52 36 95 85 105v-44c-25 -9 -43 -33 -43 -61c0 -35 29 -64 64 -64c28 0 52 18 61 43zM213 318c0 29.9891 33.3578 56.5098 64 39h1v-1c5 -2 9 -5 13 -9l28 -31c21 -23 53 -39 86 -39v-42
+c-37 0 -78 18 -106 41v-73h64c23 0 42 -20 42 -43v-117h-42v106h-107c-23 0 -43 20 -43 43v126zM213 427c0 24 19 42 43 42s43 -18 43 -42s-19 -43 -43 -43s-43 19 -43 43z" />
+ <glyph glyph-name="account_balance" unicode="account_balance"
+d="M245 491l203 -107v-43h-405v43zM341 299h64v-150h-64v150zM43 43v64h405v-64h-405zM213 299h64v-150h-64v150zM85 299h64v-150h-64v150z" />
+ <glyph glyph-name="account_balance_wallet" unicode="account_balance_wallet"
+d="M341 224c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM256 171v170h213v-170h-213zM448 128v-21c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h298c23 0 43 -20 43 -43v-21h-192c-24 0 -43 -20 -43 -43v-170
+c0 -23 19 -43 43 -43h192z" />
+ <glyph glyph-name="account_box" unicode="account_box"
+d="M128 149v-21h256v21c0 43 -85 66 -128 66s-128 -23 -128 -66zM320 320c0 35 -29 64 -64 64s-64 -29 -64 -64s29 -64 64 -64s64 29 64 64zM64 405c0 23 19 43 43 43h298c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298z" />
+ <glyph glyph-name="account_circle" unicode="account_circle"
+d="M256 102c53 0 100 28 128 69c-1 42 -86 66 -128 66c-43 0 -127 -24 -128 -66c28 -41 75 -69 128 -69zM256 405c-35 0 -64 -29 -64 -64s29 -64 64 -64s64 29 64 64s-29 64 -64 64zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z
+" />
+ <glyph glyph-name="adb" unicode="adb"
+d="M320 320c12 0 21 9 21 21s-9 22 -21 22s-21 -10 -21 -22s9 -21 21 -21zM192 320c12 0 21 9 21 21s-9 22 -21 22s-21 -10 -21 -22s9 -21 21 -21zM344 419c37 -27 61 -71 61 -120v-22h-298v22c0 49 24 93 61 120l-45 45l18 17l49 -49c20 10 42 16 66 16s46 -6 66 -16l49 49
+l18 -17zM107 171v85h298v-85c0 -83 -66 -150 -149 -150s-149 67 -149 150z" />
+ <glyph glyph-name="add" unicode="add"
+d="M405 235h-128v-128h-42v128h-128v42h128v128h42v-128h128v-42z" />
+ <glyph glyph-name="add_a_photo" unicode="add_a_photo"
+d="M209 213c0 38 30 69 68 69s69 -31 69 -69s-31 -68 -69 -68s-68 30 -68 68zM277 107c59 0 107 47 107 106s-48 107 -107 107s-106 -48 -106 -107s47 -106 106 -106zM128 299v64h64v64h149l39 -43h68c23 0 43 -20 43 -43v-256c0 -23 -20 -42 -43 -42h-341
+c-23 0 -43 19 -43 42v214h64zM64 427v64h43v-64h64v-43h-64v-64h-43v64h-64v43h64z" />
+ <glyph glyph-name="add_alarm" unicode="add_alarm"
+d="M277 320v-64h64v-43h-64v-64h-42v64h-64v43h64v64h42zM256 85c83 0 149 67 149 150s-66 149 -149 149s-149 -66 -149 -149s66 -150 149 -150zM256 427c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM469 390l-27 -33l-98 83l27 32z
+M168 440l-98 -82l-27 32l98 82z" />
+ <glyph glyph-name="add_alert" unicode="add_alert"
+d="M341 234v43h-64v64h-42v-64h-64v-43h64v-64h42v64h64zM403 153l45 -45v-23h-384v23l45 45v124c0 69 48 128 113 143v15c0 19 15 34 34 34s34 -15 34 -34v-15c65 -15 113 -74 113 -143v-124zM214 64h84c0 -23 -19 -43 -42 -43s-42 20 -42 43z" />
+ <glyph glyph-name="add_box" unicode="add_box"
+d="M363 235v42h-86v86h-42v-86h-86v-42h86v-86h42v86h86zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h298z" />
+ <glyph glyph-name="add_circle" unicode="add_circle"
+d="M363 235v42h-86v86h-42v-86h-86v-42h86v-86h42v86h86zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="add_circle_outline" unicode="add_circle_outline"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM277 363v-86h86v-42h-86v-86h-42v86h-86v42h86v86h42z" />
+ <glyph glyph-name="add_location" unicode="add_location"
+d="M341 299v42h-64v64h-42v-64h-64v-42h64v-64h42v64h64zM256 469c82 0 149 -67 149 -149c0 -112 -149 -277 -149 -277s-149 165 -149 277c0 82 67 149 149 149z" />
+ <glyph glyph-name="add_shopping_cart" unicode="add_shopping_cart"
+d="M153 197c0 -3 2 -5 5 -5h247v-43h-256c-23 0 -42 20 -42 43c0 7 2 14 5 20l29 53l-77 162h-43v42h70c13.5017 -28.165 26.8327 -56.5006 40 -85c17.0313 -35.6353 33.8016 -71.5317 51 -107h150c27.393 49.9404 55.2665 99.4002 82 150l37 -21l-82 -149
+c-7 -13 -21 -22 -37 -22h-159l-19 -35zM363 128c23 0 42 -20 42 -43s-19 -42 -42 -42s-43 19 -43 42s20 43 43 43zM149 128c23 0 43 -20 43 -43s-20 -42 -43 -42s-42 19 -42 42s19 43 42 43zM235 320v64h-64v43h64v64h42v-64h64v-43h-64v-64h-42z" />
+ <glyph glyph-name="add_to_photos" unicode="add_to_photos"
+d="M405 277v43h-85v85h-43v-85h-85v-43h85v-85h43v85h85zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h256zM85 384v-299h299v-42h-299c-23 0 -42 19 -42 42v299h42z" />
+ <glyph glyph-name="add_to_queue" unicode="add_to_queue"
+d="M341 299v-43h-64v-64h-42v64h-64v43h64v64h42v-64h64zM448 149v256h-384v-256h384zM448 448c23 0 43 -19 43 -43l-1 -256c0 -23 -19 -42 -42 -42h-107v-43h-170v43h-107c-24 0 -43 19 -43 42v256c0 24 19 43 43 43h384z" />
+ <glyph glyph-name="adjust" unicode="adjust"
+d="M320 256c0 -35 -29 -64 -64 -64s-64 29 -64 64s29 64 64 64s64 -29 64 -64zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="airline_seat_flat" unicode="airline_seat_flat"
+d="M152 254c-25 -25 -65 -26 -90 -1s-26 65 -1 90s65 26 90 1s26 -65 1 -90zM43 213h426v-42h-128v-43h-170v43h-128v42zM469 277v-42h-277v128h192c47 0 85 -39 85 -86z" />
+ <glyph glyph-name="airline_seat_flat_angled" unicode="airline_seat_flat_angled"
+d="M156 294c-32 -15 -71 -2 -86 30s-2 71 30 86s71 2 86 -30s2 -71 -30 -86zM32 253l15 40l405 -146l-14 -40l-97 34v-34h-170v96zM475 207l-15 -40l-264 95l45 121l182 -66c45 -16 68 -65 52 -110z" />
+ <glyph glyph-name="airline_seat_individual_suite" unicode="airline_seat_individual_suite"
+d="M405 363c47 0 86 -39 86 -86v-128h-470v214h43v-150h171v150h170zM149 235c-35 0 -64 29 -64 64s29 64 64 64s64 -29 64 -64s-29 -64 -64 -64z" />
+ <glyph glyph-name="airline_seat_legroom_extra" unicode="airline_seat_legroom_extra"
+d="M487 144c9 -16 1 -36 -15 -44l-79 -36l-73 149h-149c-35 0 -64 29 -64 64v171h128v-128h75c16 0 31 -9 38 -24l72 -149l24 11c16 7 35 1 43 -14zM85 256c0 -35 29 -64 64 -64h128v-43h-128c-59 0 -106 48 -106 107v192h42v-192z" />
+ <glyph glyph-name="airline_seat_legroom_normal" unicode="airline_seat_legroom_normal"
+d="M437 128c18 0 32 -14 32 -32s-14 -32 -32 -32h-96v149h-149c-35 0 -64 29 -64 64v171h128v-128h107c23 0 42 -20 42 -43v-149h32zM107 256c0 -35 29 -64 64 -64h128v-43h-128c-59 0 -107 48 -107 107v192h43v-192z" />
+ <glyph glyph-name="airline_seat_legroom_reduced" unicode="airline_seat_legroom_reduced"
+d="M107 256c0 -35 29 -64 64 -64h85v-43h-85c-59 0 -107 48 -107 107v192h43v-192zM426 102c4 -20 -11 -38 -31 -38h-96v64l21 85h-128c-35 0 -64 29 -64 64v171h128v-128h107c23 0 42 -20 42 -43l-42 -149h30c16 0 30 -11 33 -26z" />
+ <glyph glyph-name="airline_seat_recline_extra" unicode="airline_seat_recline_extra"
+d="M346 192l123 -96l-32 -32l-81 64h-146c-31 0 -57 22 -63 52l-29 126c-4 26 13 51 39 56h1c15.1794 2.16848 28.3139 -2.05108 37 -9l35 -27c27 -21 65 -34 100 -27v-46c-40 -7 -76 7 -110 26l22 -87h104zM341 107v-43h-150c-53 0 -98 38 -106 90l-42 209h42l42 -202
+c5 -31 32 -54 64 -54h150zM114 392c-19 14 -23 40 -10 59s40 24 59 11c19 -14 24 -41 11 -60c-14 -19 -41 -23 -60 -10z" />
+ <glyph glyph-name="airline_seat_recline_normal" unicode="airline_seat_recline_normal"
+d="M427 84l-31 -31l-75 75h-108c-35 0 -64 29 -64 64v123c0 26 22 48 48 48h1c14.8367 0 27.399 -8.39902 35 -16l30 -33c23 -25 65 -43 100 -43v-47c-41 0 -88 22 -118 47v-79h74zM128 171c0 -35 29 -64 64 -64h128v-43h-128c-59 0 -107 48 -107 107v192h43v-192zM162 397
+c-17 17 -17 43 0 60s43 17 60 0s17 -43 0 -60s-43 -17 -60 0z" />
+ <glyph glyph-name="airplanemode_active" unicode="airplanemode_active"
+d="M217 320zM448 171l-171 53v-117l43 -32v-32l-75 21l-74 -21v32l42 32v117l-170 -53v42l170 107v117c0 18 14 32 32 32s32 -14 32 -32v-117l171 -107v-42z" />
+ <glyph glyph-name="airplanemode_inactive" unicode="airplanemode_inactive"
+d="M64 400l27 27l336 -336l-27 -27l-123 122v-79l43 -32v-32l-75 21l-74 -21v32l42 32v117l-170 -53v42l127 80zM277 320l171 -107v-42l-68 21l-167 167v78c0 18 14 32 32 32s32 -14 32 -32v-117z" />
+ <glyph glyph-name="airplay" unicode="airplay"
+d="M448 448c23 0 43 -20 43 -43v-256c0 -23 -20 -42 -43 -42h-85v42h85v256h-384v-256h85v-42h-85c-23 0 -43 19 -43 42v256c0 23 20 43 43 43h384zM128 43l128 128l128 -128h-256z" />
+ <glyph glyph-name="airport_shuttle" unicode="airport_shuttle"
+d="M320 277h107l-86 86h-21v-86zM373 139c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM277 277v86h-85v-86h85zM128 139c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM64 277h85v86h-85v-86zM363 405l128 -128v-106h-54
+c0 -35 -29 -64 -64 -64s-64 29 -64 64h-117c0 -35 -29 -64 -64 -64s-64 29 -64 64h-43v192c0 24 20 42 43 42h299z" />
+ <glyph glyph-name="alarm" unicode="alarm"
+d="M256 85c83 0 149 67 149 150s-66 149 -149 149s-149 -66 -149 -149s66 -150 149 -150zM256 427c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM267 341v-112l85 -50l-16 -26l-101 60v128h32zM168 440l-98 -82l-27 32l98 82zM469 390
+l-27 -33l-98 83l27 32z" />
+ <glyph glyph-name="alarm_add" unicode="alarm_add"
+d="M277 320v-64h64v-43h-64v-64h-42v64h-64v43h64v64h42zM256 85c83 0 149 67 149 150s-66 149 -149 149s-149 -66 -149 -149s66 -150 149 -150zM256 427c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM469 390l-27 -33l-98 83l27 32z
+M168 440l-98 -82l-27 32l98 82z" />
+ <glyph glyph-name="alarm_off" unicode="alarm_off"
+d="M171 442l-18 -15l-31 30l19 15zM351 120l-210 210c-21 -26 -34 -59 -34 -95c0 -83 66 -150 149 -150c36 0 69 14 95 35zM62 463c131.276 -131.057 262.677 -261.99 394 -393l-27 -27l-47 47c-34 -29 -78 -47 -126 -47c-106 0 -192 86 -192 192c0 48 18 91 47 125l-17 17
+l-24 -20l-30 31l24 19l-29 29zM469 390l-27 -33l-98 83l27 32zM256 384c-18 0 -35 -3 -51 -9l-33 32c25 12 54 20 84 20c106 0 192 -86 192 -192c0 -30 -7 -59 -19 -84l-33 32c6 16 9 34 9 52c0 83 -66 149 -149 149z" />
+ <glyph glyph-name="alarm_on" unicode="alarm_on"
+d="M225 202l105 106l23 -23l-128 -128l-68 68l22 22zM256 85c83 0 149 67 149 150s-66 149 -149 149s-149 -66 -149 -149s66 -150 149 -150zM256 427c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM168 440l-98 -82l-27 32l98 82zM469 390
+l-27 -33l-98 83l27 32z" />
+ <glyph glyph-name="album" unicode="album"
+d="M256 277c12 0 21 -9 21 -21s-9 -21 -21 -21s-21 9 -21 21s9 21 21 21zM256 160c53 0 96 43 96 96s-43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="all_inclusive" unicode="all_inclusive"
+d="M397 371c64 0 115 -52 115 -115s-51 -115 -115 -115c-31 0 -60 12 -82 34l-27 24l32 28l25 -21c15 -15 33 -22 52 -22c40 0 72 32 72 72s-32 72 -72 72c-19 0 -37 -7 -51 -21c-30.1331 -26.5336 -60.4726 -52.8608 -90 -80l-60 -53c-21 -21 -50 -33 -81 -33
+c-64 0 -115 52 -115 115s51 115 115 115c31 0 60 -12 82 -34l27 -24l-33 -28l-24 21c-15 15 -33 22 -52 22c-40 0 -72 -32 -72 -72s32 -72 72 -72c19 0 37 7 51 21c30.1331 26.5336 60.4726 52.8608 90 80l60 53c21 21 50 33 81 33z" />
+ <glyph glyph-name="all_out" unicode="all_out"
+d="M343 170c45 45 45 120 0 165s-120 45 -165 0s-45 -120 0 -165s120 -45 165 0zM366 358c58 -58 58 -153 0 -211s-153 -58 -211 0s-58 153 0 211s153 58 211 0zM90 338v85h85zM175 82h-85v85zM431 167v-85h-85zM346 423h85v-85z" />
+ <glyph glyph-name="android" unicode="android"
+d="M320 405v22h-21v-22h21zM213 405v22h-21v-22h21zM331 466c32 -23 53 -61 53 -103h-256c0 42 20 80 52 103l-28 28c-4 4 -4 11 0 15s11 4 15 0l32 -32c17 9 37 14 57 14s39 -5 56 -14l32 32c4 4 11 4 15 0s4 -11 0 -15zM437 341c18 0 32 -14 32 -32v-149
+c0 -18 -14 -32 -32 -32s-32 14 -32 32v149c0 18 14 32 32 32zM75 341c18 0 32 -14 32 -32v-149c0 -18 -14 -32 -32 -32s-32 14 -32 32v149c0 18 14 32 32 32zM128 128v213h256v-213c0 -12 -9 -21 -21 -21h-22v-75c0 -18 -14 -32 -32 -32s-32 14 -32 32v75h-42v-75
+c0 -18 -14 -32 -32 -32s-32 14 -32 32v75h-22c-12 0 -21 9 -21 21z" />
+ <glyph glyph-name="announcement" unicode="announcement"
+d="M277 192v43h-42v-43h42zM277 277v128h-42v-128h42zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="apps" unicode="apps"
+d="M341 85v86h86v-86h-86zM341 213v86h86v-86h-86zM213 341v86h86v-86h-86zM341 427h86v-86h-86v86zM213 213v86h86v-86h-86zM85 213v86h86v-86h-86zM85 85v86h86v-86h-86zM213 85v86h86v-86h-86zM85 341v86h86v-86h-86z" />
+ <glyph glyph-name="archive" unicode="archive"
+d="M109 405h294l-20 22h-256zM256 139l117 117h-74v43h-86v-43h-74zM438 400c6 -7 10 -17 10 -27v-266c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v266c0 10 4 20 10 27l29 36c6 7 15 12 25 12h256c10 0 19 -5 25 -12z" />
+ <glyph glyph-name="arrow_back" unicode="arrow_back"
+d="M427 277v-42h-260l119 -120l-30 -30l-171 171l171 171l30 -30l-119 -120h260z" />
+ <glyph glyph-name="arrow_downward" unicode="arrow_downward"
+d="M427 256l-171 -171l-171 171l31 30l119 -119v260h42v-260l120 119z" />
+ <glyph glyph-name="arrow_drop_down" unicode="arrow_drop_down"
+d="M149 299h214l-107 -107z" />
+ <glyph glyph-name="arrow_drop_down_circle" unicode="arrow_drop_down_circle"
+d="M256 213l85 86h-170zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="arrow_drop_up" unicode="arrow_drop_up"
+d="M149 213l107 107l107 -107h-214z" />
+ <glyph glyph-name="arrow_forward" unicode="arrow_forward"
+d="M256 427l171 -171l-171 -171l-30 30l119 120h-260v42h260l-119 120z" />
+ <glyph glyph-name="arrow_upward" unicode="arrow_upward"
+d="M85 256l171 171l171 -171l-31 -30l-119 119v-260h-42v260l-120 -119z" />
+ <glyph glyph-name="art_track" unicode="art_track"
+d="M224 192l-48 64l-37 -48l-27 32l-37 -48h149zM256 320v-128c0 -23 -20 -43 -43 -43h-128c-23 0 -42 20 -42 43v128c0 23 19 43 42 43h128c23 0 43 -20 43 -43zM299 149v43h170v-43h-170zM469 363v-43h-170v43h170zM469 235h-170v42h170v-42z" />
+ <glyph glyph-name="aspect_ratio" unicode="aspect_ratio"
+d="M448 106v300h-384v-300h384zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384zM149 320v-64h-42v107h106v-43h-64zM405 256v-107h-106v43h64v64h42z" />
+ <glyph glyph-name="assessment" unicode="assessment"
+d="M363 149v86h-43v-86h43zM277 149v214h-42v-214h42zM192 149v150h-43v-150h43zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="assignment" unicode="assignment"
+d="M363 320v43h-214v-43h214zM363 235v42h-214v-42h214zM299 149v43h-150v-43h150zM256 448c-12 0 -21 -9 -21 -21s9 -22 21 -22s21 10 21 22s-9 21 -21 21zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h89
+c9 25 32 43 60 43s51 -18 60 -43h89z" />
+ <glyph glyph-name="assignment_ind" unicode="assignment_ind"
+d="M384 107v30c0 43 -85 66 -128 66s-128 -23 -128 -66v-30h256zM256 363c-35 0 -64 -29 -64 -64s29 -64 64 -64s64 29 64 64s-29 64 -64 64zM256 448c-12 0 -21 -9 -21 -21s9 -22 21 -22s21 10 21 22s-9 21 -21 21zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43
+h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h89c9 25 32 43 60 43s51 -18 60 -43h89z" />
+ <glyph glyph-name="assignment_late" unicode="assignment_late"
+d="M256 405c12 0 21 10 21 22s-9 21 -21 21s-21 -9 -21 -21s9 -22 21 -22zM277 213v128h-42v-128h42zM277 128v43h-42v-43h42zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h89c9 25 32 43 60 43s51 -18 60 -43
+h89z" />
+ <glyph glyph-name="assignment_return" unicode="assignment_return"
+d="M341 192v85h-85v64l-107 -106l107 -107v64h85zM256 448c-12 0 -21 -9 -21 -21s9 -22 21 -22s21 10 21 22s-9 21 -21 21zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h89c9 25 32 43 60 43s51 -18 60 -43h89z
+" />
+ <glyph glyph-name="assignment_returned" unicode="assignment_returned"
+d="M256 128l107 107h-64v85h-86v-85h-64zM256 448c-12 0 -21 -9 -21 -21s9 -22 21 -22s21 10 21 22s-9 21 -21 21zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h89c9 25 32 43 60 43s51 -18 60 -43h89z" />
+ <glyph glyph-name="assignment_turned_in" unicode="assignment_turned_in"
+d="M213 149l171 171l-30 30l-141 -140l-55 55l-30 -30zM256 448c-12 0 -21 -9 -21 -21s9 -22 21 -22s21 10 21 22s-9 21 -21 21zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h89c9 25 32 43 60 43s51 -18 60 -43
+h89z" />
+ <glyph glyph-name="assistant" unicode="assistant"
+d="M296 237l88 40l-88 40l-40 88l-40 -88l-88 -40l88 -40l40 -88zM405 469c23 0 43 -19 43 -42v-299c0 -23 -20 -43 -43 -43h-85l-64 -64l-64 64h-85c-23 0 -43 20 -43 43v299c0 23 20 42 43 42h298z" />
+ <glyph glyph-name="assistant_photo" unicode="assistant_photo"
+d="M307 384h120v-213h-150l-8 42h-120v-149h-42v363h192z" />
+ <glyph glyph-name="attach_file" unicode="attach_file"
+d="M352 384h32v-245c0 -65 -52 -118 -117 -118s-118 53 -118 118v266c0 47 39 86 86 86s85 -39 85 -86v-224c0 -29 -24 -53 -53 -53s-54 24 -54 53v203h32v-203c0 -12 10 -21 22 -21s21 9 21 21v224c0 29 -24 54 -53 54s-54 -25 -54 -54v-266c0 -47 39 -86 86 -86
+s85 39 85 86v245z" />
+ <glyph glyph-name="attach_money" unicode="attach_money"
+d="M252 279c48 -13 100 -32 100 -93c0 -44 -33 -68 -75 -76v-46h-64v46c-41 9 -75 35 -78 82h47c2 -25 19 -45 63 -45c47 0 58 23 58 38c0 20 -11 39 -64 52c-60 14 -100 39 -100 88c0 41 33 68 74 77v46h64v-47c45 -11 68 -44 69 -81h-47c-1 27 -16 45 -54 45
+c-36 0 -57 -17 -57 -40c0 -20 16 -33 64 -46z" />
+ <glyph glyph-name="attachment" unicode="attachment"
+d="M43 245c0 65 52 118 117 118h224c47 0 85 -39 85 -86s-38 -85 -85 -85h-181c-29 0 -54 24 -54 53s25 54 54 54h160v-43h-162c-12 0 -12 -21 0 -21h183c23 0 43 19 43 42s-20 43 -43 43h-224c-41 0 -75 -34 -75 -75s34 -74 75 -74h203v-43h-203c-65 0 -117 52 -117 117z
+" />
+ <glyph glyph-name="audiotrack" unicode="audiotrack"
+d="M256 448h149v-64h-85v-235h-1c-5 -48 -46 -85 -95 -85c-53 0 -96 43 -96 96s43 96 96 96c11 0 22 -2 32 -6v198z" />
+ <glyph glyph-name="autorenew" unicode="autorenew"
+d="M400 347c17 -26 27 -58 27 -91c0 -94 -77 -171 -171 -171v-64l-85 86l85 85v-64c71 0 128 57 128 128c0 22 -6 42 -15 60zM256 384c-71 0 -128 -57 -128 -128c0 -22 5 -42 15 -60l-31 -31c-17 26 -27 58 -27 91c0 94 77 171 171 171v64l85 -86l-85 -85v64z" />
+ <glyph glyph-name="av_timer" unicode="av_timer"
+d="M128 256c0 12 9 21 21 21s22 -9 22 -21s-10 -21 -22 -21s-21 9 -21 21zM384 256c0 -12 -9 -21 -21 -21s-22 9 -22 21s10 21 22 21s21 -9 21 -21zM235 448h21c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192c0 63 30 118 77 153v1l145 -145l-30 -30
+l-116 115c-21 -26 -33 -58 -33 -94c0 -83 66 -149 149 -149s149 66 149 149c0 75 -56 138 -128 148v-41h-42v85zM235 149c0 12 9 22 21 22s21 -10 21 -22s-9 -21 -21 -21s-21 9 -21 21z" />
+ <glyph glyph-name="backspace" unicode="backspace"
+d="M405 179l-76 77l76 77l-30 30l-76 -77l-77 77l-30 -30l77 -77l-77 -77l30 -30l77 77l76 -77zM469 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-320c-15 0 -26 8 -34 19l-115 173l115 173c8 11 19 19 34 19h320z" />
+ <glyph glyph-name="backup" unicode="backup"
+d="M299 235h64l-107 106l-107 -106h64v-86h86v86zM413 298c55 -4 99 -50 99 -106c0 -59 -48 -107 -107 -107h-277c-71 0 -128 57 -128 128c0 66 50 120 114 127c27 51 80 87 142 87c78 0 142 -55 157 -129z" />
+ <glyph glyph-name="battery_alert" unicode="battery_alert"
+d="M277 213v107h-42v-107h42zM277 128v43h-42v-43h42zM334 427c16 0 29 -13 29 -29v-327c0 -16 -13 -28 -29 -28h-156c-16 0 -29 12 -29 28v327c0 16 13 29 29 29h35v42h86v-42h35z" />
+ <glyph glyph-name="battery_charging_full" unicode="battery_charging_full"
+d="M235 85l85 160h-43v118l-85 -160h43v-118zM334 427c16 0 29 -13 29 -29v-327c0 -16 -13 -28 -29 -28h-156c-16 0 -29 12 -29 28v327c0 16 13 29 29 29h35v42h86v-42h35z" />
+ <glyph glyph-name="battery_full" unicode="battery_full"
+d="M334 427c16 0 29 -13 29 -29v-327c0 -16 -13 -28 -29 -28h-156c-16 0 -29 12 -29 28v327c0 16 13 29 29 29h35v42h86v-42h35z" />
+ <glyph glyph-name="battery_std" unicode="battery_std"
+d="M334 427c16 0 29 -13 29 -29v-327c0 -16 -13 -28 -29 -28h-156c-16 0 -29 12 -29 28v327c0 16 13 29 29 29h35v42h86v-42h35z" />
+ <glyph glyph-name="battery_unknown" unicode="battery_unknown"
+d="M305 241c9 9 15 22 15 36c0 35 -29 64 -64 64s-64 -29 -64 -64h32c0 18 14 32 32 32s32 -14 32 -32c0 -9 -3 -16 -9 -22l-20 -20c-10 -10 -20 -25 -20 -43h34c0 10 8 24 18 34c6 6 14 15 14 15zM276 129v41h-40v-41h40zM334 427c16 0 29 -13 29 -29v-327
+c0 -16 -13 -28 -29 -28h-156c-16 0 -29 12 -29 28v327c0 16 13 29 29 29h35v42h86v-42h35z" />
+ <glyph glyph-name="beach_access" unicode="beach_access"
+d="M372 324c-66.8504 66.8504 -159.585 88.9016 -243.437 61.1868c63.7841 7.27512 145.981 -25.7308 212.437 -92.1868l-122 -122c-66.456 66.456 -99.4619 148.653 -92.1868 212.437c-27.7148 -83.8524 -5.66368 -176.587 61.1868 -243.437l-61 -61
+c-83.9541 83.9541 -84 220.85 -0.137673 304.862c0.129398 1.10582 0.166618 1.14572 1.27547 1.27547c84.012 83.8623 220.908 83.8164 304.862 -0.137673zM280 201l31 31l137 -138l-31 -30z" />
+ <glyph glyph-name="beenhere" unicode="beenhere"
+d="M213 171l192 192l-30 30l-162 -162l-76 76l-30 -30zM405 491c23 0 43 -20 43 -43v-276c0 -15 -8 -27 -19 -35l-173 -116l-173 116c-11 8 -19 20 -19 35v276c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="block" unicode="block"
+d="M256 85c94 0 171 77 171 171c0 39 -13 76 -36 105l-240 -240c29 -23 66 -36 105 -36zM85 256c0 -39 13 -76 36 -105l240 240c-29 23 -66 36 -105 36c-94 0 -171 -77 -171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="bluetooth" unicode="bluetooth"
+d="M317 164l-40 41v-81zM277 388v-81l40 41zM378 348l-92 -92l92 -92l-122 -121h-21v162l-98 -98l-30 30l119 119l-119 119l30 30l98 -98v162h21z" />
+ <glyph glyph-name="bluetooth_audio" unicode="bluetooth_audio"
+d="M275 164l-40 41v-81zM235 388v-81l40 41zM335 348l-92 -92l92 -92l-122 -121h-21v162l-98 -98l-30 30l119 119l-119 119l30 30l98 -98v162h21zM417 369c20 -32 31 -71 31 -111c0 -42 -12 -80 -33 -113l-25 25c13 26 21 55 21 86s-8 60 -21 86zM304 256l49 49
+c6 -15 10 -32 10 -49s-4 -35 -10 -50z" />
+ <glyph glyph-name="bluetooth_connected" unicode="bluetooth_connected"
+d="M405 299l43 -43l-43 -43l-42 43zM317 164l-40 41v-81zM277 388v-81l40 41zM378 348l-92 -92l92 -92l-122 -121h-21v162l-98 -98l-30 30l119 119l-119 119l30 30l98 -98v162h21zM149 256l-42 -43l-43 43l43 43z" />
+ <glyph glyph-name="bluetooth_disabled" unicode="bluetooth_disabled"
+d="M277 124l40 40l-40 41v-81zM115 427l312 -312l-30 -30l-49 49l-92 -91h-21v162l-98 -98l-30 30l119 119l-141 141zM277 388v-69l-42 43v107h21l122 -121l-65 -65l-30 30l34 35z" />
+ <glyph glyph-name="bluetooth_searching" unicode="bluetooth_searching"
+d="M275 164l-40 41v-81zM235 388v-81l40 41zM335 348l-92 -92l92 -92l-122 -121h-21v162l-98 -98l-30 30l119 119l-119 119l30 30l98 -98v162h21zM417 369c20 -32 31 -71 31 -111c0 -42 -12 -80 -33 -113l-25 25c13 26 21 55 21 86s-8 60 -21 86zM304 256l49 49
+c6 -15 10 -32 10 -49s-4 -35 -10 -50z" />
+ <glyph glyph-name="blur_circular" unicode="blur_circular"
+d="M299 235c12 0 21 -10 21 -22s-9 -21 -21 -21s-22 9 -22 21s10 22 22 22zM299 160c6 0 10 -5 10 -11s-4 -10 -10 -10s-11 4 -11 10s5 11 11 11zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213
+s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM363 309c6 0 10 -4 10 -10s-4 -11 -10 -11s-11 5 -11 11s5 10 11 10zM363 224c6 0 10 -5 10 -11s-4 -10 -10 -10s-11 4 -11 10s5 11 11 11zM299 352c-6 0 -11 5 -11 11s5 10 11 10s10 -4 10 -10s-4 -11 -10 -11z
+M299 320c12 0 21 -9 21 -21s-9 -22 -21 -22s-22 10 -22 22s10 21 22 21zM213 352c-6 0 -10 5 -10 11s4 10 10 10s11 -4 11 -10s-5 -11 -11 -11zM149 224c6 0 11 -5 11 -11s-5 -10 -11 -10s-10 4 -10 10s4 11 10 11zM213 160c6 0 11 -5 11 -11s-5 -10 -11 -10s-10 4 -10 10
+s4 11 10 11zM149 309c6 0 11 -4 11 -10s-5 -11 -11 -11s-10 5 -10 11s4 10 10 10zM213 235c12 0 22 -10 22 -22s-10 -21 -22 -21s-21 9 -21 21s9 22 21 22zM213 320c12 0 22 -9 22 -21s-10 -22 -22 -22s-21 10 -21 22s9 21 21 21z" />
+ <glyph glyph-name="blur_linear" unicode="blur_linear"
+d="M277 149c-12 0 -21 10 -21 22s9 21 21 21s22 -9 22 -21s-10 -22 -22 -22zM277 235c-12 0 -21 9 -21 21s9 21 21 21s22 -9 22 -21s-10 -21 -22 -21zM277 320c-12 0 -21 9 -21 21s9 22 21 22s22 -10 22 -22s-10 -21 -22 -21zM363 245c-6 0 -11 5 -11 11s5 11 11 11
+s10 -5 10 -11s-4 -11 -10 -11zM363 331c-6 0 -11 4 -11 10s5 11 11 11s10 -5 10 -11s-4 -10 -10 -10zM64 448h384v-43h-384v43zM363 160c-6 0 -11 5 -11 11s5 10 11 10s10 -4 10 -10s-4 -11 -10 -11zM192 149c-12 0 -21 10 -21 22s9 21 21 21s21 -9 21 -21s-9 -22 -21 -22z
+M107 224c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM107 309c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM64 64v43h384v-43h-384zM192 320c-12 0 -21 9 -21 21s9 22 21 22s21 -10 21 -22s-9 -21 -21 -21zM192 235
+c-12 0 -21 9 -21 21s9 21 21 21s21 -9 21 -21s-9 -21 -21 -21zM107 139c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32z" />
+ <glyph glyph-name="blur_off" unicode="blur_off"
+d="M64 224c6 0 11 -5 11 -11s-5 -10 -11 -10s-11 4 -11 10s5 11 11 11zM128 149c12 0 21 -9 21 -21s-9 -21 -21 -21s-21 9 -21 21s9 21 21 21zM213 75c6 0 11 -5 11 -11s-5 -11 -11 -11s-10 5 -10 11s4 11 10 11zM64 309c6 0 11 -4 11 -10s-5 -11 -11 -11s-11 5 -11 11
+s5 10 11 10zM128 235c12 0 21 -10 21 -22s-9 -21 -21 -21s-21 9 -21 21s9 22 21 22zM448 224c6 0 11 -5 11 -11s-5 -10 -11 -10s-11 4 -11 10s5 11 11 11zM213 149c12 0 22 -9 22 -21s-10 -21 -22 -21s-21 9 -21 21s9 21 21 21zM53 400l27 27l347 -347l-28 -27l-80 81
+c1 -2 1 -4 1 -6c0 -12 -9 -21 -21 -21s-22 9 -22 21s10 21 22 21c2 0 4 0 6 -1l-60 60c-2 -15 -16 -27 -32 -27c-18 0 -32 14 -32 32c0 16 12 30 27 32l-60 60c1 -2 1 -4 1 -6c0 -12 -9 -22 -21 -22s-21 10 -21 22s9 21 21 21l6 -1zM299 75c6 0 10 -5 10 -11s-4 -11 -10 -11
+s-11 5 -11 11s5 11 11 11zM384 363c-12 0 -21 9 -21 21s9 21 21 21s21 -9 21 -21s-9 -21 -21 -21zM384 277c-12 0 -21 10 -21 22s9 21 21 21s21 -9 21 -21s-9 -22 -21 -22zM384 192c-12 0 -21 9 -21 21s9 22 21 22s21 -10 21 -22s-9 -21 -21 -21zM213 363
+c-12 0 -21 9 -21 21s9 21 21 21s22 -9 22 -21s-10 -21 -22 -21zM448 288c-6 0 -11 5 -11 11s5 10 11 10s11 -4 11 -10s-5 -11 -11 -11zM213 437c-6 0 -10 5 -10 11s4 11 10 11s11 -5 11 -11s-5 -11 -11 -11zM299 437c-6 0 -11 5 -11 11s5 11 11 11s10 -5 10 -11
+s-4 -11 -10 -11zM294 267c-14 2 -25 13 -27 27v5c0 18 14 32 32 32s32 -14 32 -32s-14 -32 -32 -32h-5zM299 363c-12 0 -22 9 -22 21s10 21 22 21s21 -9 21 -21s-9 -21 -21 -21z" />
+ <glyph glyph-name="blur_on" unicode="blur_on"
+d="M299 331c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM299 245c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM213 149c12 0 22 -9 22 -21s-10 -21 -22 -21s-21 9 -21 21s9 21 21 21zM213 331c18 0 32 -14 32 -32s-14 -32 -32 -32
+s-32 14 -32 32s14 32 32 32zM299 75c6 0 10 -5 10 -11s-4 -11 -10 -11s-11 5 -11 11s5 11 11 11zM299 149c12 0 21 -9 21 -21s-9 -21 -21 -21s-22 9 -22 21s10 21 22 21zM448 224c6 0 11 -5 11 -11s-5 -10 -11 -10s-11 4 -11 10s5 11 11 11zM384 405c12 0 21 -9 21 -21
+s-9 -21 -21 -21s-21 9 -21 21s9 21 21 21zM384 320c12 0 21 -9 21 -21s-9 -22 -21 -22s-21 10 -21 22s9 21 21 21zM384 149c12 0 21 -9 21 -21s-9 -21 -21 -21s-21 9 -21 21s9 21 21 21zM384 235c12 0 21 -10 21 -22s-9 -21 -21 -21s-21 9 -21 21s9 22 21 22zM213 245
+c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM213 363c-12 0 -21 9 -21 21s9 21 21 21s22 -9 22 -21s-10 -21 -22 -21zM213 437c-6 0 -10 5 -10 11s4 11 10 11s11 -5 11 -11s-5 -11 -11 -11zM213 75c6 0 11 -5 11 -11s-5 -11 -11 -11s-10 5 -10 11
+s4 11 10 11zM64 224c6 0 11 -5 11 -11s-5 -10 -11 -10s-11 4 -11 10s5 11 11 11zM299 437c-6 0 -11 5 -11 11s5 11 11 11s10 -5 10 -11s-4 -11 -10 -11zM299 363c-12 0 -22 9 -22 21s10 21 22 21s21 -9 21 -21s-9 -21 -21 -21zM448 288c-6 0 -11 5 -11 11s5 10 11 10
+s11 -4 11 -10s-5 -11 -11 -11zM128 405c12 0 21 -9 21 -21s-9 -21 -21 -21s-21 9 -21 21s9 21 21 21zM64 309c6 0 11 -4 11 -10s-5 -11 -11 -11s-11 5 -11 11s5 10 11 10zM128 320c12 0 21 -9 21 -21s-9 -22 -21 -22s-21 10 -21 22s9 21 21 21zM128 149c12 0 21 -9 21 -21
+s-9 -21 -21 -21s-21 9 -21 21s9 21 21 21zM128 235c12 0 21 -10 21 -22s-9 -21 -21 -21s-21 9 -21 21s9 22 21 22z" />
+ <glyph glyph-name="book" unicode="book"
+d="M128 427v-171l53 32l54 -32v171h-107zM384 469c23 0 43 -19 43 -42v-342c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42v342c0 23 20 42 43 42h256z" />
+ <glyph glyph-name="bookmark" unicode="bookmark"
+d="M363 448c23 0 42 -20 42 -43v-341l-149 64l-149 -64v341c0 23 19 43 42 43h214z" />
+ <glyph glyph-name="bookmark_border" unicode="bookmark_border"
+d="M363 128v277h-214v-277l107 47zM363 448c23 0 42 -20 42 -43v-341l-149 64l-149 -64v341c0 23 19 43 42 43h214z" />
+ <glyph glyph-name="border_all" unicode="border_all"
+d="M405 277v128h-128v-128h128zM405 107v128h-128v-128h128zM235 277v128h-128v-128h128zM235 107v128h-128v-128h128zM64 448h384v-384h-384v384z" />
+ <glyph glyph-name="border_bottom" unicode="border_bottom"
+d="M107 192v-43h-43v43h43zM64 64v43h384v-43h-384zM107 277v-42h-43v42h43zM405 320v43h43v-43h-43zM405 448h43v-43h-43v43zM107 363v-43h-43v43h43zM405 149v43h43v-43h-43zM405 235v42h43v-42h-43zM363 448v-43h-43v43h43zM277 448v-43h-42v43h42zM363 277v-42h-43v42
+h43zM277 363v-43h-42v43h42zM107 448v-43h-43v43h43zM277 277v-42h-42v42h42zM192 448v-43h-43v43h43zM277 192v-43h-42v43h42zM192 277v-42h-43v42h43z" />
+ <glyph glyph-name="border_clear" unicode="border_clear"
+d="M320 405v43h43v-43h-43zM320 235v42h43v-42h-43zM320 64v43h43v-43h-43zM235 405v43h42v-43h-42zM405 448h43v-43h-43v43zM235 320v43h42v-43h-42zM405 320v43h43v-43h-43zM405 64v43h43v-43h-43zM405 235v42h43v-42h-43zM405 149v43h43v-43h-43zM235 235v42h42v-42h-42z
+M64 405v43h43v-43h-43zM64 320v43h43v-43h-43zM64 235v42h43v-42h-43zM64 149v43h43v-43h-43zM64 64v43h43v-43h-43zM235 64v43h42v-43h-42zM235 149v43h42v-43h-42zM149 64v43h43v-43h-43zM149 235v42h43v-42h-43zM149 405v43h43v-43h-43z" />
+ <glyph glyph-name="border_color" unicode="border_color"
+d="M0 85h512v-85h-512v85zM442 426l-42 -42l-80 80l42 42c8 8 22 8 30 0l50 -50c8 -8 8 -22 0 -30zM379 363l-214 -214h-80v80l214 214z" />
+ <glyph glyph-name="border_horizontal" unicode="border_horizontal"
+d="M405 64v43h43v-43h-43zM320 64v43h43v-43h-43zM235 149v43h42v-43h-42zM405 320v43h43v-43h-43zM405 448h43v-43h-43v43zM64 235v42h384v-42h-384zM235 64v43h42v-43h-42zM405 149v43h43v-43h-43zM277 448v-43h-42v43h42zM277 363v-43h-42v43h42zM363 448v-43h-43v43h43z
+M192 448v-43h-43v43h43zM107 448v-43h-43v43h43zM149 64v43h43v-43h-43zM64 149v43h43v-43h-43zM107 363v-43h-43v43h43zM64 64v43h43v-43h-43z" />
+ <glyph glyph-name="border_inner" unicode="border_inner"
+d="M405 149v43h43v-43h-43zM405 64v43h43v-43h-43zM277 448v-171h171v-42h-171v-171h-42v171h-171v42h171v171h42zM320 64v43h43v-43h-43zM405 448h43v-43h-43v43zM405 320v43h43v-43h-43zM363 448v-43h-43v43h43zM107 448v-43h-43v43h43zM192 448v-43h-43v43h43zM64 149v43
+h43v-43h-43zM107 363v-43h-43v43h43zM149 64v43h43v-43h-43zM64 64v43h43v-43h-43z" />
+ <glyph glyph-name="border_left" unicode="border_left"
+d="M320 405v43h43v-43h-43zM320 235v42h43v-42h-43zM405 64v43h43v-43h-43zM405 235v42h43v-42h-43zM405 448h43v-43h-43v43zM405 149v43h43v-43h-43zM320 64v43h43v-43h-43zM405 320v43h43v-43h-43zM64 64v384h43v-384h-43zM149 235v42h43v-42h-43zM149 405v43h43v-43h-43z
+M149 64v43h43v-43h-43zM235 235v42h42v-42h-42zM235 320v43h42v-43h-42zM235 405v43h42v-43h-42zM235 149v43h42v-43h-42zM235 64v43h42v-43h-42z" />
+ <glyph glyph-name="border_outer" unicode="border_outer"
+d="M192 277v-42h-43v42h43zM277 192v-43h-42v43h42zM405 107v298h-298v-298h298zM64 448h384v-384h-384v384zM363 277v-42h-43v42h43zM277 277v-42h-42v42h42zM277 363v-43h-42v43h42z" />
+ <glyph glyph-name="border_right" unicode="border_right"
+d="M235 320v43h42v-43h-42zM235 405v43h42v-43h-42zM235 235v42h42v-42h-42zM320 405v43h43v-43h-43zM320 64v43h43v-43h-43zM405 448h43v-384h-43v384zM320 235v42h43v-42h-43zM235 149v43h42v-43h-42zM64 320v43h43v-43h-43zM64 149v43h43v-43h-43zM64 235v42h43v-42h-43z
+M235 64v43h42v-43h-42zM64 64v43h43v-43h-43zM149 235v42h43v-42h-43zM149 405v43h43v-43h-43zM64 405v43h43v-43h-43zM149 64v43h43v-43h-43z" />
+ <glyph glyph-name="border_style" unicode="border_style"
+d="M405 320v43h43v-43h-43zM64 448h384v-43h-341v-341h-43v384zM405 235v42h43v-42h-43zM405 149v43h43v-43h-43zM235 64v43h42v-43h-42zM149 64v43h43v-43h-43zM405 64v43h43v-43h-43zM320 64v43h43v-43h-43z" />
+ <glyph glyph-name="border_top" unicode="border_top"
+d="M320 235v42h43v-42h-43zM405 64v43h43v-43h-43zM235 320v43h42v-43h-42zM320 64v43h43v-43h-43zM405 149v43h43v-43h-43zM64 448h384v-43h-384v43zM405 235v42h43v-42h-43zM405 320v43h43v-43h-43zM235 149v43h42v-43h-42zM64 320v43h43v-43h-43zM64 235v42h43v-42h-43z
+M64 64v43h43v-43h-43zM64 149v43h43v-43h-43zM235 64v43h42v-43h-42zM235 235v42h42v-42h-42zM149 235v42h43v-42h-43zM149 64v43h43v-43h-43z" />
+ <glyph glyph-name="border_vertical" unicode="border_vertical"
+d="M320 235v42h43v-42h-43zM320 64v43h43v-43h-43zM320 405v43h43v-43h-43zM405 320v43h43v-43h-43zM405 448h43v-43h-43v43zM405 235v42h43v-42h-43zM405 64v43h43v-43h-43zM235 64v384h42v-384h-42zM405 149v43h43v-43h-43zM149 405v43h43v-43h-43zM64 149v43h43v-43h-43z
+M64 64v43h43v-43h-43zM64 235v42h43v-42h-43zM149 235v42h43v-42h-43zM149 64v43h43v-43h-43zM64 405v43h43v-43h-43zM64 320v43h43v-43h-43z" />
+ <glyph glyph-name="branding_watermark" unicode="branding_watermark"
+d="M448 107v128h-192v-128h192zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="brightness_1" unicode="brightness_&#x31;"
+d="M43 256c0 118 95 213 213 213s213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213z" />
+ <glyph glyph-name="brightness_2" unicode="brightness_&#x32;"
+d="M213 469c118 0 214 -95 214 -213s-96 -213 -214 -213c-39 0 -75 10 -106 28c64 37 106 106 106 185s-42 148 -106 185c31 18 67 28 106 28z" />
+ <glyph glyph-name="brightness_3" unicode="brightness_&#x33;"
+d="M192 469c118 0 213 -95 213 -213s-95 -213 -213 -213c-22 0 -44 3 -64 9c87 27 149 108 149 204s-62 177 -149 204c20 6 42 9 64 9z" />
+ <glyph glyph-name="brightness_4" unicode="brightness_&#x34;"
+d="M256 128c71 0 128 57 128 128s-57 128 -128 128c-19 0 -37 -5 -53 -12c44 -20 74 -64 74 -116s-30 -96 -74 -116c16 -7 34 -12 53 -12zM427 327l70 -71l-70 -71v-100h-100l-71 -70l-71 70h-100v100l-70 71l70 71v100h100l71 70l71 -70h100v-100z" />
+ <glyph glyph-name="brightness_5" unicode="brightness_&#x35;"
+d="M256 128c71 0 128 57 128 128s-57 128 -128 128s-128 -57 -128 -128s57 -128 128 -128zM427 185v-100h-100l-71 -70l-71 70h-100v100l-70 71l70 71v100h100l71 70l71 -70h100v-100l70 -71z" />
+ <glyph glyph-name="brightness_6" unicode="brightness_&#x36;"
+d="M256 128c71 0 128 57 128 128s-57 128 -128 128v-256zM427 185v-100h-100l-71 -70l-71 70h-100v100l-70 71l70 71v100h100l71 70l71 -70h100v-100l70 -71z" />
+ <glyph glyph-name="brightness_7" unicode="brightness_&#x37;"
+d="M256 341c47 0 85 -38 85 -85s-38 -85 -85 -85s-85 38 -85 85s38 85 85 85zM256 128c71 0 128 57 128 128s-57 128 -128 128s-128 -57 -128 -128s57 -128 128 -128zM427 327l70 -71l-70 -71v-100h-100l-71 -70l-71 70h-100v100l-70 71l70 71v100h100l71 70l71 -70h100
+v-100z" />
+ <glyph glyph-name="brightness_auto" unicode="brightness_auto"
+d="M305 171h41l-69 192h-42l-69 -192h41l15 42h68zM427 327l70 -71l-70 -71v-100h-100l-71 -70l-71 70h-100v100l-70 71l70 71v100h100l71 70l71 -70h100v-100zM231 242l25 78l25 -78h-50z" />
+ <glyph glyph-name="brightness_high" unicode="brightness_high"
+d="M256 341c47 0 85 -38 85 -85s-38 -85 -85 -85s-85 38 -85 85s38 85 85 85zM256 128c71 0 128 57 128 128s-57 128 -128 128s-128 -57 -128 -128s57 -128 128 -128zM427 327l70 -71l-70 -71v-100h-100l-71 -70l-71 70h-100v100l-70 71l70 71v100h100l71 70l71 -70h100
+v-100z" />
+ <glyph glyph-name="brightness_low" unicode="brightness_low"
+d="M256 128c71 0 128 57 128 128s-57 128 -128 128s-128 -57 -128 -128s57 -128 128 -128zM427 185v-100h-100l-71 -70l-71 70h-100v100l-70 71l70 71v100h100l71 70l71 -70h100v-100l70 -71z" />
+ <glyph glyph-name="brightness_medium" unicode="brightness_medium"
+d="M256 128c71 0 128 57 128 128s-57 128 -128 128v-256zM427 185v-100h-100l-71 -70l-71 70h-100v100l-70 71l70 71v100h100l71 70l71 -70h100v-100l70 -71z" />
+ <glyph glyph-name="broken_image" unicode="broken_image"
+d="M384 268l64 -64v-97c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v140l64 -64l85 86l86 -86zM448 405v-140l-64 64l-85 -86l-86 86l-85 -86l-64 65v97c0 23 20 43 43 43h298c23 0 43 -20 43 -43z" />
+ <glyph glyph-name="brush" unicode="brush"
+d="M442 413c8 -8 8 -22 0 -30l-191 -191l-59 59l191 191c8 8 22 8 30 0zM149 213c35 0 64 -29 64 -64c0 -47 -38 -85 -85 -85c-32 0 -65 17 -85 43c18 0 42 14 42 42c0 35 29 64 64 64z" />
+ <glyph glyph-name="bubble_chart" unicode="bubble_chart"
+d="M222 324c0 57 45 103 102 103s103 -46 103 -103s-46 -102 -103 -102s-102 45 -102 102zM273 128c0 24 19 43 43 43s42 -19 42 -43s-18 -43 -42 -43s-43 19 -43 43zM85 205c0 38 31 68 69 68s68 -30 68 -68s-30 -68 -68 -68s-69 30 -69 68z" />
+ <glyph glyph-name="bug_report" unicode="bug_report"
+d="M299 256v43h-86v-43h86zM299 171v42h-86v-42h86zM427 341v-42h-45c1 -7 2 -15 2 -22v-21h43v-43h-43v-21c0 -7 -1 -14 -2 -21h45v-43h-60c-22 -38 -64 -64 -111 -64s-89 26 -111 64h-60v43h45c-1 7 -2 14 -2 21v21h-43v43h43v21c0 7 1 15 2 22h-45v42h60
+c10 17 23 31 39 42l-35 35l30 30l47 -46c10 2 20 3 30 3s20 -1 30 -3l47 46l30 -30l-35 -35c16 -11 29 -25 39 -42h60z" />
+ <glyph glyph-name="build" unicode="build"
+d="M484 107c9 -6 9 -21 -2 -30l-49 -49c-9 -9 -21 -9 -30 0l-194 194c-49 -19 -106 -9 -147 32c-43 43 -54 107 -28 158l94 -92l64 64l-92 92c51 23 115 15 158 -28c41 -41 51 -98 32 -147z" />
+ <glyph glyph-name="burst_mode" unicode="burst_mode"
+d="M235 149h213l-68 90l-54 -68l-38 46zM469 405c12 0 22 -9 22 -21v-256c0 -12 -10 -21 -22 -21h-256c-12 0 -21 9 -21 21v256c0 12 9 21 21 21h256zM107 405h42v-298h-42v298zM21 405h43v-298h-43v298z" />
+ <glyph glyph-name="business" unicode="business"
+d="M384 192v-43h-43v43h43zM384 277v-42h-43v42h43zM427 107v213h-171v-43h43v-42h-43v-43h43v-43h-43v-42h171zM213 363v42h-42v-42h42zM213 277v43h-42v-43h42zM213 192v43h-42v-43h42zM213 107v42h-42v-42h42zM128 363v42h-43v-42h43zM128 277v43h-43v-43h43zM128 192v43
+h-43v-43h43zM128 107v42h-43v-42h43zM256 363h213v-299h-426v384h213v-85z" />
+ <glyph glyph-name="business_center" unicode="business_center"
+d="M299 363v42h-86v-42h86zM427 363c23 0 42 -20 42 -43v-64c0 -23 -19 -43 -42 -43h-128v43h-86v-43h-128c-24 0 -42 19 -42 43v64c0 23 19 43 42 43h85v42l43 43h85l43 -43v-42h86zM213 171h86v21h149v-85c0 -24 -19 -43 -43 -43h-298c-24 0 -43 19 -43 43v85h149v-21z
+" />
+ <glyph glyph-name="cached" unicode="cached"
+d="M128 256h64l-85 -85l-86 85h64c0 94 77 171 171 171c33 0 65 -10 91 -27l-31 -31c-18 10 -38 15 -60 15c-71 0 -128 -57 -128 -128zM405 341l86 -85h-64c0 -94 -77 -171 -171 -171c-33 0 -65 10 -91 27l31 31c18 -10 38 -15 60 -15c71 0 128 57 128 128h-64z" />
+ <glyph glyph-name="cake" unicode="cake"
+d="M384 320c35 0 64 -29 64 -64v-33c0 -23 -19 -42 -42 -42c-11 0 -21 4 -29 12l-46 46l-46 -46c-16 -16 -43 -16 -59 0l-45 46l-46 -46c-8 -8 -18 -12 -29 -12c-23 0 -42 19 -42 42v33c0 35 29 64 64 64h107v43h42v-43h107zM354 171c14 -14 32 -22 52 -22c16 0 30 5 42 13
+v-98c0 -12 -9 -21 -21 -21h-342c-12 0 -21 9 -21 21v98c12 -8 26 -13 42 -13c20 0 38 8 52 22l23 23l23 -23c28 -28 76 -28 104 0l23 23zM256 384c-23 0 -43 20 -43 43c0 8 3 16 7 22l36 63l36 -63c4 -6 7 -14 7 -22c0 -23 -19 -43 -43 -43z" />
+ <glyph glyph-name="call" unicode="call"
+d="M141 282c31 -60 81 -110 141 -141l47 47c6 6 15 8 22 5c24 -8 50 -12 76 -12c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76c2 -7 1 -16 -5 -22z" />
+ <glyph glyph-name="call_end" unicode="call_end"
+d="M256 320c-34 0 -67 -5 -98 -15v-66c0 -8 -5 -17 -12 -20c-21 -10 -40 -23 -57 -39c-4 -4 -9 -6 -15 -6s-11 2 -15 6l-53 53c-4 4 -6 9 -6 15s2 11 6 15c65 62 153 100 250 100s185 -38 250 -100c4 -4 6 -9 6 -15s-2 -11 -6 -15l-53 -53c-4 -4 -9 -6 -15 -6s-11 2 -15 6
+c-17 16 -36 29 -57 39c-7 3 -12 10 -12 19v66c-31 10 -64 16 -98 16z" />
+ <glyph glyph-name="call_made" unicode="call_made"
+d="M192 405h213v-213h-42v141l-248 -248l-30 30l248 248h-141v42z" />
+ <glyph glyph-name="call_merge" unicode="call_merge"
+d="M160 341l96 96l96 -96h-75v-136l-128 -128l-30 30l116 115v119h-75zM363 77l-73 72l30 30l73 -72z" />
+ <glyph glyph-name="call_missed" unicode="call_missed"
+d="M418 363l30 -30l-192 -192l-149 149v-98h-43v171h171v-43h-98l119 -119z" />
+ <glyph glyph-name="call_missed_outgoing" unicode="call_missed_outgoing"
+d="M64 333l30 30l162 -162l119 119h-98v43h171v-171h-43v98l-149 -149z" />
+ <glyph glyph-name="call_received" unicode="call_received"
+d="M427 397l-248 -248h141v-42h-213v213h42v-141l248 248z" />
+ <glyph glyph-name="call_split" unicode="call_split"
+d="M213 427l-49 -49l113 -113v-180h-42v162l-101 101l-49 -49v128h128zM299 427h128v-128l-49 49l-62 -62l-30 30l62 62z" />
+ <glyph glyph-name="call_to_action" unicode="call_to_action"
+d="M448 107v64h-384v-64h384zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="camera" unicode="camera"
+d="M210 48c34.3543 59.3123 68.2469 119.086 103 178l78 -135c-37 -30 -84 -48 -135 -48c-16 0 -31 2 -46 5zM52 192h207l-79 -135c-61 23 -108 73 -128 135zM99 400c35.9996 -62.3337 71.7933 -124.873 108 -187h-160c-3 14 -4 28 -4 43c0 56 21 106 56 144zM465 299
+c3 -14 4 -28 4 -43c0 -56 -21 -106 -56 -144l-102 176l-6 11h160zM460 320h-207l79 135c61 -23 108 -73 128 -135zM201 288l-2 -2l-78 135c37 30 84 48 135 48c16 0 31 -2 46 -5z" />
+ <glyph glyph-name="camera_alt" unicode="camera_alt"
+d="M256 149c59 0 107 48 107 107s-48 107 -107 107s-107 -48 -107 -107s48 -107 107 -107zM192 469h128l39 -42h68c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h68zM188 256c0 38 30 68 68 68s68 -30 68 -68
+s-30 -68 -68 -68s-68 30 -68 68z" />
+ <glyph glyph-name="camera_enhance" unicode="camera_enhance"
+d="M256 149l-27 59l-58 27l58 26l27 59l27 -59l58 -26l-58 -27zM256 128c59 0 107 48 107 107s-48 106 -107 106s-107 -47 -107 -106s48 -107 107 -107zM192 448h128l39 -43h68c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256
+c0 23 19 42 42 42h68z" />
+ <glyph glyph-name="camera_front" unicode="camera_front"
+d="M149 469v-224c0 36 71 54 107 54s107 -18 107 -54v224h-214zM363 512c23 0 42 -20 42 -43v-298c0 -23 -19 -43 -42 -43h-150l64 -64l-64 -64v43h-106v42h106v43h-64c-23 0 -42 20 -42 43v298c0 23 19 43 42 43h214zM256 341c-23 0 -42 20 -42 43s19 43 42 43
+s43 -20 43 -43s-20 -43 -43 -43zM299 85h106v-42h-106v42z" />
+ <glyph glyph-name="camera_rear" unicode="camera_rear"
+d="M256 384c23 0 42 20 42 43s-19 42 -42 42s-43 -19 -43 -42s19 -43 43 -43zM363 512c23 0 42 -20 42 -43v-298c0 -23 -19 -43 -42 -43h-150l64 -64l-64 -64v43h-106v42h106v43h-64c-23 0 -42 20 -42 43v298c0 23 19 43 42 43h214zM299 85h106v-42h-106v42z" />
+ <glyph glyph-name="camera_roll" unicode="camera_roll"
+d="M427 320v43h-43v-43h43zM427 128v43h-43v-43h43zM341 320v43h-42v-43h42zM341 128v43h-42v-43h42zM256 320v43h-43v-43h43zM256 128v43h-43v-43h43zM299 405h170v-320h-170c0 -23 -20 -42 -43 -42h-171c-23 0 -42 19 -42 42v320c0 23 19 43 42 43h22v21c0 12 9 22 21 22
+h85c12 0 22 -10 22 -22v-21h21c23 0 43 -20 43 -43z" />
+ <glyph glyph-name="cancel" unicode="cancel"
+d="M363 179l-77 77l77 77l-30 30l-77 -77l-77 77l-30 -30l77 -77l-77 -77l30 -30l77 77l77 -77zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="card_giftcard" unicode="card_giftcard"
+d="M427 213v128h-109l45 -60l-35 -25c-24.0378 32.6288 -48.3187 65.0147 -72 98c-23.6829 -32.9837 -47.9614 -65.3719 -72 -98l-35 25l45 60h-109v-128h342zM427 107v42h-342v-42h342zM192 427c-12 0 -21 -10 -21 -22s9 -21 21 -21s21 9 21 21s-9 22 -21 22zM320 427
+c-12 0 -21 -10 -21 -22s9 -21 21 -21s21 9 21 21s-9 22 -21 22zM427 384c24 0 42 -19 42 -43v-234c0 -24 -18 -43 -42 -43h-342c-24 0 -42 19 -42 43v234c0 24 18 43 42 43h47c-2 7 -4 14 -4 21c0 35 29 64 64 64c22 0 41 -11 53 -28l11 -15l11 15c12 17 31 28 53 28
+c35 0 64 -29 64 -64c0 -7 -2 -14 -4 -21h47z" />
+ <glyph glyph-name="card_membership" unicode="card_membership"
+d="M427 299v128h-342v-128h342zM427 192v43h-342v-43h342zM427 469c24 0 42 -18 42 -42v-235c0 -24 -18 -43 -42 -43h-86v-106l-85 42l-85 -42v106h-86c-24 0 -42 19 -42 43v235c0 24 18 42 42 42h342z" />
+ <glyph glyph-name="card_travel" unicode="card_travel"
+d="M427 213v128h-64v-42h-43v42h-128v-42h-43v42h-64v-128h342zM427 107v42h-342v-42h342zM192 427v-43h128v43h-128zM427 384c24 0 42 -19 42 -43v-234c0 -24 -18 -43 -42 -43h-342c-24 0 -42 19 -42 43v234c0 24 18 43 42 43h64v43c0 24 19 42 43 42h128
+c24 0 43 -18 43 -42v-43h64z" />
+ <glyph glyph-name="casino" unicode="casino"
+d="M352 320c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM352 128c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM256 224c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM160 320c18 0 32 14 32 32s-14 32 -32 32
+s-32 -14 -32 -32s14 -32 32 -32zM160 128c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="cast" unicode="cast"
+d="M21 299c129 0 235 -105 235 -235h-43c0 106 -86 192 -192 192v43zM21 213c83 0 150 -66 150 -149h-43c0 59 -48 107 -107 107v42zM21 128c35 0 64 -29 64 -64h-64v64zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-149v43h149v298h-384v-64h-43v64
+c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="cast_connected" unicode="cast_connected"
+d="M448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-149v43h149v298h-384v-64h-43v64c0 23 20 43 43 43h384zM21 299c129 0 235 -105 235 -235h-43c0 106 -86 192 -192 192v43zM405 363v-214h-120c-27 84 -94 152 -178 179v35h298zM21 213c83 0 150 -66 150 -149
+h-43c0 59 -48 107 -107 107v42zM21 128c35 0 64 -29 64 -64h-64v64z" />
+ <glyph glyph-name="center_focus_strong" unicode="center_focus_strong"
+d="M405 107v85h43v-85c0 -23 -20 -43 -43 -43h-85v43h85zM405 448c23 0 43 -20 43 -43v-85h-43v85h-85v43h85zM107 405v-85h-43v85c0 23 20 43 43 43h85v-43h-85zM107 192v-85h85v-43h-85c-23 0 -43 20 -43 43v85h43zM256 341c47 0 85 -38 85 -85s-38 -85 -85 -85
+s-85 38 -85 85s38 85 85 85z" />
+ <glyph glyph-name="center_focus_weak" unicode="center_focus_weak"
+d="M256 213c23 0 43 20 43 43s-20 43 -43 43s-43 -20 -43 -43s20 -43 43 -43zM256 341c47 0 85 -38 85 -85s-38 -85 -85 -85s-85 38 -85 85s38 85 85 85zM405 107v85h43v-85c0 -23 -20 -43 -43 -43h-85v43h85zM405 448c23 0 43 -20 43 -43v-85h-43v85h-85v43h85zM107 405
+v-85h-43v85c0 23 20 43 43 43h85v-43h-85zM107 192v-85h85v-43h-85c-23 0 -43 20 -43 43v85h43z" />
+ <glyph glyph-name="change_history" unicode="change_history"
+d="M256 427l213 -342h-426zM256 346l-136 -218h272z" />
+ <glyph glyph-name="chat" unicode="chat"
+d="M384 341v43h-256v-43h256zM299 213v43h-171v-43h171zM128 320v-43h256v43h-256zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="chat_bubble" unicode="chat_bubble"
+d="M427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="chat_bubble_outline" unicode="chat_bubble_outline"
+d="M427 171v256h-342v-299l43 43h299zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="check" unicode="check"
+d="M192 167l226 226l30 -30l-256 -256l-119 119l30 30z" />
+ <glyph glyph-name="check_box" unicode="check_box"
+d="M213 149l192 192l-30 31l-162 -162l-76 76l-30 -30zM405 448c24 0 43 -20 43 -43v-298c0 -23 -19 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h298z" />
+ <glyph glyph-name="check_box_outline_blank" unicode="check_box_outline_blank"
+d="M405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298zM405 405h-298v-298h298v298z" />
+ <glyph glyph-name="check_circle" unicode="check_circle"
+d="M213 149l192 192l-30 31l-162 -162l-76 76l-30 -30zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="chevron_left" unicode="chevron_left"
+d="M329 354l-98 -98l98 -98l-30 -30l-128 128l128 128z" />
+ <glyph glyph-name="chevron_right" unicode="chevron_right"
+d="M213 384l128 -128l-128 -128l-30 30l98 98l-98 98z" />
+ <glyph glyph-name="child_care" unicode="child_care"
+d="M160 213h192c-16 -38 -53 -64 -96 -64s-80 26 -96 64zM256 107c68.0018 0 125.232 44.8128 143 107c2 0 4 -1 6 -1c23 0 43 20 43 43s-20 43 -43 43c-2 0 -4 -1 -6 -1c-17.7643 62.1749 -74.9972 107 -143 107c-68.0018 0 -125.232 -44.8128 -143 -107c-2 0 -4 1 -6 1
+c-23 0 -43 -20 -43 -43s20 -43 43 -43c2 0 4 1 6 1c17.7643 -62.1749 74.9972 -107 143 -107zM489 242c-5 -32 -28 -59 -59 -68c-28.2678 -59.1055 -94.8338 -110 -174 -110c-78.8834 0 -145.522 50.0487 -173 110c-31 9 -55 36 -60 68c-1 4 -2 9 -2 14s1 10 2 14
+c5 32 29 59 60 68c11 24 26 45 46 62c34 30 78 48 127 48c80.292 0 145.109 -49.147 173 -110c31 -9 55 -36 60 -68c1 -4 2 -9 2 -14s-1 -10 -2 -14zM176 288c0 15 12 27 27 27s26 -12 26 -27s-11 -27 -26 -27s-27 12 -27 27zM283 288c0 15 11 27 26 27s27 -12 27 -27
+s-12 -27 -27 -27s-26 12 -26 27z" />
+ <glyph glyph-name="child_friendly" unicode="child_friendly"
+d="M363 85c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM171 85c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM412 173c15 -14 25 -34 25 -56c0 -41 -33 -74 -74 -74c-38 0 -69 28 -74 64h-45c-5 -36 -35 -64 -73 -64
+c-41 0 -75 33 -75 74c0 28 16 53 39 66c-5 7 -45 94 -45 94h-47v43h74l20 -43h311c0 -39 -14 -75 -36 -104zM277 469c94 0 171 -76 171 -170h-171v170z" />
+ <glyph glyph-name="chrome_reader_mode" unicode="chrome_reader_mode"
+d="M448 107v277h-192v-277h192zM448 427c23 0 43 -20 43 -43v-277c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v277c0 23 20 43 43 43h384zM277 203h150v-32h-150v32zM277 309h150v-32h-150v32zM277 256h150v-32h-150v32z" />
+ <glyph glyph-name="class" unicode="class"
+d="M128 427v-171l53 32l54 -32v171h-107zM384 469c23 0 43 -19 43 -42v-342c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42v342c0 23 20 42 43 42h256z" />
+ <glyph glyph-name="clear" unicode="clear"
+d="M405 375l-119 -119l119 -119l-30 -30l-119 119l-119 -119l-30 30l119 119l-119 119l30 30l119 -119l119 119z" />
+ <glyph glyph-name="clear_all" unicode="clear_all"
+d="M149 363h299v-43h-299v43zM64 149v43h299v-43h-299zM107 235v42h298v-42h-298z" />
+ <glyph glyph-name="close" unicode="close"
+d="M405 375l-119 -119l119 -119l-30 -30l-119 119l-119 -119l-30 30l119 119l-119 119l30 30l119 -119l119 119z" />
+ <glyph glyph-name="closed_caption" unicode="closed_caption"
+d="M384 277v22c0 12 -9 21 -21 21h-64c-12 0 -22 -9 -22 -21v-86c0 -12 10 -21 22 -21h64c12 0 21 9 21 21v22h-32v-11h-43v64h43v-11h32zM235 277v22c0 12 -10 21 -22 21h-64c-12 0 -21 -9 -21 -21v-86c0 -12 9 -21 21 -21h64c12 0 22 9 22 21v22h-32v-11h-43v64h43v-11h32
+zM405 427c23 0 43 -20 43 -43v-256c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v256c0 23 19 43 43 43h298z" />
+ <glyph glyph-name="cloud" unicode="cloud"
+d="M413 298c55 -4 99 -50 99 -106c0 -59 -48 -107 -107 -107h-277c-71 0 -128 57 -128 128c0 66 50 120 114 127c27 51 80 87 142 87c78 0 142 -55 157 -129z" />
+ <glyph glyph-name="cloud_circle" unicode="cloud_circle"
+d="M352 171c29 0 53 24 53 53s-24 53 -53 53h-11c0 47 -38 86 -85 86c-40 0 -73 -28 -82 -65l-3 1c-35 0 -64 -29 -64 -64s29 -64 64 -64h181zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="cloud_done" unicode="cloud_done"
+d="M213 149l141 141l-30 30l-111 -110l-44 44l-30 -30zM413 298c55 -4 99 -50 99 -106c0 -59 -48 -107 -107 -107h-277c-71 0 -128 57 -128 128c0 66 50 120 114 127c27 51 80 87 142 87c78 0 142 -55 157 -129z" />
+ <glyph glyph-name="cloud_download" unicode="cloud_download"
+d="M363 235h-64v85h-86v-85h-64l107 -107zM413 298c55 -4 99 -50 99 -106c0 -59 -48 -107 -107 -107h-277c-71 0 -128 57 -128 128c0 66 50 120 114 127c27 51 80 87 142 87c78 0 142 -55 157 -129z" />
+ <glyph glyph-name="cloud_off" unicode="cloud_off"
+d="M165 299h-37c-47 0 -85 -39 -85 -86s38 -85 85 -85h208zM64 400l27 27l357 -357l-27 -27l-43 42h-250c-71 0 -128 57 -128 128c0 69 55 125 123 128zM413 298c55 -4 99 -50 99 -106c0 -36 -18 -68 -45 -87l-31 31c20 11 33 32 33 56c0 35 -29 64 -64 64h-32v11
+c0 65 -52 117 -117 117c-20 0 -38 -4 -54 -13l-32 31c25 16 54 25 86 25c78 0 142 -55 157 -129z" />
+ <glyph glyph-name="cloud_queue" unicode="cloud_queue"
+d="M405 128c35 0 64 29 64 64s-29 64 -64 64h-32v11c0 65 -52 117 -117 117c-54 0 -99 -36 -113 -85h-15c-47 0 -85 -39 -85 -86s38 -85 85 -85h277zM413 298c55 -4 99 -50 99 -106c0 -59 -48 -107 -107 -107h-277c-71 0 -128 57 -128 128c0 66 50 120 114 127
+c27 51 80 87 142 87c78 0 142 -55 157 -129z" />
+ <glyph glyph-name="cloud_upload" unicode="cloud_upload"
+d="M299 235h64l-107 106l-107 -106h64v-86h86v86zM413 298c55 -4 99 -50 99 -106c0 -59 -48 -107 -107 -107h-277c-71 0 -128 57 -128 128c0 66 50 120 114 127c27 51 80 87 142 87c78 0 142 -55 157 -129z" />
+ <glyph glyph-name="code" unicode="code"
+d="M311 158l99 98l-99 98l30 30l128 -128l-128 -128zM201 158l-30 -30l-128 128l128 128l30 -30l-99 -98z" />
+ <glyph glyph-name="collections" unicode="collections"
+d="M43 384h42v-299h299v-42h-299c-23 0 -42 19 -42 42v299zM235 256l-64 -85h256l-86 106l-63 -79zM469 171c0 -23 -19 -43 -42 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h256c23 0 42 -19 42 -42v-256z" />
+ <glyph glyph-name="collections_bookmark" unicode="collections_bookmark"
+d="M427 256v171h-107v-171l53 32zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h256zM85 384v-299h299v-42h-299c-23 0 -42 19 -42 42v299h42z" />
+ <glyph glyph-name="color_lens" unicode="color_lens"
+d="M373 256c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM309 341c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM203 341c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM139 256c18 0 32 14 32 32s-14 32 -32 32
+s-32 -14 -32 -32s14 -32 32 -32zM256 448c106 0 192 -77 192 -171c0 -59 -48 -106 -107 -106h-37c-18 0 -32 -14 -32 -32c0 -8 3 -15 8 -21s8 -14 8 -22c0 -18 -14 -32 -32 -32c-106 0 -192 86 -192 192s86 192 192 192z" />
+ <glyph glyph-name="colorize" unicode="colorize"
+d="M148 107l172 172l-41 41l-172 -172zM442 392c8 -8 9 -21 0 -30l-67 -67l41 -41l-30 -30l-30 30l-191 -190h-101v101l190 191l-30 30l30 30l41 -41l67 67c8 8 22 8 30 0z" />
+ <glyph glyph-name="comment" unicode="comment"
+d="M384 341v43h-256v-43h256zM384 277v43h-256v-43h256zM384 213v43h-256v-43h256zM469 427v-384l-85 85h-299c-23 0 -42 20 -42 43v256c0 23 19 42 42 42h342c23 0 42 -19 42 -42z" />
+ <glyph glyph-name="compare" unicode="compare"
+d="M405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-106v192l106 -128v277h-106v43h106zM213 128v128l-106 -128h106zM213 448v43h43v-470h-43v43h-106c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h106z" />
+ <glyph glyph-name="compare_arrows" unicode="compare_arrows"
+d="M320 235l-85 85l85 85v-64h149v-42h-149v-64zM192 213v64l85 -85l-85 -85v64h-149v42h149z" />
+ <glyph glyph-name="computer" unicode="computer"
+d="M85 384v-213h342v213h-342zM427 128h85v-43h-512v43h85c-23 0 -42 20 -42 43v213c0 23 19 43 42 43h342c23 0 42 -20 42 -43v-213c0 -23 -19 -43 -42 -43z" />
+ <glyph glyph-name="confirmation_number" unicode="confirmation_number"
+d="M277 331v42h-42v-42h42zM277 235v42h-42v-42h42zM277 139v42h-42v-42h42zM469 299c-23 0 -42 -20 -42 -43s19 -43 42 -43v-85c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v85c24 0 42 20 42 43s-19 43 -42 43v85c0 24 19 43 42 43h342c23 0 42 -19 42 -43v-85z" />
+ <glyph glyph-name="contact_mail" unicode="contact_mail"
+d="M469 256v128h-170v-128h170zM299 128v21c0 43 -85 66 -128 66s-128 -23 -128 -66v-21h256zM171 384c-35 0 -64 -29 -64 -64s29 -64 64 -64s64 29 64 64s-29 64 -64 64zM469 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-426c-23 0 -43 20 -43 43v298
+c0 23 20 43 43 43h426zM448 341l-64 -42l-64 42v22l64 -43l64 43v-22z" />
+ <glyph glyph-name="contact_phone" unicode="contact_phone"
+d="M381 213c-5 13 -8 28 -8 43s3 30 8 43h35l32 42l-42 43c-28 -21 -49 -50 -59 -85c-4 -14 -6 -28 -6 -43s2 -29 6 -43c10 -34 31 -64 59 -85l42 43l-32 42h-35zM299 128v21c0 43 -85 66 -128 66s-128 -23 -128 -66v-21h256zM171 384c-35 0 -64 -29 -64 -64s29 -64 64 -64
+s64 29 64 64s-29 64 -64 64zM469 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-426c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h426z" />
+ <glyph glyph-name="contacts" unicode="contacts"
+d="M363 149v32c0 36 -71 54 -107 54s-107 -18 -107 -54v-32h214zM256 368c-26 0 -48 -22 -48 -48s22 -48 48 -48s48 22 48 48s-22 48 -48 48zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342zM85 0v43h342v-43
+h-342zM427 512v-43h-342v43h342z" />
+ <glyph glyph-name="content_copy" unicode="content_copy"
+d="M405 64v299h-234v-299h234zM405 405c23 0 43 -19 43 -42v-299c0 -23 -20 -43 -43 -43h-234c-23 0 -43 20 -43 43v299c0 23 20 42 43 42h234zM341 491v-43h-256v-299h-42v299c0 23 19 43 42 43h256z" />
+ <glyph glyph-name="content_cut" unicode="content_cut"
+d="M405 448h64v-21l-149 -150l-43 43zM256 245c6 0 11 5 11 11s-5 11 -11 11s-11 -5 -11 -11s5 -11 11 -11zM128 85c23 0 43 19 43 43s-20 43 -43 43s-43 -19 -43 -43s20 -43 43 -43zM128 341c23 0 43 19 43 43s-20 43 -43 43s-43 -19 -43 -43s20 -43 43 -43zM206 349
+l263 -264v-21h-64l-149 149l-50 -50c5 -11 7 -22 7 -35c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85c13 0 24 -2 35 -7l50 50l-50 50c-11 -5 -22 -7 -35 -7c-47 0 -85 38 -85 85s38 85 85 85s85 -38 85 -85c0 -13 -2 -24 -7 -35z" />
+ <glyph glyph-name="content_paste" unicode="content_paste"
+d="M405 85v342h-42v-64h-214v64h-42v-342h298zM256 469c-12 0 -21 -9 -21 -21s9 -21 21 -21s21 9 21 21s-9 21 -21 21zM405 469c23 0 43 -19 43 -42v-342c0 -23 -20 -42 -43 -42h-298c-23 0 -43 19 -43 42v342c0 23 20 42 43 42h89c9 25 32 43 60 43s51 -18 60 -43h89z" />
+ <glyph glyph-name="control_point" unicode="control_point"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM277 363v-86h86v-42h-86v-86h-42v86h-86v42h86v86h42z" />
+ <glyph glyph-name="control_point_duplicate" unicode="control_point_duplicate"
+d="M320 107c82 0 149 67 149 149s-67 149 -149 149s-149 -67 -149 -149s67 -149 149 -149zM320 448c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM43 256c0 -60 34 -111 85 -135v-46c-74 26 -128 98 -128 181s54 155 128 181v-46
+c-51 -24 -85 -75 -85 -135zM341 341v-64h64v-42h-64v-64h-42v64h-64v42h64v64h42z" />
+ <glyph glyph-name="copyright" unicode="copyright"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM253 317c-30.7612 0 -40 -27.2286 -40 -58v-6c0 -30.7691 9.25381 -58 40 -58
+c18.7788 0 35 11.4624 35 30h38c0 -19.5209 -10.5691 -34.2021 -22 -44c-12.8931 -11.0512 -27.9049 -18 -51 -18c-54.5845 0 -82 36.0734 -82 90v6c0 25.8562 7.26023 49.4403 20 64c13.1991 15.0847 34.3422 27 62 27c22.1368 0 40.6281 -7.62806 52 -19
+c11.0024 -11.0024 21 -27.9871 21 -49h-38c0 5 -1 9 -3 13s-4 9 -7 12c-5.41728 5.41728 -14.6761 10 -25 10z" />
+ <glyph glyph-name="create" unicode="create"
+d="M442 362l-39 -39l-80 80l39 39c8 8 22 8 30 0l50 -50c8 -8 8 -22 0 -30zM64 144l236 236l80 -80l-236 -236h-80v80z" />
+ <glyph glyph-name="create_new_folder" unicode="create_new_folder"
+d="M405 213v43h-64v64h-42v-64h-64v-43h64v-64h42v64h64zM427 384c24 0 42 -19 42 -43v-213c0 -24 -18 -43 -42 -43h-342c-24 0 -42 19 -42 43v256c0 24 18 43 42 43h128l43 -43h171z" />
+ <glyph glyph-name="credit_card" unicode="credit_card"
+d="M427 341v43h-342v-43h342zM427 128v128h-342v-128h342zM427 427c24 0 42 -19 42 -43v-256c0 -24 -18 -43 -42 -43h-342c-24 0 -42 19 -42 43v256c0 24 18 43 42 43h342z" />
+ <glyph glyph-name="crop" unicode="crop"
+d="M149 149h342v-42h-86v-86h-42v86h-214c-23 0 -42 19 -42 42v214h-86v42h86v86h42v-342zM363 192v171h-171v42h171c23 0 42 -19 42 -42v-171h-42z" />
+ <glyph glyph-name="crop_16_9" unicode="crop_&#x31;&#x36;_&#x39;"
+d="M405 171v170h-298v-170h298zM405 384c23 0 43 -20 43 -43v-170c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v170c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="crop_3_2" unicode="crop_&#x33;_&#x32;"
+d="M405 128v256h-298v-256h298zM405 427c23 0 43 -20 43 -43v-256c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v256c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="crop_5_4" unicode="crop_&#x35;_&#x34;"
+d="M405 149v214h-298v-214h298zM405 405c23 0 43 -19 43 -42v-214c0 -23 -20 -42 -43 -42h-298c-23 0 -43 19 -43 42v214c0 23 20 42 43 42h298z" />
+ <glyph glyph-name="crop_7_5" unicode="crop_&#x37;_&#x35;"
+d="M405 192v128h-298v-128h298zM405 363c23 0 43 -20 43 -43v-128c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v128c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="crop_din" unicode="crop_din"
+d="M405 107v298h-298v-298h298zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="crop_free" unicode="crop_free"
+d="M405 448c23 0 43 -20 43 -43v-85h-43v85h-85v43h85zM405 107v85h43v-85c0 -23 -20 -43 -43 -43h-85v43h85zM107 192v-85h85v-43h-85c-23 0 -43 20 -43 43v85h43zM64 405c0 23 20 43 43 43h85v-43h-85v-85h-43v85z" />
+ <glyph glyph-name="crop_landscape" unicode="crop_landscape"
+d="M405 149v214h-298v-214h298zM405 405c23 0 43 -19 43 -42v-214c0 -23 -20 -42 -43 -42h-298c-23 0 -43 19 -43 42v214c0 23 20 42 43 42h298z" />
+ <glyph glyph-name="crop_original" unicode="crop_original"
+d="M298 250l75 -101h-234l58 76l42 -51zM405 107v298h-298v-298h298zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="crop_portrait" unicode="crop_portrait"
+d="M363 107v298h-214v-298h214zM363 448c23 0 42 -20 42 -43v-298c0 -23 -19 -43 -42 -43h-214c-23 0 -42 20 -42 43v298c0 23 19 43 42 43h214z" />
+ <glyph glyph-name="crop_rotate" unicode="crop_rotate"
+d="M171 171h256v-43h-43v-43h-43v43h-170c-24 0 -43 20 -43 43v170h-43v43h43v43h43v-256zM341 213v128h-128v43h128c23 0 43 -19 43 -43v-128h-43zM257 512c134 0 244 -104 255 -235h-32c-8 80 -57 148 -127 181l-29 -28l-81 81c5 0 9 1 14 1zM159 54l29 28l81 -81
+c-5 0 -9 -1 -14 -1c-134 0 -244 104 -255 235h32c8 -80 57 -148 127 -181z" />
+ <glyph glyph-name="crop_square" unicode="crop_square"
+d="M384 128v256h-256v-256h256zM384 427c23 0 43 -20 43 -43v-256c0 -23 -20 -43 -43 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 43 43 43h256z" />
+ <glyph glyph-name="dashboard" unicode="dashboard"
+d="M277 448h171v-128h-171v128zM277 64v213h171v-213h-171zM64 64v128h171v-128h-171zM64 235v213h171v-213h-171z" />
+ <glyph glyph-name="data_usage" unicode="data_usage"
+d="M256 107c47 0 89 22 116 56l56 -33c-39 -53 -101 -87 -172 -87c-118 0 -213 95 -213 213c0 111 84 201 192 212v-64c-72 -10 -128 -73 -128 -148c0 -83 66 -149 149 -149zM277 468c108 -11 192 -101 192 -212c0 -31 -6 -61 -18 -87l-56 33c6 17 10 35 10 54
+c0 75 -56 138 -128 148v64z" />
+ <glyph glyph-name="date_range" unicode="date_range"
+d="M405 85v235h-298v-235h298zM405 427c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-298c-24 0 -43 19 -43 42v299c0 23 19 43 43 43h21v42h43v-42h170v42h43v-42h21zM363 277v-42h-43v42h43zM277 277v-42h-42v42h42zM192 277v-42h-43v42h43z" />
+ <glyph glyph-name="dehaze" unicode="dehaze"
+d="M43 395h426v-43h-426v43zM43 288h426v-43h-426v43zM43 181h426v-42h-426v42z" />
+ <glyph glyph-name="delete" unicode="delete"
+d="M405 427v-43h-298v43h74l22 21h106l22 -21h74zM128 107v256h256v-256c0 -23 -20 -43 -43 -43h-170c-23 0 -43 20 -43 43z" />
+ <glyph glyph-name="delete_forever" unicode="delete_forever"
+d="M331 427h74v-43h-298v43h74l22 21h106zM180 259l46 -46l-45 -45l30 -30l45 45l45 -45l30 30l-45 45l45 46l-30 30l-45 -46l-45 46zM128 107v256h256v-256c0 -23 -20 -43 -43 -43h-170c-23 0 -43 20 -43 43z" />
+ <glyph glyph-name="delete_sweep" unicode="delete_sweep"
+d="M299 405v-42h-256v42h64l21 22h85l22 -22h64zM64 128v213h213v-213c0 -23 -19 -43 -42 -43h-128c-23 0 -43 20 -43 43zM320 256h128v-43h-128v43zM320 341h149v-42h-149v42zM320 171h85v-43h-85v43z" />
+ <glyph glyph-name="description" unicode="description"
+d="M277 320h118l-118 117v-117zM341 213v43h-170v-43h170zM341 128v43h-170v-43h170zM299 469l128 -128v-256c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42l1 342c0 23 19 42 42 42h171z" />
+ <glyph glyph-name="desktop_mac" unicode="desktop_mac"
+d="M448 213v214h-384v-214h384zM448 469c23 0 43 -19 43 -42v-256c0 -23 -20 -43 -43 -43h-149l42 -64v-21h-170v21l42 64h-149c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h384z" />
+ <glyph glyph-name="desktop_windows" unicode="desktop_windows"
+d="M448 171v256h-384v-256h384zM448 469c23 0 43 -19 43 -42v-256c0 -23 -20 -43 -43 -43h-149v-43h42v-42h-170v42h42v43h-149c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h384z" />
+ <glyph glyph-name="details" unicode="details"
+d="M136 384l120 -213l120 213h-240zM64 427h384l-192 -342z" />
+ <glyph glyph-name="developer_board" unicode="developer_board"
+d="M256 277h85v-128h-85v128zM128 363h107v-107h-107v107zM256 363h85v-64h-85v64zM128 235h107v-86h-107v86zM384 107v298h-299v-298h299zM469 320h-42v-43h42v-42h-42v-43h42v-43h-42v-42c0 -23 -20 -43 -43 -43h-299c-23 0 -42 20 -42 43v298c0 23 19 43 42 43h299
+c23 0 43 -20 43 -43v-42h42v-43z" />
+ <glyph glyph-name="developer_mode" unicode="developer_mode"
+d="M363 107v42h42v-85c0 -23 -19 -43 -42 -43h-214c-23 0 -42 20 -42 43v85h42v-42h214zM213 188l-30 -30l-98 98l98 98l30 -30l-67 -68zM329 158l-30 30l67 68l-67 68l30 30l98 -98zM149 405v-42h-42v85c0 23 19 43 42 43l214 -1c23 0 42 -19 42 -42v-85h-42v42h-214z" />
+ <glyph glyph-name="device_hub" unicode="device_hub"
+d="M363 171h85v-107h-107v65l-85 90l-85 -90v-65h-107v107h85l86 85v68c-25 9 -43 32 -43 60c0 35 29 64 64 64s64 -29 64 -64c0 -28 -18 -51 -43 -60v-68z" />
+ <glyph glyph-name="devices" unicode="devices"
+d="M469 149v150h-85v-150h85zM491 341c12 0 21 -9 21 -21v-213c0 -12 -9 -22 -21 -22h-128c-12 0 -22 10 -22 22v213c0 12 10 21 22 21h128zM85 384v-235h214v-64h-299v64h43v235c0 23 19 43 42 43h384v-43h-384z" />
+ <glyph glyph-name="devices_other" unicode="devices_other"
+d="M448 128v171h-85v-171h85zM469 341c11 0 22 -10 22 -21v-213c0 -11 -11 -22 -22 -22h-128c-11 0 -21 11 -21 22v213c0 11 10 21 21 21h128zM235 139c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM277 256v-38c13 -12 22 -28 22 -47s-9 -36 -22 -48
+v-38h-85v38c-13 12 -21 29 -21 48s8 35 21 47v38h85zM64 384v-256h85v-43h-85c-23 0 -43 20 -43 43v256c0 23 20 43 43 43h384v-43h-384z" />
+ <glyph glyph-name="dialer_sip" unicode="dialer_sip"
+d="M427 181c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76c2 -7 1 -16 -5 -22l-47 -47c31 -61 81 -110 141 -141l47 47c6 6 15 7 22 5c24 -8 49 -12 76 -12zM427 405v22h-22v-22h22z
+M384 448h64v-64h-43v-43h-21v107zM320 405v-64h-64v22h43v21h-43v64h64v-21h-43v-22h43zM363 448v-107h-22v107h22z" />
+ <glyph glyph-name="dialpad" unicode="dialpad"
+d="M256 491c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM256 363c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM384 363c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM384 235c23 0 43 -20 43 -43
+s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM256 235c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM384 405c-23 0 -43 20 -43 43s20 43 43 43s43 -20 43 -43s-20 -43 -43 -43zM128 235c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43z
+M128 363c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM128 491c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM256 107c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43z" />
+ <glyph glyph-name="directions" unicode="directions"
+d="M299 203l74 74l-74 75v-53h-107c-12 0 -21 -10 -21 -22v-85h42v64h86v-53zM463 271c8 -9 8 -22 0 -30l-192 -192c-8 -8 -22 -8 -30 0l-192 192c-8 8 -8 22 0 30l192 192c8 8 22 8 30 0z" />
+ <glyph glyph-name="directions_bike" unicode="directions_bike"
+d="M405 75c41 0 75 33 75 74s-34 75 -75 75s-74 -34 -74 -75s33 -74 74 -74zM405 256c60 0 107 -47 107 -107s-47 -106 -107 -106s-106 46 -106 106s46 107 106 107zM230 288l47 -49v-132h-42v106l-69 60c-9 6 -12 17 -12 30c0 11 3 21 12 30l60 60c6 9 17 12 30 12
+s23 -3 34 -12l41 -41c19 -19 44 -32 76 -32v-43c-45 0 -80 17 -108 45l-17 17zM107 75c41 0 74 33 74 74s-33 75 -74 75s-75 -34 -75 -75s34 -74 75 -74zM107 256c60 0 106 -47 106 -107s-46 -106 -106 -106s-107 46 -107 106s47 107 107 107zM331 395c-23 0 -43 19 -43 42
+s20 43 43 43s42 -20 42 -43s-19 -42 -42 -42z" />
+ <glyph glyph-name="directions_boat" unicode="directions_boat"
+d="M128 384v-85l128 42l128 -42v85h-256zM84 107l-40 142c-4.78212 14.3464 3.99001 23.6633 14 27l27 9v99c0 23 20 43 43 43h64v64h128v-64h64c23 0 43 -20 43 -43v-99l27 -9c10.0202 -3.34008 18.7871 -12.6386 14 -27l-40 -142h-1c-34 0 -65 18 -86 42
+c-21 -24 -51 -42 -85 -42s-64 18 -85 42c-21 -24 -52 -42 -86 -42h-1zM427 64h42v-43h-42c-29 0 -59 7 -86 21c-54 -28 -116 -28 -170 0c-27 -14 -57 -21 -86 -21h-42v43h42c30 0 60 10 86 28c52 -36 118 -36 170 0c26 -18 56 -28 86 -28z" />
+ <glyph glyph-name="directions_bus" unicode="directions_bus"
+d="M384 277v107h-256v-107h256zM352 149c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM160 149c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM85 171v213c0 75 77 85 171 85s171 -10 171 -85v-213c0 -19 -9 -36 -22 -48v-38
+c0 -12 -9 -21 -21 -21h-21c-12 0 -22 9 -22 21v22h-170v-22c0 -12 -10 -21 -22 -21h-21c-12 0 -21 9 -21 21v38c-13 12 -22 29 -22 48z" />
+ <glyph glyph-name="directions_car" unicode="directions_car"
+d="M107 277h298l-32 96h-234zM373 171c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM139 171c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM404 384l44 -128v-171c0 -12 -9 -21 -21 -21h-22c-12 0 -21 9 -21 21v22h-256v-22
+c0 -12 -9 -21 -21 -21h-22c-12 0 -21 9 -21 21v171l44 128c4 13 17 21 31 21h234c14 0 27 -8 31 -21z" />
+ <glyph glyph-name="directions_railway" unicode="directions_railway"
+d="M384 299v106h-256v-106h256zM256 149c23 0 43 20 43 43s-20 43 -43 43s-43 -20 -43 -43s20 -43 43 -43zM85 181v224c0 75 77 86 171 86s171 -11 171 -86v-224c0 -41 -34 -74 -75 -74l32 -32v-11h-256v11l32 32c-41 0 -75 33 -75 74z" />
+ <glyph glyph-name="directions_run" unicode="directions_run"
+d="M211 99l-149 29l8 43l105 -21l34 173l-39 -15v-73h-42v100l111 47c6 0 11 2 17 2c15 0 27 -8 36 -21l21 -34c17 -30 51 -51 92 -51v-43c-47 0 -89 21 -117 53l-13 -64l45 -42v-160h-43v128l-45 42zM288 395c-23 0 -43 20 -43 43s20 42 43 42s42 -19 42 -42
+s-19 -43 -42 -43z" />
+ <glyph glyph-name="directions_subway" unicode="directions_subway"
+d="M384 277v107h-107v-107h107zM352 149c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM235 277v107h-107v-107h107zM160 149c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM256 469c94 0 171 -10 171 -85v-203c0 -41 -34 -74 -75 -74
+l32 -32v-11h-256v11l32 32c-41 0 -75 33 -75 74v203c0 75 77 85 171 85z" />
+ <glyph glyph-name="directions_transit" unicode="directions_transit"
+d="M384 277v107h-107v-107h107zM352 149c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM235 277v107h-107v-107h107zM160 149c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM256 469c94 0 171 -10 171 -85v-203c0 -41 -34 -74 -75 -74
+l32 -32v-11h-256v11l32 32c-41 0 -75 33 -75 74v203c0 75 77 85 171 85z" />
+ <glyph glyph-name="directions_walk" unicode="directions_walk"
+d="M209 322l-60 -301h45l39 171l44 -43v-128h43v160l-45 43l13 64c28 -32 70 -53 117 -53v42c-41 0 -74 22 -91 52l-22 34c-9 13 -21 21 -36 21c-6 0 -11 -2 -17 -2l-111 -47v-100h43v72l38 15zM288 395c-23 0 -43 19 -43 42s20 43 43 43s43 -20 43 -43s-20 -42 -43 -42z
+" />
+ <glyph glyph-name="disc_full" unicode="disc_full"
+d="M213 213c23 0 43 20 43 43s-20 43 -43 43s-42 -20 -42 -43s19 -43 42 -43zM213 427c94 0 171 -77 171 -171s-77 -171 -171 -171s-170 77 -170 171s76 171 170 171zM427 363h42v-107h-42v107zM427 171v42h42v-42h-42z" />
+ <glyph glyph-name="dns" unicode="dns"
+d="M149 320c23 0 43 20 43 43s-20 42 -43 42s-42 -19 -42 -42s19 -43 42 -43zM427 448c12 0 21 -9 21 -21v-128c0 -12 -9 -22 -21 -22h-342c-12 0 -21 10 -21 22v128c0 12 9 21 21 21h342zM149 107c23 0 43 19 43 42s-20 43 -43 43s-42 -20 -42 -43s19 -42 42 -42zM427 235
+c12 0 21 -10 21 -22v-128c0 -12 -9 -21 -21 -21h-342c-12 0 -21 9 -21 21v128c0 12 9 22 21 22h342z" />
+ <glyph glyph-name="do_not_disturb" unicode="do_not_disturb"
+d="M391 151c23 29 36 66 36 105c0 94 -77 171 -171 171c-39 0 -76 -13 -105 -36zM256 85c39 0 76 13 105 36l-240 240c-23 -29 -36 -66 -36 -105c0 -94 77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="do_not_disturb_alt" unicode="do_not_disturb_alt"
+d="M256 85c94 0 171 77 171 171c0 38 -14 75 -37 105l-239 -239c30 -23 67 -37 105 -37zM85 256c0 -38 14 -75 37 -105l239 239c-30 23 -67 37 -105 37c-94 0 -171 -77 -171 -171zM256 469c117 0 213 -96 213 -213s-96 -213 -213 -213s-213 96 -213 213s96 213 213 213z" />
+ <glyph glyph-name="do_not_disturb_off" unicode="do_not_disturb_off"
+d="M149 235h74l-43 42h-31v-42zM48 464l416 -416l-28 -27l-59 60c-34 -24 -76 -38 -121 -38c-118 0 -213 95 -213 213c0 45 14 87 38 121l-60 59zM363 277h-74l-154 154c34 24 76 38 121 38c118 0 213 -95 213 -213c0 -45 -14 -87 -38 -121l-99 100h31v42z" />
+ <glyph glyph-name="do_not_disturb_on" unicode="do_not_disturb_on"
+d="M363 235v42h-214v-42h214zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="dock" unicode="dock"
+d="M341 192v213h-170v-213h170zM341 490c23 0 43 -19 43 -42v-299c0 -23 -20 -42 -43 -42h-170c-23 0 -43 19 -43 42v299c0 23 20 43 43 43zM171 21v43h170v-43h-170z" />
+ <glyph glyph-name="domain" unicode="domain"
+d="M384 192v-43h-43v43h43zM384 277v-42h-43v42h43zM427 107v213h-171v-43h43v-42h-43v-43h43v-43h-43v-42h171zM213 363v42h-42v-42h42zM213 277v43h-42v-43h42zM213 192v43h-42v-43h42zM213 107v42h-42v-42h42zM128 363v42h-43v-42h43zM128 277v43h-43v-43h43zM128 192v43
+h-43v-43h43zM128 107v42h-43v-42h43zM256 363h213v-299h-426v384h213v-85z" />
+ <glyph glyph-name="done" unicode="done"
+d="M192 166l226 227l30 -30l-256 -256l-119 119l29 30z" />
+ <glyph glyph-name="done_all" unicode="done_all"
+d="M9 226l30 30l119 -119l-30 -30zM474 393l31 -30l-256 -256l-120 119l31 30l89 -89zM384 363l-135 -136l-30 30l135 136z" />
+ <glyph glyph-name="donut_large" unicode="donut_large"
+d="M277 108c64 9 119 63 128 127h64c-10 -107 -85 -182 -192 -192v65zM405 277c-9 64 -64 118 -128 127v65c107 -10 182 -85 192 -192h-64zM235 404c-64 -10 -128 -73 -128 -148s64 -138 128 -148v-65c-107 11 -192 102 -192 213s85 202 192 213v-65z" />
+ <glyph glyph-name="donut_small" unicode="donut_small"
+d="M277 195c21 6 33 22 40 40h152c-10 -101 -85 -182 -192 -192v152zM317 277c-7 18 -19 34 -40 40v152c107 -10 182 -91 192 -192h-152zM235 317c-21 -9 -43 -33 -43 -61s22 -52 43 -61v-152c-107 11 -192 102 -192 213s85 202 192 213v-152z" />
+ <glyph glyph-name="drafts" unicode="drafts"
+d="M256 235l176 110l-176 103l-176 -103zM469 341v-213c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v213c0 15 8 30 20 37l193 113l193 -113c12 -7 20 -22 20 -37z" />
+ <glyph glyph-name="drag_handle" unicode="drag_handle"
+d="M85 192v43h342v-43h-342zM427 320v-43h-342v43h342z" />
+ <glyph glyph-name="drive_eta" unicode="drive_eta"
+d="M107 299h298l-32 96h-234zM373 192c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM139 192c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM404 405l44 -128v-170c0 -12 -9 -22 -21 -22h-22c-12 0 -21 10 -21 22v21h-256v-21
+c0 -12 -9 -22 -21 -22h-22c-12 0 -21 10 -21 22v170l44 128c4 13 17 22 31 22h234c14 0 27 -9 31 -22z" />
+ <glyph glyph-name="dvr" unicode="dvr"
+d="M149 256v-43h-42v43h42zM149 341v-42h-42v42h42zM405 256v-43h-234v43h234zM405 341v-42h-234v42h234zM448 149v256h-384v-256h384zM448 448c23 0 43 -20 43 -43l-1 -256c0 -23 -19 -42 -42 -42h-107v-43h-170v43h-107c-23 0 -43 19 -43 42v256c0 23 20 43 43 43h384z
+" />
+ <glyph glyph-name="edit" unicode="edit"
+d="M442 362l-39 -39l-80 80l39 39c8 8 22 8 30 0l50 -50c8 -8 8 -22 0 -30zM64 144l236 236l80 -80l-236 -236h-80v80z" />
+ <glyph glyph-name="edit_location" unicode="edit_location"
+d="M318 351c3 3 3 8 0 11l-20 20c-3 3 -8 3 -11 0l-15 -15l31 -31zM223 256l71 71l-31 31l-71 -71v-31h31zM256 469c82 0 149 -67 149 -149c0 -112 -149 -277 -149 -277s-149 165 -149 277c0 82 67 149 149 149z" />
+ <glyph glyph-name="eject" unicode="eject"
+d="M256 405l142 -213h-284zM107 149h298v-42h-298v42z" />
+ <glyph glyph-name="email" unicode="email"
+d="M427 341v43l-171 -107l-171 107v-43l171 -106zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342z" />
+ <glyph glyph-name="enhanced_encryption" unicode="enhanced_encryption"
+d="M341 171v42h-64v64h-42v-64h-64v-42h64v-64h42v64h64zM190 384v-43h132v43c0 36 -30 66 -66 66s-66 -30 -66 -66zM384 341c23 0 43 -19 43 -42v-214c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42v214c0 23 20 42 43 42h21v43c0 59 48 107 107 107s107 -48 107 -107
+v-43h21z" />
+ <glyph glyph-name="equalizer" unicode="equalizer"
+d="M341 320h86v-235h-86v235zM85 85v171h86v-171h-86zM213 85v342h86v-342h-86z" />
+ <glyph glyph-name="error" unicode="error"
+d="M277 235v128h-42v-128h42zM277 149v43h-42v-43h42zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="error_outline" unicode="error_outline"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM235 363h42v-128h-42v128zM235 192h42v-43h-42v43z" />
+ <glyph glyph-name="euro_symbol" unicode="euro_symbol"
+d="M320 117c35 0 66 13 90 34l38 -38c-34 -31 -79 -49 -128 -49c-84 0 -155 54 -181 128h-75v43h65c-1 7 -1 14 -1 21s0 14 1 21h-65v43h75c26 74 97 128 181 128c49 0 94 -18 128 -49l-38 -38c-24 21 -56 34 -90 34c-53 0 -100 -31 -123 -75h123v-43h-137
+c-1 -7 -2 -14 -2 -21s1 -14 2 -21h137v-43h-123c23 -44 69 -75 123 -75z" />
+ <glyph glyph-name="ev_station" unicode="ev_station"
+d="M171 128l85 149h-43v107l-85 -160h43v-96zM384 299c12 0 21 9 21 21s-9 21 -21 21s-21 -9 -21 -21s9 -21 21 -21zM422 358c10 -10 15 -23 15 -38v-203c0 -29 -24 -53 -53 -53s-53 24 -53 53v107h-32v-160h-214v341c0 23 20 43 43 43h128c23 0 43 -20 43 -43v-149h21
+c23 0 43 -20 43 -43v-96c0 -12 9 -21 21 -21s21 9 21 21v154c-7 -3 -13 -4 -21 -4c-29 0 -53 24 -53 53c0 23 14 42 34 50l-45 45l23 22z" />
+ <glyph glyph-name="event" unicode="event"
+d="M405 107v234h-298v-234h298zM341 491h43v-43h21c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h21v43h43v-43h170v43zM363 256v-107h-107v107h107z" />
+ <glyph glyph-name="event_available" unicode="event_available"
+d="M405 107v234h-298v-234h298zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h21v43h43v-43h170v43h43v-43h21zM353 276l-127 -127l-68 68l23 23l45 -45l104 104z" />
+ <glyph glyph-name="event_busy" unicode="event_busy"
+d="M405 107v234h-298v-234h298zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h21v43h43v-43h170v43h43v-43h21zM199 149l-23 23l52 52l-52 52l23 23l52 -52l52 52l22 -23l-52 -52l52 -52l-22 -23l-52 52z" />
+ <glyph glyph-name="event_note" unicode="event_note"
+d="M299 213v-42h-150v42h150zM405 107v234h-298v-234h298zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h21v43h43v-43h170v43h43v-43h21zM363 299v-43h-214v43h214z" />
+ <glyph glyph-name="event_seat" unicode="event_seat"
+d="M363 235h-214v170c0 23 20 43 43 43h128c23 0 43 -20 43 -43v-170zM43 299h64v-64h-64v64zM405 299h64v-64h-64v64zM85 64v128h342v-128h-64v64h-214v-64h-64z" />
+ <glyph glyph-name="exit_to_app" unicode="exit_to_app"
+d="M405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v85h43v-85h298v298h-298v-85h-43v85c0 23 19 43 43 43h298zM215 179l55 56h-206v42h206l-55 56l30 30l107 -107l-107 -107z" />
+ <glyph glyph-name="expand_less" unicode="expand_less"
+d="M256 341l128 -128l-30 -30l-98 98l-98 -98l-30 30z" />
+ <glyph glyph-name="expand_more" unicode="expand_more"
+d="M354 329l30 -30l-128 -128l-128 128l30 30l98 -98z" />
+ <glyph glyph-name="explicit" unicode="explicit"
+d="M320 320v43h-128v-214h128v43h-85v43h85v42h-85v43h85zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="explore" unicode="explore"
+d="M303 209l81 175l-175 -81l-81 -175zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM256 279c13 0 23 -10 23 -23s-10 -23 -23 -23s-23 10 -23 23s10 23 23 23z" />
+ <glyph glyph-name="exposure" unicode="exposure"
+d="M427 85v342l-342 -342h342zM107 405v-42h128v42h-128zM427 469c23 0 42 -19 42 -42v-342c0 -23 -19 -42 -42 -42h-342c-23 0 -42 19 -42 42v342c0 23 19 42 42 42h342zM320 149h-43v43h43v43h43v-43h42v-43h-42v-42h-43v42z" />
+ <glyph glyph-name="exposure_neg_1" unicode="exposure_neg_&#x31;"
+d="M405 128h-42v227l-64 -22v36l100 36h6v-277zM85 277h171v-42h-171v42z" />
+ <glyph glyph-name="exposure_neg_2" unicode="exposure_neg_&#x32;"
+d="M43 277h170v-42h-170v42zM351 405c51.6805 0 86 -23.4377 86 -75c0 -8 -1 -17 -4 -25s-6 -17 -11 -25c-10.9564 -17.5303 -25.11 -35.11 -40 -50l-61 -66h127v-36h-184v32l89 97c13.5256 13.5256 22.2329 25.3882 31 40c5.07755 8.46258 7 15.5272 7 28c0 6 0 13 -2 18
+c-5.9589 14.8973 -17.1504 26 -38 26c-30.4379 0 -46 -18.4676 -46 -49h-46c0 25.6678 10.3448 46.3448 24 60c15.6925 15.6925 36.8462 25 68 25z" />
+ <glyph glyph-name="exposure_plus_1" unicode="exposure_plus_&#x31;"
+d="M427 128h-43v227l-64 -22v36l100 36h7v-277zM213 363v-86h86v-42h-86v-86h-42v86h-86v42h86v86h42z" />
+ <glyph glyph-name="exposure_plus_2" unicode="exposure_plus_&#x32;"
+d="M171 363v-86h85v-42h-85v-86h-43v86h-85v42h85v86h43zM342 164h127v-36h-184v32l89 97c13.5256 13.5256 22.2329 25.3882 31 40c4.82857 8.04762 8 16.6883 8 28c0 13.988 -4.98597 22.9813 -11 31c-6.38798 8.51731 -15.0381 13 -30 13
+c-15.4008 0 -27.3364 -6.33642 -35 -14c-6.99604 -6.99604 -11 -21.7099 -11 -35h-46c0 25.6678 10.3448 46.3448 24 60c8 8 17 15 29 19s25 6 40 6c14 0 25 -2 36 -5c10 -4 20 -8 27 -15c13.4025 -11.4878 23 -30.9925 23 -55c0 -20.2222 -7.3586 -36.1738 -16 -50
+c-5 -8 -10 -17 -17 -25s-15 -17 -23 -25z" />
+ <glyph glyph-name="exposure_zero" unicode="exposure_zero"
+d="M299 296c0 25.8021 -1.44348 42.6652 -11 57c-4 6 -9 9 -14 12s-11 4 -18 4s-13 -1 -18 -4s-10 -6 -14 -12c-9.53524 -14.3029 -11 -31.2267 -11 -57v-57c0 -34.3202 4.66098 -58.7966 25 -71c5 -3 11 -4 18 -4c16.7682 0 24.8052 6.20777 32 17
+c8.87006 13.3051 12 34.4084 12 58v57h-1zM168 289c0 68.5293 21.3782 116 88 116c46.5088 0 71.845 -23.9186 82 -62c4 -15 7 -32 7 -54v-44h-1c0 -39.7402 -7.68654 -69.0255 -24 -90c-8 -9 -17 -17 -28 -21s-23 -6 -36 -6s-25 2 -36 6s-20 12 -28 21
+c-17.4464 19.6272 -24 51.2554 -24 90v44z" />
+ <glyph glyph-name="extension" unicode="extension"
+d="M437 277c29 0 54 -24 54 -53s-25 -53 -54 -53h-32v-86c0 -23 -19 -42 -42 -42h-81v32c0 32 -26 57 -58 57s-58 -25 -58 -57v-32h-81c-23 0 -42 19 -42 42v81h32c32 0 57 26 57 58s-25 58 -57 58h-32v81c0 23 19 42 42 42h86v32c0 29 24 54 53 54s53 -25 53 -54v-32h86
+c23 0 42 -19 42 -42v-86h32z" />
+ <glyph glyph-name="face" unicode="face"
+d="M256 85c94 0 171 77 171 171c0 17 -3 33 -7 48c-15 -4 -31 -5 -48 -5c-72 0 -135 35 -174 90c-21 -51 -62 -93 -112 -115c-1 -6 -1 -12 -1 -18c0 -94 77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM320 261
+c15 0 27 -11 27 -26s-12 -27 -27 -27s-27 12 -27 27s12 26 27 26zM192 261c15 0 27 -11 27 -26s-12 -27 -27 -27s-27 12 -27 27s12 26 27 26z" />
+ <glyph glyph-name="fast_forward" unicode="fast_forward"
+d="M277 384l182 -128l-182 -128v256zM85 128v256l182 -128z" />
+ <glyph glyph-name="fast_rewind" unicode="fast_rewind"
+d="M245 256l182 128v-256zM235 128l-182 128l182 128v-256z" />
+ <glyph glyph-name="favorite" unicode="favorite"
+d="M256 57l-31 28c-110 100 -182 165 -182 246c0 66 51 117 117 117c37 0 73 -18 96 -45c23 27 59 45 96 45c66 0 117 -51 117 -117c0 -81 -72 -147 -182 -247z" />
+ <glyph glyph-name="favorite_border" unicode="favorite_border"
+d="M258 116c102 92 169 153 169 215c0 43 -32 74 -75 74c-33 0 -65 -21 -76 -50h-40c-11 29 -43 50 -76 50c-43 0 -75 -31 -75 -74c0 -62 67 -123 169 -215l2 -2zM352 448c66 0 117 -51 117 -117c0 -81 -72 -146 -182 -246l-31 -28l-31 27c-110 100 -182 166 -182 247
+c0 66 51 117 117 117c37 0 73 -18 96 -45c23 27 59 45 96 45z" />
+ <glyph glyph-name="featured_play_list" unicode="featured_play_list"
+d="M256 363v42h-192v-42h192zM256 277v43h-192v-43h192zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="featured_video" unicode="featured_video"
+d="M256 256v149h-192v-149h192zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="feedback" unicode="feedback"
+d="M277 299v85h-42v-85h42zM277 213v43h-42v-43h42zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="fiber_dvr" unicode="fiber_dvr"
+d="M448 267v21c0 18 -14 32 -32 32h-75v-128h32v43h25l18 -43h32l-19 45c11 5 19 17 19 30zM269 192l38 128h-32l-22 -73l-21 73h-32l37 -128h32zM171 224v64c0 18 -14 32 -32 32h-75v-128h75c18 0 32 14 32 32zM448 448c24 0 43 -19 43 -43v-298c0 -23 -19 -43 -43 -43
+h-384c-24 0 -43 20 -43 43v298c0 24 19 43 43 43h384zM96 288h43v-64h-43v64zM373 288h43v-21h-43v21z" />
+ <glyph glyph-name="fiber_manual_record" unicode="fiber_manual_record"
+d="M85 256c0 94 77 171 171 171s171 -77 171 -171s-77 -171 -171 -171s-171 77 -171 171z" />
+ <glyph glyph-name="fiber_new" unicode="fiber_new"
+d="M437 213v107h-26v-96h-24v75h-27v-75h-24v96h-27v-107c0 -12 10 -21 22 -21h85c12 0 21 9 21 21zM288 293v27h-85v-128h85v27h-53v23h53v27h-53v24h53zM181 192v128h-26v-75l-54 75h-26v-128h26v75l55 -75h25zM427 427c24 0 42 -19 42 -43v-256c0 -24 -18 -43 -42 -43
+h-342c-24 0 -42 19 -42 43v256c0 24 18 43 42 43h342z" />
+ <glyph glyph-name="fiber_pin" unicode="fiber_pin"
+d="M427 192v128h-27v-75l-53 75h-27v-128h27v75l54 -75h26zM267 192v128h-32v-128h32zM192 267v21c0 18 -14 32 -32 32h-75v-128h32v43h43c18 0 32 14 32 32zM427 427c24 0 42 -19 42 -43v-256c0 -24 -18 -43 -42 -43h-342c-24 0 -42 19 -42 43v256c0 24 18 43 42 43h342z
+M117 288h43v-21h-43v21z" />
+ <glyph glyph-name="fiber_smart_record" unicode="fiber_smart_record"
+d="M363 421c74 -19 128 -85 128 -165s-54 -146 -128 -165v44c50 17 85 65 85 121s-35 104 -85 121v44zM21 256c0 94 77 171 171 171s171 -77 171 -171s-77 -171 -171 -171s-171 77 -171 171z" />
+ <glyph glyph-name="file_download" unicode="file_download"
+d="M107 128h298v-43h-298v43zM405 320l-149 -149l-149 149h85v128h128v-128h85z" />
+ <glyph glyph-name="file_upload" unicode="file_upload"
+d="M107 128h298v-43h-298v43zM192 171v128h-85l149 149l149 -149h-85v-128h-128z" />
+ <glyph glyph-name="filter" unicode="filter"
+d="M448 149v299h-299v-299h299zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h299zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43zM340 292l76 -100h-235l59 75l42 -50z" />
+ <glyph glyph-name="filter_1" unicode="filter_&#x31;"
+d="M448 149v299h-299v-299h299zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h299zM299 192v171h-43v42h85v-213h-42zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43z" />
+ <glyph glyph-name="filter_2" unicode="filter_&#x32;"
+d="M363 235v-43h-128v85c0 24 19 43 42 43h43v43h-85v42h85c23 0 43 -18 43 -42v-43c0 -24 -20 -43 -43 -43h-43v-42h86zM448 149v299h-299v-299h299zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h299zM64 405
+v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43z" />
+ <glyph glyph-name="filter_3" unicode="filter_&#x33;"
+d="M363 235c0 -24 -20 -43 -43 -43h-85v43h85v42h-43v43h43v43h-85v42h85c23 0 43 -18 43 -42v-32c0 -18 -14 -32 -32 -32c18 0 32 -14 32 -32v-32zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43zM448 149v299h-299v-299h299zM448 491c23 0 43 -20 43 -43v-299
+c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h299z" />
+ <glyph glyph-name="filter_4" unicode="filter_&#x34;"
+d="M448 149v299h-299v-299h299zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h299zM320 192v85h-85v128h42v-85h43v85h43v-213h-43zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43z" />
+ <glyph glyph-name="filter_5" unicode="filter_&#x35;"
+d="M363 235c0 -24 -20 -43 -43 -43h-85v43h85v42h-85v128h128v-42h-86v-43h43c23 0 43 -19 43 -43v-42zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43zM448 149v299h-299v-299h299zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299
+c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h299z" />
+ <glyph glyph-name="filter_6" unicode="filter_&#x36;"
+d="M277 277v-42h43v42h-43zM277 192c-23 0 -42 19 -42 43v128c0 24 19 42 42 42h86v-42h-86v-43h43c23 0 43 -19 43 -43v-42c0 -24 -20 -43 -43 -43h-43zM448 149v299h-299v-299h299zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299
+c0 23 19 43 42 43h299zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43z" />
+ <glyph glyph-name="filter_7" unicode="filter_&#x37;"
+d="M277 192h-42l85 171h-85v42h128v-42zM448 149v299h-299v-299h299zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h299zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43z" />
+ <glyph glyph-name="filter_8" unicode="filter_&#x38;"
+d="M277 277v-42h43v42h-43zM277 363v-43h43v43h-43zM277 192c-23 0 -42 19 -42 43v32c0 18 14 32 32 32c-18 0 -32 14 -32 32v32c0 24 19 42 42 42h43c23 0 43 -18 43 -42v-32c0 -18 -14 -32 -32 -32c18 0 32 -14 32 -32v-32c0 -24 -20 -43 -43 -43h-43zM448 149v299h-299
+v-299h299zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h299zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43z" />
+ <glyph glyph-name="filter_9" unicode="filter_&#x39;"
+d="M320 320v43h-43v-43h43zM320 405c23 0 43 -18 43 -42v-128c0 -24 -20 -43 -43 -43h-85v43h85v42h-43c-23 0 -42 19 -42 43v43c0 24 19 42 42 42h43zM448 149v299h-299v-299h299zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299
+c0 23 19 43 42 43h299zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43z" />
+ <glyph glyph-name="filter_9_plus" unicode="filter_&#x39;_plus"
+d="M448 320v128h-299v-299h299v128h-43v-42h-42v42h-43v43h43v43h42v-43h43zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h299zM235 320h21v21h-21v-21zM299 256c0 -24 -20 -43 -43 -43h-64v43h64v21h-21
+c-23 0 -43 19 -43 43v21c0 24 20 43 43 43h21c23 0 43 -19 43 -43v-85zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43z" />
+ <glyph glyph-name="filter_b_and_w" unicode="filter_b_and_w"
+d="M405 107v298h-149v-128zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298zM256 277l-149 -170h149v170z" />
+ <glyph glyph-name="filter_center_focus" unicode="filter_center_focus"
+d="M256 320c35 0 64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64s29 64 64 64zM405 107v85h43v-85c0 -23 -20 -43 -43 -43h-85v43h85zM405 448c23 0 43 -20 43 -43v-85h-43v85h-85v43h85zM107 405v-85h-43v85c0 23 20 43 43 43h85v-43h-85zM107 192v-85h85v-43h-85
+c-23 0 -43 20 -43 43v85h43z" />
+ <glyph glyph-name="filter_drama" unicode="filter_drama"
+d="M405 128c35 0 64 29 64 64s-29 64 -64 64h-32v11c0 65 -52 117 -117 117c-38 0 -72 -18 -94 -47c54 -15 94 -65 94 -124h-43c0 47 -38 86 -85 86s-85 -39 -85 -86s38 -85 85 -85h277zM413 298c55 -4 99 -50 99 -106c0 -59 -48 -107 -107 -107h-277
+c-71 0 -128 57 -128 128c0 66 50 120 114 127c27 51 80 87 142 87c78 0 142 -55 157 -129z" />
+ <glyph glyph-name="filter_frames" unicode="filter_frames"
+d="M384 341h-256v-213h256zM427 85v299h-96l-74 75l-75 -75h-97v-299h342zM427 427c23 0 42 -20 42 -43v-299c0 -23 -19 -42 -42 -42h-342c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h86l85 85l85 -85h86z" />
+ <glyph glyph-name="filter_hdr" unicode="filter_hdr"
+d="M299 384l192 -256h-470l128 171l96 -128l34 25l-60 81z" />
+ <glyph glyph-name="filter_list" unicode="filter_list"
+d="M128 235v42h256v-42h-256zM64 384h384v-43h-384v43zM213 128v43h86v-43h-86z" />
+ <glyph glyph-name="filter_none" unicode="filter_none"
+d="M448 149v299h-299v-299h299zM448 491c23 0 43 -20 43 -43v-299c0 -23 -20 -42 -43 -42h-299c-23 0 -42 19 -42 42v299c0 23 19 43 42 43h299zM64 405v-341h341v-43h-341c-23 0 -43 20 -43 43v341h43z" />
+ <glyph glyph-name="filter_tilt_shift" unicode="filter_tilt_shift"
+d="M121 91l30 30c24 -18 53 -30 84 -34v-43c-43 4 -82 21 -114 47zM277 87c31 4 60 16 83 34l31 -30c-32 -26 -71 -43 -114 -47v43zM391 151c18 24 30 52 34 83h43c-4 -43 -21 -81 -47 -113zM320 256c0 -35 -29 -64 -64 -64s-64 29 -64 64s29 64 64 64s64 -29 64 -64z
+M87 235c4 -31 16 -60 34 -83l-30 -31c-26 32 -43 71 -47 114h43zM121 361c-18 -24 -30 -53 -34 -84h-43c4 43 21 82 47 114zM425 277c-4 31 -16 60 -34 84l30 30c26 -32 43 -71 47 -114h-43zM391 421l-30 -30c-24 18 -53 30 -84 34v43c43 -4 82 -21 114 -47zM235 425
+c-31 -4 -60 -16 -84 -34l-30 30c32 26 71 43 114 47v-43z" />
+ <glyph glyph-name="filter_vintage" unicode="filter_vintage"
+d="M256 171c47 0 85 38 85 85s-38 85 -85 85s-85 -38 -85 -85s38 -85 85 -85zM49 137c0 49.2164 31.3621 102.121 82 119c-6 2 -12 6 -18 9c-41 24 -64 66 -64 110c38 22 87 24 128 0c6 -3 12 -7 17 -11c-1 7 -2 13 -2 20c0 47 26 89 64 111c38 -22 64 -64 64 -111
+c0 -7 -1 -13 -2 -20c5 4 11 8 17 11c41 24 90 22 128 0c0 -44 -23 -86 -64 -110c-6 -3 -12 -7 -18 -9c6 -2 12 -6 18 -9c41 -24 64 -66 64 -110c-38 -22 -87 -24 -128 0c-6 3 -12 7 -17 11c1 -7 2 -13 2 -20c0 -47 -26 -89 -64 -111c-38 22 -64 64 -64 111c0 7 1 13 2 20
+c-5 -4 -11 -8 -17 -11c-41 -24 -90 -22 -128 0z" />
+ <glyph glyph-name="find_in_page" unicode="find_in_page"
+d="M192 235c0 35 29 64 64 64s64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64zM427 94l-82 82c11 17 18 37 18 59c0 59 -48 106 -107 106s-107 -47 -107 -106s48 -107 107 -107c22 0 42 7 59 18l94 -95c-7 -5 -15 -8 -25 -8h-256c-23 0 -43 19 -43 42l1 342c0 23 19 42 42 42
+h171l128 -128v-247z" />
+ <glyph glyph-name="find_replace" unicode="find_replace"
+d="M355 189l103 -104l-31 -31l-104 103c-25 -18 -55 -29 -88 -29c-41 0 -79 17 -106 44l-44 -44v128h128l-54 -54c19 -19 47 -31 76 -31c52 0 94 36 104 85h43c-3 -25 -13 -48 -27 -67zM235 384c-52 0 -95 -36 -105 -85h-43c10 72 73 128 148 128c41 0 78 -17 105 -44l44 44
+v-128h-128l54 54c-19 19 -46 31 -75 31z" />
+ <glyph glyph-name="fingerprint" unicode="fingerprint"
+d="M318 43h-3c-34 9 -56 22 -79 45c-30 30 -46 69 -46 111c0 35 29 63 65 63s66 -28 66 -63c0 -23 19 -41 44 -41s45 18 45 41c0 80 -70 146 -155 146c-61 0 -116 -34 -141 -86c-8 -17 -12 -38 -12 -60c0 -17 1 -43 14 -77c4.57857 -13.7357 -15.4693 -18.3268 -20 -7
+c-10 28 -16 55 -16 84c0 26 5 49 15 69c28 60 91 99 160 99c97 0 176 -76 176 -168c0 -35 -30 -62 -66 -62s-65 27 -65 62c0 23 -20 42 -45 42s-44 -19 -44 -42c0 -36 14 -70 40 -96c20 -20 40 -31 70 -39c6 -1 8 -7 7 -13c-1 -5 -6 -8 -10 -8zM265 199
+c0 -48.7573 40.2888 -91 96 -91c9.9641 0 32.7732 7.36098 35 -6c1 -6 -3 -12 -9 -13c-12 -2 -23 -2 -26 -2c-25 0 -48 6 -66 19c-32 22 -51 56 -51 93c0 6 5 11 11 11s10 -5 10 -11zM208 47c-3 0 -5 1 -7 3c-19 19 -29 31 -43 57c-15 26 -23 58 -23 92c0 63 54 115 121 115
+s121 -52 121 -115c0 -6 -5 -10 -11 -10s-11 4 -11 10c0 52 -44 94 -99 94s-99 -42 -99 -94c0 -31 6 -59 19 -82c14 -25 24 -35 40 -52c4 -4 4 -11 0 -15c-2 -2 -5 -3 -8 -3zM75 305c-8.81177 0 -13.8926 7.8456 -9 16c21 30 48 54 80 70c67 35 153 35 220 0
+c32 -16 59 -39 80 -69c3 -5 2 -12 -3 -15s-12 -2 -15 3c-19 27 -43 47 -72 62c-61 31 -139 32 -200 0c-29 -15 -54 -36 -73 -63c-2 -3 -5 -4 -8 -4zM380 417c-2 0 -4 0 -5 1c-41 21 -77 30 -119 30s-83 -10 -119 -30c-11.6907 -7.0144 -21.6392 12.0165 -10 19
+c40 22 83 32 129 32c45 0 85 -10 129 -32c9.10556 -5.46333 5.20303 -20 -5 -20z" />
+ <glyph glyph-name="first_page" unicode="first_page"
+d="M128 384h43v-256h-43v256zM393 158l-30 -30l-128 128l128 128l30 -30l-98 -98z" />
+ <glyph glyph-name="fitness_center" unicode="fitness_center"
+d="M439 195l30 -31l-45 -45l30 -31l-30 -30l-31 30l-45 -45l-31 30l-30 -30l-31 30l76 76l-183 183l-76 -76l-30 31l30 30l-30 31l45 45l-30 31l30 30l31 -30l45 45l31 -30l30 30l31 -30l-76 -76l183 -183l76 76l30 -31z" />
+ <glyph glyph-name="flag" unicode="flag"
+d="M307 384h120v-213h-150l-8 42h-120v-149h-42v363h192z" />
+ <glyph glyph-name="flare" unicode="flare"
+d="M235 21v128h42v-128h-42zM120 150l46 46l30 -30l-46 -46zM316 166l30 30l46 -46l-30 -30zM256 320c35 0 64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64s29 64 64 64zM363 277h128v-42h-128v42zM392 362l-46 -46l-30 30l46 46zM277 491v-128h-42v128h42zM196 346l-30 -30
+l-46 46l30 30zM149 277v-42h-128v42h128z" />
+ <glyph glyph-name="flash_auto" unicode="flash_auto"
+d="M359 349h50l-25 78zM405 469l69 -192h-41l-15 43h-68l-15 -43h-41l69 192h42zM64 469h213l-85 -192h85l-149 -256v192h-64v256z" />
+ <glyph glyph-name="flash_off" unicode="flash_off"
+d="M363 299l-33 -57l-181 181v46h214l-86 -170h86zM70 448l335 -336l-27 -27l-88 89l-77 -131v192h-64v79l-106 107z" />
+ <glyph glyph-name="flash_on" unicode="flash_on"
+d="M149 469h214l-86 -170h86l-150 -256v192h-64v234z" />
+ <glyph glyph-name="flight" unicode="flight"
+d="M217 320zM448 171l-171 53v-117l43 -32v-32l-75 21l-74 -21v32l42 32v117l-170 -53v42l170 107v117c0 18 14 32 32 32s32 -14 32 -32v-117l171 -107v-42z" />
+ <glyph glyph-name="flight_land" unicode="flight_land"
+d="M299 204c-68.2362 18.7638 -137.045 36.9549 -206 55l-34 10v110l31 -8l20 -50l106 -28v176l41 -11l59 -192l113 -30c17 -5 27 -23 23 -40c-5 -17 -22 -26 -39 -22zM53 107h406v-43h-406v43z" />
+ <glyph glyph-name="flight_takeoff" unicode="flight_takeoff"
+d="M471 306c4 -17 -6 -34 -23 -39c-68.7788 -18.2212 -137.501 -36.499 -206 -55l-113 -30l-34 -10c-18.76 31.9067 -37.3464 63.9869 -56 96l31 8l42 -32l106 28l-88 153l41 11l147 -137l114 30c17 5 35 -6 39 -23zM53 107h406v-43h-406v43z" />
+ <glyph glyph-name="flip" unicode="flip"
+d="M405 64v43h43c0 -23 -20 -43 -43 -43zM405 235v42h43v-42h-43zM320 405v43h43v-43h-43zM405 149v43h43v-43h-43zM235 21v470h42v-470h-42zM405 448c23 0 43 -20 43 -43h-43v43zM64 405c0 23 20 43 43 43h85v-43h-85v-298h85v-43h-85c-23 0 -43 20 -43 43v298zM405 320v43
+h43v-43h-43zM320 64v43h43v-43h-43z" />
+ <glyph glyph-name="flip_to_back" unicode="flip_to_back"
+d="M320 149v43h43v-43h-43zM320 405v43h43v-43h-43zM107 363v-256h256v-43h-256c-24 0 -43 20 -43 43v256h43zM405 149v43h43c0 -23 -20 -43 -43 -43zM405 320v43h43v-43h-43zM405 235v42h43v-42h-43zM192 149c-24 0 -43 20 -43 43h43v-43zM277 448v-43h-42v43h42zM405 448
+c23 0 43 -20 43 -43h-43v43zM277 192v-43h-42v43h42zM192 448v-43h-43c0 23 19 43 43 43zM192 277v-42h-43v42h43zM192 363v-43h-43v43h43z" />
+ <glyph glyph-name="flip_to_front" unicode="flip_to_front"
+d="M149 64v43h43v-43h-43zM235 64v43h42v-43h-42zM405 192v213h-213v-213h213zM405 448c23 0 43 -20 43 -43v-213c0 -23 -20 -43 -43 -43h-213c-24 0 -43 20 -43 43v213c0 23 19 43 43 43h213zM320 64v43h43v-43h-43zM64 320v43h43v-43h-43zM107 64c-24 0 -43 20 -43 43h43
+v-43zM64 149v43h43v-43h-43zM64 235v42h43v-42h-43z" />
+ <glyph glyph-name="folder" unicode="folder"
+d="M213 427l43 -43h171c23 0 42 -20 42 -43v-213c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h128z" />
+ <glyph glyph-name="folder_open" unicode="folder_open"
+d="M427 128v213h-342v-213h342zM427 384c23 0 42 -20 42 -43v-213c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h128l43 -43h171z" />
+ <glyph glyph-name="folder_shared" unicode="folder_shared"
+d="M405 149v22c0 28 -57 42 -85 42s-85 -14 -85 -42v-22h170zM320 320c-23 0 -43 -20 -43 -43s20 -42 43 -42s43 19 43 42s-20 43 -43 43zM427 384c23 0 42 -20 42 -43v-213c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h128l43 -43h171z" />
+ <glyph glyph-name="folder_special" unicode="folder_special"
+d="M383 149l-17 71l55 48l-72 6l-29 67l-29 -67l-72 -6l55 -48l-17 -71l63 37zM427 384c23 0 42 -20 42 -43v-213c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h128l43 -43h171z" />
+ <glyph glyph-name="font_download" unicode="font_download"
+d="M340 117h45l-109 278h-40l-109 -278h45l24 64h120zM427 469c23 0 42 -19 42 -42v-342c0 -23 -19 -42 -42 -42h-342c-23 0 -42 19 -42 42v342c0 23 19 42 42 42h342zM212 224l44 118l44 -118h-88z" />
+ <glyph glyph-name="format_align_center" unicode="format_align_center"
+d="M64 448h384v-43h-384v43zM149 363h214v-43h-214v43zM64 235v42h384v-42h-384zM64 64v43h384v-43h-384zM149 192h214v-43h-214v43z" />
+ <glyph glyph-name="format_align_justify" unicode="format_align_justify"
+d="M64 448h384v-43h-384v43zM64 320v43h384v-43h-384zM64 235v42h384v-42h-384zM64 149v43h384v-43h-384zM64 64v43h384v-43h-384z" />
+ <glyph glyph-name="format_align_left" unicode="format_align_left"
+d="M64 448h384v-43h-384v43zM64 64v43h384v-43h-384zM64 235v42h384v-42h-384zM320 363v-43h-256v43h256zM320 192v-43h-256v43h256z" />
+ <glyph glyph-name="format_align_right" unicode="format_align_right"
+d="M64 448h384v-43h-384v43zM192 320v43h256v-43h-256zM64 235v42h384v-42h-384zM192 149v43h256v-43h-256zM64 64v43h384v-43h-384z" />
+ <glyph glyph-name="format_bold" unicode="format_bold"
+d="M288 181c18 0 32 14 32 32s-14 32 -32 32h-75v-64h75zM213 373v-64h64c18 0 32 14 32 32s-14 32 -32 32h-64zM333 282c28 -13 46 -41 46 -73c0 -45 -34 -81 -79 -81h-151v299h134c48 0 85 -38 85 -86c0 -22 -14 -45 -35 -59z" />
+ <glyph glyph-name="format_clear" unicode="format_clear"
+d="M128 405h299v-64h-124l-34 -80l-45 44l15 36h-51l-60 60v4zM70 405l6 -5l308 -309l-27 -27l-121 121l-33 -78h-64l52 123l-148 148z" />
+ <glyph glyph-name="format_color_fill" unicode="format_color_fill"
+d="M0 85h512v-85h-512v85zM405 267c0 0 43 -47 43 -75c0 -23 -20 -43 -43 -43s-42 20 -42 43c0 28 42 75 42 75zM111 299h205l-103 102zM353 321c13 -13 13 -33 0 -45l-117 -117c-6 -6 -15 -10 -23 -10s-16 4 -22 10l-118 117c-13 12 -13 32 0 45l110 110l-51 51l31 30z" />
+ <glyph glyph-name="format_color_reset" unicode="format_color_reset"
+d="M112 400l312 -312l-27 -27l-57 56c-23 -20 -52 -32 -84 -32c-71 0 -128 57 -128 128c0 26 12 57 28 88l-71 71zM384 213c0 -10 -1 -19 -3 -28l-183 184c30 43 58 75 58 75s128 -146 128 -231z" />
+ <glyph glyph-name="format_color_text" unicode="format_color_text"
+d="M205 256h102l-51 135zM235 448h42l117 -299h-48l-23 64h-134l-24 -64h-48zM0 85h512v-85h-512v85z" />
+ <glyph glyph-name="format_indent_decrease" unicode="format_indent_decrease"
+d="M235 235v42h213v-42h-213zM235 320v43h213v-43h-213zM64 448h384v-43h-384v43zM64 64v43h384v-43h-384zM64 256l85 85v-170zM235 149v43h213v-43h-213z" />
+ <glyph glyph-name="format_indent_increase" unicode="format_indent_increase"
+d="M235 235v42h213v-42h-213zM235 320v43h213v-43h-213zM64 448h384v-43h-384v43zM235 149v43h213v-43h-213zM64 341l85 -85l-85 -85v170zM64 64v43h384v-43h-384z" />
+ <glyph glyph-name="format_italic" unicode="format_italic"
+d="M213 427h171v-64h-60l-72 -171h47v-64h-171v64h60l72 171h-47v64z" />
+ <glyph glyph-name="format_line_spacing" unicode="format_line_spacing"
+d="M213 235v42h256v-42h-256zM213 107v42h256v-42h-256zM213 405h256v-42h-256v42zM128 363v-214h53l-74 -74l-75 74h53v214h-53l75 74l74 -74h-53z" />
+ <glyph glyph-name="format_list_bulleted" unicode="format_list_bulleted"
+d="M149 405h299v-42h-299v42zM149 235v42h299v-42h-299zM149 107v42h299v-42h-299zM85 160c18 0 32 -15 32 -32s-15 -32 -32 -32s-32 15 -32 32s14 32 32 32zM85 416c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM85 288c18 0 32 -14 32 -32
+s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32z" />
+ <glyph glyph-name="format_list_numbered" unicode="format_list_numbered"
+d="M149 235v42h299v-42h-299zM149 107v42h299v-42h-299zM149 405h299v-42h-299v42zM43 277v22h64v-20l-39 -44h39v-22h-64v20l38 44h-38zM64 341v64h-21v22h42v-86h-21zM43 149v22h64v-86h-64v22h42v10h-21v22h21v10h-42z" />
+ <glyph glyph-name="format_paint" unicode="format_paint"
+d="M384 427h64v-171h-171v-192c0 -12 -9 -21 -21 -21h-43c-12 0 -21 9 -21 21v235h213v85h-21v-21c0 -12 -9 -22 -21 -22h-256c-12 0 -22 10 -22 22v85c0 12 10 21 22 21h256c12 0 21 -9 21 -21v-21z" />
+ <glyph glyph-name="format_quote" unicode="format_quote"
+d="M299 149l42 86h-64v128h128v-128l-42 -86h-64zM128 149l43 86h-64v128h128v-128l-43 -86h-64z" />
+ <glyph glyph-name="format_shapes" unicode="format_shapes"
+d="M228 240h56l-28 82zM293 213h-75l-15 -42h-35l73 192h30l72 -192h-34zM405 405h43v43h-43v-43zM448 64v43h-43v-43h43zM363 107v42h42v214h-42v42h-214v-42h-42v-214h42v-42h214zM107 64v43h-43v-43h43zM64 448v-43h43v43h-43zM491 363h-43v-214h43v-128h-128v43h-214
+v-43h-128v128h43v214h-43v128h128v-43h214v43h128v-128z" />
+ <glyph glyph-name="format_size" unicode="format_size"
+d="M64 256v64h192v-64h-64v-149h-64v149h-64zM192 427h277v-64h-106v-256h-64v256h-107v64z" />
+ <glyph glyph-name="format_strikethrough" unicode="format_strikethrough"
+d="M64 213v43h384v-43h-384zM107 427h298v-64h-106v-64h-86v64h-106v64zM213 107v64h86v-64h-86z" />
+ <glyph glyph-name="format_textdirection_l_to_r" unicode="format_textdirection_l_to_r"
+d="M448 128l-85 -85v64h-256v42h256v64zM192 299c-47 0 -85 38 -85 85s38 85 85 85h171v-42h-43v-235h-43v235h-42v-235h-43v107z" />
+ <glyph glyph-name="format_textdirection_r_to_l" unicode="format_textdirection_r_to_l"
+d="M171 149h256v-42h-256v-64l-86 85l86 85v-64zM213 299c-47 0 -85 38 -85 85s38 85 85 85h171v-42h-43v-235h-42v235h-43v-235h-43v107z" />
+ <glyph glyph-name="format_underlined" unicode="format_underlined"
+d="M107 107h298v-43h-298v43zM256 149c-71 0 -128 57 -128 128v171h53v-171c0 -41 34 -74 75 -74s75 33 75 74v171h53v-171c0 -71 -57 -128 -128 -128z" />
+ <glyph glyph-name="forum" unicode="forum"
+d="M363 256c0 -12 -10 -21 -22 -21h-213l-85 -86v299c0 12 9 21 21 21h277c12 0 22 -9 22 -21v-192zM448 384c12 0 21 -9 21 -21v-320l-85 85h-235c-12 0 -21 9 -21 21v43h277v192h43z" />
+ <glyph glyph-name="forward" unicode="forward"
+d="M256 341v86l171 -171l-171 -171v86h-171v170h171z" />
+ <glyph glyph-name="forward_10" unicode="forward_&#x31;&#x30;"
+d="M282 188c0 -3.2653 6.32517 -7 10 -7c2 0 5 0 7 2l4 5s2 4 2 6v43c0 0 -2 4 -2 6c0 2.75261 -8.21183 7 -11 7c-2 0 -4 -1 -6 -3l-4 -4s-3 -4 -3 -6v-43s3 -4 3 -6zM322 209c0 -6 0 -13 -2 -17l-6 -13s-7 -6 -11 -6s-9 -2 -13 -2s-9 0 -13 2s-6 4 -10 6
+c-6.74403 3.37202 -9 19.7461 -9 30v15c0 6 0 13 2 17l7 13s6 6 10 6s9 2 13 2s9 0 13 -2s7 -4 11 -6s4 -7 6 -13s2 -11 2 -17v-15zM233 171h-20v70l-21 -6v15l38 12h3v-91zM85 235c0 94 77 170 171 170v86l107 -107l-107 -107v86c-70 0 -128 -58 -128 -128
+s58 -128 128 -128s128 58 128 128h43c0 -94 -77 -171 -171 -171s-171 77 -171 171z" />
+ <glyph glyph-name="forward_30" unicode="forward_&#x33;&#x30;"
+d="M85 235c0 94 77 170 171 170v86l107 -107l-107 -107v86c-70 0 -128 -58 -128 -128s58 -128 128 -128s128 58 128 128h43c0 -94 -77 -171 -171 -171s-171 77 -171 171zM284 188c0 -3.2653 6.32517 -7 10 -7c2 0 5 0 7 2l4 5s2 4 2 6v43c0 0 -2 4 -2 6
+c0 2.75261 -8.21183 7 -11 7c-2 0 -4 -1 -6 -3l-4 -4s-2 -4 -2 -6v-43s2 -4 2 -6zM326 209c0 -6 0 -13 -2 -17l-6 -13s-7 -6 -11 -6s-9 -2 -13 -2c-10.126 0 -16.1493 4.57466 -23 8c-4 2 -4 7 -6 13s-3 11 -3 17v15c0 6 1 13 3 17l6 13s7 6 11 6s8 2 12 2s9 0 13 -2
+s7 -4 11 -6s4 -7 6 -13s2 -11 2 -17v-15zM213 224c8.11936 0 15 4.95913 15 13v4s-2 2 -2 4s-2 2 -4 2h-11s-2 -2 -4 -2s-2 -2 -2 -4v-4h-22c0 9.89385 8.81974 23 18 23c2 0 8 2 10 2c8.67272 0 17.6319 -2.81597 24 -6c5.06488 -2.53244 8 -12.109 8 -19v-7s-2 -4 -2 -6
+s-2 -4 -4 -4s-5 -3 -7 -5c4 -2 9 -4 11 -8s4 -9 4 -13s0 -9 -2 -11s-4 -6 -6 -8s-7 -4 -11 -4s-9 -2 -13 -2s-8 0 -10 2s-7 2 -11 4c-5.58093 2.79046 -9 13.5084 -9 21h18v-4s2 -2 2 -4s2 -2 4 -2h11s2 2 4 2s2 2 2 4v11s-2 2 -2 4s-2 2 -4 2h-13v15h8z" />
+ <glyph glyph-name="forward_5" unicode="forward_&#x35;"
+d="M250 222c-1.79204 -0.716817 -7 -2.40231 -7 -4c0 -2 -2 -3 -2 -3h-13l5 47h51v-15h-37l-2 -19s2 0 2 2s3 1 3 3s2 0 4 0h4c4 0 9 -1 11 -3s6 -4 8 -6c4.43641 -4.43641 9 -13.6284 9 -23c0 -4 0 -9 -2 -11s-3 -7 -7 -11c-5.62284 -5.62284 -13.295 -8 -23 -8
+c-4 0 -9 0 -11 2s-6 2 -10 4c-5.5956 2.7978 -9 11.277 -9 19h17c0 -7.40446 5.29508 -10 13 -10c2 0 4 0 6 2l5 4s2 4 2 6v13l-2 4l-5 5s-4 2 -6 2h-4zM85 235c0 94 77 170 171 170v86l107 -107l-107 -107v86c-70 0 -128 -58 -128 -128s58 -128 128 -128s128 58 128 128h43
+c0 -94 -77 -171 -171 -171s-171 77 -171 171z" />
+ <glyph glyph-name="free_breakfast" unicode="free_breakfast"
+d="M85 107h342v-43h-342v43zM427 341v64h-43v-64h43zM427 448c24 0 42 -19 42 -43v-64c0 -23 -18 -42 -42 -42h-43v-64c0 -47 -38 -86 -85 -86h-128c-47 0 -86 39 -86 86v213h342z" />
+ <glyph glyph-name="fullscreen" unicode="fullscreen"
+d="M299 405h106v-106h-42v64h-64v42zM363 149v64h42v-106h-106v42h64zM107 299v106h106v-42h-64v-64h-42zM149 213v-64h64v-42h-106v106h42z" />
+ <glyph glyph-name="fullscreen_exit" unicode="fullscreen_exit"
+d="M341 341h64v-42h-106v106h42v-64zM299 107v106h106v-42h-64v-64h-42zM171 341v64h42v-106h-106v42h64zM107 171v42h106v-106h-42v64h-64z" />
+ <glyph glyph-name="functions" unicode="functions"
+d="M384 427v-64h-149l106 -107l-106 -107h149v-64h-256v43l139 128l-139 128v43h256z" />
+ <glyph glyph-name="g_translate" unicode="g_translate"
+d="M448 85v278c0 12 -9 21 -21 21h-188l25 -86h41v22h23v-22h77v-22h-27c-7 -27 -22 -53 -41 -75l58 -57l-15 -16l-58 57l-19 -19l17 -59l-43 -43h150c12 0 21 9 21 21zM298 253c5 -10 13 -23 24 -36c26 31 33 59 33 59h-85l7 -23h21zM282 237l13 -47l12 11
+c-10 11 -18 23 -25 36zM237 286c0 4.92043 -0.140331 11.2807 -2 15h-84v-33h47c-3 -13 -16 -32 -45 -32c-28 0 -51 24 -51 52s23 52 51 52c16 0 26 -7 32 -13l2 -1l26 25l-2 1c-16 15 -36 23 -58 23c-48 0 -87 -39 -87 -87s39 -87 87 -87c49 0 84 35 84 85zM427 405
+c23 0 42 -19 42 -42v-278c0 -23 -19 -42 -42 -42h-171l-21 64h-150c-23 0 -42 19 -42 42v278c0 23 19 42 42 42h128l19 -64h195z" />
+ <glyph glyph-name="gamepad" unicode="gamepad"
+d="M352 320h117v-128h-117l-64 64zM192 160l64 64l64 -64v-117h-128v117zM160 320l64 -64l-64 -64h-117v128h117zM320 352l-64 -64l-64 64v117h128v-117z" />
+ <glyph glyph-name="games" unicode="games"
+d="M352 320h117v-128h-117l-64 64zM192 160l64 64l64 -64v-117h-128v117zM160 320l64 -64l-64 -64h-117v128h117zM320 352l-64 -64l-64 64v117h128v-117z" />
+ <glyph glyph-name="gavel" unicode="gavel"
+d="M82 310l120 -121l-60 -60l-121 120zM263 491l120 -121l-60 -60l-121 120zM112 340l60 60l302 -302l-60 -60zM21 64h256v-43h-256v43z" />
+ <glyph glyph-name="gesture" unicode="gesture"
+d="M296 116c15 0 40 18 46 75c-46 -12 -62 -46 -62 -59c0 -10 9 -16 16 -16zM98 365l-37 36c5 6 10 12 18 20c5 5 30 27 58 27c19 0 54 -15 54 -61c0 -29 -11 -46 -28 -70c-10 -14 -32 -52 -39 -75c-8 -23 -3 -41 7 -41c9 0 19 12 24 18c5 5 37 42 49 58c16 20 57 60 105 60
+c63 0 83 -54 86 -89h53v-53h-52c-9 -102 -66 -131 -101 -131c-38 0 -68 30 -68 66s34 101 115 115c-2 17 -3 38 -38 38c-27 0 -61 -41 -87 -73c-24 -29 -42 -52 -65 -59c-49.7758 -15.7187 -85 28.2434 -85 73c0 52 56 126 61 135c6 10 17 28 6 32c-7 3 -21 -11 -36 -26z
+" />
+ <glyph glyph-name="get_app" unicode="get_app"
+d="M107 128h298v-43h-298v43zM405 320l-149 -149l-149 149h85v128h128v-128h85z" />
+ <glyph glyph-name="gif" unicode="gif"
+d="M405 288h-64v-21h43v-32h-43v-43h-32v128h96v-32zM192 320c13 0 21 -10 21 -21v-11h-74v-64h42v32h32v-43c0 -11 -8 -21 -21 -21h-64c-13 0 -21 10 -21 21v86c0 11 8 21 21 21h64zM245 320h32v-128h-32v128z" />
+ <glyph glyph-name="goat" unicode="goat"
+d="M511 318c1 -1 1 -4 0 -5l-25 -32c-1 -1 -3 -2 -4 -2l-15 3l-7 -22c-3 -5 -10 -5 -13 0l-14 30l-23 5l-47 -112l17 -136c0 -3 -2 -4 -4 -4h-20c-2 0 -3 1 -4 3l-20 81l-10 17l-25 -98c0 -2 -2 -3 -4 -3h-21c-2 0 -4 2 -4 4l23 135h-135l-35 -66l8 -68c1 -3 -1 -5 -4 -5
+h-20c-1 0 -3 0 -4 2l-28 102l-34 -39l6 -60c1 -3 -1 -5 -4 -5h-22c-2 0 -4 1 -4 2l-13 56l21 82v144s-23 9 -23 30h274c0 0 48 -1 95 33c0 0 -8 22 6 36c0 0 28 -20 36 -25c10 -6 17 5 14 14c-2 6 -9 28 -45 42c-4.57884 1.52628 -15.2106 2.3682 -13 9c0 2 2 3 4 3
+c44 -6 70 -42 77 -58c1 -2 20 -15 18 -38c0 -3 0 -5 2 -7z" />
+ <glyph glyph-name="golf_course" unicode="golf_course"
+d="M363 386l-128 -66v-193c61 -3 106 -21 106 -42c0 -23 -57 -42 -128 -42s-128 19 -128 42c0 16 26 30 64 37v-37h43v384zM384 96c0 18 14 32 32 32s32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32z" />
+ <glyph glyph-name="gps_fixed" unicode="gps_fixed"
+d="M256 107c83 0 149 66 149 149s-66 149 -149 149s-149 -66 -149 -149s66 -149 149 -149zM447 277h44v-42h-44c-10 -89 -81 -160 -170 -170v-44h-42v44c-89 10 -160 81 -170 170h-44v42h44c10 89 81 160 170 170v44h42v-44c89 -10 160 -81 170 -170zM256 341
+c47 0 85 -38 85 -85s-38 -85 -85 -85s-85 38 -85 85s38 85 85 85z" />
+ <glyph glyph-name="gps_not_fixed" unicode="gps_not_fixed"
+d="M256 107c83 0 149 66 149 149s-66 149 -149 149s-149 -66 -149 -149s66 -149 149 -149zM447 277h44v-42h-44c-10 -89 -81 -160 -170 -170v-44h-42v44c-89 10 -160 81 -170 170h-44v42h44c10 89 81 160 170 170v44h42v-44c89 -10 160 -81 170 -170z" />
+ <glyph glyph-name="gps_off" unicode="gps_off"
+d="M347 138l-209 209c-19 -25 -31 -57 -31 -91c0 -83 66 -149 149 -149c34 0 66 12 91 31zM64 421l27 27l357 -357l-27 -27l-44 44c-28 -23 -62 -39 -100 -43v-44h-42v44c-89 10 -160 81 -170 170h-44v42h44c4 38 20 72 43 100zM447 277h44v-42h-44c-3 -24 -10 -48 -21 -68
+l-32 32c7 17 11 37 11 57c0 83 -66 149 -149 149c-20 0 -40 -4 -57 -11l-32 32c21 11 44 18 68 21v44h42v-44c89 -10 160 -81 170 -170z" />
+ <glyph glyph-name="grade" unicode="grade"
+d="M256 144l-132 -80l35 150l-116 101l153 13l60 141l60 -141l153 -13l-116 -101l35 -150z" />
+ <glyph glyph-name="gradient" unicode="gradient"
+d="M405 277v128h-298v-128h42v-42h43v-43h43v43h42v-43h43v43h43v42h42zM363 128v43h-43v-43h43zM277 128v43h-42v-43h42zM192 128v43h-43v-43h43zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298zM149 320h43
+v-43h-43v43zM320 320h43v-43h-43v43zM235 320h42v-43h43v-42h-43v42h-42v-42h-43v42h43v43zM363 235v-43h42v43h-42zM149 235h-42v-43h42v43z" />
+ <glyph glyph-name="grain" unicode="grain"
+d="M213 427c23 0 43 -20 43 -43s-20 -43 -43 -43s-42 20 -42 43s19 43 42 43zM299 341c23 0 42 -19 42 -42s-19 -43 -42 -43s-43 20 -43 43s20 42 43 42zM384 256c23 0 43 -20 43 -43s-20 -42 -43 -42s-43 19 -43 42s20 43 43 43zM299 171c23 0 42 -20 42 -43
+s-19 -43 -42 -43s-43 20 -43 43s20 43 43 43zM384 341c-23 0 -43 20 -43 43s20 43 43 43s43 -20 43 -43s-20 -43 -43 -43zM128 171c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM128 341c23 0 43 -19 43 -42s-20 -43 -43 -43s-43 20 -43 43s20 42 43 42z
+M213 256c23 0 43 -20 43 -43s-20 -42 -43 -42s-42 19 -42 42s19 43 42 43z" />
+ <glyph glyph-name="graphic_eq" unicode="graphic_eq"
+d="M405 299h43v-86h-43v86zM320 128v256h43v-256h-43zM64 213v86h43v-86h-43zM235 43v426h42v-426h-42zM149 128v256h43v-256h-43z" />
+ <glyph glyph-name="grid_off" unicode="grid_off"
+d="M341 85h31l-31 31v-31zM299 85v74l-12 12h-74v-86h86zM171 213v74l-12 12h-74v-86h86zM171 85v86h-86v-86h86zM85 372v-31h31zM213 244v-31h31zM27 485l458 -458l-27 -27l-43 43h-330c-23 0 -42 19 -42 42v330l-43 43zM341 427v-86h86v86h-86zM171 427h-31l-43 42h330
+c23 0 42 -19 42 -42v-330l-42 43v31h-31l-43 42h74v86h-86v-74l-42 43v31h-31l-43 42h74v86h-86v-74l-42 43v31z" />
+ <glyph glyph-name="grid_on" unicode="grid_on"
+d="M427 341v86h-86v-86h86zM427 213v86h-86v-86h86zM427 85v86h-86v-86h86zM299 341v86h-86v-86h86zM299 213v86h-86v-86h86zM299 85v86h-86v-86h86zM171 341v86h-86v-86h86zM171 213v86h-86v-86h86zM171 85v86h-86v-86h86zM427 469c23 0 42 -19 42 -42v-342
+c0 -23 -19 -42 -42 -42h-342c-23 0 -42 19 -42 42v342c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="group" unicode="group"
+d="M341 235c50 0 150 -25 150 -75v-53h-128v53c0 32 -17 56 -42 74c7 1 14 1 20 1zM171 235c50 0 149 -25 149 -75v-53h-299v53c0 50 100 75 150 75zM171 277c-35 0 -64 29 -64 64s29 64 64 64s63 -29 63 -64s-28 -64 -63 -64zM341 277c-35 0 -64 29 -64 64s29 64 64 64
+s64 -29 64 -64s-29 -64 -64 -64z" />
+ <glyph glyph-name="group_add" unicode="group_add"
+d="M277 235c43 0 128 -21 128 -64v-43h-256v43c0 43 85 64 128 64zM419 231c43 -7 93 -27 93 -60v-43h-64v43c0 25 -11 44 -29 60zM277 277c-35 0 -64 29 -64 64s29 64 64 64s64 -29 64 -64s-29 -64 -64 -64zM384 277c-7 0 -13 1 -19 3c12 17 19 38 19 61s-7 44 -19 61
+c6 2 12 3 19 3c35 0 64 -29 64 -64s-29 -64 -64 -64zM171 299v-43h-64v-64h-43v64h-64v43h64v64h43v-64h64z" />
+ <glyph glyph-name="group_work" unicode="group_work"
+d="M341 139c29 0 54 24 54 53s-25 53 -54 53s-53 -24 -53 -53s24 -53 53 -53zM203 341c0 -29 24 -53 53 -53s53 24 53 53s-24 54 -53 54s-53 -25 -53 -54zM171 139c29 0 53 24 53 53s-24 53 -53 53s-54 -24 -54 -53s25 -53 54 -53zM256 469c118 0 213 -95 213 -213
+s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="hd" unicode="hd"
+d="M309 224v64h43v-64h-43zM277 320v-128h86c12 0 21 9 21 21v86c0 12 -9 21 -21 21h-86zM235 192v128h-32v-53h-43v53h-32v-128h32v43h43v-43h32zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h298z" />
+ <glyph glyph-name="hdr_off" unicode="hdr_off"
+d="M53 459c135.424 -135.909 271.816 -270.85 408 -406l-24 -23l-162 162h-72v73l-32 32v-105h-32v53h-43v-53h-32v128h32v-43h43v43h8l-117 117zM277 288h-8l-32 32h40c17 0 32 -15 32 -32v-41l-32 32v9zM373 288v-21h43v21h-43zM373 192h-8l-24 23v105h75
+c17 0 32 -15 32 -32v-21c0 -13 -8 -26 -19 -30l19 -45h-32l-19 43h-24v-43z" />
+ <glyph glyph-name="hdr_on" unicode="hdr_on"
+d="M277 224v64h-42v-64h42zM277 320c17 0 32 -15 32 -32v-64c0 -17 -15 -32 -32 -32h-74v128h74zM139 277v43h32v-128h-32v53h-43v-53h-32v128h32v-43h43zM416 267v21h-43v-21h43zM448 267c0 -13 -8 -24 -19 -30l19 -45h-32l-19 43h-24v-43h-32v128h75c17 0 32 -15 32 -32
+v-21z" />
+ <glyph glyph-name="hdr_strong" unicode="hdr_strong"
+d="M107 213c23 0 42 20 42 43s-19 43 -42 43s-43 -20 -43 -43s20 -43 43 -43zM107 341c47 0 85 -38 85 -85s-38 -85 -85 -85s-86 38 -86 85s39 85 86 85zM363 384c71 0 128 -57 128 -128s-57 -128 -128 -128s-128 57 -128 128s57 128 128 128z" />
+ <glyph glyph-name="hdr_weak" unicode="hdr_weak"
+d="M363 171c47 0 85 38 85 85s-38 85 -85 85s-86 -38 -86 -85s39 -85 86 -85zM363 384c71 0 128 -57 128 -128s-57 -128 -128 -128s-128 57 -128 128s57 128 128 128zM107 341c47 0 85 -38 85 -85s-38 -85 -85 -85s-86 38 -86 85s39 85 86 85z" />
+ <glyph glyph-name="headset" unicode="headset"
+d="M256 491c106 0 192 -86 192 -192v-150c0 -35 -29 -64 -64 -64h-64v171h85v43c0 83 -66 149 -149 149s-149 -66 -149 -149v-43h85v-171h-64c-35 0 -64 29 -64 64v150c0 106 86 192 192 192z" />
+ <glyph glyph-name="headset_mic" unicode="headset_mic"
+d="M256 491c106 0 192 -86 192 -192v-214c0 -35 -29 -64 -64 -64h-128v43h149v21h-85v171h85v43c0 83 -66 149 -149 149s-149 -66 -149 -149v-43h85v-171h-64c-35 0 -64 29 -64 64v150c0 106 86 192 192 192z" />
+ <glyph glyph-name="healing" unicode="healing"
+d="M355 78l78 78l-78 77l-77 -78zM299 277c-12 0 -22 -9 -22 -21s10 -21 22 -21s21 9 21 21s-9 21 -21 21zM256 192c12 0 21 9 21 21s-9 22 -21 22s-21 -10 -21 -22s9 -21 21 -21zM213 235c12 0 22 9 22 21s-10 21 -22 21s-21 -9 -21 -21s9 -21 21 -21zM156 278l77 78
+l-77 77l-78 -78zM256 320c-12 0 -21 -9 -21 -21s9 -22 21 -22s21 10 21 22s-9 21 -21 21zM378 256l85 -85c8 -8 8 -22 0 -30l-92 -93c-4 -4 -9 -6 -15 -6s-12 2 -16 6l-84 85l-85 -85c-8 -8 -22 -8 -30 0l-93 93c-8 8 -8 22 0 30l85 85l-85 84c-8 8 -8 23 0 31l93 92
+c4 4 10 6 15 6c6 0 11 -2 15 -6l85 -85l84 85c8 8 23 8 31 0l92 -92c8 -8 8 -23 0 -31z" />
+ <glyph glyph-name="hearing" unicode="hearing"
+d="M245 320c0 29 25 53 54 53s53 -24 53 -53s-24 -53 -53 -53s-54 24 -54 53zM163 456c-35 -35 -56 -83 -56 -136s21 -101 56 -136l-30 -30c-42 42 -69 101 -69 166s27 124 69 166zM363 85c23 0 42 20 42 43h43c0 -47 -38 -85 -85 -85c-12 0 -24 2 -35 7
+c-29 15 -46 37 -59 76c-7 21 -19 31 -36 44c-19 14 -42 32 -61 67c-15 27 -23 56 -23 83c0 84 66 149 150 149s149 -65 149 -149h-43c0 60 -46 107 -106 107s-107 -47 -107 -107c0 -20 6 -43 17 -63c15 -28 33 -41 50 -54c20 -15 40 -31 51 -64c11 -32 21 -42 36 -50
+c4 -2 11 -4 17 -4z" />
+ <glyph glyph-name="help" unicode="help"
+d="M321 272c12 12 20 29 20 48c0 47 -38 85 -85 85s-85 -38 -85 -85h42c0 23 20 43 43 43s43 -20 43 -43c0 -12 -5 -22 -13 -30l-26 -27c-15 -16 -25 -37 -25 -60v-11h42c0 32 10 44 25 60zM277 107v42h-42v-42h42zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213
+s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="help_outline" unicode="help_outline"
+d="M256 384c47 0 85 -38 85 -85c0 -53 -64 -59 -64 -107h-42c0 69 64 64 64 107c0 23 -20 42 -43 42s-43 -19 -43 -42h-42c0 47 38 85 85 85zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213
+s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM235 128v43h42v-43h-42z" />
+ <glyph glyph-name="high_quality" unicode="high_quality"
+d="M309 224v64h43v-64h-43zM384 213v86c0 12 -9 21 -21 21h-64c-12 0 -22 -9 -22 -21v-86c0 -12 10 -21 22 -21h16v-32h32v32h16c12 0 21 9 21 21zM235 192v128h-32v-53h-43v53h-32v-128h32v43h43v-43h32zM405 427c23 0 43 -20 43 -43v-256c0 -23 -20 -43 -43 -43h-298
+c-24 0 -43 20 -43 43v256c0 23 19 43 43 43h298z" />
+ <glyph glyph-name="highlight" unicode="highlight"
+d="M362 372l45 45l30 -30l-45 -46zM75 387l30 30l45 -45l-30 -31zM235 469h42v-64h-42v64zM128 213v107h256v-107l-64 -64v-106h-128v106z" />
+ <glyph glyph-name="highlight_off" unicode="highlight_off"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM311 341l30 -30l-55 -55l55 -55l-30 -30l-55 55l-55 -55l-30 30l55 55l-55 55l30 30l55 -55z
+" />
+ <glyph glyph-name="history" unicode="history"
+d="M256 341h32v-90l75 -45l-16 -26l-91 55v106zM277 448c106 0 192 -86 192 -192s-86 -192 -192 -192c-53 0 -100 21 -135 56l30 31c27 -27 64 -44 105 -44c83 0 150 66 150 149s-67 149 -150 149s-149 -66 -149 -149h64l-86 -86l-2 3l-83 83h64c0 106 86 192 192 192z" />
+ <glyph glyph-name="home" unicode="home"
+d="M213 85h-106v171h-64l213 192l213 -192h-64v-171h-106v128h-86v-128z" />
+ <glyph glyph-name="hot_tub" unicode="hot_tub"
+d="M313 387c22 -21 31 -50 27 -79l-1 -9h-41l3 12c3.05626 17.3188 -3.40602 35.406 -16 48c-22 22 -32 51 -28 80l1 9h41l-2 -13c-3 -17 2 -34 14 -47zM398 387c22 -21 32 -50 28 -79l-2 -9h-40l2 12c3 17 -2 34 -14 47l-2 1c-22 22 -32 51 -28 80l2 9h40l-2 -13
+c-3 -17 2 -34 14 -47zM405 85v128h-42v-128h42zM320 85v128h-43v-128h43zM235 85v128h-43v-128h43zM149 85v128h-42v-128h42zM238 256h231v-171c0 -23 -19 -42 -42 -42h-342c-23 0 -42 19 -42 42v171h64v16c0 26 22 48 48 48c15.3845 0 28.1542 -8.15417 36 -16l29 -33
+c5 -6 11 -10 18 -15zM107 384c0 24 18 43 42 43s43 -19 43 -43s-19 -43 -43 -43s-42 19 -42 43z" />
+ <glyph glyph-name="hotel" unicode="hotel"
+d="M405 363c47 0 86 -39 86 -86v-192h-43v64h-384v-64h-43v320h43v-192h171v150h170zM149 235c-35 0 -64 29 -64 64s29 64 64 64s64 -29 64 -64s-29 -64 -64 -64z" />
+ <glyph glyph-name="hourglass_empty" unicode="hourglass_empty"
+d="M256 267l85 85v75h-170v-75zM341 160l-85 85l-85 -85v-75h170v75zM128 469h256v-128l-85 -85l85 -85v-128h-256v128l85 85l-85 85v128z" />
+ <glyph glyph-name="hourglass_full" unicode="hourglass_full"
+d="M128 469h256v-128l-85 -85l85 -85v-128h-256v128l85 85l-85 85v128z" />
+ <glyph glyph-name="http" unicode="http"
+d="M459 267v21h-43v-21h43zM459 320c17 0 32 -15 32 -32v-21c0 -17 -15 -32 -32 -32h-43v-43h-32v128h75zM267 288v32h96v-32h-32v-96h-32v96h-32zM149 288v32h96v-32h-32v-96h-32v96h-32zM96 277v43h32v-128h-32v53h-43v-53h-32v128h32v-43h43z" />
+ <glyph glyph-name="https" unicode="https"
+d="M322 341v43c0 36 -30 66 -66 66s-66 -30 -66 -66v-43h132zM256 149c23 0 43 20 43 43s-20 43 -43 43s-43 -20 -43 -43s20 -43 43 -43zM384 341c23 0 43 -19 43 -42v-214c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42v214c0 23 20 42 43 42h21v43c0 59 48 107 107 107
+s107 -48 107 -107v-43h21z" />
+ <glyph glyph-name="image" unicode="image"
+d="M181 224l-74 -96h298l-96 128l-74 -96zM448 107c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298c23 0 43 -20 43 -43v-298z" />
+ <glyph glyph-name="image_aspect_ratio" unicode="image_aspect_ratio"
+d="M427 128v256h-342v-256h342zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342zM256 299v-43h-43v43h43zM171 299v-43h-43v43h43zM341 213v-42h-42v42h42zM341 299v-43h-42v43h42z" />
+ <glyph glyph-name="import_contacts" unicode="import_contacts"
+d="M448 117v246c-23 7 -49 10 -75 10c-36 0 -88 -14 -117 -32v-245c29 18 81 32 117 32c26 0 52 -4 75 -11zM373 416c44.2046 0 90.7488 -11.0375 118 -32v-311c0 -5 -6 -11 -11 -11c-2 0 -3 0 -5 1c-30 16 -67 22 -102 22c-36 0 -88 -14 -117 -32c-31 23 -75 32 -117 32
+c-31 0 -73 -9 -102 -23c-2 0 -3 -1 -5 -1c-5 0 -11 5 -11 10v313c31 23 76 32 118 32s86 -9 117 -32c31 23 75 32 117 32z" />
+ <glyph glyph-name="import_export" unicode="import_export"
+d="M341 149h64l-85 -85l-85 85h64v150h42v-150zM192 448l85 -85h-64v-150h-42v150h-64z" />
+ <glyph glyph-name="important_devices" unicode="important_devices"
+d="M255 320h65l-53 -38l20 -62l-52 39l-53 -39l20 62l-53 38h65l21 64zM427 469c23 0 42 -18 42 -42v-107h-42v107h-384v-256h277v-43h-43v-43h43v-42h-171v42h43v43h-149c-24 0 -43 20 -43 43v256c0 24 19 42 43 42h384zM491 85v150h-107v-150h107zM491 277
+c12 0 21 -9 21 -21v-192c0 -12 -9 -21 -21 -21h-107c-12 0 -21 9 -21 21v192c0 12 9 21 21 21h107z" />
+ <glyph glyph-name="inbox" unicode="inbox"
+d="M405 192v213h-299v-213h86c0 -35 29 -64 64 -64s64 29 64 64h85zM405 448c23 0 43 -19 43 -43v-298c0 -23 -20 -43 -43 -43h-299c-24 0 -42 20 -42 43v298c0 24 18 43 42 43h299z" />
+ <glyph glyph-name="indeterminate_check_box" unicode="indeterminate_check_box"
+d="M363 235v42h-214v-42h214zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="info" unicode="info"
+d="M277 320v43h-42v-43h42zM277 149v128h-42v-128h42zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="info_outline" unicode="info_outline"
+d="M235 320v43h42v-43h-42zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM235 149v128h42v-128h-42z" />
+ <glyph glyph-name="input" unicode="input"
+d="M235 171v64h-214v42h214v64l85 -85zM448 448c23 0 43 -19 43 -43v-299c0 -23 -20 -42 -43 -42h-384c-23 0 -43 19 -43 42v86h43v-86h384v300h-384v-86h-43v85c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="insert_chart" unicode="insert_chart"
+d="M363 149v86h-43v-86h43zM277 149v214h-42v-214h42zM192 149v150h-43v-150h43zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="insert_comment" unicode="insert_comment"
+d="M384 341v43h-256v-43h256zM384 277v43h-256v-43h256zM384 213v43h-256v-43h256zM427 469c23 0 42 -19 42 -42v-384l-85 85h-299c-23 0 -42 20 -42 43v256c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="insert_drive_file" unicode="insert_drive_file"
+d="M277 320h118l-118 117v-117zM128 469h171l128 -128v-256c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42l1 342c0 23 19 42 42 42z" />
+ <glyph glyph-name="insert_emoticon" unicode="insert_emoticon"
+d="M256 139c-50 0 -92 30 -109 74h218c-17 -44 -59 -74 -109 -74zM181 277c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM331 277c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM256 85c94 0 171 77 171 171s-77 171 -171 171
+s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="insert_invitation" unicode="insert_invitation"
+d="M405 107v234h-298v-234h298zM341 491h43v-43h21c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h21v43h43v-43h170v43zM363 256v-107h-107v107h107z" />
+ <glyph glyph-name="insert_link" unicode="insert_link"
+d="M363 363c59 0 106 -48 106 -107s-47 -107 -106 -107h-86v41h86c36 0 66 30 66 66s-30 66 -66 66h-86v41h86zM171 235v42h170v-42h-170zM83 256c0 -36 30 -66 66 -66h86v-41h-86c-59 0 -106 48 -106 107s47 107 106 107h86v-41h-86c-36 0 -66 -30 -66 -66z" />
+ <glyph glyph-name="insert_photo" unicode="insert_photo"
+d="M181 224l-74 -96h298l-96 128l-74 -96zM448 107c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298c23 0 43 -20 43 -43v-298z" />
+ <glyph glyph-name="invert_colors" unicode="invert_colors"
+d="M256 94v309l-90 -90c-24 -24 -38 -57 -38 -91c0 -68.7916 59.1998 -128 128 -128zM377 343c67 -67 67 -174 0 -241c-33 -33 -77 -50 -121 -50s-88 17 -121 50c-67 67 -67 174 0 241l121 121z" />
+ <glyph glyph-name="invert_colors_off" unicode="invert_colors_off"
+d="M256 403l-49 -48l-30 30l79 79l121 -121c52 -52 63 -129 34 -192l-155 154v98zM256 94v103l-102 102c-17 -22 -26 -49 -26 -77c0 -68.7916 59.1998 -128 128 -128zM441 67l7 -8l-27 -27l-58 58c-31 -25 -69 -38 -107 -38c-44 0 -88 17 -121 50c-62 63 -66 161 -12 228
+l-59 59l27 27c116.495 -116.495 232.353 -233.66 350 -349z" />
+ <glyph glyph-name="iso" unicode="iso"
+d="M363 149h-107v32h107v-32zM405 107v298l-298 -298h298zM117 352v-32h43v-43h32v43h43v32h-43v43h-32v-43h-43zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="keyboard" unicode="keyboard"
+d="M405 299v42h-42v-42h42zM405 235v42h-42v-42h42zM341 299v42h-42v-42h42zM341 235v42h-42v-42h42zM341 149v43h-170v-43h170zM149 299v42h-42v-42h42zM149 235v42h-42v-42h42zM171 277v-42h42v42h-42zM171 341v-42h42v42h-42zM235 277v-42h42v42h-42zM235 341v-42h42v42
+h-42zM427 405c23 0 42 -19 42 -42v-214c0 -23 -19 -42 -42 -42h-342c-23 0 -42 19 -42 42v214c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="keyboard_arrow_down" unicode="keyboard_arrow_down"
+d="M158 345l98 -98l98 98l30 -30l-128 -128l-128 128z" />
+ <glyph glyph-name="keyboard_arrow_left" unicode="keyboard_arrow_left"
+d="M329 169l-30 -30l-128 128l128 128l30 -30l-98 -98z" />
+ <glyph glyph-name="keyboard_arrow_right" unicode="keyboard_arrow_right"
+d="M183 163l98 98l-98 98l30 30l128 -128l-128 -128z" />
+ <glyph glyph-name="keyboard_arrow_up" unicode="keyboard_arrow_up"
+d="M158 183l-30 30l128 128l128 -128l-30 -30l-98 98z" />
+ <glyph glyph-name="keyboard_backspace" unicode="keyboard_backspace"
+d="M448 277v-42h-302l76 -77l-30 -30l-128 128l128 128l30 -30l-76 -77h302z" />
+ <glyph glyph-name="keyboard_capslock" unicode="keyboard_capslock"
+d="M128 128v43h256v-43h-256zM256 333l-98 -98l-30 30l128 128l128 -128l-30 -30z" />
+ <glyph glyph-name="keyboard_hide" unicode="keyboard_hide"
+d="M256 21l-85 86h170zM405 341v43h-42v-43h42zM405 277v43h-42v-43h42zM341 341v43h-42v-43h42zM341 277v43h-42v-43h42zM341 192v43h-170v-43h170zM149 341v43h-42v-43h42zM149 277v43h-42v-43h42zM171 320v-43h42v43h-42zM171 384v-43h42v43h-42zM235 320v-43h42v43h-42z
+M235 384v-43h42v43h-42zM427 448c23 0 42 -20 42 -43v-213c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v213c0 23 19 43 42 43h342z" />
+ <glyph glyph-name="keyboard_return" unicode="keyboard_return"
+d="M405 363h43v-128h-324l77 -77l-30 -30l-128 128l128 128l30 -30l-77 -77h281v86z" />
+ <glyph glyph-name="keyboard_tab" unicode="keyboard_tab"
+d="M427 384h42v-256h-42v256zM247 354l30 30l128 -128l-128 -128l-30 30l77 77h-303v42h303z" />
+ <glyph glyph-name="keyboard_voice" unicode="keyboard_voice"
+d="M369 256h36c0 -73 -58 -133 -128 -143v-70h-42v70c-70 10 -128 70 -128 143h36c0 -64 54 -109 113 -109s113 45 113 109zM256 192c-35 0 -64 29 -64 64v128c0 35 29 64 64 64s64 -29 64 -64v-128c0 -35 -29 -64 -64 -64z" />
+ <glyph glyph-name="kitchen" unicode="kitchen"
+d="M171 256h42v-107h-42v107zM171 405h42v-64h-42v64zM384 320v107h-256v-107h256zM384 85v193h-256v-193h256zM384 469c23 0 43 -18 43 -42v-342c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42v342c0 24 20 42 43 42h256z" />
+ <glyph glyph-name="label" unicode="label"
+d="M376 387l93 -131l-93 -131c-8 -11 -21 -18 -35 -18h-234c-23 0 -43 19 -43 42v214c0 23 20 42 43 42h234c14 0 27 -7 35 -18z" />
+ <glyph glyph-name="label_outline" unicode="label_outline"
+d="M341 149l76 107l-76 107h-234v-214h234zM376 387l93 -131l-93 -131c-8 -11 -21 -18 -35 -18h-234c-23 0 -43 19 -43 42v214c0 23 20 42 43 42h234c14 0 27 -7 35 -18z" />
+ <glyph glyph-name="landscape" unicode="landscape"
+d="M299 384l192 -256h-470l128 171l96 -128l34 25l-60 81z" />
+ <glyph glyph-name="language" unicode="language"
+d="M349 213h72c3 14 6 28 6 43s-3 29 -6 43h-72c2 -14 3 -28 3 -43s-1 -29 -3 -43zM311 95c39 13 73 41 93 76h-63c-7 -27 -17 -52 -30 -76zM306 213c2 14 3 28 3 43s-1 29 -3 43h-100c-2 -14 -3 -28 -3 -43s1 -29 3 -43h100zM256 86c18 26 32 54 41 85h-82
+c9 -31 23 -59 41 -85zM171 341c7 27 17 52 30 76c-39 -13 -73 -41 -93 -76h63zM108 171c20 -35 54 -63 93 -76c-13 24 -23 49 -30 76h-63zM91 213h72c-2 14 -3 28 -3 43s1 29 3 43h-72c-3 -14 -6 -28 -6 -43s3 -29 6 -43zM256 426c-18 -26 -32 -54 -41 -85h82
+c-9 31 -23 59 -41 85zM404 341c-20 35 -54 63 -93 76c13 -24 23 -49 30 -76h63zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="laptop" unicode="laptop"
+d="M85 384v-213h342v213h-342zM427 128h85v-43h-512v43h85c-23 0 -42 20 -42 43v213c0 23 19 43 42 43h342c23 0 42 -20 42 -43v-213c0 -23 -19 -43 -42 -43z" />
+ <glyph glyph-name="laptop_chromebook" unicode="laptop_chromebook"
+d="M427 192v213h-342v-213h342zM299 128v21h-86v-21h86zM469 128h43v-43h-512v43h43v320h426v-320z" />
+ <glyph glyph-name="laptop_mac" unicode="laptop_mac"
+d="M256 107c12 0 21 9 21 21s-9 21 -21 21s-21 -9 -21 -21s9 -21 21 -21zM85 405v-234h342v234h-342zM427 128h85c0 -23 -20 -43 -43 -43h-426c-23 0 -43 20 -43 43h85c-23 0 -42 20 -42 43v234c0 23 19 43 42 43h342c23 0 42 -20 42 -43v-234c0 -23 -19 -43 -42 -43z" />
+ <glyph glyph-name="laptop_windows" unicode="laptop_windows"
+d="M85 405v-213h342v213h-342zM427 128h85v-43h-512v43h85v21c-23 0 -42 20 -42 43v213c0 23 19 43 42 43h342c23 0 42 -20 42 -43v-213c0 -23 -19 -43 -42 -43v-21z" />
+ <glyph glyph-name="last_page" unicode="last_page"
+d="M341 384h43v-256h-43v256zM119 354l30 30l128 -128l-128 -128l-30 30l98 98z" />
+ <glyph glyph-name="launch" unicode="launch"
+d="M299 448h149v-149h-43v76l-209 -209l-30 30l209 209h-76v43zM405 107v149h43v-149c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h149v-43h-149v-298h298z" />
+ <glyph glyph-name="layers" unicode="layers"
+d="M256 171c-64.012 49.6547 -127.813 99.5201 -192 149l192 149l192 -149c-64.1875 -49.4791 -127.987 -99.3464 -192 -149zM256 116l157 123l35 -27l-192 -149l-192 149l35 27z" />
+ <glyph glyph-name="layers_clear" unicode="layers_clear"
+d="M70 491l399 -400l-27 -27l-80 81l-106 -82l-192 149l35 27l157 -123l75 59l-30 30l-45 -34c-64.012 49.6547 -127.813 99.5201 -192 149l69 54l-90 90zM448 320c-28.8803 -22.1197 -57.4315 -44.5685 -86 -67l-168 168l62 48zM423 192l-31 31l25 19l31 -30z" />
+ <glyph glyph-name="leak_add" unicode="leak_add"
+d="M299 64c0 83 66 149 149 149v-42c-59 0 -107 -48 -107 -107h-42zM384 64c0 35 29 64 64 64v-64h-64zM213 64c0 129 106 235 235 235v-43c-106 0 -192 -86 -192 -192h-43zM213 448c0 -83 -66 -149 -149 -149v42c59 0 107 48 107 107h42zM299 448
+c0 -129 -105 -235 -235 -235v43c106 0 192 86 192 192h43zM128 448c0 -35 -29 -64 -64 -64v64h64z" />
+ <glyph glyph-name="leak_remove" unicode="leak_remove"
+d="M328 265c35 21 76 34 120 34v-43c-32 0 -62 -8 -89 -22zM425 168l-34 34c17 7 37 11 57 11v-42c-8 0 -16 -1 -23 -3zM299 448c0 -44 -13 -85 -34 -120l-31 31c14 27 22 57 22 89h43zM64 421l27 27l357 -357l-27 -27l-61 61c-12 -17 -19 -38 -19 -61h-42c0 34 12 66 31 91
+l-31 30c-27 -33 -43 -75 -43 -121h-43c0 58 21 111 56 152l-53 53c-41 -35 -94 -56 -152 -56v43c46 0 89 16 122 43l-31 31c-25 -19 -57 -31 -91 -31v42c23 0 44 7 61 19zM213 448c0 -20 -4 -40 -11 -57l-34 34c2 7 3 15 3 23h42z" />
+ <glyph glyph-name="lens" unicode="lens"
+d="M256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="library_add" unicode="library_add"
+d="M405 277v43h-85v85h-43v-85h-85v-43h85v-85h43v85h85zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h256zM85 384v-299h299v-42h-299c-23 0 -42 19 -42 42v299h42z" />
+ <glyph glyph-name="library_books" unicode="library_books"
+d="M405 363v42h-213v-42h213zM320 192v43h-128v-43h128zM405 277v43h-213v-43h213zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h256zM85 384v-299h299v-42h-299c-23 0 -42 19 -42 42v299h42z" />
+ <glyph glyph-name="library_music" unicode="library_music"
+d="M85 384v-299h299v-42h-299c-23 0 -42 19 -42 42v299h42zM384 363v42h-85v-117c-9 7 -20 11 -32 11c-29 0 -54 -25 -54 -54s25 -53 54 -53s53 24 53 53v118h64zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 42 43 42
+h256z" />
+ <glyph glyph-name="lightbulb_outline" unicode="lightbulb_outline"
+d="M317 233c29 20 46 52 46 87c0 59 -48 107 -107 107s-107 -48 -107 -107c0 -35 17 -67 46 -87l18 -13v-49h86v49zM256 469c82 0 149 -67 149 -149c0 -51 -25 -95 -64 -122v-49c0 -12 -9 -21 -21 -21h-128c-12 0 -21 9 -21 21v49c-39 27 -64 71 -64 122
+c0 82 67 149 149 149zM192 64v21h128v-21c0 -12 -9 -21 -21 -21h-86c-12 0 -21 9 -21 21z" />
+ <glyph glyph-name="line_style" unicode="line_style"
+d="M64 427h384v-86h-384v86zM277 256v43h171v-43h-171zM64 256v43h171v-43h-171zM405 85v43h43v-43h-43zM320 85v43h43v-43h-43zM235 85v43h42v-43h-42zM149 85v43h43v-43h-43zM64 85v43h43v-43h-43zM341 171v42h107v-42h-107zM203 171v42h106v-42h-106zM64 171v42h107v-42
+h-107z" />
+ <glyph glyph-name="line_weight" unicode="line_weight"
+d="M64 427h384v-86h-384v86zM64 235v64h384v-64h-384zM64 85v22h384v-22h-384zM64 149v43h384v-43h-384z" />
+ <glyph glyph-name="linear_scale" unicode="linear_scale"
+d="M416 309c29 0 53 -24 53 -53s-24 -53 -53 -53c-22 0 -41 13 -49 32h-62c-8 -19 -27 -32 -49 -32s-41 13 -49 32h-62c-8 -19 -27 -32 -49 -32c-29 0 -53 24 -53 53s24 53 53 53c22 0 41 -13 49 -32h62c8 19 27 32 49 32s41 -13 49 -32h62c8 19 27 32 49 32z" />
+ <glyph glyph-name="link" unicode="link"
+d="M363 363c59 0 106 -48 106 -107s-47 -107 -106 -107h-86v41h86c36 0 66 30 66 66s-30 66 -66 66h-86v41h86zM171 235v42h170v-42h-170zM83 256c0 -36 30 -66 66 -66h86v-41h-86c-59 0 -106 48 -106 107s47 107 106 107h86v-41h-86c-36 0 -66 -30 -66 -66z" />
+ <glyph glyph-name="linked_camera" unicode="linked_camera"
+d="M341 384c24 0 43 -19 43 -43h28c0 39 -32 71 -71 71v-28zM256 107c59 0 107 47 107 106s-48 107 -107 107s-107 -48 -107 -107s48 -106 107 -106zM363 320h106v-235c0 -23 -19 -42 -42 -42h-342c-23 0 -42 19 -42 42v256c0 23 19 43 42 43h68l39 43h128v-64
+c24 0 43 -19 43 -43zM341 441v28c71 0 128 -57 128 -128h-28c0 55 -45 100 -100 100zM188 213c0 38 30 69 68 69s68 -31 68 -69s-30 -68 -68 -68s-68 30 -68 68z" />
+ <glyph glyph-name="list" unicode="list"
+d="M149 363h299v-43h-299v43zM149 149v43h299v-43h-299zM149 235v42h299v-42h-299zM64 320v43h43v-43h-43zM64 149v43h43v-43h-43zM64 235v42h43v-42h-43z" />
+ <glyph glyph-name="live_help" unicode="live_help"
+d="M321 293c12 12 20 29 20 48c0 47 -38 86 -85 86s-85 -39 -85 -86h42c0 23 20 43 43 43s43 -20 43 -43c0 -12 -5 -22 -13 -30l-26 -27c-15 -16 -25 -37 -25 -60v-11h42c0 32 10 45 25 61zM277 128v43h-42v-43h42zM405 469c23 0 43 -19 43 -42v-299c0 -23 -20 -43 -43 -43
+h-85l-64 -64l-64 64h-85c-24 0 -43 20 -43 43v299c0 23 19 42 43 42h298z" />
+ <glyph glyph-name="live_tv" unicode="live_tv"
+d="M192 299l149 -86l-149 -85v171zM448 85v256h-384v-256h384zM448 384c23 0 43 -19 43 -43v-256c0 -23 -20 -42 -43 -42h-384c-23 0 -43 19 -43 42v256c0 24 20 43 43 43h162l-70 70l15 15l85 -85l85 85l15 -15l-70 -70h162z" />
+ <glyph glyph-name="local_activity" unicode="local_activity"
+d="M332 154l-23 87l70 58l-90 5l-33 84l-33 -84l-91 -5l71 -58l-23 -87l76 49zM427 256c0 -23 19 -43 42 -43v-85c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v85c24 0 42 20 42 43s-19 43 -42 43v85c0 23 19 43 42 43h342c23 0 42 -20 42 -43v-85
+c-23 0 -42 -20 -42 -43z" />
+ <glyph glyph-name="local_airport" unicode="local_airport"
+d="M448 171l-171 53v-117l43 -32v-32l-75 21l-74 -21v32l42 32v117l-170 -53v42l170 107v117c0 18 14 32 32 32s32 -14 32 -32v-117l171 -107v-42z" />
+ <glyph glyph-name="local_atm" unicode="local_atm"
+d="M427 128v256h-342v-256h342zM427 427c24 0 42 -19 42 -43v-256c0 -24 -18 -43 -42 -43h-342c-24 0 -42 19 -42 43v256c0 24 18 43 42 43h342zM235 149v22h-43v42h85v22h-64c-12 0 -21 9 -21 21v64c0 12 9 21 21 21h22v22h42v-22h43v-42h-85v-22h64c12 0 21 -9 21 -21v-64
+c0 -12 -9 -21 -21 -21h-22v-22h-42z" />
+ <glyph glyph-name="local_bar" unicode="local_bar"
+d="M159 363h194l38 42h-270zM448 405l-171 -192v-106h107v-43h-256v43h107v106l-171 192v43h384v-43z" />
+ <glyph glyph-name="local_cafe" unicode="local_cafe"
+d="M43 64v43h384v-43h-384zM427 341v64h-43v-64h43zM427 448c24 0 42 -19 42 -43v-64c0 -24 -18 -42 -42 -42h-43v-64c0 -47 -38 -86 -85 -86h-128c-47 0 -86 39 -86 86v213h342z" />
+ <glyph glyph-name="local_car_wash" unicode="local_car_wash"
+d="M107 235h298l-32 96h-234zM373 128c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM139 128c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM404 341l44 -128v-170c0 -12 -9 -22 -21 -22h-22c-12 0 -21 10 -21 22v21h-256v-21
+c0 -12 -9 -22 -21 -22h-22c-12 0 -21 10 -21 22v170l44 128c4 13 17 22 31 22h234c14 0 27 -9 31 -22zM149 405c-18 0 -32 14 -32 32c0 21 32 58 32 58s32 -37 32 -58c0 -18 -14 -32 -32 -32zM256 405c-18 0 -32 14 -32 32c0 21 32 58 32 58s32 -37 32 -58
+c0 -18 -14 -32 -32 -32zM363 405c-18 0 -32 14 -32 32c0 21 32 58 32 58s32 -37 32 -58c0 -18 -14 -32 -32 -32z" />
+ <glyph glyph-name="local_convenience_store" unicode="local_convenience_store"
+d="M341 256v107h-21v-43h-21v43h-22v-64h43v-43h21zM235 299v64h-64v-22h42v-21h-42v-64h64v21h-43v22h43zM405 363h64v-278h-170v86h-86v-86h-170v278h64v64h298v-64z" />
+ <glyph glyph-name="local_dining" unicode="local_dining"
+d="M317 266l-31 -31l147 -147l-30 -30l-147 147l-147 -147l-30 30l208 208c-15 33 -4 79 30 113c41 41 99 48 130 17s24 -90 -17 -131c-34 -34 -80 -44 -113 -29zM173 227l-90 90c-33 33 -33 87 0 120l150 -149z" />
+ <glyph glyph-name="local_drink" unicode="local_drink"
+d="M391 341l9 86h-288l9 -86h270zM256 107c35 0 64 29 64 64c0 43 -64 115 -64 115s-64 -72 -64 -115c0 -35 29 -64 64 -64zM64 469h384l-43 -389c-3 -21 -20 -37 -42 -37h-214c-22 0 -39 16 -42 37z" />
+ <glyph glyph-name="local_florist" unicode="local_florist"
+d="M256 395c-29 0 -53 -25 -53 -54s24 -53 53 -53s53 24 53 53s-24 54 -53 54zM119 293c0 21 13 39 31 48c-18 9 -31 27 -31 48c0 29 25 54 54 54c11 0 21 -4 30 -10v4c0 29 24 54 53 54s53 -25 53 -54v-4c9 6 19 10 30 10c29 0 54 -25 54 -54c0 -21 -13 -39 -31 -48
+c18 -9 31 -27 31 -48c0 -29 -25 -53 -54 -53c-11 0 -21 3 -30 9v-4c0 -29 -24 -53 -53 -53s-53 24 -53 53v4c-9 -6 -19 -9 -30 -9c-29 0 -54 24 -54 53zM256 43c-106 0 -192 86 -192 192c106 0 192 -86 192 -192zM256 43c0 106 86 192 192 192c0 -106 -86 -192 -192 -192z
+" />
+ <glyph glyph-name="local_gas_station" unicode="local_gas_station"
+d="M384 299c12 0 21 9 21 21s-9 21 -21 21s-21 -9 -21 -21s9 -21 21 -21zM256 299v106h-128v-106h128zM422 358c10 -10 15 -23 15 -38v-203c0 -29 -24 -53 -53 -53s-53 24 -53 53v107h-32v-160h-214v341c0 23 20 43 43 43h128c23 0 43 -20 43 -43v-149h21
+c23 0 43 -20 43 -43v-96c0 -12 9 -21 21 -21s21 9 21 21v154c-7 -3 -13 -4 -21 -4c-29 0 -53 24 -53 53c0 23 14 42 34 50l-45 45l23 22z" />
+ <glyph glyph-name="local_grocery_store" unicode="local_grocery_store"
+d="M363 128c23 0 42 -20 42 -43s-19 -42 -42 -42s-43 19 -43 42s20 43 43 43zM21 469h70l20 -42h316c12 0 21 -10 21 -22c0 -4 -1 -7 -3 -10l-76 -138c-7 -13 -21 -22 -37 -22h-159l-19 -35l-1 -3c0 -3 2 -5 5 -5h247v-43h-256c-23 0 -42 20 -42 43c0 7 2 14 5 20l29 53
+l-77 162h-43v42zM149 128c23 0 43 -20 43 -43s-20 -42 -43 -42s-42 19 -42 42s19 43 42 43z" />
+ <glyph glyph-name="local_hospital" unicode="local_hospital"
+d="M384 213v86h-85v85h-86v-85h-85v-86h85v-85h86v85h85zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="local_hotel" unicode="local_hotel"
+d="M405 363c47 0 86 -39 86 -86v-192h-43v64h-384v-64h-43v320h43v-192h171v150h170zM149 235c-35 0 -64 29 -64 64s29 64 64 64s64 -29 64 -64s-29 -64 -64 -64z" />
+ <glyph glyph-name="local_laundry_service" unicode="local_laundry_service"
+d="M256 85c71 0 128 57 128 128s-57 128 -128 128s-128 -57 -128 -128s57 -128 128 -128zM149 427c-12 0 -21 -10 -21 -22s9 -21 21 -21s22 9 22 21s-10 22 -22 22zM213 427c-12 0 -21 -10 -21 -22s9 -21 21 -21s22 9 22 21s-10 22 -22 22zM384 469c24 0 43 -18 43 -42v-342
+c0 -24 -19 -42 -43 -42h-256c-24 0 -43 18 -43 42v342c0 24 19 42 43 42h256zM196 153l120 121c33 -33 33 -88 0 -121s-87 -33 -120 0z" />
+ <glyph glyph-name="local_library" unicode="local_library"
+d="M256 341c-35 0 -64 29 -64 64s29 64 64 64s64 -29 64 -64s-29 -64 -64 -64zM256 266c50 47 118 75 192 75v-234c-74 0 -142 -29 -192 -76c-50 47 -118 76 -192 76v234c74 0 142 -28 192 -75z" />
+ <glyph glyph-name="local_mall" unicode="local_mall"
+d="M256 235c59 0 107 47 107 106h-43c0 -35 -29 -64 -64 -64s-64 29 -64 64h-43c0 -59 48 -106 107 -106zM256 448c-35 0 -64 -29 -64 -64h128c0 35 -29 64 -64 64zM405 384c23 0 43 -20 43 -43v-256c0 -23 -20 -42 -43 -42h-298c-23 0 -43 19 -43 42v256c0 23 20 43 43 43
+h42c0 59 48 107 107 107s107 -48 107 -107h42z" />
+ <glyph glyph-name="local_movies" unicode="local_movies"
+d="M384 320v43h-43v-43h43zM384 235v42h-43v-42h43zM384 149v43h-43v-43h43zM171 320v43h-43v-43h43zM171 235v42h-43v-42h43zM171 149v43h-43v-43h43zM384 448h43v-384h-43v43h-43v-43h-170v43h-43v-43h-43v384h43v-43h43v43h170v-43h43v43z" />
+ <glyph glyph-name="local_offer" unicode="local_offer"
+d="M117 363c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM457 265c8 -8 12 -18 12 -30s-4 -22 -12 -30l-150 -150c-8 -8 -18 -12 -30 -12s-22 4 -30 12l-192 192c-8 8 -12 18 -12 30v150c0 23 19 42 42 42h150c12 0 22 -4 30 -12z" />
+ <glyph glyph-name="local_parking" unicode="local_parking"
+d="M282 277c23 0 42 20 42 43s-19 43 -42 43h-69v-86h69zM277 448c71 0 128 -57 128 -128s-57 -128 -128 -128h-64v-128h-85v384h149z" />
+ <glyph glyph-name="local_pharmacy" unicode="local_pharmacy"
+d="M341 213v43h-64v64h-42v-64h-64v-43h64v-64h42v64h64zM448 405v-42l-43 -128l43 -128v-43h-384v43l43 128l-43 128v42h271l31 86l50 -19l-24 -67h56z" />
+ <glyph glyph-name="local_phone" unicode="local_phone"
+d="M141 282c31 -60 81 -110 141 -141l47 47c6 6 15 8 22 5c24 -8 50 -12 76 -12c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76c2 -7 1 -16 -5 -22z" />
+ <glyph glyph-name="local_pizza" unicode="local_pizza"
+d="M256 192c23 0 43 20 43 43s-20 42 -43 42s-43 -19 -43 -42s20 -43 43 -43zM149 363c0 -23 20 -43 43 -43s43 20 43 43s-20 42 -43 42s-43 -19 -43 -42zM256 469c76 0 145 -33 192 -85l-192 -341l-192 341c47 52 116 85 192 85z" />
+ <glyph glyph-name="local_play" unicode="local_play"
+d="M332 154l-23 87l70 58l-90 5l-33 84l-33 -84l-91 -5l71 -58l-23 -87l76 49zM427 256c0 -23 19 -43 42 -43v-85c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v85c24 0 42 20 42 43s-19 43 -42 43v85c0 23 19 43 42 43h342c23 0 42 -20 42 -43v-85
+c-23 0 -42 -20 -42 -43z" />
+ <glyph glyph-name="local_post_office" unicode="local_post_office"
+d="M427 341v43l-171 -107l-171 107v-43l171 -106zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342z" />
+ <glyph glyph-name="local_printshop" unicode="local_printshop"
+d="M384 448v-85h-256v85h256zM405 256c12 0 22 9 22 21s-10 22 -22 22s-21 -10 -21 -22s9 -21 21 -21zM341 107v106h-170v-106h170zM405 341c35 0 64 -29 64 -64v-128h-85v-85h-256v85h-85v128c0 35 29 64 64 64h298z" />
+ <glyph glyph-name="local_see" unicode="local_see"
+d="M256 149c59 0 107 48 107 107s-48 107 -107 107s-107 -48 -107 -107s48 -107 107 -107zM192 469h128l39 -42h68c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h68zM188 256c0 38 30 68 68 68s68 -30 68 -68
+s-30 -68 -68 -68s-68 30 -68 68z" />
+ <glyph glyph-name="local_shipping" unicode="local_shipping"
+d="M384 117c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM416 309h-53v-53h95zM128 117c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM427 341l64 -85v-107h-43c0 -35 -29 -64 -64 -64s-64 29 -64 64h-128c0 -35 -29 -64 -64 -64
+s-64 29 -64 64h-43v235c0 23 20 43 43 43h299v-86h64z" />
+ <glyph glyph-name="local_taxi" unicode="local_taxi"
+d="M107 277h298l-32 96h-234zM373 171c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM139 171c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM404 384l44 -128v-171c0 -12 -9 -21 -21 -21h-22c-12 0 -21 9 -21 21v22h-256v-22
+c0 -12 -9 -21 -21 -21h-22c-12 0 -21 9 -21 21v171l44 128c4 13 17 21 31 21h53v43h128v-43h53c14 0 27 -8 31 -21z" />
+ <glyph glyph-name="location_city" unicode="location_city"
+d="M405 192v43h-42v-43h42zM405 107v42h-42v-42h42zM277 363v42h-42v-42h42zM277 277v43h-42v-43h42zM277 192v43h-42v-43h42zM277 107v42h-42v-42h42zM149 277v43h-42v-43h42zM149 192v43h-42v-43h42zM149 107v42h-42v-42h42zM320 277h128v-213h-384v299h128v42l64 64
+l64 -64v-128z" />
+ <glyph glyph-name="location_disabled" unicode="location_disabled"
+d="M347 138l-209 209c-19 -25 -31 -57 -31 -91c0 -83 66 -149 149 -149c34 0 66 12 91 31zM64 421l27 27l357 -357l-27 -27l-44 44c-28 -23 -62 -39 -100 -43v-44h-42v44c-89 10 -160 81 -170 170h-44v42h44c4 38 20 72 43 100zM447 277h44v-42h-44c-3 -24 -10 -48 -21 -68
+l-32 32c7 17 11 37 11 57c0 83 -66 149 -149 149c-20 0 -40 -4 -57 -11l-32 32c21 11 44 18 68 21v44h42v-44c89 -10 160 -81 170 -170z" />
+ <glyph glyph-name="location_off" unicode="location_off"
+d="M250 267c59.1765 -58.4901 118.284 -117.049 177 -176l-27 -27l-72 71c-36 -53 -72 -92 -72 -92s-149 165 -149 277c0 11 2 22 4 33l-68 68l27 27l178 -178zM256 373c-16 0 -29 -7 -39 -18l-69 68c27 28 66 46 108 46c83 0 149 -66 149 -149c0 -36 -15 -77 -36 -117
+l-77 78c11 10 17 23 17 39c0 29 -24 53 -53 53z" />
+ <glyph glyph-name="location_on" unicode="location_on"
+d="M256 267c29 0 53 24 53 53s-24 53 -53 53s-53 -24 -53 -53s24 -53 53 -53zM256 469c83 0 149 -66 149 -149c0 -112 -149 -277 -149 -277s-149 165 -149 277c0 83 66 149 149 149z" />
+ <glyph glyph-name="location_searching" unicode="location_searching"
+d="M256 107c83 0 149 66 149 149s-66 149 -149 149s-149 -66 -149 -149s66 -149 149 -149zM447 277h44v-42h-44c-10 -89 -81 -160 -170 -170v-44h-42v44c-89 10 -160 81 -170 170h-44v42h44c10 89 81 160 170 170v44h42v-44c89 -10 160 -81 170 -170z" />
+ <glyph glyph-name="lock" unicode="lock"
+d="M322 341v43c0 36 -30 66 -66 66s-66 -30 -66 -66v-43h132zM256 149c23 0 43 20 43 43s-20 43 -43 43s-43 -20 -43 -43s20 -43 43 -43zM384 341c23 0 43 -19 43 -42v-214c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42v214c0 23 20 42 43 42h21v43c0 59 48 107 107 107
+s107 -48 107 -107v-43h21z" />
+ <glyph glyph-name="lock_open" unicode="lock_open"
+d="M384 85v214h-256v-214h256zM384 341c23 0 43 -19 43 -42v-214c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42v214c0 23 20 42 43 42h194v43c0 36 -30 66 -66 66s-66 -30 -66 -66h-41c0 59 48 107 107 107s107 -48 107 -107v-43h21zM256 149c-23 0 -43 20 -43 43
+s20 43 43 43s43 -20 43 -43s-20 -43 -43 -43z" />
+ <glyph glyph-name="lock_outline" unicode="lock_outline"
+d="M384 85v214h-256v-214h256zM190 384v-43h132v43c0 36 -30 66 -66 66s-66 -30 -66 -66zM384 341c23 0 43 -19 43 -42v-214c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42v214c0 23 20 42 43 42h21v43c0 59 48 107 107 107s107 -48 107 -107v-43h21zM256 149
+c-23 0 -43 20 -43 43s20 43 43 43s43 -20 43 -43s-20 -43 -43 -43z" />
+ <glyph glyph-name="looks" unicode="looks"
+d="M256 384c129 0 235 -106 235 -235h-43c0 106 -86 192 -192 192s-192 -86 -192 -192h-43c0 129 106 235 235 235zM256 299c82 0 149 -68 149 -150h-42c0 59 -48 107 -107 107s-107 -48 -107 -107h-42c0 82 67 150 149 150z" />
+ <glyph glyph-name="looks_3" unicode="looks_&#x33;"
+d="M320 288v32c0 24 -19 43 -42 43h-86v-43h86v-43h-43v-42h43v-43h-86v-43h86c23 0 42 19 42 43v32c0 18 -14 32 -32 32c18 0 32 14 32 32zM406 448c23 0 42 -20 42 -43v-298c0 -23 -19 -43 -42 -43h-299c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h299z" />
+ <glyph glyph-name="looks_4" unicode="looks_&#x34;"
+d="M320 149v214h-43v-86h-42v86h-43v-128h85v-86h43zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="looks_5" unicode="looks_&#x35;"
+d="M320 320v43h-128v-128h85v-43h-85v-43h85c23 0 43 19 43 43v43c0 24 -20 42 -43 42h-42v43h85zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="looks_6" unicode="looks_&#x36;"
+d="M320 320v43h-85c-23 0 -43 -19 -43 -43v-128c0 -24 20 -43 43 -43h42c23 0 43 19 43 43v43c0 24 -20 42 -43 42h-42v43h85zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298zM235 192v43h42v-43h-42z" />
+ <glyph glyph-name="looks_one" unicode="looks_one"
+d="M299 149v214h-86v-43h43v-171h43zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="looks_two" unicode="looks_two"
+d="M320 277v43c0 24 -20 43 -43 43h-85v-43h85v-43h-42c-23 0 -43 -18 -43 -42v-86h128v43h-85v43h42c23 0 43 18 43 42zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="loop" unicode="loop"
+d="M256 128v64l85 -85l-85 -86v64c-94 0 -171 77 -171 171c0 33 10 65 27 91l31 -31c-10 -18 -15 -38 -15 -60c0 -71 57 -128 128 -128zM256 427c94 0 171 -77 171 -171c0 -33 -10 -65 -27 -91l-31 31c10 18 15 38 15 60c0 71 -57 128 -128 128v-64l-85 85l85 86v-64z" />
+ <glyph glyph-name="loupe" unicode="loupe"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213v-171c0 -23 -19 -42 -42 -42h-171c-118 0 -213 95 -213 213s95 213 213 213zM277 363v-86h86v-42h-86v-86h-42v86h-86v42h86v86h42z" />
+ <glyph glyph-name="low_priority" unicode="low_priority"
+d="M43 267c0 76 62 138 138 138h75v-42h-75c-53 0 -96 -43 -96 -96s43 -96 96 -96h11v42l64 -64l-64 -64v43h-11c-76 0 -138 63 -138 139zM299 171h170v-43h-170v43zM299 288h170v-43h-170v43zM299 405h170v-42h-170v42z" />
+ <glyph glyph-name="loyalty" unicode="loyalty"
+d="M368 186c10 10 16 23 16 38c0 29 -24 53 -53 53c-15 0 -28 -5 -38 -15l-16 -16l-15 16c-10 10 -23 15 -38 15c-29 0 -53 -24 -53 -53c0 -15 5 -28 15 -38l91 -91zM117 363c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM457 265c8 -8 12 -18 12 -30
+s-4 -22 -12 -30l-150 -150c-8 -8 -18 -12 -30 -12s-22 4 -30 12l-192 192c-8 8 -12 18 -12 30v150c0 23 19 42 42 42h150c12 0 22 -4 30 -12z" />
+ <glyph glyph-name="mail" unicode="mail"
+d="M427 341v43l-171 -107l-171 107v-43l171 -106zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342z" />
+ <glyph glyph-name="mail_outline" unicode="mail_outline"
+d="M256 277l171 107h-342zM427 128v213l-171 -106l-171 106v-213h342zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342z" />
+ <glyph glyph-name="map" unicode="map"
+d="M320 107v253l-128 45v-253zM437 448c6 0 11 -5 11 -11v-322c0 -5 -4 -9 -8 -10l-120 -41l-128 45l-114 -44l-3 -1c-6 0 -11 5 -11 11v322c0 5 4 9 8 10l120 41l128 -45l114 44z" />
+ <glyph glyph-name="markunread" unicode="markunread"
+d="M427 341v43l-171 -107l-171 107v-43l171 -106zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342z" />
+ <glyph glyph-name="markunread_mailbox" unicode="markunread_mailbox"
+d="M427 384c23 0 42 -20 42 -43v-256c0 -23 -19 -42 -42 -42h-342c-23 0 -42 19 -42 42v256c0 23 19 43 42 43h43v128h171v-85h-128v-171h42v128h214z" />
+ <glyph glyph-name="memory" unicode="memory"
+d="M363 149v214h-214v-214h214zM448 277h-43v-42h43v-43h-43v-43c0 -23 -19 -42 -42 -42h-43v-43h-43v43h-42v-43h-43v43h-43c-23 0 -42 19 -42 42v43h-43v43h43v42h-43v43h43v43c0 23 19 42 42 42h43v43h43v-43h42v43h43v-43h43c23 0 42 -19 42 -42v-43h43v-43zM277 235v42
+h-42v-42h42zM320 320v-128h-128v128h128z" />
+ <glyph glyph-name="menu" unicode="menu"
+d="M64 384h384v-43h-384v43zM64 235v42h384v-42h-384zM64 128v43h384v-43h-384z" />
+ <glyph glyph-name="merge_type" unicode="merge_type"
+d="M160 341l96 96l96 -96h-75v-136l-128 -128l-30 30l116 115v119h-75zM363 77l-73 72l30 30l73 -72z" />
+ <glyph glyph-name="message" unicode="message"
+d="M384 341v43h-256v-43h256zM384 277v43h-256v-43h256zM384 213v43h-256v-43h256zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="mic" unicode="mic"
+d="M369 277h36c0 -73 -58 -133 -128 -143v-70h-42v70c-70 10 -128 70 -128 143h36c0 -64 54 -108 113 -108s113 44 113 108zM256 213c-35 0 -64 29 -64 64v128c0 35 29 64 64 64s64 -29 64 -64v-128c0 -35 -29 -64 -64 -64z" />
+ <glyph glyph-name="mic_none" unicode="mic_none"
+d="M369 277h36c0 -73 -58 -133 -128 -143v-70h-42v70c-70 10 -128 70 -128 143h36c0 -64 54 -108 113 -108s113 44 113 108zM230 407v-132c0 -14 12 -25 26 -25s25 11 25 25l1 132c0 14 -12 26 -26 26s-26 -12 -26 -26zM256 213c-35 0 -64 29 -64 64v128c0 35 29 64 64 64
+s64 -29 64 -64v-128c0 -35 -29 -64 -64 -64z" />
+ <glyph glyph-name="mic_off" unicode="mic_off"
+d="M91 448l357 -357l-27 -27l-89 89c-16 -10 -36 -16 -55 -19v-70h-42v70c-70 10 -128 70 -128 143h36c0 -64 54 -108 113 -108c17 0 34 4 49 11l-35 35c-4 -1 -9 -2 -14 -2c-35 0 -64 29 -64 64v16l-128 128zM320 274l-128 127v4c0 35 29 64 64 64s64 -29 64 -64v-131z
+M405 277c0 -25 -7 -49 -19 -70l-26 27c6 13 9 27 9 43h36z" />
+ <glyph glyph-name="mms" unicode="mms"
+d="M107 213h298l-96 128l-74 -96l-54 64zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="mode_comment" unicode="mode_comment"
+d="M469 427v-384l-85 85h-299c-23 0 -42 20 -42 43v256c0 23 19 42 42 42h342c23 0 42 -19 42 -42z" />
+ <glyph glyph-name="mode_edit" unicode="mode_edit"
+d="M442 362l-39 -39l-80 80l39 39c8 8 22 8 30 0l50 -50c8 -8 8 -22 0 -30zM64 144l236 236l80 -80l-236 -236h-80v80z" />
+ <glyph glyph-name="monetization_on" unicode="monetization_on"
+d="M286 126c37 7 67 28 67 67c0 54 -47 73 -90 84s-56 23 -56 41c0 20 19 35 51 35c34 0 46 -16 47 -40h42c-1 33 -21 62 -61 72v42h-57v-42c-37 -8 -66 -31 -66 -68c0 -44 36 -65 89 -78c48 -11 57 -28 57 -46c0 -13 -9 -34 -51 -34c-39 0 -55 18 -57 40h-42
+c2 -41 34 -64 70 -72v-42h57v41zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="money_off" unicode="money_off"
+d="M114 425l311 -312l-27 -27l-47 48c-13 -12 -32 -20 -52 -24v-46h-64v46c-41 9 -76 35 -79 82h47c2 -25 20 -45 64 -45c29 0 44 10 51 20l-75 74c-50 15 -83 40 -83 84l-73 73zM267 365c-13 0 -24 -2 -33 -6l-31 31c10 5 21 9 32 12v46h64v-47c45 -11 67 -44 68 -81h-47
+c-1 27 -15 45 -53 45z" />
+ <glyph glyph-name="monochrome_photos" unicode="monochrome_photos"
+d="M427 107v256h-171v-22c60 0 107 -46 107 -106s-47 -107 -107 -107v38c-38 0 -68 31 -68 69s30 68 68 68v-137c38 0 68 31 68 69s-30 68 -68 68v38c-60 0 -107 -46 -107 -106s47 -107 107 -107v-21h171zM427 405c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-342
+c-23 0 -42 20 -42 43v256c0 23 19 42 42 42h69l38 43h128l38 -43h69z" />
+ <glyph glyph-name="mood" unicode="mood"
+d="M256 139c-50 0 -92 30 -109 74h218c-17 -44 -59 -74 -109 -74zM181 277c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM331 277c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM256 85c94 0 171 77 171 171s-77 171 -171 171
+s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="mood_bad" unicode="mood_bad"
+d="M256 213c50 0 92 -30 109 -74h-218c17 44 59 74 109 74zM181 277c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM331 277c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM256 85c94 0 171 77 171 171s-77 171 -171 171
+s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="more" unicode="more"
+d="M405 224c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM299 224c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM192 224c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM469 448c23 0 43 -20 43 -43v-298
+c0 -23 -20 -43 -43 -43h-318c-15 0 -28 8 -36 19l-115 173l115 173c8 11 19 19 34 19h320z" />
+ <glyph glyph-name="more_horiz" unicode="more_horiz"
+d="M256 299c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM384 299c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM128 299c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43z" />
+ <glyph glyph-name="more_vert" unicode="more_vert"
+d="M256 171c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM256 299c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM256 341c-23 0 -43 20 -43 43s20 43 43 43s43 -20 43 -43s-20 -43 -43 -43z" />
+ <glyph glyph-name="motorcycle" unicode="motorcycle"
+d="M405 149c35 0 64 29 64 64s-29 64 -64 64s-64 -29 -64 -64s29 -64 64 -64zM167 192h-60v43h60c-9 25 -33 42 -60 42c-35 0 -64 -29 -64 -64s29 -64 64 -64c27 0 51 18 60 43zM415 319c55 -4 97 -49 97 -106c0 -60 -47 -106 -107 -106s-106 46 -106 106c0 13 2 26 6 38
+l-59 -59h-35c-10 -49 -52 -85 -104 -85c-60 0 -107 46 -107 106s47 107 107 107h247l-43 43h-76v42h94z" />
+ <glyph glyph-name="mouse" unicode="mouse"
+d="M235 489v-169h-150c0 87 66 159 150 169zM85 192v85h342v-85c0 -94 -77 -171 -171 -171s-171 77 -171 171zM277 489c84 -10 150 -82 150 -169h-150v169z" />
+ <glyph glyph-name="move_to_inbox" unicode="move_to_inbox"
+d="M341 299l-85 -86l-85 86h42v64h86v-64h42zM405 192v213h-299v-213h86c0 -35 29 -64 64 -64s64 29 64 64h85zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-299c-24 0 -42 20 -42 43v298c0 23 18 43 42 43h299z" />
+ <glyph glyph-name="movie" unicode="movie"
+d="M384 427h85v-299c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h22l42 -86h64l-42 86h42l43 -86h64l-43 86h43l43 -86h64z" />
+ <glyph glyph-name="movie_creation" unicode="movie_creation"
+d="M384 427h85v-299c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h22l42 -86h64l-42 86h42l43 -86h64l-43 86h43l43 -86h64z" />
+ <glyph glyph-name="movie_filter" unicode="movie_filter"
+d="M361 257l44 20l-44 20l-20 44l-20 -44l-44 -20l44 -20l20 -44zM240 187l59 26l-59 27l-27 59l-26 -59l-59 -27l59 -26l26 -59zM384 427h85v-299c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h22l42 -64h64l-42 64h42l43 -64h64l-43 64h43
+l43 -64h64z" />
+ <glyph glyph-name="multiline_chart" unicode="multiline_chart"
+d="M469 364l-65 -73c23 -37 39 -82 44 -131h-43c-4 35 -15 68 -31 97l-86 -97l-85 86l-128 -128l-32 32l160 160l85 -86l61 70c-36 42 -86 69 -144 69c-50 0 -96 -20 -132 -52l-30 30c44 39 100 64 162 64c69 0 129 -30 173 -79l61 68z" />
+ <glyph glyph-name="music_note" unicode="music_note"
+d="M256 448h128v-85h-85v-214c0 -47 -39 -85 -86 -85s-85 38 -85 85s38 86 85 86c16 0 30 -5 43 -12v225z" />
+ <glyph glyph-name="music_video" unicode="music_video"
+d="M171 192c0 35 29 64 64 64c7 0 14 -2 21 -4v132h107v-43h-64v-150c0 -35 -29 -63 -64 -63s-64 29 -64 64zM448 107v298h-384v-298h384zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="my_location" unicode="my_location"
+d="M256 107c83 0 149 66 149 149s-66 149 -149 149s-149 -66 -149 -149s66 -149 149 -149zM447 277h44v-42h-44c-10 -89 -81 -160 -170 -170v-44h-42v44c-89 10 -160 81 -170 170h-44v42h44c10 89 81 160 170 170v44h42v-44c89 -10 160 -81 170 -170zM256 341
+c47 0 85 -38 85 -85s-38 -85 -85 -85s-85 38 -85 85s38 85 85 85z" />
+ <glyph glyph-name="nature" unicode="nature"
+d="M277 168v-83h128v-42h-298v42h128v84c-71 12 -125 73 -125 147c0 83 67 150 150 150s149 -67 149 -150c0 -77 -58 -139 -132 -148z" />
+ <glyph glyph-name="nature_people" unicode="nature_people"
+d="M96 277c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM473 316c0 -77 -58 -139 -132 -148v-83h64v-42h-341v106h-21v86c0 12 9 21 21 21h64c12 0 21 -9 21 -21v-86h-21v-64h171v84c-71 12 -125 73 -125 147c0 83 67 150 150 150s149 -67 149 -150z
+" />
+ <glyph glyph-name="navigate_before" unicode="navigate_before"
+d="M329 354l-98 -98l98 -98l-30 -30l-128 128l128 128z" />
+ <glyph glyph-name="navigate_next" unicode="navigate_next"
+d="M213 384l128 -128l-128 -128l-30 30l98 98l-98 98z" />
+ <glyph glyph-name="navigation" unicode="navigation"
+d="M256 469l160 -390l-15 -15l-145 64l-145 -64l-15 15z" />
+ <glyph glyph-name="near_me" unicode="near_me"
+d="M448 448l-161 -384h-21l-56 146l-146 56v21z" />
+ <glyph glyph-name="network_cell" unicode="network_cell"
+d="M469 43h-426l426 426v-426z" />
+ <glyph glyph-name="network_check" unicode="network_check"
+d="M107 235c43 43 100 63 156 61l-28 -61c-31 -4 -62 -19 -86 -43zM363 192c-8 8 -17 15 -26 21l12 62c20 -10 39 -23 56 -40zM448 277c-26 26 -56 46 -88 59l11 60c44 -16 85 -41 120 -76zM21 320c80 80 190 110 293 92l-25 -57c-80 10 -164 -17 -225 -78zM339 405
+c6 0 11 -4 11 -10l-52 -275v-1c-4 -19 -22 -34 -42 -34c-24 0 -43 19 -43 43c0 7 2 15 5 21l111 248c1.57297 4.7189 4.56186 8 10 8z" />
+ <glyph glyph-name="network_locked" unicode="network_locked"
+d="M448 171v32c0 18 -14 32 -32 32s-32 -14 -32 -32v-32h64zM469 171c12 0 22 -10 22 -22v-85c0 -12 -10 -21 -22 -21h-106c-12 0 -22 9 -22 21v85c0 12 10 22 22 22v32c0 29 24 53 53 53s53 -24 53 -53v-32zM416 299c-53 0 -96 -43 -96 -96v-6c-13 -12 -21 -29 -21 -48v-64
+h-278l406 406v-193c-4 0 -7 1 -11 1z" />
+ <glyph glyph-name="network_wifi" unicode="network_wifi"
+d="M436.25 278.586c0.284113 -0.222489 0.53415 -0.418301 0.749753 -0.585993l-181 -224l-181 224c0.215604 0.167692 0.46564 0.363504 0.749753 0.585993l-67.7498 84.414c10 7 105 85 248 85s238 -78 248 -85z" />
+ <glyph glyph-name="new_releases" unicode="new_releases"
+d="M277 235v128h-42v-128h42zM277 149v43h-42v-43h42zM491 256l-52 -59l7 -79l-77 -17l-40 -68l-73 31l-73 -31l-40 67l-77 18l7 79l-52 59l52 60l-7 78l77 17l40 68l73 -31l73 31l40 -68l77 -17l-7 -79z" />
+ <glyph glyph-name="next_week" unicode="next_week"
+d="M235 117l85 86l-85 85l-22 -21l64 -64l-64 -64zM213 405v-42h86v42h-86zM299 448c23.3225 0 42 -19.4985 42 -43v-42h86c23 0 42 -20 42 -43v-235c0 -23 -19 -42 -42 -42h-342c-23 0 -42 19 -42 42v235c0 23 19 43 42 43h86v42c0 23 19 43 42 43h86z" />
+ <glyph glyph-name="nfc" unicode="nfc"
+d="M384 384v-256h-256v256h85v-43h-42v-170h170v170h-64v-48c13 -7 22 -21 22 -37c0 -23 -20 -43 -43 -43s-43 20 -43 43c0 16 9 30 22 37v48c0 23 19 43 42 43h107zM427 85v342h-342v-342h342zM427 469c23 0 42 -19 42 -42v-342c0 -23 -19 -42 -42 -42h-342
+c-23 0 -42 19 -42 42v342c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="no_encryption" unicode="no_encryption"
+d="M190 384v-26l-39 39c6 53 50 94 105 94c59 0 107 -48 107 -107v-43h21c23 0 43 -19 43 -42v-178l-221 220h116v43c0 36 -30 66 -66 66s-66 -30 -66 -66zM448 47l-26 -26l-24 24c-4 -1 -9 -2 -14 -2h-256c-23 0 -43 19 -43 42v214c0 16 10 30 23 37l-44 43l26 26z" />
+ <glyph glyph-name="no_sim" unicode="no_sim"
+d="M78 429l373 -372l-28 -28l-40 41c-6 -3 -13 -6 -20 -6h-214c-23 0 -42 20 -42 43v239l-56 56zM405 405v-249l-242 242l50 50h150c23 0 42 -20 42 -43z" />
+ <glyph glyph-name="not_interested" unicode="not_interested"
+d="M391 151c23 29 36 66 36 105c0 94 -77 171 -171 171c-39 0 -76 -13 -105 -36zM256 85c39 0 76 13 105 36l-240 240c-23 -29 -36 -66 -36 -105c0 -94 77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="note" unicode="note"
+d="M320 395v-118h117zM469 299v-171c0 -23 -19 -42 -42 -42l-342 -1c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h256z" />
+ <glyph glyph-name="note_add" unicode="note_add"
+d="M277 320h118l-118 117v-117zM341 171v42h-64v64h-42v-64h-64v-42h64v-64h42v64h64zM299 469l128 -128v-256c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42l1 342c0 23 19 42 42 42h171z" />
+ <glyph glyph-name="notifications" unicode="notifications"
+d="M384 171l43 -43v-21h-342v21l43 43v106c0 66 35 120 96 135v15c0 18 14 32 32 32s32 -14 32 -32v-15c61 -15 96 -70 96 -135v-106zM256 43c-24 0 -43 19 -43 42h86c0 -23 -20 -42 -43 -42z" />
+ <glyph glyph-name="notifications_active" unicode="notifications_active"
+d="M256 43c-24 0 -43 19 -43 42h85c0 -24.8376 -18.6125 -42 -42 -42zM384 277v-106l43 -43v-21h-342v21l43 43v106c0 66 35 120 96 135v15c0 18 14 32 32 32s32 -14 32 -32v-15c61 -15 96 -70 96 -135zM426 288c-3 57 -32 106 -75 137l30 30c51 -39 85 -99 88 -167h-43z
+M162 425c-44 -31 -73 -80 -76 -137h-43c3 68 37 128 88 167z" />
+ <glyph glyph-name="notifications_none" unicode="notifications_none"
+d="M341 149v128c0 53 -32 96 -85 96s-85 -43 -85 -96v-128h170zM384 171l43 -43v-21h-342v21l43 43v106c0 66 35 120 96 135v15c0 18 14 32 32 32s32 -14 32 -32v-15c61 -15 96 -70 96 -135v-106zM256 43c-23 0 -43 19 -43 42h86c0 -23 -20 -42 -43 -42z" />
+ <glyph glyph-name="notifications_off" unicode="notifications_off"
+d="M384 199l-191 201c5 2 10 5 15 7h1l6 3c3 1 6 1 9 2v15c0 18 14 32 32 32s32 -14 32 -32v-15c61 -15 96 -69 96 -135v-78zM256 43c-24 0 -43 18 -43 42h86c0 -24 -19 -42 -43 -42zM167 381c93.6174 -96.7159 187.67 -192.997 281 -290l-27 -27l-43 43h-293v21l43 43v107
+c0 27 6 52 17 73l-60 59l27 28z" />
+ <glyph glyph-name="notifications_paused" unicode="notifications_paused"
+d="M309 303v38h-106v-38h59l-59 -73v-38h106v38h-59zM384 171l43 -43v-21h-342v21l43 43v106c0 65 35 120 96 135v15c0 18 14 32 32 32s32 -14 32 -32v-15c61 -15 96 -70 96 -135v-106zM256 43c-24 0 -43 19 -43 42h86c0 -23 -20 -42 -43 -42z" />
+ <glyph glyph-name="offline_pin" unicode="offline_pin"
+d="M220 213l143 143l-30 30l-113 -113l-41 41l-30 -30zM363 128v43h-214v-43h214zM256 469c117 0 213 -96 213 -213s-96 -213 -213 -213s-213 96 -213 213s96 213 213 213z" />
+ <glyph glyph-name="ondemand_video" unicode="ondemand_video"
+d="M341 277l-149 -85v171zM448 149v256h-384v-256h384zM448 448c23 0 43 -19 43 -43l-1 -256c0 -23 -19 -42 -42 -42h-107v-43h-170v43h-107c-24 0 -43 19 -43 42v256c0 24 19 43 43 43h384z" />
+ <glyph glyph-name="opacity" unicode="opacity"
+d="M128 213h256c0 43 -14 69 -38 93l-90 94l-90 -93c-24 -24 -38 -51 -38 -94zM377 341c33 -33 50 -77 50 -120s-17 -88 -50 -121s-77 -50 -121 -50s-88 17 -121 50s-50 78 -50 121s17 87 50 120l121 121z" />
+ <glyph glyph-name="open_in_browser" unicode="open_in_browser"
+d="M256 299l85 -86h-64v-128h-42v128h-64zM405 427c24 0 43 -20 43 -43v-256c0 -23 -20 -43 -43 -43h-85v43h85v213h-298v-213h85v-43h-85c-24 0 -43 20 -43 43v256c0 23 19 43 43 43h298z" />
+ <glyph glyph-name="open_in_new" unicode="open_in_new"
+d="M299 448h149v-149h-43v76l-209 -209l-30 30l209 209h-76v43zM405 107v149h43v-149c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h149v-43h-149v-298h298z" />
+ <glyph glyph-name="open_with" unicode="open_with"
+d="M299 192v-64h64l-107 -107l-107 107h64v64h86zM491 256l-107 -107v64h-64v86h64v64zM192 299v-86h-64v-64l-107 107l107 107v-64h64zM213 320v64h-64l107 107l107 -107h-64v-64h-86z" />
+ <glyph glyph-name="pages" unicode="pages"
+d="M405 448c23 0 43 -20 43 -43v-128h-107l22 86l-86 -22v107h128zM363 149l-22 86h107v-128c0 -23 -20 -43 -43 -43h-128v107zM171 235l-22 -86l86 22v-107h-128c-23 0 -43 20 -43 43v128h107zM64 405c0 23 20 43 43 43h128v-107l-86 22l22 -86h-107v128z" />
+ <glyph glyph-name="pageview" unicode="pageview"
+d="M358 124l30 30l-62 62c9 15 15 32 15 51c0 53 -43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96c19 0 36 6 51 15zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342zM245 320c29 0 54 -24 54 -53
+s-25 -54 -54 -54s-53 25 -53 54s24 53 53 53z" />
+ <glyph glyph-name="palette" unicode="palette"
+d="M373 256c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM309 341c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM203 341c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM139 256c18 0 32 14 32 32s-14 32 -32 32
+s-32 -14 -32 -32s14 -32 32 -32zM256 448c106 0 192 -77 192 -171c0 -59 -48 -106 -107 -106h-37c-18 0 -32 -14 -32 -32c0 -8 3 -15 8 -21s8 -14 8 -22c0 -18 -14 -32 -32 -32c-106 0 -192 86 -192 192s86 192 192 192z" />
+ <glyph glyph-name="pan_tool" unicode="pan_tool"
+d="M491 395v-310c0 -47 -39 -85 -86 -85h-155c-23 0 -45 9 -61 25l-168 171s27 26 28 26c5 4 11 6 17 6c5 0 9 -1 13 -3c1 0 92 -52 92 -52v254c0 18 14 32 32 32s32 -14 32 -32v-150h21v203c0 18 14 32 32 32s32 -14 32 -32v-203h21v182c0 18 14 32 32 32s32 -14 32 -32
+v-182h22v118c0 18 14 32 32 32s32 -14 32 -32z" />
+ <glyph glyph-name="panorama" unicode="panorama"
+d="M181 245l-74 -96h298l-96 128l-74 -96zM491 128c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v256c0 23 20 43 43 43h384c23 0 43 -20 43 -43v-256z" />
+ <glyph glyph-name="panorama_fish_eye" unicode="panorama_fish_eye"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="panorama_horizontal" unicode="panorama_horizontal"
+d="M457 427c7 0 12 -5 12 -14v-314c0 -9 -5 -14 -12 -14c-2 0 -4 1 -6 2c-63 23 -129 35 -195 35s-132 -12 -195 -35c-2 -1 -4 -2 -6 -2c-7 0 -12 6 -12 14v314c0 9 5 14 12 14c2 0 4 -1 6 -2c63 -23 129 -35 195 -35s132 12 195 35c2 1 4 2 6 2zM427 372
+c-55 -17 -113 -24 -171 -24s-116 8 -171 24v-232c55 16 113 24 171 24s116 -8 171 -24v232z" />
+ <glyph glyph-name="panorama_vertical" unicode="panorama_vertical"
+d="M140 85h232c-16 55 -24 113 -24 171s8 116 24 171h-232c16 -55 24 -113 24 -171s-8 -116 -24 -171zM425 61c1 -2 2 -4 2 -6c0 -7 -6 -12 -14 -12h-314c-9 0 -14 5 -14 12c0 2 1 4 2 6c23 63 35 129 35 195s-12 132 -35 195c-1 2 -2 4 -2 6c0 7 5 12 14 12h314
+c9 0 14 -5 14 -12c0 -2 -1 -4 -2 -6c-23 -63 -35 -129 -35 -195s12 -132 35 -195z" />
+ <glyph glyph-name="panorama_wide_angle" unicode="panorama_wide_angle"
+d="M256 427c58 0 112 -6 170 -16l19 -3l6 -19c12 -44 18 -89 18 -133s-6 -89 -18 -133l-6 -19l-19 -3c-58 -10 -112 -16 -170 -16s-112 6 -170 16l-19 3l-6 19c-12 44 -18 89 -18 133s6 89 18 133l6 19l19 3c58 10 112 16 170 16zM256 384c-52 0 -101 -5 -156 -14
+c-10 -38 -15 -76 -15 -114s5 -76 15 -114c55 -9 104 -14 156 -14s101 5 156 14c10 38 15 76 15 114s-5 76 -15 114c-55 9 -104 14 -156 14z" />
+ <glyph glyph-name="party_mode" unicode="party_mode"
+d="M256 149c59 0 107 48 107 107c0 7 -1 14 -2 21h-45c2 -7 4 -14 4 -21c0 -35 -29 -64 -64 -64h-85c20 -26 50 -43 85 -43zM256 363c-59 0 -107 -48 -107 -107c0 -7 1 -14 2 -21h45c-2 7 -4 14 -4 21c0 35 29 64 64 64h85c-20 26 -50 43 -85 43zM427 427
+c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h68l39 42h128l39 -42h68z" />
+ <glyph glyph-name="pause" unicode="pause"
+d="M299 405h85v-298h-85v298zM128 107v298h85v-298h-85z" />
+ <glyph glyph-name="pause_circle_filled" unicode="pause_circle_filled"
+d="M320 171v170h-43v-170h43zM235 171v170h-43v-170h43zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="pause_circle_outline" unicode="pause_circle_outline"
+d="M277 171v170h43v-170h-43zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM192 171v170h43v-170h-43z" />
+ <glyph glyph-name="payment" unicode="payment"
+d="M427 341v43h-342v-43h342zM427 128v128h-342v-128h342zM427 427c24 0 42 -19 42 -43v-256c0 -24 -18 -43 -42 -43h-342c-24 0 -42 19 -42 43v256c0 24 18 43 42 43h342z" />
+ <glyph glyph-name="people" unicode="people"
+d="M341 235c50 0 150 -25 150 -75v-53h-128v53c0 32 -17 56 -42 74c7 1 14 1 20 1zM171 235c50 0 149 -25 149 -75v-53h-299v53c0 50 100 75 150 75zM171 277c-35 0 -64 29 -64 64s29 64 64 64s63 -29 63 -64s-28 -64 -63 -64zM341 277c-35 0 -64 29 -64 64s29 64 64 64
+s64 -29 64 -64s-29 -64 -64 -64z" />
+ <glyph glyph-name="people_outline" unicode="people_outline"
+d="M352 373c-23 0 -43 -19 -43 -42s20 -43 43 -43s43 20 43 43s-20 42 -43 42zM352 256c-41 0 -75 34 -75 75s34 74 75 74s75 -33 75 -74s-34 -75 -75 -75zM160 373c-23 0 -43 -19 -43 -42s20 -43 43 -43s43 20 43 43s-20 42 -43 42zM160 256c-41 0 -75 34 -75 75
+s34 74 75 74s75 -33 75 -74s-34 -75 -75 -75zM459 139v26c0 12 -55 38 -107 38c-23 0 -45 -6 -64 -12c7 -8 11 -16 11 -26v-26h160zM267 139v26c0 12 -55 38 -107 38s-107 -26 -107 -38v-26h214zM352 235c46 0 139 -24 139 -70v-58h-470v58c0 46 93 70 139 70
+c26 0 65 -8 96 -22c31 14 70 22 96 22z" />
+ <glyph glyph-name="perm_camera_mic" unicode="perm_camera_mic"
+d="M299 235v85c0 23 -20 43 -43 43s-43 -20 -43 -43v-85c0 -23 20 -43 43 -43s43 20 43 43zM427 405c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-150v45c60 10 107 63 107 126h-43c0 -47 -38 -86 -85 -86s-85 39 -85 86h-43c0 -63 47 -116 107 -126v-45h-150
+c-23 0 -42 20 -42 43v256c0 23 19 42 42 42h68l39 43h128l39 -43h68z" />
+ <glyph glyph-name="perm_contact_calendar" unicode="perm_contact_calendar"
+d="M384 128v21c0 43 -85 66 -128 66s-128 -23 -128 -66v-21h256zM256 384c-35 0 -64 -29 -64 -64s29 -64 64 -64s64 29 64 64s-29 64 -64 64zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h21v43h43v-43h170v43
+h43v-43h21z" />
+ <glyph glyph-name="perm_data_setting" unicode="perm_data_setting"
+d="M405 75c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM484 96l23 -17c2 -2 2 -5 1 -7l-21 -37c-1 -2 -5 -4 -7 -3l-26 11c-5 -4 -12 -7 -18 -10l-4 -29c0 -3 -3 -4 -6 -4h-42c-3 0 -6 1 -6 4l-4 29c-7 3 -12 6 -18 10l-26 -11c-3 -1 -6 1 -7 3l-21 37
+c-1 2 -1 5 1 7l23 17c0 3 -1 7 -1 11s1 7 1 10l-23 18c-2 2 -2 5 -1 7l21 37c1 2 5 3 7 2l26 -11c6 4 12 8 18 11l4 28c0 3 3 4 6 4h42c3 0 6 -1 6 -4l4 -28c7 -3 12 -7 18 -11l26 11c3 1 6 0 7 -2l21 -37c1 -2 1 -5 -1 -7l-23 -18c1 -3 1 -6 1 -10s-1 -8 -1 -11zM405 267
+c-88 0 -160 -72 -160 -160c0 -7 1 -15 2 -22h-247l427 427l-1 -247c-7 1 -14 2 -21 2z" />
+ <glyph glyph-name="perm_device_information" unicode="perm_device_information"
+d="M363 107v298h-214v-298h214zM363 490c23 0 42 -19 42 -42v-384c0 -23 -19 -43 -42 -43h-214c-23 0 -42 20 -42 43v384c0 23 19 43 42 43zM277 277v-128h-42v128h42zM277 363v-43h-42v43h42z" />
+ <glyph glyph-name="perm_identity" unicode="perm_identity"
+d="M256 235c57 0 171 -29 171 -86v-64h-342v64c0 57 114 86 171 86zM256 427c47 0 85 -39 85 -86s-38 -85 -85 -85s-85 38 -85 85s38 86 85 86zM256 194c-63 0 -130 -31 -130 -45v-23h260v23c0 14 -67 45 -130 45zM256 386c-25 0 -45 -20 -45 -45s20 -44 45 -44s45 19 45 44
+s-20 45 -45 45z" />
+ <glyph glyph-name="perm_media" unicode="perm_media"
+d="M149 192h299l-75 96l-53 -64l-75 96zM469 427c23 0 43 -20 43 -43v-213c0 -23 -20 -43 -43 -43h-341c-23 0 -43 20 -43 43l1 256c0 23 19 42 42 42h128l43 -42h170zM43 384v-299h384v-42h-384c-23 0 -43 19 -43 42v299h43z" />
+ <glyph glyph-name="perm_phone_msg" unicode="perm_phone_msg"
+d="M256 448h192v-149h-128l-64 -64v213zM427 181c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76c2 -7 1 -16 -5 -22l-47 -47c31 -60 81 -110 141 -141l47 47c6 6 15 7 22 5
+c24 -8 49 -12 76 -12z" />
+ <glyph glyph-name="perm_scan_wifi" unicode="perm_scan_wifi"
+d="M235 341h42v43h-42v-43zM277 171v128h-42v-128h42zM256 448c108 0 189 -40 256 -91l-256 -314l-256 315c67 51 148 90 256 90z" />
+ <glyph glyph-name="person" unicode="person"
+d="M256 213c57 0 171 -28 171 -85v-43h-342v43c0 57 114 85 171 85zM256 256c-47 0 -85 38 -85 85s38 86 85 86s85 -39 85 -86s-38 -85 -85 -85z" />
+ <glyph glyph-name="person_add" unicode="person_add"
+d="M320 213c57 0 171 -28 171 -85v-43h-342v43c0 57 114 85 171 85zM128 299h64v-43h-64v-64h-43v64h-64v43h64v64h43v-64zM320 256c-47 0 -85 38 -85 85s38 86 85 86s85 -39 85 -86s-38 -85 -85 -85z" />
+ <glyph glyph-name="person_outline" unicode="person_outline"
+d="M256 235c57 0 171 -29 171 -86v-64h-342v64c0 57 114 86 171 86zM256 427c47 0 85 -39 85 -86s-38 -85 -85 -85s-85 38 -85 85s38 86 85 86zM256 194c-63 0 -130 -31 -130 -45v-23h260v23c0 14 -67 45 -130 45zM256 386c-25 0 -45 -20 -45 -45s20 -44 45 -44s45 19 45 44
+s-20 45 -45 45z" />
+ <glyph glyph-name="person_pin" unicode="person_pin"
+d="M384 171v19c0 43 -85 66 -128 66s-128 -23 -128 -66v-19h256zM256 399c-32 0 -58 -26 -58 -58s26 -57 58 -57s58 25 58 57s-26 58 -58 58zM405 469c23 0 43 -19 43 -42v-299c0 -23 -20 -43 -43 -43h-85l-64 -64l-64 64h-85c-24 0 -43 20 -43 43v299c0 23 19 42 43 42h298
+z" />
+ <glyph glyph-name="person_pin_circle" unicode="person_pin_circle"
+d="M256 213c36 0 67 18 85 46c0 28 -57 44 -85 44s-85 -16 -85 -44c18 -28 49 -46 85 -46zM256 427c-23 0 -43 -20 -43 -43c0 -24 20 -43 43 -43s43 19 43 43c0 23 -20 43 -43 43zM256 469c82 0 149 -67 149 -149c0 -112 -149 -277 -149 -277s-149 165 -149 277
+c0 82 67 149 149 149z" />
+ <glyph glyph-name="personal_video" unicode="personal_video"
+d="M448 149v256h-384v-256h384zM448 448c23 0 43 -19 43 -43l-1 -256c0 -23 -19 -42 -42 -42h-107v-43h-170v43h-107c-24 0 -43 19 -43 42v256c0 24 19 43 43 43h384z" />
+ <glyph glyph-name="pets" unicode="pets"
+d="M370 195c28 -28 63 -58 56 -102c-6 -22 -22 -44 -50 -50c-16 -3 -65 9 -118 9h-4c-53 0 -102 -12 -118 -9c-28 6 -44 28 -50 50c-6 43 28 74 56 102c19 22 34 40 53 62c10 12 22 23 37 28c2 1 5 2 7 2c6 1 11 1 17 1s12 0 17 -1c2 0 5 -1 7 -2c15 -5 27 -16 37 -28
+c19 -22 34 -40 53 -62zM363 309c0 29 24 54 53 54s53 -25 53 -54s-24 -53 -53 -53s-53 24 -53 53zM267 395c0 29 24 53 53 53s53 -24 53 -53s-24 -54 -53 -54s-53 25 -53 54zM139 395c0 29 24 53 53 53s53 -24 53 -53s-24 -54 -53 -54s-53 25 -53 54zM43 309
+c0 29 24 54 53 54s53 -25 53 -54s-24 -53 -53 -53s-53 24 -53 53z" />
+ <glyph glyph-name="phone" unicode="phone"
+d="M141 282c31 -60 81 -110 141 -141l47 47c6 6 15 8 22 5c24 -8 50 -12 76 -12c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76c2 -7 1 -16 -5 -22z" />
+ <glyph glyph-name="phone_android" unicode="phone_android"
+d="M368 128v299h-224v-299h224zM299 64v21h-86v-21h86zM341 491c35 0 64 -29 64 -64v-342c0 -35 -29 -64 -64 -64h-170c-35 0 -64 29 -64 64v342c0 35 29 64 64 64h170z" />
+ <glyph glyph-name="phone_bluetooth_speaker" unicode="phone_bluetooth_speaker"
+d="M427 181c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76c2 -7 1 -16 -5 -22l-47 -47c31 -61 81 -110 141 -141l47 47c6 6 15 7 22 5c24 -8 49 -12 76 -12zM384 358v-40l20 20zM384 450
+v-40l20 20zM314 309l-15 15l59 60l-59 60l15 15l49 -49v81h10l61 -61l-46 -46l46 -46l-61 -61h-10v81z" />
+ <glyph glyph-name="phone_forwarded" unicode="phone_forwarded"
+d="M427 181c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76c2 -7 1 -16 -5 -22l-47 -47c31 -61 81 -110 141 -141l47 47c6 6 15 7 22 5c24 -8 49 -12 76 -12zM384 277v64h-85v86h85v64
+l107 -107z" />
+ <glyph glyph-name="phone_in_talk" unicode="phone_in_talk"
+d="M320 256c0 35 -29 64 -64 64v43c59 0 107 -48 107 -107h-43zM405 256c0 83 -66 149 -149 149v43c106 0 192 -86 192 -192h-43zM427 181c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76
+c2 -7 1 -16 -5 -22l-47 -47c31 -61 81 -110 141 -141l47 47c6 6 15 7 22 5c24 -8 49 -12 76 -12z" />
+ <glyph glyph-name="phone_iphone" unicode="phone_iphone"
+d="M341 128v299h-192v-299h192zM245 43c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM331 491c29 0 53 -25 53 -54v-362c0 -29 -24 -54 -53 -54h-171c-29 0 -53 25 -53 54v362c0 29 24 54 53 54h171z" />
+ <glyph glyph-name="phone_locked" unicode="phone_locked"
+d="M410 427v10c0 20 -17 37 -37 37s-36 -17 -36 -37v-10h73zM427 427c12 0 21 -10 21 -22v-85c0 -12 -9 -21 -21 -21h-107c-12 0 -21 9 -21 21v85c0 12 9 22 21 22v10c0 29 24 54 53 54s54 -25 54 -54v-10zM427 181c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21
+c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76c2 -7 1 -16 -5 -22l-47 -47c31 -61 81 -110 141 -141l47 47c6 6 15 7 22 5c24 -8 49 -12 76 -12z" />
+ <glyph glyph-name="phone_missed" unicode="phone_missed"
+d="M506 156c4 -4 6 -9 6 -15s-2 -11 -6 -15l-53 -53c-4 -4 -9 -6 -15 -6s-11 2 -15 6c-17 16 -36 30 -57 40c-7 3 -12 11 -12 19v66c-31 10 -64 15 -98 15s-67 -5 -98 -15v-66c0 -9 -5 -17 -12 -20c-21 -10 -40 -23 -57 -39c-4 -4 -9 -6 -15 -6s-11 2 -15 6l-53 53
+c-4 4 -6 9 -6 15s2 11 6 15c65 62 153 100 250 100s185 -38 250 -100zM139 395v-75h-32v128h128v-32h-75l96 -96l128 128l21 -21l-149 -150z" />
+ <glyph glyph-name="phone_paused" unicode="phone_paused"
+d="M405 448h43v-149h-43v149zM427 181c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76c2 -7 1 -16 -5 -22l-47 -47c31 -61 81 -110 141 -141l47 47c6 6 15 7 22 5c24 -8 49 -12 76 -12z
+M363 448v-149h-43v149h43z" />
+ <glyph glyph-name="phonelink" unicode="phonelink"
+d="M469 149v150h-85v-150h85zM491 341c12 0 21 -9 21 -21v-213c0 -12 -9 -22 -21 -22h-128c-12 0 -22 10 -22 22v213c0 12 10 21 22 21h128zM85 384v-235h214v-64h-299v64h43v235c0 23 19 43 42 43h384v-43h-384z" />
+ <glyph glyph-name="phonelink_erase" unicode="phonelink_erase"
+d="M405 491c23 0 43 -20 43 -43v-384c0 -23 -20 -43 -43 -43h-213c-23 0 -43 20 -43 43v64h43v-43h213v342h-213v-43h-43v64c0 23 20 43 43 43h213zM277 337l-85 -85l85 -86l-21 -21l-85 85l-86 -85l-21 21l85 86l-85 85l21 21l86 -85l85 85z" />
+ <glyph glyph-name="phonelink_lock" unicode="phonelink_lock"
+d="M203 277v32c0 17 -15 28 -32 28s-32 -11 -32 -28v-32h64zM230 277c13 0 26 -12 26 -27v-75c0 -13 -13 -26 -28 -26h-117c-13 0 -26 13 -26 28v75c0 13 13 25 26 25v32c0 30 30 54 60 54s59 -24 59 -54v-32zM405 491c23 0 43 -20 43 -43v-384c0 -23 -20 -43 -43 -43h-213
+c-23 0 -43 20 -43 43v64h43v-43h213v342h-213v-43h-43v64c0 23 20 43 43 43h213z" />
+ <glyph glyph-name="phonelink_off" unicode="phonelink_off"
+d="M491 341c12 0 21 -9 21 -21v-213c0 -12 -9 -22 -21 -22h-4l-64 64h46v150h-85v-111l-43 43v89c0 12 10 21 22 21h128zM85 378v-229h229zM41 477c138.107 -138.226 275.985 -276.682 414 -415l-27 -27l-50 50h-378v64h43v235c0 10 4 20 10 27l-39 39zM469 384h-281l-43 43
+h324v-43z" />
+ <glyph glyph-name="phonelink_ring" unicode="phonelink_ring"
+d="M299 85v342h-214v-342h214zM299 491c23 0 42 -20 42 -43v-384c0 -23 -19 -43 -42 -43h-214c-23 0 -42 20 -42 43v384c0 23 19 43 42 43h214zM384 303c26 -28 26 -66 0 -92l-21 22c11 15 11 34 0 49zM429 348c53 -51 53 -133 0 -182l-22 22c38 41 38 100 0 138z" />
+ <glyph glyph-name="phonelink_setup" unicode="phonelink_setup"
+d="M405 491c23 0 43 -20 43 -43v-384c0 -23 -20 -43 -43 -43h-213c-23 0 -43 20 -43 43v64h43v-43h213v342h-213v-43h-43v64c0 23 20 43 43 43h213zM171 213c23 0 42 20 42 43s-19 43 -42 43s-43 -20 -43 -43s20 -43 43 -43zM252 245l23 -19c2 -2 4 -4 2 -6l-21 -37
+c-2 -2 -4 -2 -6 -2l-28 11c-6 -4 -13 -9 -19 -11l-5 -27c-2 -2 -4 -5 -6 -5h-43c-2 0 -6 3 -4 5l-4 27c-6 2 -13 7 -19 11l-30 -9c-2 -2 -5 1 -7 3l-21 36c0 2 0 4 2 8l24 17v22l-24 17c-2 2 -4 4 -2 6l21 37c2 2 5 2 7 2l27 -11c6 4 14 9 20 11l4 27c2 2 4 5 6 5h43
+c4 0 6 -3 6 -5l5 -27c6 -2 13 -7 19 -11l28 9c2 2 4 -1 6 -3l21 -36c0 -2 0 -4 -2 -6l-23 -17v-22z" />
+ <glyph glyph-name="photo" unicode="photo"
+d="M181 224l-74 -96h298l-96 128l-74 -96zM448 107c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298c23 0 43 -20 43 -43v-298z" />
+ <glyph glyph-name="photo_album" unicode="photo_album"
+d="M128 107h256l-82 109l-64 -82l-46 55zM128 427v-171l53 32l54 -32v171h-107zM384 469c23 0 43 -19 43 -42v-342c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42v342c0 23 20 42 43 42h256z" />
+ <glyph glyph-name="photo_camera" unicode="photo_camera"
+d="M256 149c59 0 107 48 107 107s-48 107 -107 107s-107 -48 -107 -107s48 -107 107 -107zM192 469h128l39 -42h68c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h68zM188 256c0 38 30 68 68 68s68 -30 68 -68
+s-30 -68 -68 -68s-68 30 -68 68z" />
+ <glyph glyph-name="photo_filter" unicode="photo_filter"
+d="M283 283l58 -27l-58 -27l-27 -58l-27 58l-58 27l58 27l27 58zM363 299l-20 44l-44 20l44 20l20 44l20 -44l44 -20l-44 -20zM406 299h42v-192c0 -23 -19 -43 -42 -43h-299c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h192v-43h-192v-298h299v192z" />
+ <glyph glyph-name="photo_library" unicode="photo_library"
+d="M43 384h42v-299h299v-42h-299c-23 0 -42 19 -42 42v299zM235 256l-64 -85h256l-86 106l-63 -79zM469 171c0 -23 -19 -43 -42 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h256c23 0 42 -19 42 -42v-256z" />
+ <glyph glyph-name="photo_size_select_actual" unicode="photo_size_select_actual"
+d="M107 149h298l-96 128l-74 -96l-54 64zM448 448c21 0 43 -22 43 -43v-298c0 -21 -22 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 21 22 43 43 43h384z" />
+ <glyph glyph-name="photo_size_select_large" unicode="photo_size_select_large"
+d="M64 107h213l-68 91l-53 -69l-39 46zM21 277h299v-213h-256c-23 0 -43 20 -43 43v170zM107 448h42v-43h-42v43zM192 448h43v-43h-43v43zM64 448v-43h-43c0 21 22 43 43 43zM363 107h42v-43h-42v43zM363 448h42v-43h-42v43zM21 363h43v-43h-43v43zM448 448
+c21 0 43 -22 43 -43h-43v43zM448 363h43v-43h-43v43zM277 448h43v-43h-43v43zM491 107c0 -21 -22 -43 -43 -43v43h43zM448 277h43v-42h-43v42zM448 192h43v-43h-43v43z" />
+ <glyph glyph-name="photo_size_select_small" unicode="photo_size_select_small"
+d="M149 448v-43h-42v43h42zM235 448v-43h-43v43h43zM64 277v-42h-43v42h43zM64 448v-43h-43c0 21 22 43 43 43zM405 107v-43h-42v43h42zM405 448v-43h-42v43h42zM320 107v-43h-43v43h43zM64 363v-43h-43v43h43zM64 64c-23 0 -43 20 -43 43v85h214v-128h-171zM448 448
+c21 0 43 -22 43 -43h-43v43zM491 363v-43h-43v43h43zM320 448v-43h-43v43h43zM491 107c0 -21 -22 -43 -43 -43v43h43zM491 277v-42h-43v42h43zM491 192v-43h-43v43h43z" />
+ <glyph glyph-name="picture_as_pdf" unicode="picture_as_pdf"
+d="M299 267v64h21v-64h-21zM85 384v-299h299v-42h-299c-23 0 -42 19 -42 42v299h42zM192 309v22h21v-22h-21zM437 331v32h-64v-128h32v42h32v32h-32v22h32zM352 267v64c0 18 -14 32 -32 32h-53v-128h53c18 0 32 14 32 32zM245 309v22c0 18 -14 32 -32 32h-53v-128h32v42h21
+c18 0 32 14 32 32zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h256z" />
+ <glyph glyph-name="picture_in_picture" unicode="picture_in_picture"
+d="M448 106v300h-384v-300h384zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384zM405 363v-128h-170v128h170z" />
+ <glyph glyph-name="picture_in_picture_alt" unicode="picture_in_picture_alt"
+d="M448 106v300h-384v-300h384zM491 107c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v299c0 23 20 42 43 42h384c23 0 43 -19 43 -42v-299zM405 277v-128h-170v128h170z" />
+ <glyph glyph-name="pie_chart" unicode="pie_chart"
+d="M278 234h191c-10 -101 -90 -181 -191 -191v191zM278 469c101 -10 181 -90 191 -191h-191v191zM235 469v-426c-108 11 -192 102 -192 213s84 202 192 213z" />
+ <glyph glyph-name="pie_chart_outlined" unicode="pie_chart_outlined"
+d="M277 87c77 10 138 71 148 148h-148v-148zM85 256c0 -87 66 -158 150 -169v338c-84 -10 -150 -82 -150 -169zM277 425v-148h148c-10 77 -71 138 -148 148zM256 469c117 0 213 -96 213 -213s-96 -213 -213 -213s-213 96 -213 213s96 213 213 213z" />
+ <glyph glyph-name="pin_drop" unicode="pin_drop"
+d="M107 85h298v-42h-298v42zM213 341c0 -23 20 -42 43 -42c24 0 43 19 43 42s-20 43 -43 43s-43 -20 -43 -43zM384 341c0 -96 -128 -234 -128 -234s-128 138 -128 234c0 71 57 128 128 128s128 -57 128 -128z" />
+ <glyph glyph-name="place" unicode="place"
+d="M256 267c29 0 53 24 53 53s-24 53 -53 53s-53 -24 -53 -53s24 -53 53 -53zM256 469c83 0 149 -66 149 -149c0 -112 -149 -277 -149 -277s-149 165 -149 277c0 83 66 149 149 149z" />
+ <glyph glyph-name="play_arrow" unicode="play_arrow"
+d="M171 405l234 -149l-234 -149v298z" />
+ <glyph glyph-name="play_circle_filled" unicode="play_circle_filled"
+d="M213 160l128 96l-128 96v-192zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="play_circle_outline" unicode="play_circle_outline"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM213 160v192l128 -96z" />
+ <glyph glyph-name="play_for_work" unicode="play_for_work"
+d="M128 213h43c0 -47 38 -85 85 -85s85 38 85 85h43c0 -71 -57 -128 -128 -128s-128 57 -128 128zM235 405h42v-119h75l-96 -96l-96 96h75v119z" />
+ <glyph glyph-name="playlist_add" unicode="playlist_add"
+d="M43 171v42h170v-42h-170zM384 213h85v-42h-85v-86h-43v86h-85v42h85v86h43v-86zM299 384v-43h-256v43h256zM299 299v-43h-256v43h256z" />
+ <glyph glyph-name="playlist_add_check" unicode="playlist_add_check"
+d="M459 267l32 -32l-149 -150l-97 96l32 32l65 -64zM43 171v42h170v-42h-170zM299 384v-43h-256v43h256zM299 299v-43h-256v43h256z" />
+ <glyph glyph-name="playlist_play" unicode="playlist_play"
+d="M363 235l106 -64l-106 -64v128zM43 192v43h277v-43h-277zM405 405v-42h-362v42h362zM405 320v-43h-362v43h362z" />
+ <glyph glyph-name="plus_one" unicode="plus_one"
+d="M309 382l96 23v-277h-42v226l-54 -11v39zM213 341v-85h86v-43h-86v-85h-42v85h-86v43h86v85h42z" />
+ <glyph glyph-name="poll" unicode="poll"
+d="M363 149v86h-43v-86h43zM277 149v214h-42v-214h42zM192 149v150h-43v-150h43zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="polymer" unicode="polymer"
+d="M405 427l96 -171l-96 -171h-85l96 171l-56 99l-168 -270h-85l-96 171l96 171h85l-96 -171l56 -99l168 270h85z" />
+ <glyph glyph-name="pool" unicode="pool"
+d="M299 395c0 29 24 53 53 53s53 -24 53 -53s-24 -54 -53 -54s-53 25 -53 54zM185 256c-12 0 -17 3 -25 8c-4 3 -9 5 -16 8l69 69l-21 22c-24 24 -46 32 -85 32v53c53 0 84 -10 117 -43l137 -136c-3 -2 -6 -4 -9 -5c-8 -5 -13 -8 -25 -8s-16 3 -24 8c-10 6 -23 13 -47 13
+s-37 -7 -47 -13c-8 -5 -12 -8 -24 -8zM469 160c-24 0 -36 8 -46 14c-8 5 -13 7 -25 7s-16 -2 -24 -7c-10 -6 -23 -14 -47 -14s-36 8 -46 14c-8 5 -13 7 -25 7s-16 -2 -24 -7c-10 -6 -23 -14 -47 -14s-36 8 -46 14c-8 5 -13 7 -25 7s-16 -2 -24 -7c-10 -6 -23 -14 -47 -14v43
+c12 0 16 2 24 7c10 6 23 14 47 14s36 -8 46 -14c8 -5 13 -7 25 -7s16 2 24 7c10 6 23 14 47 14s36 -8 46 -14c8 -5 13 -7 25 -7s16 2 24 7c10 6 23 14 47 14s36 -8 46 -14c8 -5 13 -7 25 -7v-43zM469 64c-24 0 -36 8 -46 14c-8 5 -13 7 -25 7s-16 -2 -24 -7
+c-10 -6 -23 -14 -47 -14s-36 8 -46 14c-8 5 -13 7 -25 7s-16 -2 -24 -7c-10 -6 -23 -14 -47 -14s-37 8 -47 14c-8 5 -12 7 -24 7s-17 -2 -25 -7c-10 -6 -22 -14 -46 -14v43c12 0 16 2 24 7c10 6 23 14 47 14s36 -8 46 -14c8 -5 13 -7 25 -7s16 2 24 7c10 6 23 14 47 14
+s37 -8 47 -14c8 -5 12 -7 24 -7s17 2 25 7c10 6 22 14 46 14s37 -8 47 -14c8 -5 12 -7 24 -7v-43z" />
+ <glyph glyph-name="portable_wifi_off" unicode="portable_wifi_off"
+d="M70 459l21 -22l357 -357l-27 -27l-160 161h-1l-4 -1c-23 0 -43 20 -43 43l1 4l-34 34c-6 -12 -9 -24 -9 -38c0 -32 17 -59 42 -74l-21 -37c-38 22 -64 64 -64 111c0 26 7 49 20 69l-30 31c-20 -28 -33 -62 -33 -100c0 -63 34 -118 85 -148l-21 -37
+c-64 37 -106 106 -106 185c0 49 16 95 44 131l-44 45zM256 427c-29 0 -56 -7 -80 -20l-31 31c32 20 70 31 111 31c118 0 213 -95 213 -213c0 -41 -11 -79 -31 -111l-32 31c13 24 21 51 21 80c0 94 -77 171 -171 171zM375 208l-35 35c1 4 1 9 1 13c0 47 -38 85 -85 85
+c-4 0 -9 0 -13 -1l-35 35c15 6 31 9 48 9c71 0 128 -57 128 -128c0 -17 -3 -33 -9 -48z" />
+ <glyph glyph-name="portrait" unicode="portrait"
+d="M405 107v298h-298v-298h298zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298zM352 165v-16h-192v16c0 32 64 48 96 48s96 -16 96 -48zM256 251c-26 0 -48 22 -48 48s22 48 48 48s48 -22 48 -48
+s-22 -48 -48 -48z" />
+ <glyph glyph-name="power" unicode="power"
+d="M342 363c21 0 42 -22 42 -43v-117l-75 -75v-64h-106v64l-75 75v117c0 21 21 43 42 43h1v85h42v-85h86v85h42z" />
+ <glyph glyph-name="power_input" unicode="power_input"
+d="M341 192v43h107v-43h-107zM192 192v43h107v-43h-107zM43 192v43h106v-43h-106zM43 320h405v-43h-405v43z" />
+ <glyph glyph-name="power_settings_new" unicode="power_settings_new"
+d="M380 402c41 -35 68 -88 68 -146c0 -106 -86 -192 -192 -192s-192 86 -192 192c0 58 27 111 68 146l30 -30c-33 -27 -55 -69 -55 -116c0 -83 66 -149 149 -149s149 66 149 149c0 47 -21 88 -55 115zM277 448v-213h-42v213h42z" />
+ <glyph glyph-name="pregnant_woman" unicode="pregnant_woman"
+d="M341 235v-86h-64v-106h-64v106h-42v150c0 35 29 64 64 64s64 -29 64 -64c25 -10 42 -35 42 -64zM192 427c0 24 19 42 43 42s42 -18 42 -42s-18 -43 -42 -43s-43 19 -43 43z" />
+ <glyph glyph-name="present_to_all" unicode="present_to_all"
+d="M213 256h-42l85 85l85 -85h-42v-85h-86v85zM448 106v300h-384v-300h384zM448 448c24 0 43 -19 43 -43v-298c0 -24 -19 -43 -43 -43h-384c-24 0 -43 19 -43 43v298c0 24 19 43 43 43h384z" />
+ <glyph glyph-name="print" unicode="print"
+d="M384 448v-85h-256v85h256zM405 256c12 0 22 9 22 21s-10 22 -22 22s-21 -10 -21 -22s9 -21 21 -21zM341 107v106h-170v-106h170zM405 341c35 0 64 -29 64 -64v-128h-85v-85h-256v85h-85v128c0 35 29 64 64 64h298z" />
+ <glyph glyph-name="priority_high" unicode="priority_high"
+d="M213 448h86v-256h-86v256zM213 107c0 24 19 42 43 42s43 -18 43 -42s-19 -43 -43 -43s-43 19 -43 43z" />
+ <glyph glyph-name="public" unicode="public"
+d="M382 141c28 30 45 71 45 115c0 71 -44 133 -107 158v-9c0 -23 -20 -42 -43 -42h-42v-43c0 -12 -10 -21 -22 -21h-42v-43h128c12 0 21 -9 21 -21v-64h21c19 0 35 -13 41 -30zM235 87v41c-23 0 -43 20 -43 43v21l-102 102c-3 -12 -5 -25 -5 -38c0 -87 66 -159 150 -169z
+M256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="publish" unicode="publish"
+d="M107 213l149 150l149 -150h-85v-128h-128v128h-85zM107 427h298v-43h-298v43z" />
+ <glyph glyph-name="query_builder" unicode="query_builder"
+d="M267 363v-112l96 -57l-16 -27l-112 68v128h32zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="question_answer" unicode="question_answer"
+d="M363 256c0 -12 -10 -21 -22 -21h-213l-85 -86v299c0 12 9 21 21 21h277c12 0 22 -9 22 -21v-192zM448 384c12 0 21 -9 21 -21v-320l-85 85h-235c-12 0 -21 9 -21 21v43h277v192h43z" />
+ <glyph glyph-name="queue" unicode="queue"
+d="M405 277v43h-85v85h-43v-85h-85v-43h85v-85h43v85h85zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h256zM85 384v-299h299v-42h-299c-23 0 -42 19 -42 42v299h42z" />
+ <glyph glyph-name="queue_music" unicode="queue_music"
+d="M363 384h106v-43h-64v-192c0 -35 -29 -64 -64 -64s-64 29 -64 64s29 64 64 64c7 0 15 -2 22 -4v175zM64 171v42h171v-42h-171zM320 299v-43h-256v43h256zM320 384v-43h-256v43h256z" />
+ <glyph glyph-name="queue_play_next" unicode="queue_play_next"
+d="M512 128l-96 -96l-32 32l64 64l-64 64l32 32zM277 299h64v-43h-64v-64h-42v64h-64v43h64v64h42v-64zM448 448c23 0 43 -19 43 -43v-170h-43v170h-384v-256h320v-42h-43v-43h-170v43h-107c-24 0 -43 19 -43 42v256c0 24 19 43 43 43h384z" />
+ <glyph glyph-name="radio" unicode="radio"
+d="M427 256v85h-342v-85h256v43h43v-43h43zM149 85c35 0 64 29 64 64s-29 64 -64 64s-64 -29 -64 -64s29 -64 64 -64zM69 381l270 110l14 -36l-176 -71h250c24 0 42 -19 42 -43v-256c0 -23 -18 -42 -42 -42h-342c-24 0 -42 19 -42 42v256c0 18 10 34 26 40z" />
+ <glyph glyph-name="radio_button_checked" unicode="radio_button_checked"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM256 363c59 0 107 -48 107 -107s-48 -107 -107 -107s-107 48 -107 107s48 107 107 107z" />
+ <glyph glyph-name="radio_button_unchecked" unicode="radio_button_unchecked"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="rate_review" unicode="rate_review"
+d="M384 213v43h-117l-43 -43h160zM128 213h53l147 147c4 4 4 11 0 15l-38 38c-4 4 -11 4 -15 0l-147 -147v-53zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="receipt" unicode="receipt"
+d="M64 43v426l32 -32l32 32l32 -32l32 32l32 -32l32 32l32 -32l32 32l32 -32l32 32l32 -32l32 32v-426l-32 32l-32 -32l-32 32l-32 -32l-32 32l-32 -32l-32 32l-32 -32l-32 32l-32 -32l-32 32zM384 320v43h-256v-43h256zM384 235v42h-256v-42h256zM384 149v43h-256v-43h256z
+" />
+ <glyph glyph-name="recent_actors" unicode="recent_actors"
+d="M267 149v16c0 32 -64 48 -96 48s-96 -16 -96 -48v-16h192zM171 347c-26 0 -48 -22 -48 -48s22 -48 48 -48s48 22 48 48s-22 48 -48 48zM299 405c12 0 21 -9 21 -21v-256c0 -12 -9 -21 -21 -21h-256c-12 0 -22 9 -22 21v256c0 12 10 21 22 21h256zM363 107v298h42v-298
+h-42zM448 405h43v-298h-43v298z" />
+ <glyph glyph-name="record_voice_over" unicode="record_voice_over"
+d="M428 469c83 -86 83 -215 0 -298l-35 34c59 68 59 166 0 230zM358 398c43 -47 43 -112 0 -155l-36 36c18 25 18 58 0 83zM192 192c57 0 171 -28 171 -85v-43h-342v43c0 57 114 85 171 85zM107 320c0 47 38 85 85 85s85 -38 85 -85s-38 -85 -85 -85s-85 38 -85 85z" />
+ <glyph glyph-name="redeem" unicode="redeem"
+d="M427 213v128h-109l45 -60l-35 -25c-24.0378 32.6288 -48.3187 65.0147 -72 98c-23.6829 -32.9837 -47.9614 -65.3719 -72 -98l-35 25l45 60h-109v-128h342zM427 107v42h-342v-42h342zM192 427c-12 0 -21 -10 -21 -22s9 -21 21 -21s21 9 21 21s-9 22 -21 22zM320 427
+c-12 0 -21 -10 -21 -22s9 -21 21 -21s21 9 21 21s-9 22 -21 22zM427 384c24 0 42 -19 42 -43v-234c0 -24 -18 -43 -42 -43h-342c-24 0 -42 19 -42 43v234c0 24 18 43 42 43h47c-2 7 -4 14 -4 21c0 35 29 64 64 64c22 0 41 -11 53 -28l11 -15l11 15c12 17 31 28 53 28
+c35 0 64 -29 64 -64c0 -7 -2 -14 -4 -21h47z" />
+ <glyph glyph-name="redo" unicode="redo"
+d="M393 286l76 77v-192h-192l78 77c-30 25 -68 40 -110 40c-76 0 -140 -49 -162 -117l-50 16c29 89 113 154 212 154c57 0 109 -21 148 -55z" />
+ <glyph glyph-name="refresh" unicode="refresh"
+d="M377 377l50 50v-150h-150l69 69c-23 23 -55 38 -90 38c-71 0 -128 -57 -128 -128s57 -128 128 -128c56 0 104 35 121 85h44c-19 -74 -85 -128 -165 -128c-94 0 -170 77 -170 171s76 171 170 171c47 0 90 -19 121 -50z" />
+ <glyph glyph-name="remove" unicode="remove"
+d="M405 235h-298v42h298v-42z" />
+ <glyph glyph-name="remove_circle" unicode="remove_circle"
+d="M363 235v42h-214v-42h214zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="remove_circle_outline" unicode="remove_circle_outline"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM149 277h214v-42h-214v42z" />
+ <glyph glyph-name="remove_from_queue" unicode="remove_from_queue"
+d="M341 299v-43h-170v43h170zM448 149v256h-384v-256h384zM448 448c23 0 43 -19 43 -43l-1 -256c0 -23 -19 -42 -42 -42h-107v-43h-170v43h-107c-24 0 -43 19 -43 42v256c0 24 19 43 43 43h384z" />
+ <glyph glyph-name="remove_red_eye" unicode="remove_red_eye"
+d="M256 320c35 0 64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64s29 64 64 64zM256 149c59 0 107 48 107 107s-48 107 -107 107s-107 -48 -107 -107s48 -107 107 -107zM256 416c107 0 198 -66 235 -160c-37 -94 -128 -160 -235 -160s-198 66 -235 160c37 94 128 160 235 160z
+" />
+ <glyph glyph-name="remove_shopping_cart" unicode="remove_shopping_cart"
+d="M149 128c23 0 43 -20 43 -43s-20 -42 -43 -42s-42 19 -42 42s19 43 42 43zM332 235l-192 192h287c12 0 21 -10 21 -22c0 -4 -1 -7 -3 -10l-76 -138c-7 -13 -21 -22 -37 -22zM158 192h108l-43 43h-50l-19 -35l-1 -3c0 -3 2 -5 5 -5zM485 27l-27 -27l-61 61
+c-8 -11 -20 -18 -34 -18c-23 0 -43 19 -43 42c0 14 7 27 18 35l-30 29h-159c-23 0 -42 20 -42 43c0 7 2 14 5 20l29 53l-47 99l-94 94l27 27z" />
+ <glyph glyph-name="reorder" unicode="reorder"
+d="M64 405h384v-42h-384v42zM64 277v43h384v-43h-384zM64 107v42h384v-42h-384zM64 192v43h384v-43h-384z" />
+ <glyph glyph-name="repeat" unicode="repeat"
+d="M363 149v86h42v-128h-256v-64l-85 85l85 85v-64h214zM149 363v-86h-42v128h256v64l85 -85l-85 -85v64h-214z" />
+ <glyph glyph-name="repeat_one" unicode="repeat_one"
+d="M277 192h-32v85h-32v22l43 21h21v-128zM363 149v86h42v-128h-256v-64l-85 85l85 85v-64h214zM149 363v-86h-42v128h256v64l85 -85l-85 -85v64h-214z" />
+ <glyph glyph-name="replay" unicode="replay"
+d="M256 405c94 0 171 -76 171 -170s-77 -171 -171 -171s-171 77 -171 171h43c0 -71 57 -128 128 -128s128 57 128 128s-57 128 -128 128v-86l-107 107l107 107v-86z" />
+ <glyph glyph-name="replay_10" unicode="replay_&#x31;&#x30;"
+d="M282 188c0 -3.2653 6.32517 -7 10 -7c2 0 5 0 7 2l4 5s2 4 2 6v43c0 0 -2 4 -2 6c0 2.75261 -8.21183 7 -11 7c-2 0 -4 -1 -6 -3l-4 -4s-3 -4 -3 -6v-43s3 -4 3 -6zM324 209c0 -6 0 -13 -2 -17l-6 -13s-7 -6 -11 -6s-9 -2 -13 -2s-9 0 -13 2s-6 4 -10 6
+c-6.74403 3.37202 -9 19.7461 -9 30v15c0 6 0 13 2 17l7 13s6 6 10 6s9 2 13 2s9 0 13 -2s7 -4 11 -6s4 -7 6 -13s2 -11 2 -17v-15zM233 171h-20v70l-21 -6v15l38 12h3v-91zM256 405c94 0 171 -76 171 -170s-77 -171 -171 -171s-171 77 -171 171h43c0 -70 58 -128 128 -128
+s128 58 128 128s-58 128 -128 128v-86l-107 107l107 107v-86z" />
+ <glyph glyph-name="replay_30" unicode="replay_&#x33;&#x30;"
+d="M286 188c0 -3.76553 6.92157 -7 11 -7c2 0 4 0 6 2l4 5s2 4 2 6v43c0 2 -2 4 -2 6c0 2.33563 -7.56075 7 -10 7c-2 0 -5 -1 -7 -3l-4 -4s-2 -4 -2 -6v-43s2 -4 2 -6zM326 209c0 -6 0 -13 -2 -17l-6 -13s-7 -6 -11 -6s-9 -2 -13 -2c-10.126 0 -16.1493 4.57466 -23 8
+c-4 2 -4 7 -6 13s-3 11 -3 17v15c0 6 1 13 3 17l6 13s7 6 11 6s8 2 12 2s9 0 13 -2s7 -4 11 -6s4 -7 6 -13s2 -11 2 -17v-15zM213 224c8.11936 0 15 4.95913 15 13v4s-2 2 -2 4s-2 2 -4 2h-11s-2 -2 -4 -2s-2 -2 -2 -4v-4h-22c0 9.89385 8.81974 23 18 23c2 0 8 2 10 2
+c8.67272 0 17.6319 -2.81597 24 -6c5.06488 -2.53244 8 -12.109 8 -19v-7s-2 -4 -2 -6s-2 -4 -4 -4s-5 -3 -7 -5c4 -2 9 -4 11 -8s4 -9 4 -13s0 -9 -2 -11s-4 -6 -6 -8s-7 -4 -11 -4s-9 -2 -13 -2s-8 0 -10 2s-7 2 -11 4c-5.58093 2.79046 -9 13.5084 -9 21h18v-4s2 -2 2 -4
+s2 -2 4 -2h11s2 2 4 2s2 2 2 4v11s-2 2 -2 4s-2 2 -4 2h-13v15h8zM256 405c94 0 171 -76 171 -170s-77 -171 -171 -171s-171 77 -171 171h43c0 -70 58 -128 128 -128s128 58 128 128s-58 128 -128 128v-86l-107 107l107 107v-86z" />
+ <glyph glyph-name="replay_5" unicode="replay_&#x35;"
+d="M252 222c-1.79204 -0.716817 -7 -2.40231 -7 -4c0 -2 -2 -3 -2 -3h-15l5 47h51v-15h-37l-2 -19s2 0 2 2s3 1 3 3s2 0 4 0h4c4 0 9 -1 11 -3s6 -4 8 -6c4.43641 -4.43641 9 -13.6284 9 -23c0 -4 0 -9 -2 -11s-3 -7 -7 -11s-6 -4 -8 -6s-9 -2 -13 -2s-9 0 -11 2s-6 2 -10 4
+c-5.5956 2.7978 -9 11.277 -9 19h17c0 -7.40446 5.29508 -10 13 -10c2 0 4 0 6 2l5 4s2 4 2 6v13l-2 4l-5 5s-4 2 -6 2h-4zM256 405c94 0 171 -76 171 -170s-77 -171 -171 -171s-171 77 -171 171h43c0 -70 58 -128 128 -128s128 58 128 128s-58 128 -128 128v-86l-107 107
+l107 107v-86z" />
+ <glyph glyph-name="reply" unicode="reply"
+d="M213 320c149 -21 214 -128 235 -235c-53 75 -128 109 -235 109v-87l-149 149l149 149v-85z" />
+ <glyph glyph-name="reply_all" unicode="reply_all"
+d="M277 320c149 -21 214 -128 235 -235c-53 75 -128 109 -235 109v-87l-149 149l149 149v-85zM149 341l-85 -85l85 -85v-64l-149 149l149 149v-64z" />
+ <glyph glyph-name="report" unicode="report"
+d="M277 235v128h-42v-128h42zM256 143c15 0 28 13 28 28s-13 27 -28 27s-28 -12 -28 -27s13 -28 28 -28zM336 448l112 -112v-160l-112 -112h-160l-112 112v160l112 112h160z" />
+ <glyph glyph-name="report_problem" unicode="report_problem"
+d="M277 213v86h-42v-86h42zM277 128v43h-42v-43h42zM21 64l235 405l235 -405h-470z" />
+ <glyph glyph-name="restaurant" unicode="restaurant"
+d="M341 384c0 38 48 85 107 85v-426h-53v170h-54v171zM235 320v149h42v-149c0 -45 -35 -82 -80 -85v-192h-53v192c-45 3 -80 40 -80 85v149h43v-149h42v149h43v-149h43z" />
+ <glyph glyph-name="restaurant_menu" unicode="restaurant_menu"
+d="M317 266l-31 -31l147 -147l-30 -30l-147 147l-147 -147l-30 30l208 208c-15 33 -4 79 30 113c41 41 99 48 130 17s24 -90 -17 -131c-34 -34 -80 -44 -113 -29zM173 227l-90 90c-33 33 -33 87 0 120l150 -149z" />
+ <glyph glyph-name="restore" unicode="restore"
+d="M256 341h32v-90l75 -45l-16 -26l-91 55v106zM277 448c106 0 192 -86 192 -192s-86 -192 -192 -192c-53 0 -100 21 -135 56l30 31c27 -27 64 -44 105 -44c83 0 150 66 150 149s-67 149 -150 149s-149 -66 -149 -149h64l-86 -86l-2 3l-83 83h64c0 106 86 192 192 192z" />
+ <glyph glyph-name="restore_page" unicode="restore_page"
+d="M256 128c59 0 107 48 107 107s-48 106 -107 106c-38 0 -71 -20 -90 -49l-27 28v-85h85l-34 34c12 24 37 40 66 40c41 0 75 -33 75 -74s-34 -75 -75 -75c-25 0 -48 13 -61 32h-37c16 -38 54 -64 98 -64zM299 469l128 -128v-256c0 -23 -20 -42 -43 -42h-256
+c-23 0 -43 19 -43 42l1 342c0 23 19 42 42 42h171z" />
+ <glyph glyph-name="ring_volume" unicode="ring_volume"
+d="M137 303c0 0 -74 74 -76 75l30 31l76 -76zM277 469v-106h-42v106h42zM451 378c-2 -1 -76 -75 -76 -75l-30 30l76 76zM506 156c4 -4 6 -9 6 -15s-2 -11 -6 -15l-53 -53c-4 -4 -9 -6 -15 -6s-11 2 -15 6c-17 16 -36 30 -57 40c-7 3 -12 11 -12 19v66c-31 10 -64 15 -98 15
+s-67 -5 -98 -15v-66c0 -9 -5 -17 -12 -20c-21 -10 -40 -23 -57 -39c-4 -4 -9 -6 -15 -6s-11 2 -15 6l-53 53c-4 4 -6 9 -6 15s2 11 6 15c65 62 153 100 250 100s185 -38 250 -100z" />
+ <glyph glyph-name="room" unicode="room"
+d="M256 267c29 0 53 24 53 53s-24 53 -53 53s-53 -24 -53 -53s24 -53 53 -53zM256 469c83 0 149 -66 149 -149c0 -112 -149 -277 -149 -277s-149 165 -149 277c0 83 66 149 149 149z" />
+ <glyph glyph-name="room_service" unicode="room_service"
+d="M295 346c83 -17 147 -88 153 -175h-384c6 87 70 158 153 175c-2 5 -4 11 -4 17c0 23 20 42 43 42s43 -19 43 -42c0 -6 -2 -12 -4 -17zM43 149h426v-42h-426v42z" />
+ <glyph glyph-name="rotate_90_degrees_ccw" unicode="rotate_&#x39;&#x30;_degrees_ccw"
+d="M413 370c75 -75 75 -196 0 -271c-37 -38 -87 -56 -136 -56c-32 0 -63 8 -92 24l32 31c19 -9 39 -13 60 -13c38 0 77 15 106 44c58 58 58 153 0 211c-29 29 -68 44 -106 44v-69l-90 90l90 91v-69c49 0 99 -19 136 -57zM79 237l78 -78l78 78l-78 78zM157 375l138 -138
+l-138 -138l-139 138z" />
+ <glyph glyph-name="rotate_left" unicode="rotate_left"
+d="M277 425c84 -10 150 -82 150 -169s-66 -159 -150 -169v43c61 10 107 63 107 126s-46 116 -107 126v-83l-97 95l97 97v-66zM151 121l31 31c16 -12 34 -19 53 -22v-43c-30 4 -59 15 -84 34zM130 235c3 -19 10 -37 21 -53l-30 -30c-19 25 -30 53 -34 83h43zM152 330
+c-11 -16 -19 -34 -22 -53h-43c4 30 16 58 35 83z" />
+ <glyph glyph-name="rotate_right" unicode="rotate_right"
+d="M360 182c12 16 19 34 22 53h43c-4 -30 -15 -58 -34 -83zM277 130c19 3 37 10 53 22l31 -31c-25 -19 -54 -30 -84 -34v43zM425 277h-43c-3 19 -10 37 -22 53l31 30c19 -25 30 -53 34 -83zM332 394l-97 -95v83c-61 -10 -107 -63 -107 -126s46 -116 107 -126v-43
+c-84 10 -150 82 -150 169s66 159 150 169v66z" />
+ <glyph glyph-name="rounded_corner" unicode="rounded_corner"
+d="M448 341v-106h-43v106c0 35 -29 64 -64 64h-106v43h106c59 0 107 -48 107 -107zM64 64v43h43v-43h-43zM149 64v43h43v-43h-43zM235 64v43h42v-43h-42zM149 405v43h43v-43h-43zM64 405v43h43v-43h-43zM64 320v43h43v-43h-43zM64 149v43h43v-43h-43zM64 235v42h43v-42h-43z
+M405 149v43h43v-43h-43zM405 107h43v-43h-43v43z" />
+ <glyph glyph-name="router" unicode="router"
+d="M320 128v43h-43v-43h43zM245 128v43h-42v-43h42zM171 128v43h-43v-43h43zM405 235c23 0 43 -20 43 -43v-85c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v85c0 23 20 43 43 43h213v85h43v-85h42zM412 369l-17 -17c-15 15 -35 21 -54 21s-38 -6 -53 -21l-17 17
+c19 19 44 30 70 30s52 -11 71 -30zM431 386c-26 23 -58 36 -90 36s-63 -13 -89 -36l-17 17c30 30 68 45 106 45s77 -15 107 -45z" />
+ <glyph glyph-name="rowing" unicode="rowing"
+d="M448 64l-64 -64l-64 64v32l-151 151c-7 -1 -14 -1 -20 -1v46c35 -1 77 18 100 43l30 33c7.60688 7.60688 20.1539 16 35 16h1c26 0 48 -22 48 -48v-123c0 -18 -8 -34 -20 -46l-76 76v49c-13 -11 -31 -22 -49 -30l134 -134h32zM320 491c23 0 43 -20 43 -43
+s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM181 203l54 -54h-43l-75 -74l-32 32z" />
+ <glyph glyph-name="rss_feed" unicode="rss_feed"
+d="M85 297c117 0 212 -95 212 -212h-61c0 83 -68 151 -151 151v61zM85 417c183 0 332 -149 332 -332h-60c0 150 -122 272 -272 272v60zM85 132c0 26 21 46 47 46s46 -20 46 -46s-20 -47 -46 -47s-47 21 -47 47z" />
+ <glyph glyph-name="rv_hookup" unicode="rv_hookup"
+d="M363 469l64 -64l-64 -64v43h-171v43h171v42zM384 213v64h-85v-64h85zM235 85c12 0 21 10 21 22s-9 21 -21 21s-22 -9 -22 -21s10 -22 22 -22zM427 149h42v-42h-170c0 -35 -29 -64 -64 -64s-64 29 -64 64h-43c-23 0 -43 19 -43 42v64h150v64h-86v-42l-64 64l64 64v-43h235
+c23 0 43 -20 43 -43v-128z" />
+ <glyph glyph-name="satellite" unicode="satellite"
+d="M107 128h298l-96 128l-74 -96l-54 64zM107 256c83 0 149 67 149 150h-43c0 -59 -47 -107 -106 -107v-43zM107 406v-65c35 0 64 30 64 65h-64zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
+ <glyph glyph-name="save" unicode="save"
+d="M320 320v85h-213v-85h213zM256 107c35 0 64 29 64 64s-29 64 -64 64s-64 -29 -64 -64s29 -64 64 -64zM363 448l85 -85v-256c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h256z" />
+ <glyph glyph-name="scanner" unicode="scanner"
+d="M405 149v43h-213v-43h213zM149 149v43h-42v-43h42zM422 284c15 -4 26 -22 26 -39v-117c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v85c0 23 20 43 43 43h268l-300 109l15 40z" />
+ <glyph glyph-name="schedule" unicode="schedule"
+d="M267 363v-112l96 -57l-16 -27l-112 68v128h32zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="school" unicode="school"
+d="M256 448l235 -128v-171h-43v148l-192 -105l-235 128zM107 231l149 -82l149 82v-86l-149 -81l-149 81v86z" />
+ <glyph glyph-name="screen_lock_landscape" unicode="screen_lock_landscape"
+d="M230 299v-22h52v22c0 14 -12 25 -26 25s-26 -11 -26 -25zM213 171c-12 0 -21 9 -21 21v64c0 12 9 21 21 21v22c0 23 19 42 43 42c23 0 43 -18 43 -42v-22c12 0 21 -9 21 -21v-64c0 -12 -9 -21 -21 -21h-86zM405 149v214h-298v-214h298zM448 405c23 0 43 -19 43 -42v-214
+c0 -23 -20 -42 -43 -42h-384c-23 0 -43 19 -43 42v214c0 23 20 42 43 42h384z" />
+ <glyph glyph-name="screen_lock_portrait" unicode="screen_lock_portrait"
+d="M363 107v298h-214v-298h214zM363 491c23 0 42 -20 42 -43v-384c0 -23 -19 -43 -42 -43h-214c-23 0 -42 20 -42 43v384c0 23 19 43 42 43h214zM230 299v-22h52v22c0 14 -12 25 -26 25s-26 -11 -26 -25zM213 171c-12 0 -21 9 -21 21v64c0 12 9 21 21 21v22
+c0 23 19 42 43 42c23 0 43 -18 43 -42v-22c12 0 21 -9 21 -21v-64c0 -12 -9 -21 -21 -21h-86z" />
+ <glyph glyph-name="screen_lock_rotation" unicode="screen_lock_rotation"
+d="M358 459v-11h73v11c0 20 -16 36 -36 36s-37 -16 -37 -36zM341 320c-12 0 -21 9 -21 21v86c0 12 9 21 21 21v11c0 29 25 53 54 53s53 -24 53 -53v-11c12 0 21 -9 21 -21v-86c0 -12 -9 -21 -21 -21h-107zM181 75l28 28l81 -81l-14 -1c-134 0 -244 104 -255 235h32
+c8 -80 58 -148 128 -181zM496 240c13 -12 13 -33 0 -46l-136 -135c-12 -13 -32 -13 -45 0l-256 256c-13 12 -13 32 0 45l135 136c12 13 33 13 46 0l52 -52l-30 -30l-45 44l-121 -120l242 -242l120 121l-47 47l30 30z" />
+ <glyph glyph-name="screen_rotation" unicode="screen_rotation"
+d="M160 54l29 28l81 -81l-14 -1c-134 0 -244 104 -255 235h32c8 -80 57 -148 127 -181zM316 60l136 136l-256 256l-136 -136zM218 475l257 -257c13 -12 13 -32 0 -45l-136 -136c-12 -13 -32 -13 -45 0l-257 257c-13 12 -13 32 0 45l136 136c12 13 32 13 45 0zM352 458
+l-29 -28l-81 81l14 1c134 0 244 -104 255 -235h-32c-8 80 -57 148 -127 181z" />
+ <glyph glyph-name="screen_share" unicode="screen_share"
+d="M277 203l86 80l-86 80v-46c-83 -12 -116 -68 -128 -125c30 40 69 58 128 58v-47zM427 128h85v-43h-512v43h85c-24 0 -42 20 -42 43v213c0 24 18 43 42 43h342c23 0 42 -19 42 -43v-213c0 -23 -19 -43 -42 -43z" />
+ <glyph glyph-name="sd_card" unicode="sd_card"
+d="M384 341v86h-43v-86h43zM320 341v86h-43v-86h43zM256 341v86h-43v-86h43zM384 469c23 0 43 -19 43 -42v-342c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42l1 256l127 128h171z" />
+ <glyph glyph-name="sd_storage" unicode="sd_storage"
+d="M384 341v86h-43v-86h43zM320 341v86h-43v-86h43zM256 341v86h-43v-86h43zM384 469c23 0 43 -19 43 -42v-342c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42l1 256l127 128h171z" />
+ <glyph glyph-name="search" unicode="search"
+d="M203 213c53 0 96 43 96 96s-43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96zM331 213l106 -106l-32 -32l-106 106v17l-6 6c-24 -21 -56 -33 -90 -33c-77 0 -139 61 -139 138s62 139 139 139s138 -62 138 -139c0 -34 -12 -66 -33 -90l6 -6h17z" />
+ <glyph glyph-name="security" unicode="security"
+d="M256 491l192 -86v-128c0 -118 -82 -229 -192 -256c-110 27 -192 138 -192 256v128zM256 256v-191c79 25 138 103 149 191h-149zM256 256v188l-149 -66v-122h149z" />
+ <glyph glyph-name="select_all" unicode="select_all"
+d="M192 320v-128h128v128h-128zM149 149v214h214v-214h-214zM320 405v43h43v-43h-43zM320 64v43h43v-43h-43zM405 149v43h43v-43h-43zM405 320v43h43v-43h-43zM405 64v43h43c0 -23 -20 -43 -43 -43zM405 235v42h43v-42h-43zM235 64v43h42v-43h-42zM192 448v-43h-43v43h43z
+M64 149v43h43v-43h-43zM107 64c-23 0 -43 20 -43 43h43v-43zM405 448c23 0 43 -20 43 -43h-43v43zM277 448v-43h-42v43h42zM64 320v43h43v-43h-43zM149 64v43h43v-43h-43zM64 235v42h43v-42h-43zM64 405c0 23 20 43 43 43v-43h-43z" />
+ <glyph glyph-name="send" unicode="send"
+d="M43 64v149l320 43l-320 43v149l448 -192z" />
+ <glyph glyph-name="sentiment_dissatisfied" unicode="sentiment_dissatisfied"
+d="M256 213c50 0 92 -30 109 -74h-35c-15 25 -42 42 -74 42s-59 -17 -74 -42h-35c17 44 59 74 109 74zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213
+s95 213 213 213zM149 309c0 18 14 32 32 32s32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32zM299 309c0 18 14 32 32 32s32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32z" />
+ <glyph glyph-name="sentiment_neutral" unicode="sentiment_neutral"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM149 309c0 18 14 32 32 32s32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32zM299 309
+c0 18 14 32 32 32s32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32zM192 213h128v-32h-128v32z" />
+ <glyph glyph-name="sentiment_satisfied" unicode="sentiment_satisfied"
+d="M256 171c32 0 59 17 74 42h35c-17 -44 -59 -74 -109 -74s-92 30 -109 74h35c15 -25 42 -42 74 -42zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213
+s95 213 213 213zM149 309c0 18 14 32 32 32s32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32zM299 309c0 18 14 32 32 32s32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32z" />
+ <glyph glyph-name="sentiment_very_dissatisfied" unicode="sentiment_very_dissatisfied"
+d="M256 213c50 0 92 -30 109 -74h-218c17 44 59 74 109 74zM167 256l-23 23l23 22l-23 23l23 22l22 -22l23 22l23 -22l-23 -23l23 -22l-23 -23l-23 23zM345 346l23 -22l-23 -23l23 -22l-23 -23l-22 23l-23 -23l-23 23l23 22l-23 23l23 22l23 -22zM256 85
+c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="sentiment_very_satisfied" unicode="sentiment_very_satisfied"
+d="M256 139c-50 0 -92 30 -109 74h218c-17 -44 -59 -74 -109 -74zM189 300l-22 -23l-23 23l45 45l46 -45l-23 -23zM277 300l46 45l45 -45l-23 -23l-22 23l-23 -23zM256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469
+c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="settings" unicode="settings"
+d="M256 181c41 0 75 34 75 75s-34 75 -75 75s-75 -34 -75 -75s34 -75 75 -75zM415 235l45 -35c4 -3 5 -9 2 -14l-43 -74c-3 -5 -8 -6 -13 -4l-53 21c-11 -8 -23 -16 -36 -21l-8 -56c-1 -5 -5 -9 -10 -9h-86c-5 0 -9 4 -10 9l-8 56c-13 5 -25 12 -36 21l-53 -21
+c-5 -2 -10 -1 -13 4l-43 74c-3 5 -2 11 2 14l45 35c-1 7 -1 14 -1 21s0 14 1 21l-45 35c-4 3 -5 9 -2 14l43 74c3 5 8 6 13 4l53 -21c11 8 23 16 36 21l8 56c1 5 5 9 10 9h86c5 0 9 -4 10 -9l8 -56c13 -5 25 -12 36 -21l53 21c5 2 10 1 13 -4l43 -74c3 -5 2 -11 -2 -14
+l-45 -35c1 -7 1 -14 1 -21s0 -14 -1 -21z" />
+ <glyph glyph-name="settings_applications" unicode="settings_applications"
+d="M368 256c0 5 0 10 -1 15l32 24c3 2 3 7 1 10l-30 52c-2 3 -6 4 -9 3l-37 -15c-8 6 -16 11 -25 15l-6 39c-1 3 -3 6 -7 6h-60c-4 0 -6 -2 -7 -6l-6 -40c-9 -4 -17 -8 -25 -14l-37 15c-3 1 -7 -1 -9 -4l-30 -51c-2 -3 -2 -8 1 -10l32 -24c-1 -5 -1 -10 -1 -15s0 -10 1 -15
+l-32 -24c-3 -2 -3 -7 -1 -10l30 -52c2 -3 6 -4 9 -3l37 15c8 -6 16 -11 25 -15l6 -39c1 -3 3 -6 7 -6h60c4 0 6 2 7 6l6 40c9 4 17 8 25 14l37 -15c3 -1 7 1 9 4l30 51c2 3 2 8 -1 10l-32 24c1 5 1 10 1 15zM405 448c24 0 43 -20 43 -43v-298c0 -23 -19 -43 -43 -43h-298
+c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h298zM256 299c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43z" />
+ <glyph glyph-name="settings_backup_restore" unicode="settings_backup_restore"
+d="M256 448c106 0 192 -86 192 -192s-86 -192 -192 -192c-44 0 -85 15 -117 40l30 30c25 -17 55 -27 87 -27c83 0 149 66 149 149s-66 149 -149 149s-149 -66 -149 -149h64l-86 -85l-85 85h64c0 106 86 192 192 192zM299 256c0 -23 -20 -43 -43 -43s-43 20 -43 43
+s20 43 43 43s43 -20 43 -43z" />
+ <glyph glyph-name="settings_bluetooth" unicode="settings_bluetooth"
+d="M317 207l-40 40v-80zM277 430v-80l40 40zM378 390l-92 -91l92 -92l-122 -122h-21v162l-98 -98l-30 30l119 120l-119 119l30 30l98 -98v162h21zM320 0v43h43v-43h-43zM149 0v43h43v-43h-43zM235 0v43h42v-43h-42z" />
+ <glyph glyph-name="settings_brightness" unicode="settings_brightness"
+d="M256 320v-128c35 0 64 29 64 64s-29 64 -64 64zM171 171v53l-32 32l32 32v53h53l32 32l32 -32h53v-53l32 -32l-32 -32v-53h-53l-32 -32l-32 32h-53zM448 106v300h-384v-300h384zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298
+c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="settings_cell" unicode="settings_cell"
+d="M341 171v256h-170v-256h170zM341 512c23 0 43 -20 43 -43v-341c0 -23 -20 -43 -43 -43h-170c-23 0 -43 20 -43 43v341c0 23 20 43 43 43h170zM320 0v43h43v-43h-43zM235 0v43h42v-43h-42zM149 0v43h43v-43h-43z" />
+ <glyph glyph-name="settings_ethernet" unicode="settings_ethernet"
+d="M379 395l116 -139l-116 -139l-33 27l93 112l-93 112zM235 235v42h42v-42h-42zM363 277v-42h-43v42h43zM149 235v42h43v-42h-43zM166 368l-93 -112l93 -112l-33 -27l-116 139l116 139z" />
+ <glyph glyph-name="settings_input_antenna" unicode="settings_input_antenna"
+d="M256 491c129 0 235 -106 235 -235h-43c0 106 -86 192 -192 192s-192 -86 -192 -192h-43c0 129 106 235 235 235zM277 207v-70l73 -73l-30 -30l-64 64l-64 -64l-30 30l73 73v70c-19 8 -32 27 -32 49c0 29 24 53 53 53s53 -24 53 -53c0 -22 -13 -41 -32 -49zM256 405
+c83 0 149 -66 149 -149h-42c0 59 -48 107 -107 107s-107 -48 -107 -107h-42c0 83 66 149 149 149z" />
+ <glyph glyph-name="settings_input_component" unicode="settings_input_component"
+d="M363 171v42h128v-42c0 -28 -18 -51 -43 -60v-90h-43v90c-25 9 -42 32 -42 60zM277 469v-85h43v-128h-128v128h43v85c0 12 9 22 21 22s21 -10 21 -22zM448 384h43v-128h-128v128h42v85c0 12 10 22 22 22s21 -10 21 -22v-85zM21 171v42h128v-42c0 -28 -17 -51 -42 -60v-90
+h-43v90c-25 9 -43 32 -43 60zM192 171v42h128v-42c0 -28 -18 -51 -43 -60v-90h-42v90c-25 9 -43 32 -43 60zM107 469v-85h42v-128h-128v128h43v85c0 12 9 22 21 22s22 -10 22 -22z" />
+ <glyph glyph-name="settings_input_composite" unicode="settings_input_composite"
+d="M363 171v42h128v-42c0 -28 -18 -51 -43 -60v-90h-43v90c-25 9 -42 32 -42 60zM277 469v-85h43v-128h-128v128h43v85c0 12 9 22 21 22s21 -10 21 -22zM448 384h43v-128h-128v128h42v85c0 12 10 22 22 22s21 -10 21 -22v-85zM21 171v42h128v-42c0 -28 -17 -51 -42 -60v-90
+h-43v90c-25 9 -43 32 -43 60zM192 171v42h128v-42c0 -28 -18 -51 -43 -60v-90h-42v90c-25 9 -43 32 -43 60zM107 469v-85h42v-128h-128v128h43v85c0 12 9 22 21 22s22 -10 22 -22z" />
+ <glyph glyph-name="settings_input_hdmi" unicode="settings_input_hdmi"
+d="M171 427v-64h42v42h22v-42h42v42h22v-42h42v64h-170zM384 363h21v-128l-64 -128v-64h-170v64l-64 128v128h21v64c0 23 20 42 43 42h170c23 0 43 -19 43 -42v-64z" />
+ <glyph glyph-name="settings_input_svideo" unicode="settings_input_svideo"
+d="M331 192c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM373 299c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM256 64c106 0 192 86 192 192s-86 192 -192 192s-192 -86 -192 -192s86 -192 192 -192zM256 491
+c129 0 235 -106 235 -235s-106 -235 -235 -235s-235 106 -235 235s106 235 235 235zM181 192c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM320 373c0 -18 -14 -32 -32 -32h-64c-18 0 -32 14 -32 32s14 32 32 32h64c18 0 32 -14 32 -32zM171 267
+c0 -18 -14 -32 -32 -32s-32 14 -32 32s14 32 32 32s32 -14 32 -32z" />
+ <glyph glyph-name="settings_overscan" unicode="settings_overscan"
+d="M448 106v300h-384v-300h384zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384zM299 171l-43 -54l-43 54h86zM128 299v-86l-53 43zM384 299l53 -43l-53 -43v86zM256 395l43 -54h-86z" />
+ <glyph glyph-name="settings_phone" unicode="settings_phone"
+d="M405 320h43v-43h-43v43zM427 181c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-200 0 -363 163 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 12 -76c2 -7 1 -16 -5 -22l-47 -47c31 -60 81 -110 141 -141l47 47c6 6 15 7 22 5c24 -8 49 -12 76 -12z
+M363 320v-43h-43v43h43zM277 320v-43h-42v43h42z" />
+ <glyph glyph-name="settings_power" unicode="settings_power"
+d="M320 0v43h43v-43h-43zM353 417c44 -31 74 -82 74 -140c0 -94 -77 -170 -171 -170s-171 76 -171 170c0 58 30 109 74 140l30 -30c-37 -23 -61 -64 -61 -110c0 -71 57 -128 128 -128s128 57 128 128c0 46 -25 87 -62 109zM277 469v-213h-42v213h42zM235 0v43h42v-43h-42z
+M149 0v43h43v-43h-43z" />
+ <glyph glyph-name="settings_remote" unicode="settings_remote"
+d="M256 512c65 0 124 -26 166 -69l-30 -30c-35 35 -83 56 -136 56s-101 -21 -136 -56l-30 30c42 42 101 69 166 69zM150 383c27 27 65 44 106 44s79 -17 106 -44l-30 -30c-19 19 -47 31 -76 31s-57 -12 -76 -31zM256 192c23 0 43 20 43 43s-20 42 -43 42s-43 -19 -43 -42
+s20 -43 43 -43zM320 320c12 0 21 -9 21 -21v-256c0 -12 -9 -22 -21 -22h-128c-12 0 -21 10 -21 22v256c0 12 9 21 21 21h128z" />
+ <glyph glyph-name="settings_system_daydream" unicode="settings_system_daydream"
+d="M448 106v300h-384v-300h384zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384zM192 171c-35 0 -64 29 -64 64c0 33 25 60 57 63h4c12 25 37 43 67 43c38 0 69 -28 74 -64h1c29 0 53 -24 53 -53
+s-24 -53 -53 -53h-139z" />
+ <glyph glyph-name="settings_voice" unicode="settings_voice"
+d="M405 299c0 -73 -58 -134 -128 -144v-70h-42v70c-70 10 -128 71 -128 144h36c0 -64 54 -109 113 -109s113 45 113 109h36zM320 0v43h43v-43h-43zM235 0v43h42v-43h-42zM256 235c-35 0 -64 29 -64 64v128c0 35 29 64 64 64s64 -29 64 -64v-128c0 -35 -29 -64 -64 -64z
+M149 0v43h43v-43h-43z" />
+ <glyph glyph-name="share" unicode="share"
+d="M384 169c34 0 62 -28 62 -62s-28 -63 -62 -63s-62 29 -62 63c0 5 0 10 1 14l-151 88c-12 -11 -27 -17 -44 -17c-35 0 -64 29 -64 64s29 64 64 64c17 0 32 -6 44 -17l150 87c-1 5 -2 10 -2 15c0 35 29 64 64 64s64 -29 64 -64s-29 -64 -64 -64c-17 0 -32 7 -44 18
+l-150 -88c1 -5 2 -10 2 -15s-1 -10 -2 -15l152 -88c11 10 26 16 42 16z" />
+ <glyph glyph-name="shop" unicode="shop"
+d="M192 128l160 107l-160 85v-192zM213 427v-43h86v43h-86zM341 384h128v-277c0 -24 -18 -43 -42 -43h-342c-24 0 -42 19 -42 43v277h128v43c0 24 18 42 42 42h86c24 0 42 -18 42 -42v-43z" />
+ <glyph glyph-name="shop_two" unicode="shop_two"
+d="M256 192l117 85l-117 64v-149zM256 448v-43h85v43h-85zM384 405h107v-234c0 -24 -19 -43 -43 -43h-299c-24 0 -42 19 -42 43v234h106v43c0 24 19 43 43 43h85c24 0 43 -19 43 -43v-43zM64 320v-235h341c0 -24 -18 -42 -42 -42h-299c-24 0 -43 18 -43 42v235h43z" />
+ <glyph glyph-name="shopping_basket" unicode="shopping_basket"
+d="M256 149c23 0 43 20 43 43s-20 43 -43 43s-43 -20 -43 -43s20 -43 43 -43zM192 320h128l-64 94zM367 320h102c12 0 22 -9 22 -21c-17.3126 -69.0207 -36.8524 -135.814 -55 -204c-5 -18 -21 -31 -41 -31h-278c-20 0 -36 13 -41 31l-54 198c-1 2 -1 4 -1 6
+c0 12 10 21 22 21h102l93 140c4 6 11 9 18 9s14 -3 18 -9z" />
+ <glyph glyph-name="shopping_cart" unicode="shopping_cart"
+d="M363 128c23 0 42 -20 42 -43s-19 -42 -42 -42s-43 19 -43 42s20 43 43 43zM21 469h70l20 -42h316c12 0 21 -10 21 -22c0 -4 -1 -7 -3 -10l-76 -138c-7 -13 -21 -22 -37 -22h-159l-19 -35l-1 -3c0 -3 2 -5 5 -5h247v-43h-256c-23 0 -42 20 -42 43c0 7 2 14 5 20l29 53
+l-77 162h-43v42zM149 128c23 0 43 -20 43 -43s-20 -42 -43 -42s-42 19 -42 42s19 43 42 43z" />
+ <glyph glyph-name="short_text" unicode="short_text"
+d="M85 235h214v-43h-214v43zM85 320h342v-43h-342v43z" />
+ <glyph glyph-name="show_chart" unicode="show_chart"
+d="M75 118l-32 32l160 160l85 -86l151 170l30 -30l-181 -204l-85 86z" />
+ <glyph glyph-name="shuffle" unicode="shuffle"
+d="M316 226l67 -67l44 44v-118h-118l44 44l-67 67zM309 427h118v-118l-44 44l-268 -268l-30 30l268 268zM226 316l-30 -30l-111 111l30 30z" />
+ <glyph glyph-name="signal_cellular_4_bar" unicode="signal_cellular_&#x34;_bar"
+d="M43 43l426 426v-426h-426z" />
+ <glyph glyph-name="signal_cellular_connected_no_internet_4_bar" unicode="signal_cellular_connected_no_internet_&#x34;_bar"
+d="M43 43l426 426v-128h-85v-298h-341zM427 43v42h42v-42h-42zM427 128v171h42v-171h-42z" />
+ <glyph glyph-name="signal_cellular_no_sim" unicode="signal_cellular_no_sim"
+d="M78 429l373 -372l-28 -28l-40 41c-6 -3 -13 -6 -20 -6h-214c-23 0 -42 20 -42 43v239l-56 56zM405 405v-249l-242 242l50 50h150c23 0 42 -20 42 -43z" />
+ <glyph glyph-name="signal_cellular_null" unicode="signal_cellular_null"
+d="M469 469v-426h-426zM427 366l-281 -281h281v281z" />
+ <glyph glyph-name="signal_cellular_off" unicode="signal_cellular_off"
+d="M102 416l367 -368l-27 -27l-42 43h-379l189 189l-135 136zM448 491v-367l-183 183z" />
+ <glyph glyph-name="signal_wifi_4_bar" unicode="signal_wifi_&#x34;_bar"
+d="M256 54l-248 309c10 7 105 85 248 85s238 -78 248 -85z" />
+ <glyph glyph-name="signal_wifi_4_bar_lock" unicode="signal_wifi_&#x34;_bar_lock"
+d="M331 203v-56l-75 -94l-247 310c9 6 104 85 247 85s238 -79 247 -85l-44 -56c-6 2 -13 2 -22 2c-60 0 -106 -46 -106 -106zM469 171v32c0 17 -15 32 -32 32s-32 -15 -32 -32v-32h64zM491 171c11 0 21 -11 21 -22v-85c0 -11 -10 -21 -21 -21h-107c-11 0 -21 10 -21 21v85
+c0 11 10 22 21 22v32c0 30 23 53 53 53s54 -23 54 -53v-32z" />
+ <glyph glyph-name="signal_wifi_off" unicode="signal_wifi_off"
+d="M70 481c122.302 -122.698 245.474 -244.526 367 -368l-27 -27l-71 71l-83 -103l-248 309c5 4 32 26 78 47l-43 44zM504 363l-116 -145l-221 220c27 6 57 10 89 10c143 0 238 -78 248 -85z" />
+ <glyph glyph-name="sim_card" unicode="sim_card"
+d="M363 192v85h-43v-85h43zM277 235v42h-42v-42h42zM277 107v85h-42v-85h42zM192 192v85h-43v-85h43zM363 107v42h-43v-42h43zM192 107v42h-43v-42h43zM426 427l1 -342c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42v256l128 128h171c23 0 42 -19 42 -42z" />
+ <glyph glyph-name="sim_card_alert" unicode="sim_card_alert"
+d="M277 235v106h-42v-106h42zM277 149v43h-42v-43h42zM384 469c23 0 43 -19 43 -42v-342c0 -23 -20 -42 -43 -42h-256c-23 0 -43 19 -43 42l1 256l127 128h171z" />
+ <glyph glyph-name="skip_next" unicode="skip_next"
+d="M341 384h43v-256h-43v256zM128 128v256l181 -128z" />
+ <glyph glyph-name="skip_previous" unicode="skip_previous"
+d="M203 256l181 128v-256zM128 384h43v-256h-43v256z" />
+ <glyph glyph-name="slideshow" unicode="slideshow"
+d="M405 107v298h-298v-298h298zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298zM213 341l107 -85l-107 -85v170z" />
+ <glyph glyph-name="slow_motion_video" unicode="slow_motion_video"
+d="M469 256c0 -110 -84 -201 -191 -212v43c84 11 149 83 149 169s-65 158 -149 169v43c107 -11 191 -102 191 -212zM121 91l30 30c24 -18 53 -30 84 -34v-43c-43 4 -82 21 -114 47zM87 235c4 -31 16 -60 34 -83l-30 -31c-26 32 -43 71 -47 114h43zM121 361
+c-18 -24 -30 -53 -34 -84h-43c4 43 21 82 47 114zM235 425c-31 -4 -60 -16 -84 -34l-30 30c32 26 71 43 114 47v-43zM278 303l63 -47c-42.8195 -31.8471 -85.479 -63.8543 -128 -96z" />
+ <glyph glyph-name="smartphone" unicode="smartphone"
+d="M363 107v298h-214v-298h214zM363 490c23 0 42 -19 42 -42v-384c0 -23 -19 -43 -42 -43h-214c-23 0 -42 20 -42 43v384c0 23 19 43 42 43z" />
+ <glyph glyph-name="smoke_free" unicode="smoke_free"
+d="M363 172l-63 63h63v-63zM309 326c-39 0 -71 33 -71 72s32 71 71 71v-32c-22 0 -39 -15 -39 -37s17 -43 39 -43h33c40 0 74 -29 74 -67v-34h-32v27c0 28 -20 43 -42 43h-33zM402 408c40 -19 67 -60 67 -108v-44h-32v44c0 48 -37 87 -85 87v32c22 0 39 18 39 40h32
+c0 -20 -8 -38 -21 -51zM384 235h32v-64h-32v64zM437 235h32v-64h-32v64zM43 384l26 27l363 -363l-27 -27l-149 150h-213v64h149z" />
+ <glyph glyph-name="smoking_rooms" unicode="smoking_rooms"
+d="M342 294c40 0 74 -28 74 -67v-35h-32v28c0 28 -20 43 -42 43h-33c-39 0 -71 33 -71 72s32 71 71 71v-32c-22 0 -39 -15 -39 -37s17 -43 39 -43h33zM402 347c40 -19 67 -60 67 -107v-48h-32v48c0 48 -37 86 -85 86v32c22 0 39 18 39 40s-17 39 -39 39v32
+c39 0 71 -32 71 -71c0 -20 -8 -38 -21 -51zM384 171h32v-64h-32v64zM437 171h32v-64h-32v64zM43 171h320v-64h-320v64z" />
+ <glyph glyph-name="sms" unicode="sms"
+d="M363 277v43h-43v-43h43zM277 277v43h-42v-43h42zM192 277v43h-43v-43h43zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="sms_failed" unicode="sms_failed"
+d="M277 299v85h-42v-85h42zM277 213v43h-42v-43h42zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="snooze" unicode="snooze"
+d="M192 277v43h128v-38l-77 -90h77v-43h-128v39l77 89h-77zM256 85c83 0 149 67 149 150s-66 149 -149 149s-149 -66 -149 -149s66 -150 149 -150zM256 427c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM469 390l-27 -33l-98 83l27 32z
+M168 440l-98 -82l-27 32l98 82z" />
+ <glyph glyph-name="sort" unicode="sort"
+d="M64 235v42h256v-42h-256zM64 384h384v-43h-384v43zM64 128v43h128v-43h-128z" />
+ <glyph glyph-name="sort_by_alpha" unicode="sort_by_alpha"
+d="M336 168h130v-34h-182v27l126 183h-125v34h177v-27zM106 221h83l-42 111zM130 378h35l96 -244h-39l-20 52h-109l-20 -52h-39zM219 99h99l-50 -50zM319 413h-101l50 50z" />
+ <glyph glyph-name="spa" unicode="spa"
+d="M330 307c-27 -15 -52 -34 -74 -57c-22 23 -47 42 -74 57c5 59 29 116 75 162c45 -45 69 -102 73 -162zM43 299c95.1702 0 171.746 -54.2229 213 -117c41.2966 62.8426 117.856 117 213 117c0 -113 -71 -209 -171 -245c-14 -5 -27 -8 -42 -11c-15 2 -29 6 -42 11
+c-100 36 -171 132 -171 245z" />
+ <glyph glyph-name="space_bar" unicode="space_bar"
+d="M384 320h43v-128h-342v128h43v-85h256v85z" />
+ <glyph glyph-name="speaker" unicode="speaker"
+d="M256 256c35 0 64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64s29 64 64 64zM256 85c59 0 107 48 107 107s-48 107 -107 107s-107 -48 -107 -107s48 -107 107 -107zM256 427c-24 0 -43 -20 -43 -43s19 -43 43 -43c23 0 43 20 43 43s-20 43 -43 43zM363 469
+c23 0 42 -19 42 -42v-342c0 -23 -19 -42 -42 -42h-214c-23 0 -42 19 -42 42v342c0 23 19 42 42 42h214z" />
+ <glyph glyph-name="speaker_group" unicode="speaker_group"
+d="M128 405v-341h213v-43h-213c-24 0 -43 20 -43 43v341h43zM245 245c0 29 25 54 54 54s53 -25 53 -54s-24 -53 -53 -53s-54 24 -54 53zM299 160c47 0 85 38 85 85s-38 86 -85 86s-86 -39 -86 -86s39 -85 86 -85zM299 448c-23 0 -43 -19 -43 -43s20 -42 43 -42s42 18 42 42
+s-19 43 -42 43zM388 491c21 0 39 -18 39 -39v-307c0 -21 -18 -38 -39 -38h-179c-21 0 -38 17 -38 38v307c0 21 17 39 38 39h179z" />
+ <glyph glyph-name="speaker_notes" unicode="speaker_notes"
+d="M384 341v43h-171v-43h171zM384 277v43h-171v-43h171zM320 213v43h-107v-43h107zM171 341v43h-43v-43h43zM171 277v43h-43v-43h43zM171 213v43h-43v-43h43zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="speaker_notes_off" unicode="speaker_notes_off"
+d="M427 469c23 0 42 -19 42 -42v-256c0 -23 -18 -42 -41 -43l-149 149h105v43h-148l-21 21h169v43h-171v-41l-126 126h340zM128 277h43l-43 43v-43zM171 213v43h-43v-43h43zM27 475l442 -442l-27 -27l-122 122h-192l-85 -85v362l-43 43z" />
+ <glyph glyph-name="speaker_phone" unicode="speaker_phone"
+d="M320 85v171h-128v-171h128zM317 298c13 0 24 -11 24 -24v-207c0 -13 -11 -24 -24 -24h-122c-13 0 -24 11 -24 24v207c0 13 11 25 24 25zM256 491c64 0 123 -27 165 -69l-30 -30c-35 35 -82 56 -135 56s-100 -21 -135 -56l-30 30c42 42 101 69 165 69zM149 361
+c27 27 65 44 107 44s80 -17 107 -44l-31 -30c-19 19 -46 31 -76 31s-57 -12 -76 -31z" />
+ <glyph glyph-name="spellcheck" unicode="spellcheck"
+d="M461 265l30 -30l-203 -203l-108 109l30 30l78 -79zM137 277h88l-44 118zM266 171l-25 64h-120l-24 -64h-45l109 277h40l109 -277h-44z" />
+ <glyph glyph-name="star" unicode="star"
+d="M256 144l-132 -80l35 150l-116 101l153 13l60 141l60 -141l153 -13l-116 -101l35 -150z" />
+ <glyph glyph-name="star_border" unicode="star_border"
+d="M256 183l80 -48l-21 91l71 62l-94 8l-36 86l-36 -86l-94 -8l71 -62l-21 -91zM469 315l-116 -101l35 -150l-132 80l-132 -80l35 150l-116 101l153 13l60 141l60 -141z" />
+ <glyph glyph-name="star_half" unicode="star_half"
+d="M256 183l80 -48l-21 91l71 62l-94 8l-36 86v-199zM469 315l-116 -101l35 -150l-132 80l-132 -80l35 150l-116 101l153 13l60 141l60 -141z" />
+ <glyph glyph-name="stars" unicode="stars"
+d="M346 128l-24 103l80 69l-105 9l-41 96l-41 -97l-105 -8l80 -69l-24 -103l90 54zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="stay_current_landscape" unicode="stay_current_landscape"
+d="M405 363h-298v-214h298v214zM22 363c0 23 19 42 42 42h384c23 0 43 -19 43 -42v-214c0 -23 -20 -42 -43 -42h-384c-23 0 -43 19 -43 42z" />
+ <glyph glyph-name="stay_current_portrait" unicode="stay_current_portrait"
+d="M363 107v298h-214v-298h214zM363 490c23 0 42 -19 42 -42v-384c0 -23 -19 -43 -42 -43h-214c-23 0 -42 20 -42 43v384c0 23 19 43 42 43z" />
+ <glyph glyph-name="stay_primary_landscape" unicode="stay_primary_landscape"
+d="M405 363h-298v-214h298v214zM22 363c0 23 19 42 42 42h384c23 0 43 -19 43 -42v-214c0 -23 -20 -42 -43 -42h-384c-23 0 -43 19 -43 42z" />
+ <glyph glyph-name="stay_primary_portrait" unicode="stay_primary_portrait"
+d="M363 107v298h-214v-298h214zM363 490c23 0 42 -19 42 -42v-384c0 -23 -19 -43 -42 -43h-214c-23 0 -42 20 -42 43v384c0 23 19 43 42 43z" />
+ <glyph glyph-name="stop" unicode="stop"
+d="M128 384h256v-256h-256v256z" />
+ <glyph glyph-name="stop_screen_share" unicode="stop_screen_share"
+d="M149 192c20 28 45 44 78 52l-34 34c-25 -24 -37 -54 -44 -86zM51 475l421 -421l-27 -27l-58 58h-387v43h85c-24 0 -42 19 -42 42v214c0 13 5 23 14 31l-33 33zM469 170c0 -16 -9 -30 -22 -37l-118 118l34 32l-86 79v-45c-4 -1 -7 -1 -11 -2l-112 111h273
+c23 0 42 -18 42 -42v-214zM453 128h59v-43h-17z" />
+ <glyph glyph-name="storage" unicode="storage"
+d="M85 277v-42h43v42h-43zM43 213v86h426v-86h-426zM128 363v42h-43v-42h43zM43 427h426v-86h-426v86zM85 149v-42h43v42h-43zM43 85v86h426v-86h-426z" />
+ <glyph glyph-name="store" unicode="store"
+d="M256 128v85h-128v-85h128zM448 213h-21v-128h-43v128h-85v-128h-214v128h-21v43l21 107h342l21 -107v-43zM427 427v-43h-342v43h342z" />
+ <glyph glyph-name="store_mall_directory" unicode="store_mall_directory"
+d="M256 128v85h-128v-85h128zM448 213h-21v-128h-43v128h-85v-128h-214v128h-21v43l21 107h342l21 -107v-43zM427 427v-43h-342v43h342z" />
+ <glyph glyph-name="straighten" unicode="straighten"
+d="M448 171v170h-43v-85h-42v85h-43v-85h-43v85h-42v-85h-43v85h-43v-85h-42v85h-43v-170h384zM448 384c23 0 43 -20 43 -43v-170c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v170c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="streetview" unicode="streetview"
+d="M245 384c0 -38 16 -73 41 -98l-209 -209c-8 8 -13 18 -13 30v298c0 23 20 43 43 43h154c-10 -19 -16 -41 -16 -64zM277 384c0 59 48 107 107 107s107 -48 107 -107s-48 -107 -107 -107s-107 48 -107 107zM268 206c32 24 73 39 116 39c22 0 44 -4 64 -11v-127
+c0 -23 -20 -43 -43 -43h-149v117c0 10 5 19 12 25z" />
+ <glyph glyph-name="strikethrough_s" unicode="strikethrough_s"
+d="M200 232c0 -38.1216 24.1545 -54 62 -54c26.1564 0 49 10.6702 49 36c0 23.9161 -12.6848 29.3424 -30 38c-3 1 -8 3 -12 4h-205v43h384v-43h-83c1 -2 3 -5 4 -7c4 -10 7 -22 7 -35c0 -46.2545 -30.1882 -69.4824 -67 -80c-14 -4 -29 -6 -46 -6c-10 0 -21 1 -31 3
+c-21.9156 4.38312 -40.6035 10.4527 -56 22c-22.8363 17.1272 -39 39.9131 -39 79h63zM311 352c0 30.7771 -19.602 45 -51 45c-22.5729 0 -39.6285 -7.25692 -47 -22c-2 -4 -3 -9 -3 -14c0 -10 6 -19 16 -26c8 -5 16 -10 30 -15h-98c-1 2 -3 3 -4 5c-6 10 -8 22 -8 36
+c0 28.7417 14.9303 49.3443 32 63c20.5411 14.3788 47.8126 24 83 24c35.0657 0 64.1326 -10.0193 83 -27c17.5603 -15.8042 31 -37.9468 31 -69h-64z" />
+ <glyph glyph-name="style" unicode="style"
+d="M125 91v135l74 -178h-31c-23 0 -43 20 -43 43zM168 325c12 0 21 10 21 22s-9 21 -21 21s-21 -9 -21 -21s9 -22 21 -22zM470 172c9 -22 -1 -47 -23 -56l-157 -65c-5 -2 -11 -3 -17 -3c-17 0 -32 10 -39 26l-106 256c-2 6 -3 11 -3 17c0 16 10 31 26 38l158 65
+c6 2 11 3 17 3c16 0 31 -10 38 -26zM54 93c-22 9 -32 33 -23 55l52 125v-192z" />
+ <glyph glyph-name="subdirectory_arrow_left" unicode="subdirectory_arrow_left"
+d="M235 320l30 -30l-77 -77h196v214h43v-256h-239l77 -77l-30 -30l-128 128z" />
+ <glyph glyph-name="subdirectory_arrow_right" unicode="subdirectory_arrow_right"
+d="M405 192l-128 -128l-30 30l77 77h-239v256h43v-214h196l-77 77l30 30z" />
+ <glyph glyph-name="subject" unicode="subject"
+d="M85 405h342v-42h-342v42zM85 192v43h342v-43h-342zM427 320v-43h-342v43h342zM299 149v-42h-214v42h214z" />
+ <glyph glyph-name="subscriptions" unicode="subscriptions"
+d="M341 171l-128 69v-139zM469 256v-171c0 -23 -19 -42 -42 -42h-342c-23 0 -42 19 -42 42v171c0 23 19 43 42 43h342c23 0 42 -20 42 -43zM384 469v-42h-256v42h256zM427 341h-342v43h342v-43z" />
+ <glyph glyph-name="subtitles" unicode="subtitles"
+d="M427 213v43h-214v-43h214zM427 128v43h-86v-43h86zM299 128v43h-214v-43h214zM85 256v-43h86v43h-86zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342z" />
+ <glyph glyph-name="subway" unicode="subway"
+d="M384 173v147c0 56 -57 64 -128 64c-64 0 -128 -8 -128 -64v-147c0 -31 25 -56 56 -56l-24 -24v-8h36l32 32h60l32 -32h32v8l-24 24c31 0 56 25 56 56zM380 452c57 -22 89 -69 89 -129v-280h-426v280c0 60 32 107 89 129c38 15 84 17 124 17s86 -2 124 -17zM150 320h213
+v-107h-213v107zM160 171c0 12 9 21 21 21s22 -9 22 -21s-10 -22 -22 -22s-21 10 -21 22zM309 171c0 12 10 21 22 21s21 -9 21 -21s-9 -22 -21 -22s-22 10 -22 22z" />
+ <glyph glyph-name="supervisor_account" unicode="supervisor_account"
+d="M192 235c14 0 32 -2 51 -6c-44 -24 -51 -56 -51 -74v-48h-149v53c0 50 99 75 149 75zM352 213c39 0 117 -19 117 -58v-48h-234v48c0 39 78 58 117 58zM192 277c-35 0 -64 29 -64 64s29 64 64 64s64 -29 64 -64s-29 -64 -64 -64zM352 256c-29 0 -53 24 -53 53s24 54 53 54
+s53 -25 53 -54s-24 -53 -53 -53z" />
+ <glyph glyph-name="surround_sound" unicode="surround_sound"
+d="M256 299c23 0 43 -20 43 -43s-20 -43 -43 -43s-43 20 -43 43s20 43 43 43zM377 135c33 33 50 77 50 121s-17 88 -50 121l-31 -31c25 -25 38 -57 38 -90s-12 -66 -37 -91zM256 171c47 0 85 38 85 85s-38 85 -85 85s-85 -38 -85 -85s38 -85 85 -85zM166 166
+c-25 25 -38 57 -38 90s12 66 37 91l-30 30c-33 -33 -50 -77 -50 -121s17 -88 50 -121zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342z" />
+ <glyph glyph-name="swap_calls" unicode="swap_calls"
+d="M384 427l85 -86h-64v-149c0 -47 -38 -85 -85 -85s-85 38 -85 85v149c0 23 -20 43 -43 43s-43 -20 -43 -43v-149h64l-85 -85l-85 85h64v149c0 47 38 86 85 86s85 -39 85 -86v-149c0 -23 20 -43 43 -43s43 20 43 43v149h-64z" />
+ <glyph glyph-name="swap_horiz" unicode="swap_horiz"
+d="M448 320l-85 -85v64h-150v42h150v64zM149 277v-64h150v-42h-150v-64l-85 85z" />
+ <glyph glyph-name="swap_vert" unicode="swap_vert"
+d="M192 448l85 -85h-64v-150h-42v150h-64zM341 149h64l-85 -85l-85 85h64v150h42v-150z" />
+ <glyph glyph-name="swap_vertical_circle" unicode="swap_vertical_circle"
+d="M373 192h-53v85h-43v-85h-53l75 -75zM139 320h53v-85h43v85h53l-75 75zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="switch_camera" unicode="switch_camera"
+d="M320 181l75 75l-75 75v-54h-128v54l-75 -75l75 -75v54h128v-54zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h68l39 42h128l39 -42h68z" />
+ <glyph glyph-name="switch_video" unicode="switch_video"
+d="M277 181l75 75l-75 75v-54h-128v54l-74 -75l74 -75v54h128v-54zM384 309l85 86v-278l-85 86v-75c0 -12 -9 -21 -21 -21h-299c-12 0 -21 9 -21 21v256c0 12 9 21 21 21h299c12 0 21 -9 21 -21v-75z" />
+ <glyph glyph-name="sync" unicode="sync"
+d="M256 128v64l85 -85l-85 -86v64c-94 0 -171 77 -171 171c0 33 10 65 27 91l31 -31c-10 -18 -15 -38 -15 -60c0 -71 57 -128 128 -128zM256 427c94 0 171 -77 171 -171c0 -33 -10 -65 -27 -91l-31 31c10 18 15 38 15 60c0 71 -57 128 -128 128v-64l-85 85l85 86v-64z" />
+ <glyph glyph-name="sync_disabled" unicode="sync_disabled"
+d="M427 427l-51 -51c31 -31 51 -73 51 -120c0 -33 -10 -64 -26 -90l-32 31c9 18 15 38 15 59c0 35 -15 67 -38 90l-47 -47v128h128zM61 397l27 27l335 -336l-27 -27l-50 50c-15 -9 -31 -16 -48 -20v44c6 2 12 5 17 8l-172 172c-9 -18 -15 -38 -15 -59c0 -35 15 -67 38 -90
+l47 47v-128h-128l51 51c-31 31 -51 73 -51 120c0 33 10 64 26 90zM213 377c-6 -2 -11 -5 -16 -8l-31 32c15 9 30 16 47 20v-44z" />
+ <glyph glyph-name="sync_problem" unicode="sync_problem"
+d="M235 235v128h42v-128h-42zM448 427l-50 -51c31 -31 50 -73 50 -120c0 -80 -54 -146 -128 -165v44c50 17 85 65 85 121c0 35 -14 67 -37 90l-48 -47v128h128zM235 149v43h42v-43h-42zM64 256c0 80 54 146 128 165v-44c-50 -17 -85 -65 -85 -121c0 -35 14 -67 37 -90l48 47
+v-128h-128l50 51c-31 31 -50 73 -50 120z" />
+ <glyph glyph-name="system_update" unicode="system_update"
+d="M341 235l-85 -86l-85 86h64v106h42v-106h64zM363 107v298h-214v-298h214zM363 490c23 0 42 -19 42 -42v-384c0 -23 -19 -43 -42 -43h-214c-23 0 -42 20 -42 43v384c0 23 19 43 42 43z" />
+ <glyph glyph-name="system_update_alt" unicode="system_update_alt"
+d="M448 437c23 0 43 -19 43 -42v-299c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v299c0 23 20 42 43 42h128v-42h-128v-299h384v299h-128v42h128zM256 160l-85 85h64v192h42v-192h64z" />
+ <glyph glyph-name="tab" unicode="tab"
+d="M448 107v213h-171v85h-213v-298h384zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="tab_unselected" unicode="tab_unselected"
+d="M363 64v43h42v-43h-42zM277 64v43h43v-43h-43zM448 235v42h43v-42h-43zM448 64v43h43c0 -23 -20 -43 -43 -43zM107 405v43h42v-43h-42zM107 64v43h42v-43h-42zM192 405v43h43v-43h-43zM448 149v43h43v-43h-43zM448 448c23 0 43 -20 43 -43v-85h-214v128h171zM64 64
+c-23 0 -43 20 -43 43h43v-43zM21 149v43h43v-43h-43zM192 64v43h43v-43h-43zM21 405c0 23 20 43 43 43v-43h-43zM21 235v42h43v-42h-43zM21 320v43h43v-43h-43z" />
+ <glyph glyph-name="tablet" unicode="tablet"
+d="M405 128v256h-298v-256h298zM448 427c23 0 43 -20 43 -43l-1 -256c0 -23 -19 -43 -42 -43h-384c-23 0 -43 20 -43 43v256c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="tablet_android" unicode="tablet_android"
+d="M411 107v341h-310v-341h310zM299 43v21h-86v-21h86zM384 512c35 0 64 -29 64 -64v-384c0 -35 -29 -64 -64 -64h-256c-35 0 -64 29 -64 64v384c0 35 29 64 64 64h256z" />
+ <glyph glyph-name="tablet_mac" unicode="tablet_mac"
+d="M405 107v341h-320v-341h320zM245 21c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM395 512c29 0 53 -24 53 -53v-406c0 -29 -24 -53 -53 -53h-299c-29 0 -53 24 -53 53v406c0 29 24 53 53 53h299z" />
+ <glyph glyph-name="tag_faces" unicode="tag_faces"
+d="M256 139c-50 0 -92 30 -109 74h218c-17 -44 -59 -74 -109 -74zM181 277c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM331 277c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM256 85c94 0 171 77 171 171s-77 171 -171 171
+s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="tap_and_play" unicode="tap_and_play"
+d="M363 490c23 0 42 -19 42 -42v-363c0 -23 -19 -42 -42 -42h-45c-2 30 -9 58 -20 85h65v277h-214v-128c-14 6 -27 11 -42 14v157c0 23 19 43 42 43zM43 256c130 0 234 -105 234 -235h-42c0 106 -86 192 -192 192v43zM43 85c35 0 64 -29 64 -64h-64v64zM43 171
+c83 0 149 -67 149 -150h-43c0 59 -47 107 -106 107v43z" />
+ <glyph glyph-name="terrain" unicode="terrain"
+d="M299 384l192 -256h-470l128 171l96 -128l34 25l-60 81z" />
+ <glyph glyph-name="text_fields" unicode="text_fields"
+d="M459 320v-64h-64v-149h-64v149h-64v64h192zM53 427h278v-64h-107v-256h-64v256h-107v64z" />
+ <glyph glyph-name="text_format" unicode="text_format"
+d="M256 384l-40 -107h80zM203 239l-20 -47h-44l101 235h32l101 -235h-44l-20 47h-106zM107 149h298v-42h-298v42z" />
+ <glyph glyph-name="textsms" unicode="textsms"
+d="M363 277v43h-43v-43h43zM277 277v43h-42v-43h42zM192 277v43h-43v-43h43zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="texture" unicode="texture"
+d="M198 64l250 250v-61l-189 -189h-61zM448 107c0 -22.9739 -20.0355 -43 -43 -43h-42l85 85v-42zM107 448h42l-85 -85v42c0 23 20 43 43 43zM253 448h61l-250 -250v61zM416 446c15 -4 27 -15 31 -30l-351 -350c-14.6749 4.19283 -25.8059 15.3206 -30 30z" />
+ <glyph glyph-name="theaters" unicode="theaters"
+d="M384 320v43h-43v-43h43zM384 235v42h-43v-42h43zM384 149v43h-43v-43h43zM171 320v43h-43v-43h43zM171 235v42h-43v-42h43zM171 149v43h-43v-43h43zM384 448h43v-384h-43v43h-43v-43h-170v43h-43v-43h-43v384h43v-43h43v43h170v-43h43v43z" />
+ <glyph glyph-name="thumb_down" unicode="thumb_down"
+d="M405 448h86v-256h-86v256zM320 448c23 0 43 -20 43 -43v-213c0 -12 -5 -22 -13 -30l-140 -141l-23 23c-6 6 -9 13 -9 22v7l21 98h-135c-23 0 -43 19 -43 42l1 2h-1v41c0 6 1 11 3 16l65 150c6 15 21 26 39 26h192z" />
+ <glyph glyph-name="thumb_up" unicode="thumb_up"
+d="M491 299l-1 -2h1v-41c0 -6 -1 -11 -3 -16l-65 -150c-6 -15 -21 -26 -39 -26h-192c-23 0 -43 20 -43 43v213c0 12 5 22 13 30l140 141l23 -23c6 -6 9 -13 9 -22v-7l-21 -98h135c23 0 43 -19 43 -42zM21 64v256h86v-256h-86z" />
+ <glyph glyph-name="thumbs_up_down" unicode="thumbs_up_down"
+d="M480 299c18 0 32 -14 32 -32v-139c0 -9 -3 -17 -9 -23l-106 -105l-17 17c-4 4 -7 10 -7 17c4.95149 24.3818 10.0081 48.6586 15 73h-111c-12 0 -21 9 -21 21v27c0 4 1 7 2 11l49 113c5 11 16 20 29 20h144zM256 384v-27c0 -4 -1 -7 -2 -11l-49 -113
+c-5 -11 -16 -20 -29 -20h-144c-18 0 -32 14 -32 32v139c0 9 3 17 9 23l106 105l17 -17c4 -4 7 -10 7 -17c-4.95149 -24.3818 -10.0081 -48.6586 -15 -73h111c12 0 21 -9 21 -21z" />
+ <glyph glyph-name="time_to_leave" unicode="time_to_leave"
+d="M107 299h298l-32 96h-234zM373 192c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM139 192c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM404 405l44 -128v-170c0 -12 -9 -22 -21 -22h-22c-12 0 -21 10 -21 22v21h-256v-21
+c0 -12 -9 -22 -21 -22h-22c-12 0 -21 10 -21 22v170l44 128c4 13 17 22 31 22h234c14 0 27 -9 31 -22z" />
+ <glyph glyph-name="timelapse" unicode="timelapse"
+d="M256 85c94 0 171 77 171 171s-77 171 -171 171s-171 -77 -171 -171s77 -171 171 -171zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213zM346 346c50 -50 51 -130 1 -180s-131 -50 -181 0l90 90v128c33 0 65 -13 90 -38z" />
+ <glyph glyph-name="timeline" unicode="timeline"
+d="M491 341c0 -23 -20 -42 -43 -42c-4 0 -8 0 -11 1l-76 -76c1 -3 2 -7 2 -11c0 -23 -20 -42 -43 -42s-43 19 -43 42c0 4 1 8 2 11l-55 55c-3 -1 -7 -2 -11 -2s-8 1 -11 2l-97 -97c1 -3 2 -7 2 -11c0 -23 -20 -43 -43 -43s-43 20 -43 43s20 42 43 42c4 0 8 0 11 -1l97 97
+c-1 3 -1 7 -1 11c0 23 19 43 42 43s43 -20 43 -43c0 -4 0 -8 -1 -11l54 -54c3 1 7 1 11 1s8 0 11 -1l76 75c-1 3 -2 7 -2 11c0 23 20 43 43 43s43 -20 43 -43z" />
+ <glyph glyph-name="timer" unicode="timer"
+d="M256 85c83 0 149 67 149 150s-66 149 -149 149s-149 -66 -149 -149s66 -150 149 -150zM406 354c26 -33 42 -74 42 -119c0 -106 -86 -192 -192 -192s-192 86 -192 192s86 192 192 192c45 0 87 -17 120 -43l30 31c11 -9 21 -19 30 -30zM235 213v128h42v-128h-42zM320 491
+v-43h-128v43h128z" />
+ <glyph glyph-name="timer_10" unicode="timer_&#x31;&#x30;"
+d="M275 230v54c0 23.1679 -2.28229 40.1372 -10 53c-5.32529 10.6506 -15.2041 15 -30 15c-6 0 -13 -1 -18 -3c-19.376 -11.6256 -23 -33.9937 -23 -66v-53c0 -13 0 -24 2 -33s6 -15 9 -21c5.59145 -11.1829 14.1701 -16 30 -16c15.4236 0 24.6161 5.23229 30 16
+c3 6 6 12 8 21s2 20 2 33zM152 277c0 64.1175 20.6864 109 83 109c25.9331 0 47.8484 -8.37646 60 -24c15.2136 -19.5604 22 -48.5586 22 -85v-41c0 -63.9076 -19.6435 -110 -82 -110c-62.0914 0 -83 46.0788 -83 110v41zM436 289c-16.3185 0 -30 -6.67853 -30 -23
+c0 -14.5467 7.81248 -15.525 19 -20c5 -2 12 -4 19 -5c11 -2 19 -5 28 -8s16 -8 22 -12s10 -10 13 -16s5 -12 5 -21c0 -30.9206 -20.0931 -44.031 -44 -52c-9 -3 -19 -4 -30 -4c-35.9519 0 -63.4589 14.4041 -74 39c-3 7 -5 14 -5 22h41c0 -21.2888 17.0766 -30 38 -30
+c18.6968 0 33 5.89308 33 23c0 13.5739 -8.51234 16.8049 -19 21c-12.7341 5.09362 -34.9088 9.09079 -48 14c-8 3 -14 7 -20 11c-11.0546 7.36974 -19 18.5758 -19 36c0 27.5628 20.3776 44.7925 42 52c9 3 18 4 29 4c40.9316 0 75 -19.1355 75 -59h-42
+c0 12.2774 -7.84356 22.4609 -18 25c-4 1 -10 3 -15 3zM0 347l101 37h6v-256h-43v205l-64 -22v36z" />
+ <glyph glyph-name="timer_3" unicode="timer_&#x33;"
+d="M374 289c-15.9409 0 -31 -7.57315 -31 -23c0 -13.6828 9.30955 -15.7238 20 -20c5 -2 11 -4 18 -5c11 -2 20 -5 29 -8s16 -8 22 -12s10 -10 13 -16s5 -12 5 -21c0 -30.9206 -20.0931 -44.031 -44 -52c-9 -3 -20 -4 -31 -4c-35.3954 0 -62.613 14.7638 -73 39
+c-3 7 -5 14 -5 22h40c0 -20.4241 18.5387 -30 39 -30c18.6968 0 33 5.89308 33 23c0 13.5739 -8.51234 16.8049 -19 21c-5 2 -13 4 -21 6c-18.808 3.76159 -34.9505 10.3003 -48 19c-10.5283 7.01889 -18 19.4522 -18 36c0 27.5628 20.3776 44.7925 42 52c9 3 18 4 29 4
+c40.9316 0 75 -19.1355 75 -59h-42c0 13.019 -8.2055 22.3014 -19 25c-4 1 -9 3 -14 3zM215 259c24.7243 -9.2716 42 -25.484 42 -58c0 -25.5996 -8.85495 -43.6412 -24 -55c-14.0356 -12.0305 -34.4533 -20 -60 -20c-46.8771 0 -84 25.2474 -84 72h43
+c0 -11.5043 4.1483 -22.8612 11 -28c7.35188 -5.51391 17.5339 -10 30 -10c27.0755 0 42 14.0756 42 41c0 28.626 -17.0664 41 -46 41h-26v33h25c20.5078 0 35.1083 8.27068 41 23c2 5 2 10 2 16c0 24.8875 -12.4571 38 -38 38c-18.723 0 -29.7305 -7.46097 -36 -20
+c-2 -4 -3 -9 -3 -15h-42c0 34.3341 22.95 53.98 48 64c10 3 21 5 33 5c48.7123 0 80 -23.4793 80 -72c0 -28.4847 -18.378 -45.189 -38 -55z" />
+ <glyph glyph-name="timer_off" unicode="timer_off"
+d="M256 85c27 0 53 8 75 21l-204 204c-13 -22 -20 -48 -20 -75c0 -83 66 -150 149 -150zM64 427l379 -379l-27 -27l-54 54c-31 -20 -67 -32 -106 -32c-106 0 -192 86 -192 192c0 39 12 76 32 106l-59 59zM235 311v30h42v-73zM320 491v-43h-128v43h128zM406 415l30 -30
+l-30 -31c26 -33 42 -74 42 -119c0 -39 -12 -76 -32 -106l-31 31c13 22 20 48 20 75c0 83 -66 149 -149 149c-27 0 -52 -7 -74 -20l-32 31c30 20 67 32 106 32c45 0 87 -16 120 -42z" />
+ <glyph glyph-name="title" unicode="title"
+d="M107 427h298v-64h-117v-256h-64v256h-117v64z" />
+ <glyph glyph-name="toc" unicode="toc"
+d="M405 235v42h43v-42h-43zM405 363h43v-43h-43v43zM405 149v43h43v-43h-43zM64 149v43h299v-43h-299zM64 235v42h299v-42h-299zM64 320v43h299v-43h-299z" />
+ <glyph glyph-name="today" unicode="today"
+d="M149 299h107v-107h-107v107zM405 107v234h-298v-234h298zM405 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v298c0 23 19 43 43 43h21v43h43v-43h170v43h43v-43h21z" />
+ <glyph glyph-name="toll" unicode="toll"
+d="M64 256c0 -56 35 -104 85 -121v-44c-74 19 -128 85 -128 165s54 146 128 165v-44c-50 -17 -85 -65 -85 -121zM320 128c71 0 128 57 128 128s-57 128 -128 128s-128 -57 -128 -128s57 -128 128 -128zM320 427c94 0 171 -77 171 -171s-77 -171 -171 -171s-171 77 -171 171
+s77 171 171 171z" />
+ <glyph glyph-name="tonality" unicode="tonality"
+d="M421 213c2 7 3 15 4 22h-148v-22h144zM389 149c5 7 11 15 15 22h-127v-22h112zM277 87c22 3 43 10 62 20h-62v-20zM277 299v-22h148c-1 7 -2 15 -4 22h-144zM277 363v-22h127c-4 7 -10 15 -15 22h-112zM277 425v-20h62c-19 10 -40 17 -62 20zM235 87v338
+c-84 -10 -150 -82 -150 -169s66 -159 150 -169zM256 469c118 0 213 -95 213 -213s-95 -213 -213 -213s-213 95 -213 213s95 213 213 213z" />
+ <glyph glyph-name="touch_app" unicode="touch_app"
+d="M402 173c11 -5 19 -16 19 -29v-4l-16 -113c-2 -16 -15 -27 -31 -27h-145c-9 0 -16 3 -22 9l-106 106l17 17c4 4 10 7 17 7c2 0 3 -1 5 -1l73 -15v229c0 18 14 32 32 32s32 -14 32 -32v-128h17c4 0 7 -1 11 -2zM192 272c-26 17 -43 47 -43 80c0 53 43 96 96 96
+s96 -43 96 -96c0 -33 -16 -63 -42 -80v80c0 29 -25 53 -54 53s-53 -24 -53 -53v-80z" />
+ <glyph glyph-name="toys" unicode="toys"
+d="M256 256c0 -64 -53 -117 -117 -117s-118 53 -118 117h235zM256 256c-64 0 -117 53 -117 117s53 118 117 118v-235zM256 256c64 0 117 -53 117 -117s-53 -118 -117 -118v235zM256 256c0 64 53 117 117 117s118 -53 118 -117h-235z" />
+ <glyph glyph-name="track_changes" unicode="track_changes"
+d="M407 407c39 -39 62 -92 62 -151c0 -118 -95 -213 -213 -213s-213 95 -213 213s95 213 213 213h21v-176c13 -7 22 -21 22 -37c0 -23 -20 -43 -43 -43s-43 20 -43 43c0 16 9 30 22 37v45c-37 -10 -64 -42 -64 -82c0 -47 38 -85 85 -85s85 38 85 85c0 23 -10 44 -25 60
+l30 30c23 -23 38 -55 38 -90c0 -71 -57 -128 -128 -128s-128 57 -128 128c0 63 46 116 107 126v43c-84 -10 -150 -82 -150 -169c0 -94 77 -171 171 -171s171 77 171 171c0 47 -19 90 -50 121z" />
+ <glyph glyph-name="traffic" unicode="traffic"
+d="M256 320c24 0 43 20 43 43c0 24 -20 42 -43 42c-24 0 -43 -18 -43 -42c0 -23 19 -43 43 -43zM256 213c24 0 43 20 43 43s-20 43 -43 43c-24 0 -43 -20 -43 -43s19 -43 43 -43zM256 107c24 0 43 19 43 42s-20 43 -43 43c-24 0 -43 -20 -43 -43s19 -42 43 -42zM427 299
+c0 -40 -27 -73 -64 -83v-24h64c0 -40 -27 -72 -64 -82v-25c0 -12 -10 -21 -22 -21h-170c-12 0 -22 9 -22 21v25c-37 10 -64 42 -64 82h64v24c-37 10 -64 43 -64 83h64v24c-37 10 -64 42 -64 82h64v22c0 12 10 21 22 21h170c12 0 22 -9 22 -21v-22h64c0 -40 -27 -72 -64 -82
+v-24h64z" />
+ <glyph glyph-name="train" unicode="train"
+d="M352 149c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM277 299h107v85h-107v-85zM235 299v85h-107v-85h107zM160 149c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM256 469c94 0 171 -10 171 -85v-203c0 -41 -34 -74 -75 -74
+l32 -32v-11h-43l-42 43h-81l-42 -43h-48v11l32 32c-41 0 -75 33 -75 74v203c0 75 86 85 171 85z" />
+ <glyph glyph-name="tram" unicode="tram"
+d="M363 213v107h-214v-107h214zM256 117c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM405 151c0 -36 -19 -66 -55 -66h2l32 -32v-10h-43l-42 42h-81l-42 -42h-48v10l34 34c-30 7 -55 33 -55 64v180c0 59 60 72 127 74l17 32h-102v32h214v-32h-70
+l-16 -32c73 -2 128 -14 128 -74v-180z" />
+ <glyph glyph-name="transfer_within_a_station" unicode="transfer_within_a_station"
+d="M123 322l-59 -301h45l37 171l46 -43v-128h43v161l-44 44l13 64c28 -34 69 -55 116 -55v42c-39 0 -74 22 -93 53l-20 34c-7 13 -21 20 -36 20c-5 0 -11 -1 -16 -3l-112 -46v-100h42v71l38 16zM203 395c-23 0 -43 19 -43 42s20 43 43 43s42 -20 42 -43s-19 -42 -42 -42z
+M416 91v37l53 -53l-53 -54v38h-117v32h117zM352 181h117v-32h-117v-37l-53 53l53 54v-38z" />
+ <glyph glyph-name="transform" unicode="transform"
+d="M213 341v43h128c23 0 43 -20 43 -43v-128h-43v128h-128zM469 128h-85v-43h43l-64 -64l-64 64h42v43h-170c-23 0 -43 20 -43 43v170h-85v43h85v43h-43l64 64l64 -64h-42v-256h298v-43z" />
+ <glyph glyph-name="translate" unicode="translate"
+d="M339 149h69l-35 93zM395 299l96 -256h-43l-24 64h-101l-24 -64h-43l96 256h43zM275 191l-17 -44l-66 66l-107 -106l-30 30l109 107c-27 30 -48 62 -64 97h43c13 -25 29 -49 49 -71c31 34 54 73 68 114h-239v43h150v42h42v-42h150v-43h-63c-16 -50 -42 -98 -79 -139l-1 -1
+z" />
+ <glyph glyph-name="trending_down" unicode="trending_down"
+d="M341 128l49 49l-104 104l-85 -85l-158 158l30 30l128 -128l85 85l134 -134l49 49v-128h-128z" />
+ <glyph glyph-name="trending_flat" unicode="trending_flat"
+d="M469 256l-85 -85v64h-320v42h320v64z" />
+ <glyph glyph-name="trending_up" unicode="trending_up"
+d="M341 384h128v-128l-49 49l-134 -134l-85 85l-128 -128l-30 30l158 158l85 -85l104 104z" />
+ <glyph glyph-name="tune" unicode="tune"
+d="M320 320v128h43v-43h85v-42h-85v-43h-43zM448 235h-213v42h213v-42zM149 320h43v-128h-43v43h-85v42h85v43zM277 64h-42v128h42v-43h171v-42h-171v-43zM64 405h213v-42h-213v42zM64 149h128v-42h-128v42z" />
+ <glyph glyph-name="turned_in" unicode="turned_in"
+d="M363 448c23 0 42 -20 42 -43v-341l-149 64l-149 -64v341c0 23 19 43 42 43h214z" />
+ <glyph glyph-name="turned_in_not" unicode="turned_in_not"
+d="M363 128v277h-214v-277l107 47zM363 448c23 0 42 -20 42 -43v-341l-149 64l-149 -64v341c0 23 19 43 42 43h214z" />
+ <glyph glyph-name="tv" unicode="tv"
+d="M448 149v256h-384v-256h384zM448 448c23 0 43 -20 43 -43l-1 -256c0 -23 -19 -42 -42 -42h-107v-43h-170v43h-107c-23 0 -43 19 -43 42v256c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="unarchive" unicode="unarchive"
+d="M109 405h294l-20 22h-256zM256 309l-117 -117h74v-43h86v43h74zM438 401c6 -7 10 -18 10 -28v-266c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v266c0 10 4 21 10 28l29 35c6 7 15 12 25 12h256c10 0 19 -5 25 -12z" />
+ <glyph glyph-name="undo" unicode="undo"
+d="M267 341c99 0 182 -65 212 -154l-50 -16c-22 68 -86 117 -162 117c-42 0 -80 -15 -110 -40l78 -77h-192v192l76 -77c39 34 91 55 148 55z" />
+ <glyph glyph-name="unfold_less" unicode="unfold_less"
+d="M354 397l-98 -98l-98 98l30 30l68 -68l68 68zM158 115l98 98l98 -98l-30 -30l-68 68l-68 -68z" />
+ <glyph glyph-name="unfold_more" unicode="unfold_more"
+d="M256 124l68 68l30 -30l-98 -98l-98 98l30 30zM256 388l-68 -68l-30 30l98 98l98 -98l-30 -30z" />
+ <glyph glyph-name="update" unicode="update"
+d="M267 341v-90l74 -45l-15 -26l-91 55v106h32zM448 296h-145l59 60c-58 58 -153 60 -211 2s-58 -150 0 -208s153 -58 211 0c29 29 43 62 43 104h43c0 -42 -18 -97 -56 -134c-75 -74 -197 -74 -272 0s-75 194 0 268s195 74 270 0l58 60v-152z" />
+ <glyph glyph-name="usb" unicode="usb"
+d="M320 363h85v-86h-21v-42c0 -24 -19 -43 -43 -43h-64v-65c15 -8 26 -24 26 -42c0 -26 -21 -47 -47 -47s-47 21 -47 47c0 18 11 34 26 42v65h-64c-24 0 -43 19 -43 43v44c-15 8 -26 23 -26 41c0 26 21 47 47 47s47 -21 47 -47c0 -18 -10 -33 -25 -41v-44h64v170h-43l64 86
+l64 -86h-43v-170h64v42h-21v86z" />
+ <glyph glyph-name="verified_user" unicode="verified_user"
+d="M213 149l171 171l-30 30l-141 -140l-55 55l-30 -30zM256 491l192 -86v-128c0 -118 -82 -229 -192 -256c-110 27 -192 138 -192 256v128z" />
+ <glyph glyph-name="vertical_align_bottom" unicode="vertical_align_bottom"
+d="M85 107h342v-43h-342v43zM341 235l-85 -86l-85 86h64v213h42v-213h64z" />
+ <glyph glyph-name="vertical_align_center" unicode="vertical_align_center"
+d="M85 277h342v-42h-342v42zM341 405l-85 -85l-85 85h64v86h42v-86h64zM171 107l85 85l85 -85h-64v-86h-42v86h-64z" />
+ <glyph glyph-name="vertical_align_top" unicode="vertical_align_top"
+d="M85 448h342v-43h-342v43zM171 277l85 86l85 -86h-64v-213h-42v213h-64z" />
+ <glyph glyph-name="vibration" unicode="vibration"
+d="M341 107v298h-170v-298h170zM352 448c18 0 32 -14 32 -32v-320c0 -18 -14 -32 -32 -32h-192c-18 0 -32 14 -32 32v320c0 18 14 32 32 32h192zM405 149v214h43v-214h-43zM469 320h43v-128h-43v128zM64 149v214h43v-214h-43zM0 192v128h43v-128h-43z" />
+ <glyph glyph-name="video_call" unicode="video_call"
+d="M299 235v42h-64v64h-43v-64h-64v-42h64v-64h43v64h64zM363 288l85 85v-234l-85 85v-75c0 -12 -10 -21 -22 -21h-256c-12 0 -21 9 -21 21v214c0 12 9 21 21 21h256c12 0 22 -9 22 -21v-75z" />
+ <glyph glyph-name="video_label" unicode="video_label"
+d="M448 171v234h-384v-234h384zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="video_library" unicode="video_library"
+d="M256 203l128 96l-128 96v-192zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-256c-23 0 -43 20 -43 43v256c0 23 20 42 43 42h256zM85 384v-299h299v-42h-299c-23 0 -42 19 -42 42v299h42z" />
+ <glyph glyph-name="videocam" unicode="videocam"
+d="M363 288l85 85v-234l-85 85v-75c0 -12 -10 -21 -22 -21h-256c-12 0 -21 9 -21 21v214c0 12 9 21 21 21h256c12 0 22 -9 22 -21v-75z" />
+ <glyph glyph-name="videocam_off" unicode="videocam_off"
+d="M70 469l378 -378l-27 -27l-68 68c-3 -2 -8 -4 -12 -4h-256c-12 0 -21 9 -21 21v214c0 12 9 21 21 21h16l-58 58zM448 373v-228l-239 239h132c12 0 22 -9 22 -21v-75z" />
+ <glyph glyph-name="videogame_asset" unicode="videogame_asset"
+d="M416 256c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM331 192c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM235 235v42h-64v64h-43v-64h-64v-42h64v-64h43v64h64zM448 384c23 0 43 -20 43 -43v-170c0 -23 -20 -43 -43 -43h-384
+c-23 0 -43 20 -43 43v170c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="view_agenda" unicode="view_agenda"
+d="M427 448c12 0 21 -9 21 -21v-128c0 -12 -9 -22 -21 -22h-363c-12 0 -21 10 -21 22v128c0 12 9 21 21 21h363zM427 235c12 0 21 -10 21 -22v-128c0 -12 -9 -21 -21 -21h-363c-12 0 -21 9 -21 21v128c0 12 9 22 21 22h363z" />
+ <glyph glyph-name="view_array" unicode="view_array"
+d="M171 128v277h192v-277h-192zM384 405h64v-277h-64v277zM85 128v277h64v-277h-64z" />
+ <glyph glyph-name="view_carousel" unicode="view_carousel"
+d="M384 384h85v-235h-85v235zM43 149v235h85v-235h-85zM149 107v320h214v-320h-214z" />
+ <glyph glyph-name="view_column" unicode="view_column"
+d="M341 405h107v-277h-107v277zM85 128v277h107v-277h-107zM213 128v277h107v-277h-107z" />
+ <glyph glyph-name="view_comfy" unicode="view_comfy"
+d="M384 405h85v-85h-85v85zM384 107v85h85v-85h-85zM277 107v85h86v-85h-86zM171 107v85h85v-85h-85zM64 107v85h85v-85h-85zM384 213v86h85v-86h-85zM277 405h86v-85h-86v85zM171 320v85h85v-85h-85zM277 213v86h86v-86h-86zM171 213v86h85v-86h-85zM64 213v86h85v-86h-85z
+M64 320v85h85v-85h-85z" />
+ <glyph glyph-name="view_compact" unicode="view_compact"
+d="M64 405h405v-128h-405v128zM213 107v149h256v-149h-256zM64 107v149h128v-149h-128z" />
+ <glyph glyph-name="view_day" unicode="view_day"
+d="M43 448h405v-64h-405v64zM427 341c12 0 21 -9 21 -21v-128c0 -12 -9 -21 -21 -21h-363c-12 0 -21 9 -21 21v128c0 12 9 21 21 21h363zM43 64v64h405v-64h-405z" />
+ <glyph glyph-name="view_headline" unicode="view_headline"
+d="M85 405h342v-42h-342v42zM85 277v43h342v-43h-342zM85 107v42h342v-42h-342zM85 192v43h342v-43h-342z" />
+ <glyph glyph-name="view_list" unicode="view_list"
+d="M192 405h256v-85h-256v85zM192 107v85h256v-85h-256zM192 213v86h256v-86h-256zM85 320v85h86v-85h-86zM85 107v85h86v-85h-86zM85 213v86h86v-86h-86z" />
+ <glyph glyph-name="view_module" unicode="view_module"
+d="M341 405h107v-128h-107v128zM213 277v128h107v-128h-107zM341 128v128h107v-128h-107zM213 128v128h107v-128h-107zM85 128v128h107v-128h-107zM85 277v128h107v-128h-107z" />
+ <glyph glyph-name="view_quilt" unicode="view_quilt"
+d="M213 405h235v-128h-235v128zM341 128v128h107v-128h-107zM85 128v277h107v-277h-107zM213 128v128h107v-128h-107z" />
+ <glyph glyph-name="view_stream" unicode="view_stream"
+d="M85 405h363v-128h-363v128zM85 128v128h363v-128h-363z" />
+ <glyph glyph-name="view_week" unicode="view_week"
+d="M277 405c12 0 22 -9 22 -21v-256c0 -12 -10 -21 -22 -21h-64c-12 0 -21 9 -21 21v256c0 12 9 21 21 21h64zM427 405c12 0 21 -9 21 -21v-256c0 -12 -9 -21 -21 -21h-64c-12 0 -22 9 -22 21v256c0 12 10 21 22 21h64zM128 405c12 0 21 -9 21 -21v-256
+c0 -12 -9 -21 -21 -21h-64c-12 0 -21 9 -21 21v256c0 12 9 21 21 21h64z" />
+ <glyph glyph-name="vignette" unicode="vignette"
+d="M256 128c94 0 171 57 171 128s-77 128 -171 128s-171 -57 -171 -128s77 -128 171 -128zM448 448c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-384c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h384z" />
+ <glyph glyph-name="visibility" unicode="visibility"
+d="M256 320c35 0 64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64s29 64 64 64zM256 149c59 0 107 48 107 107s-48 107 -107 107s-107 -48 -107 -107s48 -107 107 -107zM256 416c107 0 198 -66 235 -160c-37 -94 -128 -160 -235 -160s-198 66 -235 160c37 94 128 160 235 160z
+" />
+ <glyph glyph-name="visibility_off" unicode="visibility_off"
+d="M253 320h3c35 0 64 -29 64 -64v-4zM161 303c-7 -14 -12 -30 -12 -47c0 -59 48 -107 107 -107c17 0 33 5 47 12l-33 33c-4 -1 -9 -2 -14 -2c-35 0 -64 29 -64 64c0 5 1 10 2 14zM43 421l27 27l378 -378l-27 -27c-23.9841 23.6825 -48.1328 47.2006 -72 71
+c-29 -12 -60 -18 -93 -18c-107 0 -198 66 -235 160c17 42 45 78 80 106c-19.5086 19.4914 -38.6537 39.3463 -58 59zM256 363c-14 0 -27 -3 -39 -8l-46 46c26 10 55 15 85 15c107 0 197 -66 234 -160c-16 -40 -41 -74 -73 -101l-62 62c5 12 8 25 8 39c0 59 -48 107 -107 107
+z" />
+ <glyph glyph-name="voice_chat" unicode="voice_chat"
+d="M384 213v171l-85 -68v68h-171v-171h171v69zM427 469c23 0 42 -19 42 -42v-256c0 -23 -19 -43 -42 -43h-299l-85 -85v384c0 23 19 42 42 42h342z" />
+ <glyph glyph-name="voicemail" unicode="voicemail"
+d="M395 192c41 0 74 34 74 75s-33 74 -74 74s-75 -33 -75 -74s34 -75 75 -75zM117 192c41 0 75 34 75 75s-34 74 -75 74s-74 -33 -74 -74s33 -75 74 -75zM395 384c65 0 117 -52 117 -117s-52 -118 -117 -118h-278c-65 0 -117 53 -117 118s52 117 117 117s118 -52 118 -117
+c0 -28 -10 -55 -27 -75h96c-17 20 -27 47 -27 75c0 65 53 117 118 117z" />
+ <glyph glyph-name="volume_down" unicode="volume_down"
+d="M107 320h85l107 107v-342l-107 107h-85v128zM395 256c0 -38 -22 -70 -54 -86v172c32 -16 54 -48 54 -86z" />
+ <glyph glyph-name="volume_mute" unicode="volume_mute"
+d="M149 320h86l106 107v-342l-106 107h-86v128z" />
+ <glyph glyph-name="volume_off" unicode="volume_off"
+d="M256 427v-90l-45 45zM91 448l357 -357l-27 -27l-44 44c-23 -18 -49 -32 -78 -39v44c18 5 34 14 48 25l-91 91v-144l-107 107h-85v128h101l-101 101zM405 256c0 68 -44 125 -106 143v44c86 -19 149 -96 149 -187c0 -32 -8 -63 -22 -89l-32 33c7 17 11 36 11 56zM352 256
+c0 -5 0 -9 -1 -13l-52 52v47c32 -16 53 -48 53 -86z" />
+ <glyph glyph-name="volume_up" unicode="volume_up"
+d="M299 443c86 -19 149 -96 149 -187s-63 -168 -149 -187v44c62 18 106 75 106 143s-44 125 -106 143v44zM352 256c0 -38 -21 -70 -53 -86v172c32 -16 53 -48 53 -86zM64 320h85l107 107v-342l-107 107h-85v128z" />
+ <glyph glyph-name="vpn_key" unicode="vpn_key"
+d="M149 213c23 0 43 20 43 43s-20 43 -43 43s-42 -20 -42 -43s19 -43 42 -43zM270 299h221v-86h-43v-85h-85v85h-93c-17 -50 -65 -85 -121 -85c-71 0 -128 57 -128 128s57 128 128 128c56 0 104 -35 121 -85z" />
+ <glyph glyph-name="vpn_lock" unicode="vpn_lock"
+d="M213 65v42c-23 0 -42 19 -42 42v22l-103 102c-3 -12 -4 -25 -4 -38c0 -87 65 -160 149 -170zM404 256h43c1 -7 1 -14 1 -21c0 -118 -95 -214 -213 -214s-214 96 -214 214s96 213 214 213c22 0 44 -4 64 -10v-54c0 -23 -20 -43 -43 -43h-43v-42c0 -12 -9 -22 -21 -22h-43
+v-42h128c12 0 22 -10 22 -22v-64h21c19 0 35 -12 41 -29c28 30 44 71 44 115c0 7 0 14 -1 21zM452 427v10c0 20 -16 37 -36 37s-36 -17 -36 -37v-10h72zM469 427c12 0 22 -10 22 -22v-85c0 -12 -10 -21 -22 -21h-106c-12 0 -22 9 -22 21v85c0 12 10 22 22 22v10
+c0 29 24 54 53 54s53 -25 53 -54v-10z" />
+ <glyph glyph-name="wallpaper" unicode="wallpaper"
+d="M85 235v-150h150v-42h-150c-23 0 -42 19 -42 42v150h42zM427 85v150h42v-150c0 -23 -19 -42 -42 -42h-150v42h150zM427 469c23 0 42 -19 42 -42v-150h-42v150h-150v42h150zM363 331c0 -18 -14 -32 -32 -32s-32 14 -32 32s14 32 32 32s32 -14 32 -32zM213 235l64 -79
+l43 57l64 -85h-256zM85 427v-150h-42v150c0 23 19 42 42 42h150v-42h-150z" />
+ <glyph glyph-name="warning" unicode="warning"
+d="M277 213v86h-42v-86h42zM277 128v43h-42v-43h42zM21 64l235 405l235 -405h-470z" />
+ <glyph glyph-name="watch" unicode="watch"
+d="M128 256c0 -71 57 -128 128 -128s128 57 128 128s-57 128 -128 128s-128 -57 -128 -128zM427 256c0 -54 -26 -103 -65 -134l-21 -122h-170l-21 122c-40 31 -65 80 -65 134s25 103 65 134l21 122h170l21 -122c39 -31 65 -80 65 -134z" />
+ <glyph glyph-name="watch_later" unicode="watch_later"
+d="M346 166l17 28l-96 58v111h-32v-128zM256 469c117 0 213 -96 213 -213s-96 -213 -213 -213s-213 96 -213 213s96 213 213 213z" />
+ <glyph glyph-name="wb_auto" unicode="wb_auto"
+d="M220 171h40l-68 192h-43l-68 -192h41l15 42h68zM469 363h39l-44 -192h-37l-32 130l-32 -130h-38l-2 9c-28 -56 -85 -95 -152 -95c-94 0 -171 77 -171 171s77 171 171 171c54 0 102 -25 133 -64h16l26 -135l32 135h34l32 -135zM146 242l25 78l24 -78h-49z" />
+ <glyph glyph-name="wb_cloudy" unicode="wb_cloudy"
+d="M413 298c55 -4 99 -50 99 -106c0 -59 -48 -107 -107 -107h-277c-71 0 -128 57 -128 128c0 66 50 120 114 127c27 51 80 87 142 87c78 0 142 -55 157 -129z" />
+ <glyph glyph-name="wb_incandescent" unicode="wb_incandescent"
+d="M368 125l30 29l38 -38l-30 -30zM427 288h64v-43h-64v43zM320 377c38 -22 64 -63 64 -110c0 -71 -57 -128 -128 -128s-128 57 -128 128c0 47 26 88 64 110v103h128v-103zM85 288v-43h-64v43h64zM235 33v63h42v-63h-42zM76 116l38 39l30 -30l-38 -39z" />
+ <glyph glyph-name="wb_iridescent" unicode="wb_iridescent"
+d="M106 86l-30 31l38 38l30 -30zM76 417l30 30l38 -38l-30 -30zM436 116l-30 -30l-38 39l30 30zM277 33h-42v63h42v-63zM406 447l30 -30l-38 -38l-30 30zM235 500h42v-63h-42v63zM107 203v128h298v-128h-298z" />
+ <glyph glyph-name="wb_sunny" unicode="wb_sunny"
+d="M76 116l38 39l30 -30l-38 -39zM235 33v63h42v-63h-42zM256 395c71 0 128 -57 128 -128s-57 -128 -128 -128s-128 57 -128 128s57 128 128 128zM427 288h64v-43h-64v43zM368 125l30 29l38 -38l-30 -30zM436 417l-38 -38l-30 30l38 38zM277 500v-63h-42v63h42zM85 288v-43
+h-64v43h64zM144 409l-30 -30l-38 38l30 30z" />
+ <glyph glyph-name="wc" unicode="wc"
+d="M352 384c-24 0 -43 19 -43 43s19 42 43 42s43 -18 43 -42s-19 -43 -43 -43zM160 384c-24 0 -43 19 -43 43s19 42 43 42s43 -18 43 -42s-19 -43 -43 -43zM384 43h-64v128h-64l54 162c6 17 23 30 41 30h2c18 0 35 -13 41 -30l54 -162h-64v-128zM117 43v160h-32v117
+c0 23 20 43 43 43h64c23 0 43 -20 43 -43v-117h-32v-160h-86z" />
+ <glyph glyph-name="web" unicode="web"
+d="M427 128v192h-86v-192h86zM320 235v85h-235v-85h235zM320 128v85h-235v-85h235zM427 427c23 0 42 -20 42 -43v-256c0 -23 -19 -43 -42 -43h-342c-23 0 -42 20 -42 43v256c0 23 19 43 42 43h342z" />
+ <glyph glyph-name="web_asset" unicode="web_asset"
+d="M405 128v213h-298v-213h298zM405 427c24 0 43 -20 43 -43v-256c0 -23 -20 -43 -43 -43h-298c-24 0 -43 20 -43 43v256c0 23 19 43 43 43h298z" />
+ <glyph glyph-name="weekend" unicode="weekend"
+d="M384 405c23 0 43 -19 43 -42v-46c-25 -9 -43 -32 -43 -60v-44h-256v44c0 28 -18 51 -43 60v46c0 23 20 42 43 42h256zM448 299c23 0 43 -20 43 -43v-107c0 -23 -20 -42 -43 -42h-384c-23 0 -43 19 -43 42v107c0 23 20 43 43 43s43 -20 43 -43v-64h298v64
+c0 23 20 43 43 43z" />
+ <glyph glyph-name="whatshot" unicode="whatshot"
+d="M250 107c57 0 102 45 102 102c0 30 -4 58 -12 86c-22 -29 -61 -47 -99 -55s-60 -31 -60 -66c0 -37 31 -67 69 -67zM288 498c83 -67 139 -170 139 -285c0 -94 -77 -170 -171 -170s-171 76 -171 170c0 72 26 139 69 190v-8c0 -44 33 -79 77 -79s73 35 73 79
+c0 46 -16 103 -16 103z" />
+ <glyph glyph-name="widgets" unicode="widgets"
+d="M355 476l121 -121l-121 -120h93v-171h-171v171h78l-120 120v-78h-171v171h171v-93zM64 64v171h171v-171h-171z" />
+ <glyph glyph-name="wifi" unicode="wifi"
+d="M107 235c83 82 216 82 298 0l-42 -43c-59 59 -155 59 -214 0zM192 149c35 35 93 35 128 0l-64 -64zM21 320c130 129 341 129 470 0l-43 -43c-106 106 -278 106 -384 0z" />
+ <glyph glyph-name="wifi_lock" unicode="wifi_lock"
+d="M469 171v32c0 18 -14 32 -32 32s-32 -14 -32 -32v-32h64zM491 171c12 0 21 -10 21 -22v-85c0 -12 -9 -21 -21 -21h-107c-12 0 -21 9 -21 21v85c0 12 9 22 21 22v32c0 29 24 53 53 53s54 -24 54 -53v-32zM437 309c-59 0 -106 -47 -106 -106v-61l-75 -99l-256 341
+c71 54 160 85 256 85s185 -31 256 -85l-57 -76c-6 1 -12 1 -18 1z" />
+ <glyph glyph-name="wifi_tethering" unicode="wifi_tethering"
+d="M256 448c118 0 213 -95 213 -213c0 -79 -42 -148 -106 -185l-22 37c51 30 86 85 86 148c0 94 -77 170 -171 170s-171 -76 -171 -170c0 -63 34 -118 85 -148l-21 -37c-64 37 -106 106 -106 185c0 118 95 213 213 213zM384 235c0 -47 -26 -89 -64 -111l-21 37
+c25 15 42 42 42 74c0 47 -38 85 -85 85s-85 -38 -85 -85c0 -32 17 -59 42 -74l-21 -37c-38 22 -64 64 -64 111c0 71 57 128 128 128s128 -57 128 -128zM256 277c23 0 43 -19 43 -42s-20 -43 -43 -43s-43 20 -43 43s20 42 43 42z" />
+ <glyph glyph-name="work" unicode="work"
+d="M299 384v43h-86v-43h86zM427 384c24 0 42 -19 42 -43v-234c0 -24 -18 -43 -42 -43h-342c-24 0 -42 19 -42 43v234c0 24 18 43 42 43h86v43c0 24 18 42 42 42h86c24 0 42 -18 42 -42v-43h86z" />
+ <glyph glyph-name="wrap_text" unicode="wrap_text"
+d="M363 277c47 0 85 -38 85 -85s-38 -85 -85 -85h-43v-43l-64 64l64 64v-43h48c23 0 43 20 43 43s-20 43 -43 43h-283v42h278zM427 405v-42h-342v42h342zM85 107v42h128v-42h-128z" />
+ <glyph glyph-name="youtube_searched_for" unicode="youtube_searched_for"
+d="M363 213l106 -106l-31 -32l-107 107v16l-6 6c-24 -21 -56 -33 -90 -33c-26 0 -50 7 -71 19l32 31c12 -5 25 -8 39 -8c53 0 96 43 96 96s-43 96 -96 96s-96 -43 -96 -96h74l-88 -85l-82 85h53c0 75 62 139 139 139s139 -62 139 -139c0 -35 -13 -66 -34 -90l6 -6h17z" />
+ <glyph glyph-name="zoom_in" unicode="zoom_in"
+d="M256 299h-43v-43h-21v43h-43v21h43v43h21v-43h43v-21zM203 213c53 0 96 43 96 96s-43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96zM331 213l106 -106l-32 -32l-106 106v17l-6 6c-24 -21 -56 -33 -90 -33c-77 0 -139 61 -139 138s62 139 139 139s138 -62 138 -139
+c0 -34 -12 -66 -33 -90l6 -6h17z" />
+ <glyph glyph-name="zoom_out" unicode="zoom_out"
+d="M149 320h107v-21h-107v21zM203 213c53 0 96 43 96 96s-43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96zM331 213l106 -106l-32 -32l-106 106v17l-6 6c-24 -21 -56 -33 -90 -33c-77 0 -139 61 -139 138s62 139 139 139s138 -62 138 -139c0 -34 -12 -66 -33 -90l6 -6h17z" />
+ <glyph glyph-name="zoom_out_map" unicode="zoom_out_map"
+d="M448 192v-128h-128l49 49l-62 61l31 31l61 -62zM192 64h-128v128l49 -49l61 62l31 -31l-62 -61zM64 320v128h128l-49 -49l62 -61l-31 -31l-61 62zM320 448h128v-128l-49 49l-61 -62l-31 31l62 61z" />
+ <glyph glyph-name="3" unicode="3"
+d="M0 0z" />
+ <glyph glyph-name="d" unicode="d"
+d="M0 0z" />
+ <glyph glyph-name="_" unicode="_"
+d="M0 0z" />
+ <glyph glyph-name="r" unicode="r"
+d="M0 0z" />
+ <glyph glyph-name="o" unicode="o"
+d="M0 0z" />
+ <glyph glyph-name="t" unicode="t"
+d="M0 0z" />
+ <glyph glyph-name="a" unicode="a"
+d="M0 0z" />
+ <glyph glyph-name="i" unicode="i"
+d="M0 0z" />
+ <glyph glyph-name="n" unicode="n"
+d="M0 0z" />
+ <glyph glyph-name="c" unicode="c"
+d="M0 0z" />
+ <glyph glyph-name="u" unicode="u"
+d="M0 0z" />
+ <glyph glyph-name="e" unicode="e"
+d="M0 0z" />
+ <glyph glyph-name="s" unicode="s"
+d="M0 0z" />
+ <glyph glyph-name="l" unicode="l"
+d="M0 0z" />
+ <glyph glyph-name="m" unicode="m"
+d="M0 0z" />
+ <glyph glyph-name="b" unicode="b"
+d="M0 0z" />
+ <glyph glyph-name="y" unicode="y"
+d="M0 0z" />
+ <glyph glyph-name="w" unicode="w"
+d="M0 0z" />
+ <glyph glyph-name="x" unicode="x"
+d="M0 0z" />
+ <glyph glyph-name="p" unicode="p"
+d="M0 0z" />
+ <glyph glyph-name="h" unicode="h"
+d="M0 0z" />
+ <glyph glyph-name="g" unicode="g"
+d="M0 0z" />
+ <glyph glyph-name="q" unicode="q"
+d="M0 0z" />
+ <glyph glyph-name="j" unicode="j"
+d="M0 0z" />
+ <glyph glyph-name="f" unicode="f"
+d="M0 0z" />
+ <glyph glyph-name="v" unicode="v"
+d="M0 0z" />
+ <glyph glyph-name="k" unicode="k"
+d="M0 0z" />
+ <glyph glyph-name="z" unicode="z"
+d="M0 0z" />
+ <glyph glyph-name="1" unicode="1"
+d="M0 0z" />
+ <glyph glyph-name="2" unicode="2"
+d="M0 0z" />
+ <glyph glyph-name="4" unicode="4"
+d="M0 0z" />
+ <glyph glyph-name="5" unicode="5"
+d="M0 0z" />
+ <glyph glyph-name="6" unicode="6"
+d="M0 0z" />
+ <glyph glyph-name="7" unicode="7"
+d="M0 0z" />
+ <glyph glyph-name="9" unicode="9"
+d="M0 0z" />
+ <glyph glyph-name="8" unicode="8"
+d="M0 0z" />
+ <glyph glyph-name="0" unicode="0"
+d="M0 0z" />
+ </font>
+</defs></svg>
diff --git a/static/fonts/MaterialIcons-Regular.ttf b/static/fonts/MaterialIcons-Regular.ttf
new file mode 100644
index 0000000..7015564
Binary files /dev/null and b/static/fonts/MaterialIcons-Regular.ttf differ
diff --git a/static/fonts/MaterialIcons-Regular.woff b/static/fonts/MaterialIcons-Regular.woff
new file mode 100644
index 0000000..a0bfd17
Binary files /dev/null and b/static/fonts/MaterialIcons-Regular.woff differ
diff --git a/static/fonts/MaterialIcons-Regular.woff2 b/static/fonts/MaterialIcons-Regular.woff2
new file mode 100644
index 0000000..20f1f67
Binary files /dev/null and b/static/fonts/MaterialIcons-Regular.woff2 differ
diff --git a/static/fonts/lora-v10-latin-italic.eot b/static/fonts/lora-v10-latin-italic.eot
new file mode 100644
index 0000000..4aac1ce
Binary files /dev/null and b/static/fonts/lora-v10-latin-italic.eot differ
diff --git a/static/fonts/lora-v10-latin-italic.svg b/static/fonts/lora-v10-latin-italic.svg
new file mode 100644
index 0000000..81e08dc
--- /dev/null
+++ b/static/fonts/lora-v10-latin-italic.svg
@@ -0,0 +1,449 @@
+<?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">
+<defs >
+<font id="Lora" horiz-adv-x="586" ><font-face
+ font-family="Lora"
+ units-per-em="1000"
+ panose-1="0 0 5 0 0 0 0 0 0 0"
+ ascent="960"
+ descent="-271"
+ alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="263" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="272" d="M187 716T200 699T213 657Q213 648 212 643L153 230H116L101 643Q100 672 116 694T161 716Q187 716 200 699ZM153 113T168 96T184 52Q184 24 165 4T121 -16Q98 -16 83 1T67 44Q67 72 86 92T129 113Q153
+113 168 96Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="356" d="M163 716L141 491H79L84 716H163ZM326 716L304 491H242L248 716H326Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="808" d="M661 700L622 529H789V528L774 469H608L556 238H723L707 178H542L502 0H430L472 178H262L222 0H150L192 178H26L42 238H206L260 469H92L108 529H274L315 700H381L342 529H554L595 700H661ZM540
+469H328L275 238H486L540 469Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="529" d="M313 715Q370 707 421 671L420 716H470L458 498H421Q420 580 387 628T272 677Q231 677 202 660T158 615T143 556Q143 517 164 488T217 437T303 387Q362 355 398 330T460 268T485 180Q485 130 462
+87T393 16T281 -16L273 -153H221L227 -16Q193 -14 157 -6T91 19L94 -13H40L51 200H86Q87 110 132 67T260 23Q321 23 360 60T400 155Q400 195 379 224T327 275T242 324Q183 355 148 380T87 442T62 532Q62 568 81 609T144 682T260 716L266 833H320L313 715Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="873" d="M303 716T341 692T397 629T416 544Q416 491 390 443T319 365T222 335Q167 335 129 359T71 423T51 510Q51 561 74 608T143 686T248 716Q303 716 341 692ZM709 716L753 674L153 -16L114 22L709 716ZM206
+679T184 656T150 600T138 537Q137 530 137 514Q137 458 158 416T227 373Q281 373 305 422T330 532Q330 591 309 635T241 679Q206 679 184 656ZM717 365T755 340T812 276T831 190Q831 137 805 90T733 13T637 -16Q582 -16 544 8T486 72T466 159Q466 209 489 256T557
+334T661 365Q717 365 755 340ZM606 327T581 282T553 185Q549 123 569 72T642 21Q696 21 720 70T745 180Q745 239 724 283T656 327Q606 327 581 282Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="683" d="M359 716T398 701T458 660T479 605Q479 585 468 572T436 558Q420 558 408 568T396 594V598Q396 613 404 627Q400 649 374 665T310 681Q247 681 211 638T174 533Q174 483 201 442T298 401Q326
+401 338 402L336 358L298 359Q236 359 198 331T145 264T129 195Q129 142 154 105T219 50T299 31Q409 31 463 91T517 243H484Q454 243 432 237T381 208L361 228Q393 276 429 291T532 307Q581 307 610 314T669 349L691 332Q671 301 657 286T621 259T560 245Q561 184
+536 125T448 25T286 -16Q174 -16 104 32T34 173Q34 223 55 268T120 345T223 385Q85 414 85 522Q85 581 114 625T193 692T307 716Q359 716 398 701Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="199" d="M168 716L146 491H79L84 716H168Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="298" d="M182 -224T136 -150T59 19T29 212Q29 320 68 427T166 621T284 760L307 737Q226 635 180 508T126 239Q125 222 125 188Q125 -58 257 -248L231 -271Q182 -224 136 -150Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="298" d="M109 713T155 639T232 470T262 277Q262 169 223 62T125 -132T7 -271L-16 -248Q65 -146 111 -19T165 250Q166 267 166 301Q166 547 34 737L60 760Q109 713 155 639Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="513" d="M313 716T313 670Q313 660 311 644Q310 636 306 618Q295 546 284 508Q317 526 371 551L408 568Q432 581 457 581Q491 581 491 550Q491 532 474 520T430 503Q325 484 292 480Q321 454 383 386Q394
+374 401 359T408 330Q408 312 394 302Q385 296 376 296Q351 296 327 338Q281 432 269 463Q258 441 210 360L197 338Q186 321 172 309T143 297Q134 297 125 303Q114 311 114 325Q114 339 123 355T146 386Q206 448 245 480Q204 488 144 497L110 503Q53 516 53 545Q53
+552 56 559Q66 581 92 581Q112 581 138 568Q200 539 256 508Q250 543 243 644Q241 673 249 694T281 716Q313 716 313 670Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="511" d="M299 543L289 344L481 343L479 291L286 290L274 82H214L226 290L33 289L36 345L229 344L239 543H299Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="237" d="M128 98T145 76T163 20Q163 -22 142 -79T81 -179L56 -159Q76 -135 94 -92T112 -8V0H110Q99 -4 87 -4Q69 -4 56 10T43 42Q43 68 59 83T99 98Q128 98 145 76Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="483" d="M421 353L418 291L63 287L66 353H421Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="232" d="M128 110T142 93T157 51Q157 23 139 4T97 -16Q74 -16 59 1T43 45Q43 72 62 91T105 110Q128 110 142 93Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="654" d="M607 760L662 723L29 -271L-18 -238L607 760Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="597" d="M441 716T496 619T551 384Q551 361 550 350Q545 259 516 176T430 38T287 -16Q161 -16 108 77T54 309Q54 336 55 350Q59 441 88 524T176 662T320 716Q441 716 496 619ZM243 678T201 587T151 368Q150
+352 150 317Q150 195 182 109T291 23Q369 23 407 112T453 331Q455 371 455 390Q455 515 425 596T322 678Q243 678 201 587Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="354" d="M229 109Q227 59 223 40L307 44L305 0H57L58 33Q107 35 128 63T151 147L173 619H171L49 542L31 572L226 716H260L229 109Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="525" d="M366 716T422 673T474 535Q467 420 268 266Q193 209 150 163T97 74L271 69Q293 68 332 68Q387 68 413 82T442 138H473L459 0H27Q30 59 53 105T111 187T205 275L240 305Q300 360 337 417T377 522Q380
+591 353 634T259 677Q219 677 186 657T139 606Q154 590 154 563Q154 544 141 530T107 516Q87 516 74 530T60 566Q60 600 86 635T162 693T277 716Q366 716 422 673Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="545" d="M370 716T425 674T476 543Q474 490 431 443T306 376Q396 368 445 321T494 205Q494 137 458 87T362 10T236 -16Q170 -16 124 4T54 56T31 121Q31 146 44 161T80 177Q100 177 112 164T125 132Q125 107
+111 92Q119 60 153 44T230 27Q307 27 351 73T395 200Q395 259 365 304T258 349Q234 349 192 347L194 392H235Q284 392 316 414T364 469T382 532Q385 600 359 638T266 677Q237 677 210 666T166 637T144 602Q156 586 156 563Q156 545 144 533T113 520Q94 520 82 532T69
+566Q69 598 94 633T168 692T282 716Q370 716 425 674Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="527" d="M393 250L493 249L490 193H391L387 109Q385 58 378 38L457 41L454 0H211L213 33H221Q269 37 287 67T307 159L309 193H3L5 242L379 716H413L393 250ZM329 577H327L68 255L312 251L329 577Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="523" d="M469 636L140 629L127 408Q189 434 264 434Q373 434 424 373T476 223Q476 147 442 93T349 12T222 -16Q163 -16 121 3T58 54T36 119Q36 145 50 161T85 177Q105 177 117 164T130 133Q130 109 116 92Q117
+59 149 41T222 23Q294 23 334 72T377 191L378 216Q378 288 347 338T230 389Q202 389 170 381T110 355L83 380L99 700H353Q408 700 432 715T458 765H484L469 636Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="554" d="M392 716T429 698T484 651T503 596Q503 573 490 559T457 544Q437 544 425 556T413 587Q413 596 416 606T426 625Q421 645 397 662T335 678Q236 676 195 574T144 354Q173 391 215 414T310 437Q385 437
+429 404T490 320T504 213Q501 151 470 99T384 15T265 -16Q154 -16 104 57T53 269Q53 288 55 330Q64 471 126 593T340 716Q392 716 429 698ZM246 393T201 360T139 281Q137 170 166 97T266 23Q333 23 370 71T410 191L411 217Q411 289 385 341T292 393Q246 393 201
+360Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="452" d="M455 634Q388 511 348 402T252 109L233 46Q224 17 212 1T179 -16Q142 -16 142 26Q142 49 158 89T207 202L221 232L251 299Q347 512 409 633L145 632Q102 631 80 615T56 558H32L39 700H458L455 634Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="564" d="M354 716T397 699T467 647T494 565Q494 509 453 459T351 378Q421 336 463 282T502 167Q498 77 432 31T271 -16Q179 -16 118 22T57 142Q57 206 101 262T216 361Q150 401 117 445T86 534Q89 594 121
+635T202 696T304 716Q354 716 397 699ZM265 677T236 659T190 612T174 549Q174 504 209 465T315 397Q361 427 388 468T418 546Q422 608 391 642T304 677Q265 677 236 659ZM192 303T166 251T140 154Q140 91 175 58T275 24Q334 24 372 62T410 159Q410 213 373 256T270
+332Q256 338 250 342Q192 303 166 251Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="552" d="M404 716T454 633T504 405Q504 376 503 362Q497 211 440 98T233 -16Q177 -16 139 2T81 50T62 111Q62 135 75 150T110 166Q129 166 141 153T153 123Q153 113 149 101T136 83Q155 22 232 22Q330 22 370
+123T416 348Q387 311 344 288T247 264Q144 264 101 323T58 470Q58 537 85 593T163 682T286 716Q404 716 454 633ZM222 678T187 630T149 510Q145 433 170 371T270 309Q315 309 357 340T417 416Q416 533 387 605T283 678Q222 678 187 630Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="253" d="M144 110T158 93T173 51Q173 23 155 4T113 -16Q90 -16 75 1T59 45Q59 72 78 91T121 110Q144 110 158 93ZM159 516T173 499T188 457Q188 429 170 410T128 390Q105 390 90 407T74 451Q74 478 93 497T136
+516Q159 516 173 499Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="271" d="M153 98T170 76T188 20Q188 -22 167 -79T106 -179L81 -159Q101 -135 119 -92T137 -8V0H135Q124 -4 112 -4Q94 -4 81 10T68 42Q68 68 84 83T124 98Q153 98 170 76ZM166 516T180 499T195 457Q195
+429 177 410T135 390Q112 390 97 407T81 451Q81 478 100 497T143 516Q166 516 180 499Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="539" d="M491 544L487 484L100 317V316L470 149L466 87L32 281L35 346L491 544Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="587" d="M78 437L523 435L520 381L75 379L78 437ZM68 245L513 243L510 189L65 187L68 245Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="539" d="M49 87L53 147L440 314V315L70 482L74 544L508 350L505 285L49 87Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="473" d="M357 716T402 673T448 565Q448 549 447 542Q441 489 403 448T299 357Q254 323 234 304T214 265Q214 252 223 243T253 234Q274 234 292 241L302 206Q272 188 222 188Q197 188 171 205T146 255Q148
+281 168 303T230 361Q288 407 320 447T357 544Q358 550 358 563Q358 615 331 646T243 677Q215 677 190 667T149 640T128 607Q143 595 143 568Q143 549 131 536T98 523Q78 523 65 536T51 572Q51 603 78 637T152 693T260 716Q357 716 402 673ZM243 102T257 86T272
+47Q272 21 256 3T215 -16Q193 -16 178 0T164 43Q165 67 183 84T222 102Q243 102 257 86Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="792" d="M540 637T612 591T719 472T750 318Q745 229 712 172T633 90T546 64Q539 64 527 66Q489 73 473 95T457 152Q457 181 471 243H469Q431 141 391 106T309 70Q263 70 236 104T213 209Q217 284 246 346T330
+445T458 482Q514 482 563 469L557 436Q554 421 540 343T519 214Q516 195 516 176Q516 145 525 125T552 100Q556 99 564 99Q591 99 616 121T659 183T681 277Q683 307 683 319Q683 459 614 528T430 597Q410 597 400 596Q316 589 251 538T151 408T115 240Q115 141
+155 75T262 -22T406 -54Q467 -54 527 -33T635 41L658 16Q606 -40 536 -67T382 -95Q272 -95 195 -51T80 67T42 234L43 257Q47 349 93 436T226 580T435 637Q540 637 612 591ZM385 452T350 413T297 315T279 199Q279 156 291 132T327 108Q361 108 398 161T462 294T493
+443Q472 452 433 452Q385 452 350 413Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="631" d="M532 150Q541 124 548 92T553 40L618 44L616 0H399L400 33Q460 34 460 83Q460 100 452 128L423 222L167 216L127 109Q112 70 96 40L171 44L169 0H-14L-13 33Q22 34 44 64T93 158L319 719H341L532 150ZM305
+580L263 468Q251 439 202 308L183 259H412Q355 438 307 580H305Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="619" d="M419 702T479 660T533 531Q530 478 486 434T363 376V374Q465 374 518 329T572 208Q572 144 541 97T454 25T329 0H40L42 33Q77 34 92 49T111 85T118 161L140 581Q141 628 147 660L74 656L77 700Q148 700
+183 701L300 702Q419 702 479 660ZM271 666T255 657T232 628T223 569L213 383Q242 383 286 385Q368 388 406 433T445 544Q445 612 404 639T303 666Q271 666 255 657ZM259 347T211 344L199 119Q196 63 192 41Q211 39 264 39H298Q381 39 429 81T478 202Q478 278 433
+312T314 347Q259 347 211 344Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="686" d="M521 716T609 656H610L608 710H662L650 479H614Q609 572 557 623T416 675Q342 675 280 632T180 511T143 331Q143 245 176 178T266 73T395 36Q462 36 525 65T631 148L656 127Q593 48 517 16T366 -16Q272
+-16 200 27T89 147T49 317Q49 419 90 510T214 659T412 716Q521 716 609 656Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="738" d="M489 702T592 620T695 376Q695 275 650 190T516 52T299 0H40L42 33Q77 34 92 49T111 85T117 156L141 588Q145 638 148 660L74 656L77 700L309 701Q489 702 592 620ZM266 664T250 653T228 620T221 551L198
+118Q195 62 191 40Q235 38 298 38Q387 38 456 83T563 206T602 380Q602 513 527 588T303 664Q266 664 250 653Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="619" d="M551 525H518Q522 607 488 637T390 665L304 663Q268 662 252 650T230 616T222 544L213 384L285 383Q332 382 357 388T395 414T410 477H443L432 259H399Q400 297 393 316T367 341T316 348L284 347L211 344L199
+115Q196 59 192 37L383 40Q453 41 492 75T535 195H569L553 0H41L43 33Q78 34 93 49T112 85T118 156L142 588Q143 622 149 660L76 656L78 700H555L551 525Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="541" d="M534 525H501Q505 607 470 637T370 665L297 663Q264 662 249 650T229 616T222 552L212 368H290Q329 369 350 375T382 402T395 462H428L417 243H384Q386 283 377 301T348 325T288 331Q249 331 210 328L199
+119Q198 72 192 40L294 44L292 0H41L43 33Q78 34 93 49T112 85T118 156L142 588Q143 622 149 660L76 656L78 700H538L534 525Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="753" d="M467 716T521 702T617 662L615 709H670L658 480H622Q621 572 564 624T417 676Q343 676 281 632T181 509T143 333Q143 246 174 178T263 71T395 32Q438 32 484 44T569 82L580 300L510 296L512 340H735L733
+307Q699 307 682 285T661 241T655 188L647 36H623Q581 36 514 10Q483 -2 442 -9T366 -16Q270 -16 199 22T88 134T49 307Q49 409 90 503T214 656T413 716Q467 716 521 702Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="773" d="M738 667Q707 666 692 654T671 620T663 557L640 119Q637 62 633 40L705 44L703 0H482L484 33Q519 34 534 49T553 85T559 156L569 338L210 334L199 119Q196 62 192 40L264 44L262 0H41L43 33Q78 34 93 49T112
+84T118 156L141 588Q145 638 148 660L76 656L78 700H299L297 667Q266 666 251 654T230 619T222 556L212 378H571L582 588Q583 622 589 660L517 656L519 700H740L738 667Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="333" d="M297 667Q263 666 248 653T228 619T222 554L199 119Q198 72 192 40L264 44L262 0H41L43 33Q78 34 93 49T112 85T118 156L141 588Q142 622 148 660L76 656L78 700H299L297 667Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="367" d="M358 667Q312 667 296 642T276 568L260 244Q255 149 237 93T182 10T87 -16Q46 -16 16 1T-14 55Q-14 77 -1 92T34 107Q55 107 66 93T77 63Q77 48 73 40Q77 32 87 28T106 24Q131 25 150 50T173 153L199 660L97
+656L99 700H361L358 667Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="667" d="M653 667Q607 663 575 652T512 613T444 532L338 376Q360 362 375 346T401 313T416 291L521 142Q555 93 578 70T619 40T662 33L660 0H542Q517 0 446 98L335 260Q294 321 264 341L211 340L199 119Q196 62
+192 40L264 44L262 0H41L43 33Q78 34 93 49T112 85T118 156L141 588Q145 638 148 660L76 656L78 700H299L297 667Q266 666 251 653T230 618T222 554L213 380H291L424 577Q461 633 501 660V661L438 659L440 700H655L653 667Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="577" d="M296 667Q263 666 248 651T228 613T221 544L198 115Q195 59 191 37L378 40Q443 42 477 81T515 207H549L532 0H40L42 33Q77 34 92 49T111 84T117 156L141 588Q142 596 143 620T148 660L77 656V700H298L296 667Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="917" d="M868 667Q829 668 811 643T794 558L797 103Q797 76 795 40L869 44L866 0H646L648 33H656Q694 36 706 63T718 152V494Q718 551 719 580H717L682 503L444 -10H415Q376 90 304 290Q284 348 242 462L235 481Q216
+534 198 593H196Q192 505 183 395L157 125Q151 65 147 40L223 44L220 0H30L32 33Q61 33 76 45T96 75T105 125L159 660L87 657L89 700H238Q264 634 352 396Q429 189 455 122H457Q476 162 505 229L515 251Q541 310 621 476Q675 588 726 700H870L868 667Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="762" d="M741 667Q709 666 694 654T675 622T669 564L668 544L640 -11H592L183 573H181L165 139Q164 129 164 110Q162 62 158 40L230 44L228 0H45L46 33Q113 33 116 112L143 660L76 656L78 700H197L599 128H601L622
+588Q625 637 629 660L557 656L559 700H743L741 667Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="788" d="M524 716T599 666T710 536T746 369Q746 279 705 190T581 43T382 -16Q271 -16 196 34T85 162T49 327Q49 431 94 520T222 662T413 716Q524 716 599 666ZM328 676T268 627T177 501T145 343Q145 268 170 195T250
+74T387 25Q469 25 528 73T619 197T650 353Q650 434 622 508T539 629T408 676Q328 676 268 627Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="597" d="M441 702T513 653T585 506Q584 446 554 392T449 300T246 263Q220 263 207 264L199 119Q196 62 192 40L284 45L282 0H41L43 33Q78 34 93 49T112 85T118 156L141 588Q145 638 148 660L75 656L78 700Q218
+702 297 702Q441 702 513 653ZM263 663T248 650T229 614T222 549L209 306Q234 303 274 303Q334 303 383 327T462 396T491 502Q491 585 439 624T293 663Q263 663 248 650Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="788" d="M524 716T599 666T710 536T746 369Q746 291 714 212T617 72T463 -7V-8Q511 -8 543 -19T620 -71L637 -87Q706 -150 729 -167T774 -185H780V-218H748Q705 -218 683 -216T638 -201T585 -162Q566 -145 516
+-95Q472 -50 447 -33T382 -16Q271 -16 196 34T85 162T49 327Q49 431 94 520T222 662T413 716Q524 716 599 666ZM328 676T268 627T177 501T145 343Q145 268 170 195T250 74T387 25Q469 25 528 73T619 197T650 353Q650 434 622 508T539 629T408 676Q328 676 268 627Z"
+/>
+<glyph unicode="R" glyph-name="R" horiz-adv-x="625" d="M437 700T499 655T561 531Q561 459 519 402T367 322V321Q384 308 399 288T433 235L495 128Q515 93 528 75T562 45T612 33L610 0H488Q467 17 448 44T405 111L344 218Q341 224 330 245T306 283T282 313Q271
+312 248 312L209 313L199 119Q196 62 192 40L264 44L262 0H41L43 33Q78 34 93 49T112 85T118 156L141 588Q142 622 148 660L75 656L78 700Q200 702 259 702H303Q437 700 499 655ZM264 664T249 651T229 616T222 549L211 352Q241 350 255 350Q468 350 468 524Q468
+594 426 629T297 664Q264 664 249 651Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="566" d="M328 716T373 705T455 665L453 708H504L493 488H457Q456 567 413 621T288 676Q226 676 189 640T152 551Q152 513 174 486T228 439T316 394Q380 365 420 341T487 278T515 185Q515 126 486 81T402 10T271
+-16Q225 -16 178 -6T96 27L99 -8H47L52 205H91Q92 116 143 71T278 26Q342 26 386 61T431 158Q431 200 408 230T352 280T261 328Q199 357 162 380T98 439T72 527Q72 567 91 610T157 685T284 716Q328 716 373 705Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="636" d="M627 489H589Q591 552 582 589T546 645T468 664L383 663L350 119Q347 62 343 40L426 44L424 0H193L195 33Q226 34 241 50T261 90T269 156L300 663L197 662Q135 662 107 621T73 489H36L53 700H632L627 489Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="744" d="M742 667Q706 666 691 651T672 616T666 544L652 311Q644 166 575 75T366 -16Q268 -16 211 15T129 110T103 280Q103 298 105 340L118 579Q121 625 126 660L54 657L56 700H278L276 667Q232 667 218 644T202
+588L189 335Q188 319 188 286Q188 173 229 107T381 41Q484 41 538 111T601 306L619 588Q623 638 626 660L554 656L556 700H743L742 667Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="665" d="M694 667Q650 665 626 644T579 569Q523 431 337 -11H311L115 522Q82 607 79 658L23 656L25 700H253L251 666Q183 662 183 610Q183 589 194 558L225 470Q264 357 276 325Q324 200 347 132H349Q371 188 386
+223L407 275L501 505L535 586Q559 643 568 660L491 656L493 700H696L694 667Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="994" d="M550 667T571 591T604 474Q643 337 646 325L652 304Q684 190 696 143H698L749 274Q796 404 853 549L867 586Q882 629 901 659L821 656L823 700H1026L1024 667Q988 663 969 652T934 613T893 519Q860 436
+824 340Q730 97 685 -11H659L545 383Q523 458 505 531H501L296 -11H270L119 522L112 547Q101 583 94 611T84 658L28 656L30 700H270L268 667Q225 665 208 653T190 611Q190 587 197 558Q206 515 218 472T235 416Q252 362 261 325Q273 279 295 203L310 152H312Q333
+210 350 255L363 289Q371 309 385 349Q500 656 515 702H542Q550 667 571 591Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="652" d="M645 667Q603 661 566 626T481 528L359 368Q464 214 523 135L538 113Q565 77 587 42L645 44L643 0H397L399 33Q458 32 458 67Q458 83 444 106Q408 161 372 211L310 301L202 153Q197 147 194 142T188 133Q183
+126 161 96T115 39L198 44L196 0H0L2 33Q32 39 55 54T96 90T145 153L284 338Q198 464 162 519T111 601T86 658L30 656L32 700H292L290 667L246 665Q198 662 198 637Q198 626 203 615T219 584Q245 536 334 405L438 544Q465 580 491 614T532 660L448 656L450 700H647L645
+667Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="641" d="M667 667Q620 664 587 635T513 538L431 398Q412 364 374 300L369 216Q363 120 364 119Q363 72 357 40L440 44L438 0H207L209 33Q244 34 259 49T278 85T283 156L289 270L131 545Q88 616 83 658L21 656L23
+700H277L275 667Q195 667 195 620Q195 597 216 558L247 504Q302 407 346 341H348Q397 427 465 541Q481 569 490 583Q522 638 542 659L463 656L465 700H669L667 667Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="612" d="M577 665L185 120Q145 65 113 37L360 41Q430 42 475 83T524 205H558L541 0H28L31 46Q48 67 68 95Q159 213 237 319T416 573Q432 596 449 620T485 663L227 659Q167 657 136 617T100 493H66L83 700H579L577 665Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="361" d="M382 755L378 699L183 696L117 -196L318 -199L313 -255H46L117 755H382Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="785" d="M103 760L728 -238L681 -271L48 723L103 760Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="361" d="M-28 -255L-24 -199L171 -196L237 696L36 699L41 755H308L237 -255H-28Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="823" d="M462 710L753 431H667L415 676H414L134 435H54L377 710H462Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="710" d="M27 -50L642 -54L639 -106H24L27 -50Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="240" d="M68 686Q45 710 45 731Q45 745 55 755Q63 763 75 763Q98 763 117 731L195 599L171 579L68 686Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="548" d="M397 511T463 494Q419 168 419 94Q419 68 424 54T447 39Q466 39 486 63T520 136L548 130Q543 102 527 69T483 13T418 -11Q344 -11 344 79Q344 123 362 213H359Q317 81 267 35T164 -11Q106 -11 72 31T37
+163Q37 259 70 338T169 464T329 511Q397 511 463 494ZM240 475T200 434T141 325T121 180Q121 33 186 33Q230 33 274 102T347 272T376 463Q346 475 298 475Q240 475 200 434Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="511" d="M185 690T173 586L167 523Q161 473 144 298H147Q182 427 231 469T340 511Q405 511 435 459T465 327Q465 178 397 84T188 -11Q158 -11 122 -6T57 10L72 243Q91 524 101 639Q104 675 107 692L35 688L39 728Q99
+728 125 735T166 755H195Q185 690 173 586ZM268 464T227 397T159 232T131 47Q142 36 163 30T205 24Q301 25 340 109T379 308Q379 464 313 464Q268 464 227 397Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="473" d="M320 511T354 496T408 454T428 394Q428 371 416 358T384 345Q364 345 354 358T343 385Q343 409 356 423Q351 450 330 463T277 476Q198 476 163 402T127 231Q127 131 159 85T249 38Q293 38 334 67T402 164L437
+147Q401 64 348 27T232 -11Q141 -11 90 43T39 208Q39 278 65 348T146 464T278 511Q320 511 354 496Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="555" d="M482 655T474 583L456 427Q441 294 434 217T427 92Q427 66 432 53T454 39Q473 39 492 63T526 136L555 130Q550 102 534 69T490 13T425 -11Q386 -11 367 13T348 79Q348 133 363 208H360Q323 83 275 36T173
+-11Q107 -11 73 42T38 179Q38 278 71 353T169 469T329 511Q361 511 385 507L400 631Q405 668 411 692L338 688L342 728Q402 728 428 735T469 755H498Q482 655 474 583ZM246 475T204 433T143 328T124 196Q124 122 140 79T194 36Q224 36 256 71T314 165T355 289Q367
+344 380 465Q353 475 312 475Q246 475 204 433Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="477" d="M342 511T382 483T422 396Q422 322 333 281T127 227Q127 133 155 86T241 39Q287 39 330 69T405 160L438 141Q396 62 344 26T224 -11Q132 -11 86 46T39 205Q39 286 66 355T149 468T282 511Q342 511 382
+483ZM204 477T169 415T128 263Q215 275 277 311T339 401Q339 434 321 455T268 477Q204 477 169 415Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="325" d="M355 760T374 747T393 708Q393 694 384 681T355 668Q335 668 324 682T313 718Q307 722 290 722Q243 722 223 666T193 500H335L332 461L190 459L187 403Q180 286 176 236L170 165Q158 18 142 -67T82 -212T-47
+-271Q-85 -271 -105 -258T-125 -219Q-125 -205 -115 -192T-86 -178Q-67 -178 -56 -190T-45 -224Q-34 -232 -16 -232Q20 -232 39 -193T66 -90T83 97Q89 197 94 245L100 317Q105 392 112 458L24 457L29 500H117Q135 624 180 692T320 760Q355 760 374 747Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="518" d="M365 511T399 507T457 494Q452 412 431 166L418 14Q406 -128 340 -199T162 -271Q133 -271 99 -263T40 -236T14 -187Q14 -166 27 -151T61 -136Q80 -136 93 -148T106 -182Q106 -195 100 -208Q109 -222 129
+-229T169 -236Q240 -236 277 -188T328 -71T350 105Q356 179 361 213H358Q320 82 274 36T173 -11Q106 -11 72 42T38 183Q38 272 70 346T168 466T330 511Q365 511 399 507ZM246 475T203 432T141 327T122 200Q122 125 139 81T194 36Q238 36 279 104T348 273T380 462Q354
+475 314 475Q246 475 203 432Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="572" d="M201 705Q185 609 182 585Q175 534 166 438T152 288H155Q202 415 249 463T352 511Q408 511 435 475T462 381Q462 314 445 189Q434 110 434 85Q434 63 439 51T461 39Q480 39 500 62T534 136L559 129Q550
+81 518 35T432 -11Q387 -11 369 12T351 85Q351 123 364 218Q366 231 373 292T380 403Q380 426 369 445T332 464Q289 464 244 400T170 240T141 53Q141 34 143 0H61Q60 9 60 26Q60 100 77 314T110 639Q112 651 119 692L49 688L53 728Q113 728 139 735T180 755H209L201
+705Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="324" d="M213 727T228 711T243 670Q243 645 227 630T189 614Q167 614 152 629T136 670Q136 695 152 711T190 727Q213 727 228 711ZM174 511T195 483T217 407Q217 368 200 270Q190 207 185 165T179 81Q179 39 210
+39Q229 39 249 63T283 136L311 130Q299 76 268 33T187 -11Q97 -11 97 83Q97 122 102 159T117 251Q127 312 131 345T136 416Q136 433 130 447T108 461Q89 461 69 437T35 364L7 370Q16 419 48 465T133 511Q174 511 195 483Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="297" d="M210 728T225 712T241 671Q241 646 225 631T187 615Q165 615 150 630T134 670Q134 695 149 711T187 728Q210 728 225 712ZM184 511T205 485T227 409Q227 295 217 192Q203 52 183 -41T113 -203T-28 -271Q-58
+-271 -81 -258T-104 -217Q-104 -198 -93 -184T-61 -170Q-40 -170 -28 -184T-19 -225Q-11 -230 1 -230Q52 -230 82 -141T122 30T139 200Q146 295 146 365Q146 401 145 417Q144 434 137 446T115 459Q98 459 79 435T47 360L19 366Q23 395 37 428T79 486T144 511Q184
+511 205 485Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="520" d="M199 715T185 611L182 585Q164 446 153 288H156Q198 413 246 462T352 511Q400 511 424 480T449 403Q449 366 428 329T362 262T256 221V220Q290 219 308 204T344 150Q369 94 383 70T418 45Q434 45 445 59T464
+107L492 102Q482 54 455 22T384 -11Q347 -11 322 19T269 120Q249 174 234 194T191 215L165 214Q141 126 141 53Q141 34 143 0H61Q60 9 60 26Q60 102 76 315T110 639Q112 651 119 692L49 688L53 728Q112 728 137 735T178 755H207Q199 715 185 611ZM285 464T243 400T173
+243H174Q268 243 318 283T368 401Q368 426 359 445T325 464Q285 464 243 400Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="283" d="M203 684Q191 614 188 585Q172 468 158 314T143 91Q143 66 148 53T170 39Q189 39 209 62T243 136L271 129Q266 101 250 69T207 13T142 -11Q100 -11 81 11T62 78Q62 144 79 321T116 638L125 692L54 688L59
+728Q118 728 144 735T186 755H214L203 684Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="876" d="M719 511T743 475T768 381Q768 339 763 297T748 189Q735 109 735 85Q735 63 740 51T762 39Q781 39 801 62T836 136L864 129Q859 101 843 69T798 13T733 -11Q688 -11 671 12T653 85Q653 126 669 217Q670
+226 676 266T685 341T689 403Q689 426 678 445T641 464Q596 464 554 398T485 235T458 53Q458 34 460 0H376Q375 9 375 26Q375 59 381 114T394 223Q411 353 411 400Q411 464 363 464Q319 464 277 398T207 235T180 53Q180 34 182 0H98Q97 9 97 26Q97 51 101 98T116
+226L128 330Q132 365 134 383T136 416Q136 437 131 449T109 461Q90 461 70 437T36 364L8 370Q13 398 29 431T73 487T138 511Q213 511 213 411Q213 383 208 349T197 288H200Q243 413 289 462T383 511Q438 511 464 476T490 397Q490 371 487 354T473 291H476Q521 416
+568 463T663 511Q719 511 743 475Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="615" d="M452 511T478 475T505 381Q505 314 486 189Q475 110 475 85Q475 63 480 51T502 39Q521 39 541 62T575 136L603 129Q598 101 582 69T538 13T473 -11Q428 -11 410 12T392 85Q392 122 405 217Q423 339 423
+403Q423 426 413 445T376 464Q332 464 286 398T210 234T179 53Q179 34 181 0H97Q96 9 96 26Q96 50 100 93T114 206Q114 212 116 226Q117 239 119 253T122 281Q129 342 132 370T135 416Q135 437 130 449T108 461Q89 461 69 437T35 364L7 370Q12 398 28 431T72 487T137
+511Q212 511 212 408Q212 379 207 345T196 283H199Q247 411 294 461T396 511Q452 511 478 475Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="521" d="M340 511T383 485T451 410T476 292Q476 210 447 141T362 31T231 -11Q136 -11 88 51T39 213Q39 295 69 363T155 471T286 511Q340 511 383 485ZM226 474T194 443T144 357T127 235Q127 152 154 90T242 27Q293
+27 325 66T373 162T388 273Q388 357 362 415T270 474Q226 474 194 443Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="571" d="M457 511T491 456T526 317Q526 219 492 145T392 30T231 -11Q207 -11 184 -8L176 -134Q175 -141 175 -156Q173 -195 168 -217L231 -214V-255H42V-225Q66 -225 78 -210T94 -172T102 -105Q102 -92 103 -85Q112
+21 130 218Q146 383 146 408Q146 434 141 447T119 461Q100 461 81 437T47 364L18 370Q23 398 39 431T83 487T148 511Q224 511 224 406Q224 362 210 292H213Q251 418 295 464T391 511Q457 511 491 456ZM335 464T300 416T238 290T198 130Q192 95 187 35Q223 23 248
+23Q314 23 357 64T420 169T440 299Q440 376 424 420T370 464Q335 464 300 416Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="518" d="M358 511T399 508T461 501Q452 385 436 226Q409 -58 404 -134Q399 -196 394 -217L457 -214V-255H268V-225Q292 -225 304 -210T320 -172T328 -105Q328 -92 329 -85Q341 62 360 208H357Q320 81 274 35T172
+-11Q106 -11 72 41T38 177Q38 275 71 350T171 467T331 511Q358 511 399 508ZM249 476T206 434T144 327T124 197Q124 121 140 79T196 36Q241 36 283 105T353 275T386 468Q356 477 315 477Q249 476 206 434Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="455" d="M418 511T437 496T457 453Q457 434 444 420T411 405Q393 405 380 416T365 447Q361 448 354 448Q312 448 272 381T207 218T182 43Q182 34 184 0H101Q100 9 100 26Q100 87 116 231L129 347Q135 399 135 416Q135
+437 130 449T108 461Q89 461 69 437T35 364L7 370Q12 398 28 431T72 487T137 511Q176 511 193 486T210 414Q210 368 195 293H198Q239 414 286 462T387 511Q418 511 437 496Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="428" d="M286 511T330 484T375 413Q375 392 363 380T333 367Q316 367 305 379T293 407Q293 424 302 438Q296 456 276 467T224 478Q189 478 161 456T132 399Q132 370 158 347T238 293Q283 267 311 247T358 198T378
+135Q378 93 355 60T288 8T190 -11Q125 -11 78 18T30 96Q30 117 42 131T73 145Q92 145 103 133T114 103Q114 86 105 72Q112 51 136 39T188 26Q241 26 268 50T296 121Q296 154 268 179T183 237Q119 274 87 304T54 376Q54 412 76 443T137 492T227 511Q286 511 330
+484Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="364" d="M199 500H358L355 462L195 460L188 396Q166 206 166 127Q166 88 175 64T213 40Q265 40 307 110L333 93Q302 40 269 15T189 -11Q134 -11 110 22T85 107Q85 165 92 259T111 459L22 458L25 500Q85 500 122
+535T179 641H217L199 500Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="593" d="M173 511T193 486T214 414Q214 378 198 264Q197 255 189 197T181 99Q181 75 191 56T228 36Q272 36 316 102T388 266T417 447Q417 466 415 500H499Q500 491 500 474Q500 450 495 400T480 270L470 187Q469
+174 465 139T461 84Q461 40 488 40Q507 40 527 63T561 136L589 130Q584 102 568 69T524 13T459 -11Q420 -11 401 13T382 79Q382 123 400 213H397Q349 84 305 37T208 -11Q152 -11 126 25T99 119Q99 162 104 206T119 312Q121 323 126 358T131 414Q131 437 126 449T104
+461Q86 461 67 438T34 364L6 370Q15 419 47 465T133 511Q173 511 193 486Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="526" d="M422 511T453 462T485 336Q485 270 460 201Q439 146 402 98T318 19T220 -11Q160 -11 134 29T108 132Q108 186 113 246T120 317Q128 383 128 415Q128 436 122 448T100 460Q82 460 64 436T32 362L4 369Q9
+398 24 430T66 487T132 511Q171 511 191 485T211 409Q211 366 200 232Q192 130 192 108Q192 79 201 61T238 43Q271 43 308 68T376 135T422 224Q428 242 432 270T437 328Q437 370 426 401T388 444Q377 419 348 419Q332 419 320 429T306 461Q306 480 320 495T363
+511Q422 511 453 462Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="801" d="M698 511T729 461T760 336Q760 270 735 201Q701 108 633 49T483 -11Q440 -11 411 17T381 112Q381 130 382 140H380Q359 78 310 34T208 -11Q153 -11 129 24T104 119Q104 159 109 211T120 309Q130 395 130
+414Q130 437 125 449T103 461Q85 461 66 438T33 364L5 370Q14 419 46 465T132 511Q172 511 192 486T213 414Q213 358 197 228Q186 131 186 102Q186 76 196 59T229 42Q273 42 313 84T378 204T403 388Q403 444 396 500H482Q486 485 486 455Q486 407 481 362T467 255Q462
+218 458 182T453 119Q453 84 465 63T508 41Q564 41 617 93T696 224Q702 243 706 271T711 329Q711 423 663 444Q652 419 622 419Q606 419 593 430T580 462Q580 481 594 496T640 511Q698 511 729 461Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="545" d="M487 511T501 498T515 462Q515 445 503 432T474 419Q455 419 447 427T428 449Q373 441 302 265L309 247Q350 141 377 96T428 50Q464 50 479 129L507 125Q489 -11 407 -11Q373 -11 352 4T310 62T250 202H249Q218
+110 188 64T133 3T77 -11Q49 -11 32 3T15 40Q15 60 27 73T56 86Q91 86 94 45Q155 32 230 252Q210 306 204 324Q176 400 163 425T129 450Q83 450 78 352L49 351Q49 409 72 460T155 511Q185 511 203 495T234 452T266 366Q272 345 284 314H285Q331 429 376 470T461
+511Q487 511 501 498Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="514" d="M428 511T447 474T466 383Q466 292 430 193T333 -17Q261 -149 196 -210T69 -271Q33 -271 11 -253T-12 -208Q-12 -187 1 -175T29 -162Q50 -162 61 -175T72 -214Q86 -221 94 -221Q132 -223 175 -173T247
+-75Q229 48 197 173T125 395Q113 421 104 433T79 446Q62 446 52 425T41 368Q41 351 42 342L10 338Q9 348 9 368Q9 427 30 469T101 511Q146 511 171 480T214 398Q234 344 250 282T288 121Q294 92 303 19H305Q353 103 386 195T419 363Q419 387 415 406T404 434Q395
+428 379 428Q361 428 350 439T339 467Q339 488 353 499T386 511Q428 511 447 474Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="471" d="M431 484L386 429Q275 293 230 235L200 197Q121 95 82 42H83Q106 69 133 81T198 94Q214 94 233 89T271 77Q293 69 307 65T336 61Q391 61 391 115Q391 133 384 153L411 162Q423 128 423 96Q423 49 393 19T318
+-11Q298 -11 278 -7T229 7Q201 16 181 20T141 25Q116 25 95 18T50 -11L18 14Q86 114 213 280Q267 351 353 455H351Q313 414 268 414L257 415Q244 416 230 420T202 429Q182 436 168 439T139 443Q117 443 101 430T84 385Q84 367 91 347L64 338Q51 375 51 404Q51 451
+82 481T159 511Q179 511 195 507T235 495Q258 487 274 483T311 479Q330 479 354 486T401 512L431 484Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="332" d="M345 726Q270 728 240 693T204 569Q203 538 206 481Q210 415 208 392Q205 334 173 301T93 258V256Q137 248 165 216T194 130Q194 112 190 77T183 29Q173 -39 172 -61Q171 -71 171 -89Q171 -167
+199 -206T296 -243L294 -271H266Q176 -271 138 -223T99 -81Q99 -59 100 -47Q101 -23 105 7T110 46Q111 57 115 89T119 143Q119 189 99 210T28 231H5L8 284H31Q91 284 112 312T133 407Q133 424 131 464Q129 504 129 525Q129 609 146 660T205 735T319 760H347L345
+726Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="235" d="M176 760L118 -271H55L106 760H176Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="332" d="M-21 -237Q54 -239 84 -204T120 -80Q121 -49 118 8Q114 74 116 97Q119 155 151 188T231 231V233Q187 241 159 273T130 359Q130 377 134 412T141 460Q151 528 152 550Q153 560 153 578Q153 656
+125 695T28 732L30 760H58Q148 760 186 712T225 570Q225 548 224 536Q223 512 219 482T214 443Q213 432 209 400T205 346Q205 300 225 279T296 258H319L316 205H293Q233 205 212 177T191 82Q191 65 193 25Q195 -15 195 -36Q195 -120 178 -171T119 -246T5 -271H-23L-21
+-237Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="572" d="M237 370T260 360T312 328Q333 311 350 303T392 294Q451 294 511 342L508 283Q454 231 382 231Q347 231 323 241T273 271Q250 288 232 296T188 304Q151 304 126 293T62 258L65 317Q103 345 132
+357T198 370Q237 370 260 360Z" />
+<glyph unicode="&#xa0;" glyph-name="uni00A0" horiz-adv-x="263" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="253" d="M103 387T88 404T72 448Q72 476 91 496T135 516Q158 516 173 499T189 456Q189 428 170 408T127 387Q103 387 88 404ZM69 -216T56 -199T43 -157Q43 -148 44 -143L103 270H140L155 -143Q156
+-172 140 -194T95 -216Q69 -216 56 -199Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="482" d="M321 507Q370 497 400 466T430 394Q430 371 418 358T386 345Q366 345 356 358T345 385Q345 409 358 423Q353 450 332 463T279 477Q200 477 165 403T129 231Q129 131 162 84T251 36Q294 36 335
+68T404 168L439 152Q406 77 360 37T258 -11L247 -129H195L205 -11Q127 -3 84 52T41 208Q41 276 65 344T140 459T264 511L273 622H332L321 507Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="547" d="M369 716T402 697T449 650T463 596Q463 575 452 562T422 549Q404 549 395 561T385 587Q385 611 398 624Q393 646 373 662T320 679Q266 679 233 638T196 537Q195 527 195 508Q195 462 207 384Q209
+376 211 360H365L362 312H218Q219 304 220 288T221 260Q221 246 220 238Q219 206 203 173T159 109Q183 113 215 113Q249 113 278 104T346 78Q365 70 382 64T413 57Q436 57 451 72T470 120H501Q495 58 467 21T391 -16Q364 -16 339 -5T277 29Q237 53 211 64T155 76Q144
+76 139 75Q133 37 112 11T66 -16Q49 -16 39 -6T29 19Q29 46 54 68T119 101Q134 122 143 152T152 216Q152 255 141 312H59L62 360H130Q118 413 118 468Q118 487 119 497Q122 562 148 612T218 689T314 716Q369 716 402 697Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="555" d="M490 444L425 375Q460 321 458 254Q453 188 416 140L472 72L432 40L382 105Q332 67 264 67Q198 67 150 105L95 40L58 72L120 139Q91 185 91 244Q91 278 102 312T136 375L79 444L120 477L170
+409Q219 448 285 448Q350 448 395 409L453 477L490 444ZM248 413T224 390T188 333T175 271Q171 210 192 158T267 106Q305 106 329 134T365 202T376 278Q376 327 354 370T283 413Q248 413 224 390Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="699" d="M697 667Q650 664 617 635T543 538Q510 483 444 369L413 315H533L531 272L402 271L398 208L528 207L526 164L396 163Q392 119 394 119Q393 72 387 40L470 44L468 0H237L239 33Q274 34 289 49T308
+85T313 156V163L180 162L183 209L315 208L319 270L318 271L186 270L189 317L292 316L161 545Q117 621 113 658L51 656L53 700H307L305 667Q224 667 224 620Q224 596 246 558L261 532Q324 419 376 341H378Q427 427 495 541Q511 569 520 583Q552 638 572 659L493
+656L495 700H699L697 667Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="261" d="M188 760L165 388H102L118 760H188ZM154 101L131 -271H68L84 101H154Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="524" d="M349 760T389 743T451 698T473 640Q473 617 462 601T427 585Q407 585 397 597T387 626Q387 642 399 660Q400 684 369 703T298 722Q253 722 224 704T181 660T167 609Q167 574 186 546T234 497T313
+445Q370 410 405 384T462 318T482 227Q480 183 454 138T382 58Q420 13 420 -43L419 -58Q417 -94 396 -133T330 -200T219 -228Q168 -228 128 -211T66 -165T44 -107Q44 -85 56 -69T90 -52Q110 -52 120 -64T130 -93Q130 -113 118 -127Q117 -151 148 -170T219 -189Q292
+-189 322 -155T352 -75Q352 -32 322 -2T221 74Q152 119 118 145T58 211T37 306Q39 348 64 394T132 475Q98 517 98 575Q98 611 118 654T183 728T298 760Q349 760 389 743ZM134 427T123 394T112 330Q112 288 132 257T183 202T263 149Q333 107 362 80Q384 103 395
+136T407 203Q407 245 387 276T336 330T256 382Q187 421 154 452Q134 427 123 394Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="351" d="M82 616T70 631T57 668Q57 692 72 708T106 725Q124 725 136 711T148 675Q148 651 134 634T101 616Q82 616 70 631ZM229 616T217 631T204 668Q204 692 219 708T253 725Q271 725 283 711T295
+675Q295 651 281 634T248 616Q229 616 217 631Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="876" d="M573 750T658 700T791 564T838 372Q838 258 782 161T629 7T420 -50Q307 -50 222 -3T91 129T45 322Q45 438 99 536T250 692T463 750Q573 750 658 700ZM357 704T278 654T154 517T109 326Q109
+236 146 161T255 42T424 -2Q526 -2 606 49T730 185T774 369Q774 459 735 536T624 658T458 704Q357 704 278 654ZM499 599T533 588T592 558H593L591 594H639L630 426H592Q588 488 554 518T464 548Q423 548 384 524T319 454T293 345Q293 293 315 252T376 186T466
+162Q501 162 543 182T613 235L642 204Q599 149 542 126T433 102Q368 102 316 132T234 215T204 332Q204 395 235 457T325 559T463 599Q499 599 533 588Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="402" d="M290 716T335 706L331 673Q307 489 307 451Q307 434 309 426T318 417Q329 417 338 427T356 469L378 464Q369 428 352 404T300 380Q275 380 265 395T254 438Q254 467 266 522H264Q237 438
+206 409T140 380Q64 380 64 490Q64 586 110 651T245 716Q290 716 335 706ZM174 688T147 635T120 501Q120 420 157 420Q182 420 208 461T253 563T273 680Q255 688 231 688Q174 688 147 635Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="517" d="M277 -7L25 264V268L319 548L343 521L124 264V262L306 19L277 -7ZM421 77L238 267V270L450 464L475 439L338 272V270L450 103L421 77Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="585" d="M71 344L516 342L507 157H459L461 287L68 285L71 344Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="482" d="M419 353V290L64 286V353H419Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="876" d="M573 750T658 700T791 564T838 372Q838 258 782 161T629 7T420 -50Q307 -50 222 -3T91 129T45 322Q45 438 99 536T250 692T463 750Q573 750 658 700ZM357 704T278 654T154 517T109 326Q109
+236 146 161T255 42T424 -2Q526 -2 606 49T730 185T774 369Q774 459 735 536T624 658T458 704Q357 704 278 654ZM540 598T582 563T625 474Q625 432 596 392T498 333V332Q515 322 536 291Q570 235 590 209T623 174T653 166L651 132H569Q555 135 539 154T498 212Q480
+239 459 274L429 322Q391 322 374 325L369 225Q368 197 364 174L412 176V136H247L249 170Q272 170 283 180T297 205T301 250L315 511Q317 545 319 559L269 554L271 596Q396 601 452 600Q540 598 582 563ZM418 558T404 548T387 522T382 473L376 365H377Q409 363
+426 364Q472 366 512 392T552 471Q552 511 522 534T448 558Q418 558 404 548Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="358" d="M45 645L48 701H313L310 649L45 645Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="387" d="M286 716T324 676T362 573Q362 527 341 491T283 434T202 413Q135 413 97 451T59 553Q59 597 81 634T140 694T220 716Q286 716 324 676ZM174 670T147 637T119 557Q119 516 143 488T206 459Q248
+459 275 492T303 569Q303 611 279 640T216 670Q174 670 147 637Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="568" d="M324 516L315 357L509 356L506 304L313 303L304 135H244L252 302H61L64 358L255 357L264 516H324ZM493 54L490 0H45L48 50L493 54Z" />
+<glyph unicode="&#xb2;" glyph-name="uni00B2" horiz-adv-x="374" d="M259 716T292 691T325 616Q325 579 301 543T199 453Q161 426 140 404T111 360L200 358L237 357Q267 357 282 365T299 398H323L314 306H58Q61 362 93 403T185 492Q257 549 257 614Q257 645 241
+663T195 682Q171 682 152 668T129 637Q138 628 138 612Q138 601 130 593T109 584Q98 584 90 593T81 615Q81 637 97 660T142 700T210 716Q259 716 292 691Z" />
+<glyph unicode="&#xb3;" glyph-name="uni00B3" horiz-adv-x="358" d="M252 716T282 691T312 623Q312 595 288 568T221 530Q270 526 295 499T321 430Q321 376 282 341T176 306Q122 306 90 331T57 395Q57 412 66 425T92 439Q106 439 113 430T121 409Q121 393 111
+382Q112 362 130 350T173 338Q212 338 235 366T259 429Q259 461 240 486T177 512Q158 512 148 511L149 538H161Q215 538 234 566T254 618Q254 647 239 666T192 685Q166 685 149 672T126 639Q133 630 133 618Q133 607 125 599T104 591Q92 592 85 600T78 621Q78 642
+93 664T137 701T201 716Q252 716 282 691Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="240" d="M45 599L123 731Q142 763 165 763Q177 763 185 755Q195 745 195 731Q195 710 172 686L69 579L45 599Z" />
+<glyph unicode="&#xb5;" glyph-name="uni00B5" horiz-adv-x="592" d="M457 136Q456 127 456 112Q456 75 466 59T496 42Q516 42 540 60L549 44Q533 23 505 6T445 -11Q412 -11 399 8T380 58Q313 -11 231 -11Q189 -11 164 8T121 72H118Q117 19 121 -24T134 -132Q144
+-197 142 -220Q141 -242 132 -256T102 -271Q75 -271 66 -251T58 -188L94 500H172L158 242Q157 228 157 202Q157 125 179 83T255 40Q291 40 324 57T378 105L399 500H475L457 136Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="490" d="M367 -255H301L349 659L262 657L213 -255H146L183 408Q128 412 89 445T50 542Q50 592 71 627T126 681T199 700H417L367 -255Z" />
+<glyph unicode="&#xb7;" glyph-name="middot" horiz-adv-x="237" d="M148 389T162 372T177 330Q177 302 159 283T117 263Q94 263 79 280T63 324Q63 351 82 370T125 389Q148 389 162 372Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="293" d="M45 -209Q101 -199 137 -180T173 -133Q173 -117 164 -110T139 -102Q115 -102 93 -117L59 -100L94 8H144L114 -77Q144 -58 181 -58Q212 -58 229 -74T247 -117Q247 -174 187 -201T49 -240L45 -209Z" />
+<glyph unicode="&#xb9;" glyph-name="uni00B9" horiz-adv-x="270" d="M182 382Q180 355 177 343L229 345L227 311H74L75 339Q103 339 114 358T128 412L140 646H138L74 609L60 635L173 716H198L182 382Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="362" d="M268 716T301 677T335 573Q335 521 317 476T263 403T181 375Q122 375 92 417T61 523Q61 575 80 619T134 689T216 716Q268 716 301 677ZM168 687T145 645T121 537Q121 485 136 446T189
+407Q232 407 253 455T275 560Q275 612 260 649T207 687Q168 687 145 645Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="521" d="M235 548L487 277V273L193 -7L169 20L388 277V279L206 522L235 548ZM91 464L274 274V271L62 77L37 102L174 269V271L62 438L91 464Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="718" d="M182 382Q180 355 177 343L229 345L227 311H74L75 339Q103 339 114 358T128 412L140 646H138L74 609L60 635L173 716H198L182 382ZM588 716L623 689L118 -16L87 7L588 716ZM504 4L505 33Q534
+34 545 50T558 97V109H389L391 139L602 415H629L616 146L672 145L670 109H614L610 36L652 38L650 4H504ZM437 149L561 147L571 326H570L437 149Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="733" d="M182 382Q180 355 177 343L229 345L227 311H74L75 339Q103 339 114 358T128 412L140 646H138L74 609L60 635L173 716H198L182 382ZM580 716L615 689L110 -16L79 7L580 716ZM621 414T654 389T687
+314Q687 277 663 241T561 151Q523 124 502 102T473 58L562 56L599 55Q629 55 644 63T661 96H685L676 4H420Q423 60 455 101T547 190Q619 247 619 312Q619 343 603 361T557 380Q533 380 514 366T491 335Q500 326 500 310Q500 299 492 291T471 282Q460 282 452 291T443
+313Q443 335 459 358T504 398T572 414Q621 414 654 389Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="793" d="M252 716T282 691T312 623Q312 595 288 568T221 530Q270 526 295 499T321 430Q321 376 282 341T176 306Q122 306 90 331T57 395Q57 412 66 425T92 439Q106 439 113 430T121 409Q121 393
+111 382Q112 362 130 350T173 338Q212 338 235 366T259 429Q259 461 240 486T177 512Q158 512 148 511L149 538H161Q215 538 234 566T254 618Q254 647 239 666T192 685Q166 685 149 672T126 639Q133 630 133 618Q133 607 125 599T104 591Q92 592 85 600T78 621Q78
+642 93 664T137 701T201 716Q252 716 282 691ZM653 716L688 689L183 -16L152 7L653 716ZM579 4L580 33Q609 34 620 50T633 97V109H464L466 139L677 415H704L691 146L747 145L745 109H689L685 36L727 38L725 4H579ZM512 149L636 147L646 326H645L512 149Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="465" d="M217 398T203 414T188 453Q188 479 204 497T245 516Q267 516 282 500T296 457Q295 433 277 416T238 398Q217 398 203 414ZM103 -216T58 -173T12 -65Q12 -49 13 -42Q19 11 57 52T161 143Q206
+177 226 196T246 235Q246 248 237 257T207 266Q186 266 168 259L158 294Q188 312 238 312Q263 312 289 295T314 245Q312 219 292 197T230 139Q172 93 140 53T103 -44Q102 -50 102 -63Q102 -115 129 -146T217 -177Q245 -177 270 -167T311 -140T332 -107Q317 -95
+317 -68Q317 -49 329 -36T362 -23Q382 -23 395 -36T409 -72Q409 -103 382 -137T308 -193T200 -216Q103 -216 58 -173Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="631" d="M532 150Q541 124 548 92T553 40L618 44L616 0H399L400 33Q460 34 460 83Q460 100 452 128L423 222L167 216L127 109Q112 70 96 40L171 44L169 0H-14L-13 33Q22 34 44 64T93 158L319 719H341L532
+150ZM305 580L263 468Q251 439 202 308L183 259H412Q355 438 307 580H305ZM222 855Q190 875 190 898Q190 910 197 917Q208 928 221 928Q239 928 262 908L389 790L368 762L222 855Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="631" d="M532 150Q541 124 548 92T553 40L618 44L616 0H399L400 33Q460 34 460 83Q460 100 452 128L423 222L167 216L127 109Q112 70 96 40L171 44L169 0H-14L-13 33Q22 34 44 64T93 158L319 719H341L532
+150ZM305 580L263 468Q251 439 202 308L183 259H412Q355 438 307 580H305ZM284 790L411 908Q434 928 452 928Q465 928 476 917Q483 910 483 898Q483 875 451 855L305 762L284 790Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="631" d="M532 150Q541 124 548 92T553 40L618 44L616 0H399L400 33Q460 34 460 83Q460 100 452 128L423 222L167 216L127 109Q112 70 96 40L171 44L169 0H-14L-13 33Q22 34 44 64T93 158L319 719H341L532
+150ZM305 580L263 468Q251 439 202 308L183 259H412Q355 438 307 580H305ZM501 763L327 852H325L155 765L140 792L336 932H338L519 791L501 763Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="631" d="M532 150Q541 124 548 92T553 40L618 44L616 0H399L400 33Q460 34 460 83Q460 100 452 128L423 222L167 216L127 109Q112 70 96 40L171 44L169 0H-14L-13 33Q22 34 44 64T93 158L319 719H341L532
+150ZM305 580L263 468Q251 439 202 308L183 259H412Q355 438 307 580H305ZM203 850T164 793L136 810Q156 854 190 880T257 907Q285 907 304 898T349 869Q369 855 381 848T410 841Q460 841 497 900L523 886Q501 829 470 807T401 784Q377 784 358 793T315 820Q292
+836 278 843T246 850Q203 850 164 793Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="631" d="M532 150Q541 124 548 92T553 40L618 44L616 0H399L400 33Q460 34 460 83Q460 100 452 128L423 222L167 216L127 109Q112 70 96 40L171 44L169 0H-14L-13 33Q22 34 44 64T93 158L319 719H341L532
+150ZM305 580L263 468Q251 439 202 308L183 259H412Q355 438 307 580H305ZM226 780T213 796T199 837Q199 863 215 881T253 899Q272 899 284 884T297 844Q297 818 282 799T246 780Q226 780 213 796ZM388 780T375 796T361 837Q361 863 377 881T414 899Q434 899 446
+883T459 842Q459 816 444 798T407 780Q388 780 375 796Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="631" d="M532 150Q541 124 548 92T553 40L618 44L616 0H399L400 33Q460 34 460 83Q460 100 452 128L423 222L167 216L127 109Q112 70 96 40L171 44L169 0H-14L-13 33Q22 34 44 64T93 158L319 719H341L532
+150ZM305 580L263 468Q251 439 202 308L183 259H412Q355 438 307 580H305ZM283 719T251 746T218 826Q218 874 251 905T328 936Q374 936 407 909T440 830Q440 781 407 750T330 719Q283 719 251 746ZM354 749T370 769T387 820Q387 863 371 885T328 907Q303 907 287
+886T271 832Q271 796 288 773T332 749Q354 749 370 769Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="955" d="M887 525H854Q858 607 824 637T726 665L640 663Q604 662 588 650T566 616T558 544L549 383H623Q671 383 695 388T731 414T746 477H779L768 259H735Q737 302 727 320T694 343T621 347Q595 347 547
+345L535 118Q532 62 528 40L721 37Q790 36 828 73T871 195H905L889 0H377L379 36Q421 37 436 58T453 130L458 221L214 216L87 41V40L164 44L162 0H-24L-22 33Q12 33 36 56T94 125L482 659L483 660L393 656L395 700H891L887 525ZM476 582H475L245 259H460L476 582Z"
+/>
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="689" d="M470 716T518 702T611 656L609 710H663L651 479H615Q610 572 558 623T417 675Q343 675 281 632T181 511T144 331Q144 245 177 178T267 73T396 36Q463 36 526 65T632 148L657 127Q594 48 518
+16T367 -16H350L327 -75Q341 -67 361 -62T395 -57Q429 -57 446 -75T463 -121Q463 -178 397 -209T255 -251L249 -218Q304 -208 342 -186T381 -135Q381 -120 372 -112T346 -104Q318 -104 299 -119L267 -102L296 -9Q221 6 166 52T80 166T50 316Q50 418 91 509T215
+658T413 716Q470 716 518 702Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="619" d="M551 525H518Q522 607 488 637T390 665L304 663Q268 662 252 650T230 616T222 544L213 384L285 383Q332 382 357 388T395 414T410 477H443L432 259H399Q400 297 393 316T367 341T316 348L284
+347L211 344L199 115Q196 59 192 37L383 40Q453 41 492 75T535 195H569L553 0H41L43 33Q78 34 93 49T112 85T118 156L142 588Q143 622 149 660L76 656L78 700H555L551 525ZM263 855Q231 875 231 898Q231 910 238 917Q249 928 262 928Q280 928 303 908L430 790L409
+762L263 855Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="619" d="M551 525H518Q522 607 488 637T390 665L304 663Q268 662 252 650T230 616T222 544L213 384L285 383Q332 382 357 388T395 414T410 477H443L432 259H399Q400 297 393 316T367 341T316 348L284
+347L211 344L199 115Q196 59 192 37L383 40Q453 41 492 75T535 195H569L553 0H41L43 33Q78 34 93 49T112 85T118 156L142 588Q143 622 149 660L76 656L78 700H555L551 525ZM325 790L452 908Q475 928 493 928Q506 928 517 917Q524 910 524 898Q524 875 492 855L346
+762L325 790Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="619" d="M551 525H518Q522 607 488 637T390 665L304 663Q268 662 252 650T230 616T222 544L213 384L285 383Q332 382 357 388T395 414T410 477H443L432 259H399Q400 297 393 316T367 341T316 348L284
+347L211 344L199 115Q196 59 192 37L383 40Q453 41 492 75T535 195H569L553 0H41L43 33Q78 34 93 49T112 85T118 156L142 588Q143 622 149 660L76 656L78 700H555L551 525ZM542 763L368 852H366L196 765L181 792L377 932H379L560 791L542 763Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="619" d="M551 525H518Q522 607 488 637T390 665L304 663Q268 662 252 650T230 616T222 544L213 384L285 383Q332 382 357 388T395 414T410 477H443L432 259H399Q400 297 393 316T367 341T316 348L284
+347L211 344L199 115Q196 59 192 37L383 40Q453 41 492 75T535 195H569L553 0H41L43 33Q78 34 93 49T112 85T118 156L142 588Q143 622 149 660L76 656L78 700H555L551 525ZM267 780T254 796T240 837Q240 863 256 881T294 899Q313 899 325 884T338 844Q338 818 323
+799T287 780Q267 780 254 796ZM429 780T416 796T402 837Q402 863 418 881T455 899Q475 899 487 883T500 842Q500 816 485 798T448 780Q429 780 416 796Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="333" d="M297 667Q263 666 248 653T228 619T222 554L199 119Q198 72 192 40L264 44L262 0H41L43 33Q78 34 93 49T112 85T118 156L141 588Q142 622 148 660L76 656L78 700H299L297 667ZM97 855Q65 875
+65 898Q65 910 72 917Q83 928 96 928Q114 928 137 908L264 790L243 762L97 855Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="333" d="M297 667Q263 666 248 653T228 619T222 554L199 119Q198 72 192 40L264 44L262 0H41L43 33Q78 34 93 49T112 85T118 156L141 588Q142 622 148 660L76 656L78 700H299L297 667ZM159 790L286 908Q309
+928 327 928Q340 928 351 917Q358 910 358 898Q358 875 326 855L180 762L159 790Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="332" d="M199 932H200L354 791L335 764L191 852H189L48 772L32 792L199 932ZM297 667Q263 666 248 653T228 619T222 554L199 119Q198 72 192 40L264 44L262 0H41L43 33Q78 34 93 49T112 85T118
+156L141 588Q142 622 148 660L76 656L78 700H299L297 667Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="333" d="M144 897T156 881T169 840Q169 814 154 796T118 778Q98 778 85 794T71 835Q71 861 87 879T125 897Q144 897 156 881ZM296 897T308 882T321 842Q321 816 306 797T270 778Q250 778 237 794T223
+835Q223 861 239 879T277 897Q296 897 308 882ZM297 667Q263 666 248 653T228 619T222 554L199 119Q198 72 192 40L264 44L262 0H41L43 33Q78 34 93 49T112 85T118 156L141 588Q142 622 148 660L76 656L78 700H299L297 667Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="738" d="M489 702T592 620T695 376Q695 275 650 190T516 52T299 0H40L42 33Q77 34 92 49T111 85T117 156L127 329L24 328L26 378H129L141 588Q145 638 148 660L74 656L77 700L309 701Q489 702 592 620ZM387
+38T456 83T563 206T602 380Q602 513 527 588T303 664Q266 664 250 653T228 620T221 551L212 378H342L340 332L209 330L198 118Q195 62 191 40Q235 38 298 38Q387 38 456 83Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="762" d="M741 667Q709 666 694 654T675 622T669 564L668 544L640 -11H592L183 573H181L165 139Q164 129 164 110Q162 62 158 40L230 44L228 0H45L46 33Q113 33 116 112L143 660L76 656L78 700H197L599
+128H601L622 588Q625 637 629 660L557 656L559 700H743L741 667ZM286 850T247 793L219 810Q239 854 273 880T340 907Q368 907 387 898T432 869Q452 855 464 848T493 841Q543 841 580 900L606 886Q584 829 553 807T484 784Q460 784 441 793T398 820Q375 836 361
+843T329 850Q286 850 247 793Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="788" d="M524 716T599 666T710 536T746 369Q746 279 705 190T581 43T382 -16Q271 -16 196 34T85 162T49 327Q49 431 94 520T222 662T413 716Q524 716 599 666ZM328 676T268 627T177 501T145 343Q145
+268 170 195T250 74T387 25Q469 25 528 73T619 197T650 353Q650 434 622 508T539 629T408 676Q328 676 268 627ZM317 855Q285 875 285 898Q285 910 292 917Q303 928 316 928Q334 928 357 908L484 790L463 762L317 855Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="788" d="M524 716T599 666T710 536T746 369Q746 279 705 190T581 43T382 -16Q271 -16 196 34T85 162T49 327Q49 431 94 520T222 662T413 716Q524 716 599 666ZM328 676T268 627T177 501T145 343Q145
+268 170 195T250 74T387 25Q469 25 528 73T619 197T650 353Q650 434 622 508T539 629T408 676Q328 676 268 627ZM379 790L506 908Q529 928 547 928Q560 928 571 917Q578 910 578 898Q578 875 546 855L400 762L379 790Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="788" d="M524 716T599 666T710 536T746 369Q746 279 705 190T581 43T382 -16Q271 -16 196 34T85 162T49 327Q49 431 94 520T222 662T413 716Q524 716 599 666ZM328 676T268 627T177 501T145 343Q145
+268 170 195T250 74T387 25Q469 25 528 73T619 197T650 353Q650 434 622 508T539 629T408 676Q328 676 268 627ZM596 763L422 852H420L250 765L235 792L431 932H433L614 791L596 763Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="788" d="M524 716T599 666T710 536T746 369Q746 279 705 190T581 43T382 -16Q271 -16 196 34T85 162T49 327Q49 431 94 520T222 662T413 716Q524 716 599 666ZM328 676T268 627T177 501T145 343Q145
+268 170 195T250 74T387 25Q469 25 528 73T619 197T650 353Q650 434 622 508T539 629T408 676Q328 676 268 627ZM298 850T259 793L231 810Q251 854 285 880T352 907Q380 907 399 898T444 869Q464 855 476 848T505 841Q555 841 592 900L618 886Q596 829 565 807T496
+784Q472 784 453 793T410 820Q387 836 373 843T341 850Q298 850 259 793Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="788" d="M524 716T599 666T710 536T746 369Q746 279 705 190T581 43T382 -16Q271 -16 196 34T85 162T49 327Q49 431 94 520T222 662T413 716Q524 716 599 666ZM328 676T268 627T177 501T145 343Q145
+268 170 195T250 74T387 25Q469 25 528 73T619 197T650 353Q650 434 622 508T539 629T408 676Q328 676 268 627ZM321 780T308 796T294 837Q294 863 310 881T348 899Q367 899 379 884T392 844Q392 818 377 799T341 780Q321 780 308 796ZM483 780T470 796T456 837Q456
+863 472 881T509 899Q529 899 541 883T554 842Q554 816 539 798T502 780Q483 780 470 796Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="534" d="M463 534L497 491L308 312L476 132L434 86L263 270L75 92L37 136L224 311L63 484L106 529L270 354L463 534Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="787" d="M682 721L630 641Q687 591 716 519T745 369Q745 279 704 190T580 43T381 -16Q297 -16 228 16L168 -77L124 -50L182 42Q115 90 82 166T48 327Q48 431 93 520T221 662T412 716Q509 716 582 675L632
+755L682 721ZM328 676T269 628T177 505T144 349Q142 285 161 218T220 103L547 621Q487 676 407 676Q328 676 269 628ZM259 65Q313 25 386 25Q468 25 527 73T618 197T649 353Q649 413 633 471T587 574L259 65Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="744" d="M742 667Q706 666 691 651T672 616T666 544L652 311Q644 166 575 75T366 -16Q268 -16 211 15T129 110T103 280Q103 298 105 340L118 579Q121 625 126 660L54 657L56 700H278L276 667Q232 667
+218 644T202 588L189 335Q188 319 188 286Q188 173 229 107T381 41Q484 41 538 111T601 306L619 588Q623 638 626 660L554 656L556 700H743L742 667ZM308 855Q276 875 276 898Q276 910 283 917Q294 928 307 928Q325 928 348 908L475 790L454 762L308 855Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="744" d="M742 667Q706 666 691 651T672 616T666 544L652 311Q644 166 575 75T366 -16Q268 -16 211 15T129 110T103 280Q103 298 105 340L118 579Q121 625 126 660L54 657L56 700H278L276 667Q232 667
+218 644T202 588L189 335Q188 319 188 286Q188 173 229 107T381 41Q484 41 538 111T601 306L619 588Q623 638 626 660L554 656L556 700H743L742 667ZM370 790L497 908Q520 928 538 928Q551 928 562 917Q569 910 569 898Q569 875 537 855L391 762L370 790Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="744" d="M742 667Q706 666 691 651T672 616T666 544L652 311Q644 166 575 75T366 -16Q268 -16 211 15T129 110T103 280Q103 298 105 340L118 579Q121 625 126 660L54 657L56 700H278L276 667Q232
+667 218 644T202 588L189 335Q188 319 188 286Q188 173 229 107T381 41Q484 41 538 111T601 306L619 588Q623 638 626 660L554 656L556 700H743L742 667ZM587 763L413 852H411L241 765L226 792L422 932H424L605 791L587 763Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="744" d="M742 667Q706 666 691 651T672 616T666 544L652 311Q644 166 575 75T366 -16Q268 -16 211 15T129 110T103 280Q103 298 105 340L118 579Q121 625 126 660L54 657L56 700H278L276 667Q232
+667 218 644T202 588L189 335Q188 319 188 286Q188 173 229 107T381 41Q484 41 538 111T601 306L619 588Q623 638 626 660L554 656L556 700H743L742 667ZM312 780T299 796T285 837Q285 863 301 881T339 899Q358 899 370 884T383 844Q383 818 368 799T332 780Q312
+780 299 796ZM474 780T461 796T447 837Q447 863 463 881T500 899Q520 899 532 883T545 842Q545 816 530 798T493 780Q474 780 461 796Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="641" d="M667 667Q620 664 587 635T513 538L431 398Q412 364 374 300L369 216Q363 120 364 119Q363 72 357 40L440 44L438 0H207L209 33Q244 34 259 49T278 85T283 156L289 270L131 545Q88 616 83 658L21
+656L23 700H277L275 667Q195 667 195 620Q195 597 216 558L247 504Q302 407 346 341H348Q397 427 465 541Q481 569 490 583Q522 638 542 659L463 656L465 700H669L667 667ZM321 790L448 908Q471 928 489 928Q502 928 513 917Q520 910 520 898Q520 875 488 855L342
+762L321 790Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="577" d="M297 667Q267 666 252 656T231 627T223 577Q241 578 275 578Q417 578 488 530T559 392Q559 337 528 285T421 196T217 159H201L199 107Q196 58 192 40L264 44L262 0H41L43 33Q78 34 93 49T112
+85T118 156L141 588Q145 638 148 660L76 656L78 700H299L297 667ZM221 538L203 198Q217 197 228 197T248 198Q346 199 405 251T465 388Q465 465 412 502T267 539L221 538Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="650" d="M439 760T481 740T542 690T561 624Q561 613 560 608Q554 566 531 539T469 481Q436 455 422 438T407 397Q407 375 426 356T489 305Q529 277 554 255T598 203T616 135Q616 71 570 30T448 -11Q384
+-11 338 18T292 96Q292 117 305 131T336 145Q355 145 365 133T376 103Q376 85 368 72Q375 51 396 39T446 26Q534 26 534 121Q534 154 510 180T437 244Q386 283 361 312T337 378Q340 413 357 436T407 486Q443 516 462 543T485 614Q489 659 460 693T370 727Q301 727
+264 687T209 571Q200 528 195 476T182 333Q178 264 175 236Q173 204 171 190Q159 37 143 -54T83 -208T-46 -271Q-85 -271 -105 -258T-126 -219Q-126 -205 -116 -191T-86 -177Q-67 -177 -57 -190T-46 -224Q-41 -227 -32 -229T-16 -232Q20 -232 39 -191T67 -85T83
+107Q91 218 93 245L96 285Q106 403 113 458L23 457L28 500H120Q143 625 200 692T375 760Q439 760 481 740Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="548" d="M397 511T463 494Q419 168 419 94Q419 68 424 54T447 39Q466 39 486 63T520 136L548 130Q543 102 527 69T483 13T418 -11Q344 -11 344 79Q344 123 362 213H359Q317 81 267 35T164 -11Q106 -11
+72 31T37 163Q37 259 70 338T169 464T329 511Q397 511 463 494ZM240 475T200 434T141 325T121 180Q121 33 186 33Q230 33 274 102T347 272T376 463Q346 475 298 475Q240 475 200 434ZM245 686Q222 710 222 731Q222 745 232 755Q240 763 252 763Q275 763 294 731L372
+599L348 579L245 686Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="548" d="M397 511T463 494Q419 168 419 94Q419 68 424 54T447 39Q466 39 486 63T520 136L548 130Q543 102 527 69T483 13T418 -11Q344 -11 344 79Q344 123 362 213H359Q317 81 267 35T164 -11Q106 -11
+72 31T37 163Q37 259 70 338T169 464T329 511Q397 511 463 494ZM240 475T200 434T141 325T121 180Q121 33 186 33Q230 33 274 102T347 272T376 463Q346 475 298 475Q240 475 200 434ZM243 599L321 731Q340 763 363 763Q375 763 383 755Q393 745 393 731Q393 710
+370 686L267 579L243 599Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="548" d="M397 511T463 494Q419 168 419 94Q419 68 424 54T447 39Q466 39 486 63T520 136L548 130Q543 102 527 69T483 13T418 -11Q344 -11 344 79Q344 123 362 213H359Q317 81 267 35T164 -11Q106
+-11 72 31T37 163Q37 259 70 338T169 464T329 511Q397 511 463 494ZM240 475T200 434T141 325T121 180Q121 33 186 33Q230 33 274 102T347 272T376 463Q346 475 298 475Q240 475 200 434ZM448 589L323 702H321L185 593L163 619L331 776H333L473 615L448 589Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="548" d="M397 511T463 494Q419 168 419 94Q419 68 424 54T447 39Q466 39 486 63T520 136L548 130Q543 102 527 69T483 13T418 -11Q344 -11 344 79Q344 123 362 213H359Q317 81 267 35T164 -11Q106 -11
+72 31T37 163Q37 259 70 338T169 464T329 511Q397 511 463 494ZM240 475T200 434T141 325T121 180Q121 33 186 33Q230 33 274 102T347 272T376 463Q346 475 298 475Q240 475 200 434ZM359 617T343 624T305 646Q289 658 276 664T248 670Q230 670 210 658T175 625L150
+638Q164 673 197 697T259 721Q282 721 297 714T334 692Q351 680 362 675T386 669Q427 669 460 720L484 708Q466 662 438 640T381 617Q359 617 343 624Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="548" d="M397 511T463 494Q419 168 419 94Q419 68 424 54T447 39Q466 39 486 63T520 136L548 130Q543 102 527 69T483 13T418 -11Q344 -11 344 79Q344 123 362 213H359Q317 81 267 35T164 -11Q106
+-11 72 31T37 163Q37 259 70 338T169 464T329 511Q397 511 463 494ZM240 475T200 434T141 325T121 180Q121 33 186 33Q230 33 274 102T347 272T376 463Q346 475 298 475Q240 475 200 434ZM223 616T211 631T198 668Q198 692 213 708T247 725Q265 725 277 711T289
+675Q289 651 275 634T242 616Q223 616 211 631ZM370 616T358 631T345 668Q345 692 360 708T394 725Q412 725 424 711T436 675Q436 651 422 634T389 616Q370 616 358 631Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="548" d="M397 511T463 494Q419 168 419 94Q419 68 424 54T447 39Q466 39 486 63T520 136L548 130Q543 102 527 69T483 13T418 -11Q344 -11 344 79Q344 123 362 213H359Q317 81 267 35T164 -11Q106 -11
+72 31T37 163Q37 259 70 338T169 464T329 511Q397 511 463 494ZM240 475T200 434T141 325T121 180Q121 33 186 33Q230 33 274 102T347 272T376 463Q346 475 298 475Q240 475 200 434ZM274 570T247 592T219 659Q219 688 234 711T273 748T322 761Q361 761 388 739T416
+673Q416 643 401 620T362 583T313 570Q274 570 247 592ZM336 598T350 617T365 666Q365 695 353 714T321 733Q300 733 285 713T270 664Q270 636 282 617T317 598Q336 598 350 617Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="747" d="M633 511T660 475T687 403Q687 369 662 335T571 271T396 230Q396 39 521 39Q565 39 606 72T678 160L710 141Q668 59 614 24T502 -11Q443 -11 405 10T340 81Q298 35 251 12T154 -11Q91 -11 59 18T26
+97Q26 153 70 191T182 248T321 264Q321 276 324 316Q326 342 326 354Q326 411 306 444T235 477Q197 477 169 459T132 412Q141 401 141 381Q141 366 130 354T100 342Q83 343 72 354T61 383Q61 413 86 442T155 491T255 511Q347 511 381 420H383Q443 511 554 511Q633
+511 660 475ZM481 478T443 420T396 266Q485 274 546 309T607 405Q607 445 587 461T539 478Q481 478 443 420ZM229 229T169 203T109 109Q109 74 133 59T187 44Q223 44 260 63T327 114Q315 171 318 232Q229 229 169 203Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="474" d="M320 511T354 496T408 454T428 394Q428 371 416 358T384 345Q364 345 354 358T343 385Q343 409 356 423Q351 450 330 463T277 476Q198 476 163 402T127 231Q127 131 159 85T249 38Q293 38
+334 67T402 164L437 147Q401 66 349 28T235 -11L212 -77Q242 -58 279 -58Q310 -58 327 -74T345 -117Q345 -174 285 -201T147 -240L143 -209Q199 -199 235 -180T271 -133Q271 -117 262 -110T237 -102Q213 -102 191 -117L157 -100L187 -7Q117 5 78 59T39 208Q39 278
+65 348T146 464T278 511Q320 511 354 496Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="477" d="M342 511T382 483T422 396Q422 322 333 281T127 227Q127 133 155 86T241 39Q287 39 330 69T405 160L438 141Q396 62 344 26T224 -11Q132 -11 86 46T39 205Q39 286 66 355T149 468T282 511Q342
+511 382 483ZM204 477T169 415T128 263Q215 275 277 311T339 401Q339 434 321 455T268 477Q204 477 169 415ZM213 686Q190 710 190 731Q190 745 200 755Q208 763 220 763Q243 763 262 731L340 599L316 579L213 686Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="477" d="M342 511T382 483T422 396Q422 322 333 281T127 227Q127 133 155 86T241 39Q287 39 330 69T405 160L438 141Q396 62 344 26T224 -11Q132 -11 86 46T39 205Q39 286 66 355T149 468T282 511Q342
+511 382 483ZM204 477T169 415T128 263Q215 275 277 311T339 401Q339 434 321 455T268 477Q204 477 169 415ZM211 599L289 731Q308 763 331 763Q343 763 351 755Q361 745 361 731Q361 710 338 686L235 579L211 599Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="477" d="M342 511T382 483T422 396Q422 322 333 281T127 227Q127 133 155 86T241 39Q287 39 330 69T405 160L438 141Q396 62 344 26T224 -11Q132 -11 86 46T39 205Q39 286 66 355T149 468T282 511Q342
+511 382 483ZM204 477T169 415T128 263Q215 275 277 311T339 401Q339 434 321 455T268 477Q204 477 169 415ZM416 589L291 702H289L153 593L131 619L299 776H301L441 615L416 589Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="477" d="M342 511T382 483T422 396Q422 322 333 281T127 227Q127 133 155 86T241 39Q287 39 330 69T405 160L438 141Q396 62 344 26T224 -11Q132 -11 86 46T39 205Q39 286 66 355T149 468T282 511Q342
+511 382 483ZM204 477T169 415T128 263Q215 275 277 311T339 401Q339 434 321 455T268 477Q204 477 169 415ZM191 616T179 631T166 668Q166 692 181 708T215 725Q233 725 245 711T257 675Q257 651 243 634T210 616Q191 616 179 631ZM338 616T326 631T313 668Q313
+692 328 708T362 725Q380 725 392 711T404 675Q404 651 390 634T357 616Q338 616 326 631Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="324" d="M174 511T195 483T217 407Q217 368 200 270Q190 207 185 165T179 81Q179 39 210 39Q229 39 249 63T283 136L311 130Q299 76 268 33T187 -11Q97 -11 97 83Q97 122 102 159T117 251Q127 312 131
+345T136 416Q136 433 130 447T108 461Q89 461 69 437T35 364L7 370Q16 419 48 465T133 511Q174 511 195 483ZM111 686Q88 710 88 731Q88 745 98 755Q106 763 118 763Q141 763 160 731L238 599L214 579L111 686Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="324" d="M174 511T195 483T217 407Q217 368 200 270Q190 207 185 165T179 81Q179 39 210 39Q229 39 249 63T283 136L311 130Q299 76 268 33T187 -11Q97 -11 97 83Q97 122 102 159T117 251Q127 312 131
+345T136 416Q136 433 130 447T108 461Q89 461 69 437T35 364L7 370Q16 419 48 465T133 511Q174 511 195 483ZM109 599L187 731Q206 763 229 763Q241 763 249 755Q259 745 259 731Q259 710 236 686L133 579L109 599Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="324" d="M171 776L297 615L271 589L161 702H159L33 593L11 619L169 776H171ZM174 511T195 483T217 407Q217 368 200 270Q190 207 185 165T179 81Q179 39 210 39Q229 39 249 63T283 136L311 130Q299
+76 268 33T187 -11Q97 -11 97 83Q97 122 102 159T117 251Q127 312 131 345T136 416Q136 433 130 447T108 461Q89 461 69 437T35 364L7 370Q16 419 48 465T133 511Q174 511 195 483Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="324" d="M174 511T195 483T217 407Q217 368 200 270Q190 207 185 165T179 81Q179 39 210 39Q229 39 249 63T283 136L311 130Q299 76 268 33T187 -11Q97 -11 97 83Q97 122 102 159T117 251Q127 312
+131 345T136 416Q136 433 130 447T108 461Q89 461 69 437T35 364L7 370Q16 419 48 465T133 511Q174 511 195 483ZM89 616T77 631T64 668Q64 692 79 708T113 725Q131 725 143 711T155 675Q155 651 141 634T108 616Q89 616 77 631ZM236 616T224 631T211 668Q211 692
+226 708T260 725Q278 725 290 711T302 675Q302 651 288 634T255 616Q236 616 224 631Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="516" d="M360 776L310 716Q385 667 421 571T457 348Q457 159 388 74T210 -11Q164 -11 125 14T63 89T40 209Q40 296 70 363T150 466T258 503Q332 503 372 454Q359 613 278 679L213 600L179 632L242 702Q188
+726 119 725V758Q131 759 153 759Q219 759 273 736L331 802L360 776ZM232 463T200 434T147 350T126 220Q126 129 154 78T228 27Q281 27 314 79T362 206T376 352L375 393Q339 463 264 463Q232 463 200 434Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="615" d="M452 511T478 475T505 381Q505 314 486 189Q475 110 475 85Q475 63 480 51T502 39Q521 39 541 62T575 136L603 129Q598 101 582 69T538 13T473 -11Q428 -11 410 12T392 85Q392 122 405 217Q423
+339 423 403Q423 426 413 445T376 464Q332 464 286 398T210 234T179 53Q179 34 181 0H97Q96 9 96 26Q96 50 100 93T114 206Q114 212 116 226Q117 239 119 253T122 281Q129 342 132 370T135 416Q135 437 130 449T108 461Q89 461 69 437T35 364L7 370Q12 398 28 431T72
+487T137 511Q212 511 212 408Q212 379 207 345T196 283H199Q247 411 294 461T396 511Q452 511 478 475ZM389 617T373 624T335 646Q319 658 306 664T278 670Q260 670 240 658T205 625L180 638Q194 673 227 697T289 721Q312 721 327 714T364 692Q381 680 392 675T416
+669Q457 669 490 720L514 708Q496 662 468 640T411 617Q389 617 373 624Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="521" d="M340 511T383 485T451 410T476 292Q476 210 447 141T362 31T231 -11Q136 -11 88 51T39 213Q39 295 69 363T155 471T286 511Q340 511 383 485ZM226 474T194 443T144 357T127 235Q127 152 154
+90T242 27Q293 27 325 66T373 162T388 273Q388 357 362 415T270 474Q226 474 194 443ZM229 686Q206 710 206 731Q206 745 216 755Q224 763 236 763Q259 763 278 731L356 599L332 579L229 686Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="521" d="M340 511T383 485T451 410T476 292Q476 210 447 141T362 31T231 -11Q136 -11 88 51T39 213Q39 295 69 363T155 471T286 511Q340 511 383 485ZM226 474T194 443T144 357T127 235Q127 152 154
+90T242 27Q293 27 325 66T373 162T388 273Q388 357 362 415T270 474Q226 474 194 443ZM227 599L305 731Q324 763 347 763Q359 763 367 755Q377 745 377 731Q377 710 354 686L251 579L227 599Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="521" d="M340 511T383 485T451 410T476 292Q476 210 447 141T362 31T231 -11Q136 -11 88 51T39 213Q39 295 69 363T155 471T286 511Q340 511 383 485ZM226 474T194 443T144 357T127 235Q127 152
+154 90T242 27Q293 27 325 66T373 162T388 273Q388 357 362 415T270 474Q226 474 194 443ZM432 589L307 702H305L169 593L147 619L315 776H317L457 615L432 589Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="521" d="M340 511T383 485T451 410T476 292Q476 210 447 141T362 31T231 -11Q136 -11 88 51T39 213Q39 295 69 363T155 471T286 511Q340 511 383 485ZM226 474T194 443T144 357T127 235Q127 152 154
+90T242 27Q293 27 325 66T373 162T388 273Q388 357 362 415T270 474Q226 474 194 443ZM343 617T327 624T289 646Q273 658 260 664T232 670Q214 670 194 658T159 625L134 638Q148 673 181 697T243 721Q266 721 281 714T318 692Q335 680 346 675T370 669Q411 669
+444 720L468 708Q450 662 422 640T365 617Q343 617 327 624Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="521" d="M340 511T383 485T451 410T476 292Q476 210 447 141T362 31T231 -11Q136 -11 88 51T39 213Q39 295 69 363T155 471T286 511Q340 511 383 485ZM226 474T194 443T144 357T127 235Q127 152 154
+90T242 27Q293 27 325 66T373 162T388 273Q388 357 362 415T270 474Q226 474 194 443ZM207 616T195 631T182 668Q182 692 197 708T231 725Q249 725 261 711T273 675Q273 651 259 634T226 616Q207 616 195 631ZM354 616T342 631T329 668Q329 692 344 708T378 725Q396
+725 408 711T420 675Q420 651 406 634T373 616Q354 616 342 631Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="269" d="M156 170T170 153T185 111Q185 83 167 64T125 44Q102 44 87 61T71 105Q71 132 90 151T133 170Q156 170 170 153ZM166 516T180 499T195 457Q195 429 177 410T135 390Q112 390 97 407T81 451Q81
+478 100 497T143 516Q166 516 180 499Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="521" d="M489 533L429 446Q476 386 476 292Q476 210 447 141T362 31T231 -11Q172 -11 129 15L66 -77L34 -52L97 41Q68 71 54 115T39 213Q39 295 69 363T155 471T286 511Q346 511 393 479L448 562L489
+533ZM224 474T192 442T144 356T127 234Q127 160 145 112L355 424Q326 474 268 474Q224 474 192 442ZM167 68Q194 27 242 27Q293 27 326 66T373 162T388 274Q388 328 377 372L167 68Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="593" d="M173 511T193 486T214 414Q214 378 198 264Q197 255 189 197T181 99Q181 75 191 56T228 36Q272 36 316 102T388 266T417 447Q417 466 415 500H499Q500 491 500 474Q500 450 495 400T480 270L470
+187Q469 174 465 139T461 84Q461 40 488 40Q507 40 527 63T561 136L589 130Q584 102 568 69T524 13T459 -11Q420 -11 401 13T382 79Q382 123 400 213H397Q349 84 305 37T208 -11Q152 -11 126 25T99 119Q99 162 104 206T119 312Q121 323 126 358T131 414Q131 437
+126 449T104 461Q86 461 67 438T34 364L6 370Q15 419 47 465T133 511Q173 511 193 486ZM246 686Q223 710 223 731Q223 745 233 755Q241 763 253 763Q276 763 295 731L373 599L349 579L246 686Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="593" d="M173 511T193 486T214 414Q214 378 198 264Q197 255 189 197T181 99Q181 75 191 56T228 36Q272 36 316 102T388 266T417 447Q417 466 415 500H499Q500 491 500 474Q500 450 495 400T480 270L470
+187Q469 174 465 139T461 84Q461 40 488 40Q507 40 527 63T561 136L589 130Q584 102 568 69T524 13T459 -11Q420 -11 401 13T382 79Q382 123 400 213H397Q349 84 305 37T208 -11Q152 -11 126 25T99 119Q99 162 104 206T119 312Q121 323 126 358T131 414Q131 437
+126 449T104 461Q86 461 67 438T34 364L6 370Q15 419 47 465T133 511Q173 511 193 486ZM244 599L322 731Q341 763 364 763Q376 763 384 755Q394 745 394 731Q394 710 371 686L268 579L244 599Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="593" d="M173 511T193 486T214 414Q214 378 198 264Q197 255 189 197T181 99Q181 75 191 56T228 36Q272 36 316 102T388 266T417 447Q417 466 415 500H499Q500 491 500 474Q500 450 495 400T480
+270L470 187Q469 174 465 139T461 84Q461 40 488 40Q507 40 527 63T561 136L589 130Q584 102 568 69T524 13T459 -11Q420 -11 401 13T382 79Q382 123 400 213H397Q349 84 305 37T208 -11Q152 -11 126 25T99 119Q99 162 104 206T119 312Q121 323 126 358T131 414Q131
+437 126 449T104 461Q86 461 67 438T34 364L6 370Q15 419 47 465T133 511Q173 511 193 486ZM449 589L324 702H322L186 593L164 619L332 776H334L474 615L449 589Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="593" d="M173 511T193 486T214 414Q214 378 198 264Q197 255 189 197T181 99Q181 75 191 56T228 36Q272 36 316 102T388 266T417 447Q417 466 415 500H499Q500 491 500 474Q500 450 495 400T480 270L470
+187Q469 174 465 139T461 84Q461 40 488 40Q507 40 527 63T561 136L589 130Q584 102 568 69T524 13T459 -11Q420 -11 401 13T382 79Q382 123 400 213H397Q349 84 305 37T208 -11Q152 -11 126 25T99 119Q99 162 104 206T119 312Q121 323 126 358T131 414Q131 437
+126 449T104 461Q86 461 67 438T34 364L6 370Q15 419 47 465T133 511Q173 511 193 486ZM224 616T212 631T199 668Q199 692 214 708T248 725Q266 725 278 711T290 675Q290 651 276 634T243 616Q224 616 212 631ZM371 616T359 631T346 668Q346 692 361 708T395 725Q413
+725 425 711T437 675Q437 651 423 634T390 616Q371 616 359 631Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="514" d="M428 511T447 474T466 383Q466 292 430 193T333 -17Q261 -149 196 -210T69 -271Q33 -271 11 -253T-12 -208Q-12 -187 1 -175T29 -162Q50 -162 61 -175T72 -214Q86 -221 94 -221Q132 -223 175
+-173T247 -75Q229 48 197 173T125 395Q113 421 104 433T79 446Q62 446 52 425T41 368Q41 351 42 342L10 338Q9 348 9 368Q9 427 30 469T101 511Q146 511 171 480T214 398Q234 344 250 282T288 121Q294 92 303 19H305Q353 103 386 195T419 363Q419 387 415 406T404
+434Q395 428 379 428Q361 428 350 439T339 467Q339 488 353 499T386 511Q428 511 447 474ZM191 599L269 731Q288 763 311 763Q323 763 331 755Q341 745 341 731Q341 710 318 686L215 579L191 599Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="512" d="M182 670T173 586L159 439Q154 398 151 363T145 299L148 298Q183 427 232 469T341 511Q406 511 436 459T466 326Q466 177 398 83T189 -11Q160 -11 129 -7L123 -134Q122 -141 122 -156Q120 -195
+115 -217L178 -214V-255H-11V-225Q15 -225 27 -208T43 -167T50 -86Q79 340 101 619Q105 673 108 692L36 688L40 728Q100 728 126 735T167 755H196Q182 670 173 586ZM269 464T227 397T158 231T129 47Q140 36 162 30T206 24Q302 25 341 109T380 307Q380 464 314 464Q269
+464 227 397Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="514" d="M428 511T447 474T466 383Q466 292 430 193T333 -17Q261 -149 196 -210T69 -271Q33 -271 11 -253T-12 -208Q-12 -187 1 -175T29 -162Q50 -162 61 -175T72 -214Q86 -221 94 -221Q132 -223
+175 -173T247 -75Q229 48 197 173T125 395Q113 421 104 433T79 446Q62 446 52 425T41 368Q41 351 42 342L10 338Q9 348 9 368Q9 427 30 469T101 511Q146 511 171 480T214 398Q234 344 250 282T288 121Q294 92 303 19H305Q353 103 386 195T419 363Q419 387 415 406T404
+434Q395 428 379 428Q361 428 350 439T339 467Q339 488 353 499T386 511Q428 511 447 474ZM171 616T159 631T146 668Q146 692 161 708T195 725Q213 725 225 711T237 675Q237 651 223 634T190 616Q171 616 159 631ZM318 616T306 631T293 668Q293 692 308 708T342
+725Q360 725 372 711T384 675Q384 651 370 634T337 616Q318 616 306 631Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="583" d="M521 353L518 291L63 287L66 353H521Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="770" d="M708 353L705 291L63 287L66 353H708Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="211" d="M101 480T84 502T66 558Q66 600 87 657T148 757L173 737Q153 713 135 670T117 586V578H119Q130 582 142 582Q160 582 173 568T186 536Q186 510 170 495T130 480Q101 480 84 502Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="196" d="M146 760T163 738T181 682Q181 640 160 583T99 483L74 503Q94 527 112 570T130 654V662H128Q117 658 105 658Q87 658 74 672T61 704Q61 730 77 745T117 760Q146 760 163 738Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="237" d="M128 98T145 76T163 20Q163 -22 142 -79T81 -179L56 -159Q76 -135 94 -92T112 -8V0H110Q99 -4 87 -4Q69 -4 56 10T43 42Q43 68 59 83T99 98Q128 98 145 76Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="388" d="M101 480T84 502T66 558Q66 600 87 657T148 757L173 737Q153 713 135 670T117 586V578H119Q130 582 142 582Q160 582 173 568T186 536Q186 510 170 495T130 480Q101 480 84 502ZM277
+480T260 502T242 558Q242 600 263 657T324 757L349 737Q329 713 311 670T293 586V578H295Q306 582 318 582Q336 582 349 568T362 536Q362 510 346 495T306 480Q277 480 260 502Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="372" d="M146 760T163 738T181 682Q181 640 160 583T99 483L74 503Q94 527 112 570T130 654V662H128Q117 658 105 658Q87 658 74 672T61 704Q61 730 77 745T117 760Q146 760 163 738ZM322 760T339
+738T357 682Q357 640 336 583T275 483L250 503Q270 527 288 570T306 654V662H304Q293 658 281 658Q263 658 250 672T237 704Q237 730 253 745T293 760Q322 760 339 738Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="413" d="M128 98T145 76T163 20Q163 -22 142 -79T81 -179L56 -159Q76 -135 94 -92T112 -8V0H110Q99 -4 87 -4Q69 -4 56 10T43 42Q43 68 59 83T99 98Q128 98 145 76ZM304 98T321 76T339 20Q339
+-22 318 -79T257 -179L232 -159Q252 -135 270 -92T288 -8V0H286Q275 -4 263 -4Q245 -4 232 10T219 42Q219 68 235 83T275 98Q304 98 321 76Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="389" d="M246 522T279 504T331 453T350 381Q350 339 328 304T270 247T191 226Q152 226 120 244T68 294T49 365Q49 408 70 444T127 501T206 522Q246 522 279 504Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="369" d="M319 549L343 522L124 264V262L306 19L277 -7L25 264V268L319 549Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="369" d="M45 -7L21 20L240 278V280L58 523L87 549L339 278V274L45 -7Z" />
+</font>
+</defs>
+</svg>
diff --git a/static/fonts/lora-v10-latin-italic.ttf b/static/fonts/lora-v10-latin-italic.ttf
new file mode 100644
index 0000000..b8a2077
Binary files /dev/null and b/static/fonts/lora-v10-latin-italic.ttf differ
diff --git a/static/fonts/lora-v10-latin-italic.woff b/static/fonts/lora-v10-latin-italic.woff
new file mode 100644
index 0000000..735af88
Binary files /dev/null and b/static/fonts/lora-v10-latin-italic.woff differ
diff --git a/static/fonts/lora-v10-latin-italic.woff2 b/static/fonts/lora-v10-latin-italic.woff2
new file mode 100644
index 0000000..d761c18
Binary files /dev/null and b/static/fonts/lora-v10-latin-italic.woff2 differ
diff --git a/static/fonts/lora-v9-latin-700.eot b/static/fonts/lora-v9-latin-700.eot
new file mode 100644
index 0000000..9085eba
Binary files /dev/null and b/static/fonts/lora-v9-latin-700.eot differ
diff --git a/static/fonts/lora-v9-latin-700.svg b/static/fonts/lora-v9-latin-700.svg
new file mode 100644
index 0000000..c3f6276
--- /dev/null
+++ b/static/fonts/lora-v9-latin-700.svg
@@ -0,0 +1,10264 @@
+<?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">
+<defs >
+<font id="Lora" horiz-adv-x="1198" ><font-face
+ font-family="Lora"
+ units-per-em="2048"
+ panose-1="2 0 8 3 0 0 0 2 0 4"
+ ascent="2061"
+ descent="-563"
+ alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="539" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="528" d="M412 126Q412 93 400 64T366 14T318 -20T262 -33Q232 -33 206 -21T159 13T127 64T115 126Q115 159 127 188T159 240T207 274T264 287Q296 287 323 275T370 240T401 189T412 126ZM333 437H194L117
+1281Q114 1314 122 1347T148 1406T196 1450T264 1467Q305 1467 334 1450T381 1407T406 1347T410 1281L333 437Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="667" d="M105 1006L88 1467H286L269 1006H105ZM398 1006L381 1467H579L562 1006H398Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1784" d="M332 -33L415 315H75L118 497H453L555 901H210L253 1083H594L685 1467H890L802 1083H1157L1248 1467H1453L1365 1083H1708V1081L1667 901H1327L1230 497H1572L1530 315H1193L1113 -33H895L978
+315H629L549 -33H332ZM666 497H1016L1118 901H764L666 497Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1205" d="M618 115Q673 115 715 130T786 173T830 238T845 320Q845 372 820 408T754 473T659 523T546 570Q457 606 377 652T236 758T139 897T103 1076Q103 1136 121 1202T185 1325T310 1421T513 1466V1714H705L703
+1446Q794 1422 868 1369H870L863 1453H1021V974H887Q859 1146 782 1232T562 1319Q518 1319 483 1306T422 1270T383 1214T369 1143Q369 1095 384 1059T436 992T532 929T680 857Q731 834 783 809T883 752T975 685T1049 603T1099 502T1118 380Q1118 300 1092 232T1017
+110T894 22T727 -26L726 -315H539L537 -26Q471 -16 405 7T278 68H276L283 -19H125V460H259Q287 286 380 201T618 115Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1852" d="M335 1089Q335 1051 341 1006T362 921T404 856T473 829Q510 829 535 849T576 902T597 972T604 1047Q604 1087 598 1133T576 1218T534 1283T469 1309Q430 1309 404 1286T363 1229T341 1157T335 1089ZM1578
+1332L395 -34L262 90L1429 1467L1578 1332ZM84 1059Q84 1130 110 1203T185 1334T307 1430T472 1467Q565 1467 636 1433T756 1343T830 1217T855 1077Q855 996 826 922T744 790T623 699T472 665Q377 665 305 698T184 786T109 912T84 1059ZM1250 391Q1250 353 1256
+308T1277 223T1319 158T1388 131Q1425 131 1450 151T1491 204T1512 274T1519 349Q1519 389 1513 435T1491 520T1449 585T1384 611Q1345 611 1319 588T1278 531T1256 459T1250 391ZM999 361Q999 432 1025 505T1100 636T1223 732T1387 769Q1480 769 1551 735T1671
+645T1745 519T1770 379Q1770 298 1741 224T1659 92T1538 1T1387 -33Q1292 -33 1220 0T1099 88T1024 214T999 361Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1372" d="M1139 536Q1139 417 1099 315L1131 288Q1170 255 1206 227T1275 178T1334 147T1382 135V0H1164Q1145 0 1090 30T962 117Q881 45 774 6T535 -33Q446 -33 359 -11T202 57T91 176T48 349Q48
+418 72 479T138 591T239 682T367 748Q312 808 279 859T227 955T204 1043T198 1129Q199 1206 227 1268T307 1375T429 1443T589 1467Q670 1467 736 1441T848 1371T920 1268T946 1145Q946 1082 922 1024T856 915T761 822T651 746Q657 739 687 708T764 630T866 529T981
+420H983Q989 444 991 470T994 522Q994 564 987 593T967 640T933 667T885 678V809H1229V655Q1209 656 1179 658T1117 663V661Q1139 613 1139 536ZM601 113Q677 113 741 138T857 209L754 302Q695 355 648 399T562 483T490 559T426 631Q397 607 378 576T347 514T330
+452T325 400Q325 259 398 186T601 113ZM443 1139Q443 1108 452 1071T476 996T513 922T560 855Q599 885 627 923T675 1003T704 1083T714 1155Q714 1230 679 1276T579 1322Q521 1322 482 1276T443 1139Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="386" d="M106 1006L87 1467H299L281 1006H106Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="607" d="M327 489Q327 443 331 373T347 217T377 38T424 -148T493 -327T586 -484L512 -555Q461 -508 407 -445T302 -303T205 -134T125 57T70 266T50 489Q50 602 70 712T124 926T204 1123T301 1298T406 1444T511
+1556L586 1485Q533 1415 493 1327T425 1144T377 951T347 767T332 607T327 489Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="607" d="M280 512Q280 558 276 628T260 784T230 963T183 1149T114 1328T21 1485L95 1556Q146 1509 200 1446T305 1304T402 1135T482 944T537 735T557 512Q557 399 537 289T483 75T403 -122T306 -297T201
+-443T96 -555L21 -484Q74 -414 114 -326T182 -143T230 50T260 234T275 394T280 512Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1092" d="M497 1060Q467 1151 454 1214T440 1320Q440 1347 444 1373T460 1420T493 1454T547 1467Q580 1467 600 1454T633 1420T649 1373T653 1320Q653 1277 640 1214T596 1060Q655 1103 700 1131T781 1177T845
+1201T900 1208Q916 1208 934 1203T968 1185T994 1153T1004 1102Q1004 1079 995 1062T970 1031T934 1007T892 991Q848 977 785 971T626 965Q704 908 752 866T825 789Q843 764 856 737T869 683Q869 667 861 650T839 619T806 595T766 585Q731 585 703 608T653 662Q627
+698 601 757T547 907Q517 815 491 757T439 664Q416 633 389 609T326 585Q305 585 287 594T254 618T232 649T224 683Q224 712 236 741T277 805T352 878T466 965Q368 965 306 971T201 992Q179 999 159 1008T123 1031T98 1062T88 1103Q88 1133 97 1153T122 1186T155
+1203T190 1209Q217 1209 246 1202T312 1177T394 1131T497 1060Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1078" d="M82 748L435 746V1112H637V746L996 744V556L637 555V168H435V554L82 553V748Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="512" d="M425 65Q425 -35 380 -149T237 -382L158 -325Q174 -304 194 -268T233 -188T263 -96T275 -2Q260 -7 251 -8T231 -9Q204 -9 179 -1T134 23T102 65T90 127Q90 158 101 186T132 235T180 268T243 281Q289
+281 323 265T379 219T413 150T425 65Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="964" d="M105 753H859V539L105 532V753Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="478" d="M387 126Q387 93 377 64T348 14T302 -20T242 -33Q208 -33 180 -21T132 13T101 64T90 126Q90 159 102 188T134 240T182 274T239 287Q271 287 298 275T345 240T376 189T387 126Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="1432" d="M1381 1427L211 -555L52 -450L1195 1547L1381 1427Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1302" d="M400 753Q400 682 403 607T416 460T444 326T491 215T562 140T663 112Q736 112 782 158T855 281T892 461T902 677Q902 760 899 840T885 991T858 1124T814 1229T747 1297T655 1322Q581 1322 532 1276T454
+1152T413 971T400 753ZM89 711Q89 797 105 886T152 1060T231 1218T342 1347T485 1435T660 1467Q759 1467 838 1436T979 1350T1085 1222T1157 1067T1199 895T1213 721Q1213 636 1198 547T1152 375T1075 217T966 87T825 -1T651 -33Q547 -33 465 -2T320 84T214 210T142
+366T102 537T89 711Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="831" d="M85 1001L13 1124L481 1467H605V336Q605 308 605 281T603 230T601 185T597 152L751 158V0H163V135Q197 137 224 141T270 163T299 216T309 313V1134L85 1001Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1091" d="M477 1321Q422 1321 378 1296T312 1235Q334 1212 343 1182T352 1129Q352 1110 345 1087T321 1045T277 1012T212 998Q180 999 156 1011T116 1043T91 1090T82 1147Q82 1178 95 1214T133 1285T197 1353T284
+1411T395 1452T528 1467Q610 1467 692 1447T840 1381T947 1262T988 1080Q988 1028 970 973T902 849T764 694T537 495Q480 449 439 407T370 327T327 261T307 211L708 200H724Q755 200 781 205T825 226T853 266T863 333H993L977 0H80Q80 106 108 189T181 341T283
+467T400 580Q474 649 526 711T611 831T659 944T674 1055Q674 1104 665 1151T634 1236T573 1297T477 1321Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1146" d="M72 269Q72 300 82 328T111 377T156 411T216 424Q252 424 276 411T316 379T337 336T344 292Q344 273 337 247T312 198Q322 179 341 164T385 139T438 123T496 117Q560 117 608 137T689 194T738 280T755
+388Q755 442 741 495T692 590T599 659T452 686Q445 686 431 686T401 684T370 682T346 680V827Q357 825 365 825T381 825Q533 822 612 892T692 1092Q692 1142 682 1184T648 1257T589 1305T502 1322Q474 1322 449 1315T402 1295T365 1268T340 1237Q359 1214 366 1185T373
+1136Q373 1117 366 1095T342 1052T299 1019T234 1005Q202 1006 178 1018T138 1050T113 1097T104 1154Q104 1199 130 1254T211 1356T345 1435T534 1467Q629 1467 712 1448T857 1386T954 1273T990 1103Q990 1063 974 1015T921 921T826 838T682 782V780Q780 763 852
+726T971 639T1041 527T1064 401Q1064 296 1024 215T910 79T737 -4T516 -33Q400 -33 316 -6T178 64T98 161T72 269Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1121" d="M852 370V336Q852 308 852 281T850 230T848 185T844 152L998 158V0H413V135Q447 137 474 141T520 163T549 216T559 313V370H25V563L728 1467H852V556H1052V370H852ZM215 561H559V1011L215 561Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1106" d="M338 188Q345 171 363 157T404 133T452 118T498 112Q559 112 602 138T672 205T711 298T724 403Q724 434 722 472T712 549T688 626T645 693T578 740T479 758Q434 758 370 742T233 683L145 750L138 1434H668Q703
+1434 731 1438T780 1457T812 1498T823 1567H953L937 1234L294 1223V858Q317 868 347 877T411 892T478 903T543 907Q670 907 763 870T918 769T1010 622T1040 447Q1040 328 995 238T876 88T708 -2T513 -33Q412 -33 334 -8T201 58T119 148T90 247Q90 278 100 306T128
+356T173 391T232 404Q269 404 293 391T333 359T354 316T361 272Q361 255 356 232T338 188Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1178" d="M596 750Q564 750 533 740T475 711T427 668T392 615Q392 567 396 511T409 399T434 291T473 199T527 135T598 111Q652 111 687 134T742 197T771 286T780 389Q780 420 778 458T770 537T752 615T720 684T669
+732T596 750ZM1029 1192Q1029 1165 1021 1139T996 1092T955 1059T899 1046Q861 1046 835 1058T793 1090T771 1132T764 1176Q764 1193 770 1219T793 1265Q776 1288 744 1305T665 1323Q613 1323 573 1300T503 1238T453 1146T419 1035T400 915T391 798Q409 819 439
+839T508 876T589 903T671 913Q780 913 859 878T989 780T1065 630T1090 440Q1090 343 1053 257T948 107T789 5T587 -33Q450 -33 356 15T204 154T120 373T94 660Q94 719 103 801T136 974T200 1152T303 1310T452 1423T655 1467Q752 1467 822 1442T939 1376T1007 1287T1029
+1192Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="960" d="M315 1231H304Q271 1231 245 1224T200 1199T171 1154T160 1085H30L46 1434H918V1248Q849 1106 799 974T709 706T632 428T556 122Q549 93 537 66T506 16T464 -19T410 -33Q377 -33 355 -23T320 5T300
+44T294 89Q294 111 299 139T322 216T369 341T450 537T573 825T746 1226L315 1231Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1172" d="M1025 1119Q1025 1066 1003 1017T946 924T868 846T781 785V783Q938 686 1012 578T1086 352Q1086 252 1044 180T932 60T771 -10T579 -33Q531 -33 478 -25T373 0T275 44T193 111T136 203T115 323Q115
+382 138 437T199 542T285 632T385 702V704Q317 747 270 794T194 890T151 986T138 1076Q138 1176 181 1249T291 1371T441 1443T602 1467Q681 1467 757 1444T893 1377T988 1268T1025 1119ZM792 309Q792 347 779 387T735 469T653 550T526 629Q482 595 452 555T402
+473T373 395T364 329Q364 282 381 242T428 173T498 128T587 111Q635 111 673 126T737 169T778 232T792 309ZM423 1133Q423 1093 441 1054T489 979T561 914T648 867Q683 893 711 925T760 991T792 1058T803 1121Q803 1170 789 1208T749 1271T691 1310T618 1323Q573
+1323 537 1308T476 1266T437 1206T423 1133Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1179" d="M585 684Q618 684 648 694T705 723T751 766T786 819Q786 918 777 1009T744 1169T680 1281T580 1323Q533 1323 499 1300T443 1237T409 1148T398 1045Q398 1014 400 976T408 897T427 819T461 750T512
+702T585 684ZM148 236Q148 263 157 290T184 339T226 374T283 388Q321 388 346 376T386 344T407 302T413 258Q413 249 412 238T406 214T397 191T384 171Q400 148 432 131T511 113Q584 113 636 152T722 258T772 410T788 588Q788 600 788 612T787 636Q769 615 739
+595T672 558T594 531T512 521Q404 521 324 556T192 656T114 807T88 998Q88 1101 124 1187T225 1335T380 1432T581 1467Q718 1467 813 1415T969 1271T1056 1051T1083 774Q1083 698 1075 609T1044 430T983 257T881 109T730 6T522 -33Q421 -33 350 -10T234 50T169
+136T148 236Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="507" d="M402 126Q402 93 392 64T363 14T317 -20T257 -33Q223 -33 195 -21T147 13T116 64T105 126Q105 159 117 188T149 240T197 274T254 287Q286 287 313 275T360 240T391 189T402 126ZM402 951Q402 918 392
+889T363 839T317 805T257 792Q223 792 195 804T147 838T116 889T105 951Q105 984 117 1013T149 1065T197 1099T254 1112Q286 1112 313 1100T360 1065T391 1014T402 951Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="546" d="M438 65Q438 -35 393 -149T250 -382L171 -325Q187 -304 207 -268T246 -188T276 -96T288 -2Q273 -7 264 -8T244 -9Q217 -9 192 -1T147 23T115 65T103 127Q103 158 114 186T145 235T193 268T256
+281Q302 281 336 265T392 219T426 150T438 65ZM431 951Q431 918 421 889T392 839T346 805T286 792Q252 792 224 804T176 838T145 889T134 951Q134 984 146 1013T178 1065T226 1099T283 1112Q315 1112 342 1100T389 1065T420 1014T431 951Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1128" d="M79 733L1001 1142V926L364 646V644L1001 364V146L79 547V733Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1181" d="M130 546L1052 542V353L130 349V546ZM130 926L1052 923V733L130 730V926Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1128" d="M1049 555L127 146V362L764 642V644L127 924V1142L1049 741V555Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="1031" d="M655 126Q655 93 643 64T609 14T561 -20T505 -33Q475 -33 449 -21T402 13T370 64T358 126Q358 159 370 188T402 240T450 274T507 287Q539 287 566 275T613 240T644 189T655 126ZM638 1100Q638
+1148 630 1189T602 1260T549 1307T463 1324Q438 1324 414 1318T370 1303T333 1282T307 1258Q328 1237 336 1207T345 1156Q345 1136 338 1112T314 1067T273 1032T212 1017Q177 1017 151 1028T108 1058T83 1105T75 1163Q75 1218 107 1272T197 1369T332 1440T502 1467Q623
+1467 706 1439T841 1365T914 1261T937 1141Q937 1069 906 1008T827 895T724 798T622 714T543 641T511 573Q511 547 530 530T592 513Q606 513 621 514T655 521L687 416Q661 402 634 394T580 380T529 373T485 371Q452 371 420 378T363 403T323 447T307 513Q307 538
+313 561T338 612T389 676T474 764Q510 800 540 835T591 909T625 995T638 1100Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1624" d="M717 297Q743 297 769 324T820 398T866 503T904 628T932 760T946 884Q920 892 887 892Q848 892 816 873T757 822T711 746T676 653T655 550T648 446Q648 374 666 336T717 297ZM1416 57Q1295 -78 1145
+-140T825 -203Q704 -203 603 -176T422 -100T280 17T179 165T118 337T97 525Q97 612 119 703T184 881T292 1045T440 1179T629 1270T857 1304Q967 1304 1060 1278T1227 1205T1358 1095T1452 958T1509 803T1528 638Q1528 554 1511 485T1463 361T1393 266T1309 198T1219
+158T1130 145Q1094 145 1057 154T990 187T942 255T923 369Q923 379 923 389T925 410Q897 341 865 293T799 214T730 170T662 156Q619 156 580 173T510 226T462 318T444 453Q444 553 474 649T564 822T712 946T915 993Q960 993 1025 983T1160 950Q1154 904 1147 850T1133
+740T1118 628T1106 523T1097 432T1094 365Q1094 342 1097 321T1110 282T1133 255T1169 244Q1209 244 1240 263T1295 315T1334 388T1360 473T1374 560T1378 639Q1378 779 1337 886T1225 1067T1056 1178T845 1216Q757 1216 680 1190T537 1118T420 1008T332 869T277
+710T258 537Q258 382 307 263T440 62T636 -61T875 -103Q937 -103 1004 -90T1136 -50T1261 17T1370 112L1416 57Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1368" d="M844 428L399 420L366 324Q361 310 354 289T337 245T318 199T301 158L447 164V0H8V141Q51 141 80 160T132 212T171 286T205 375L605 1470H747L1184 354Q1190 339 1198 314T1216 261T1232 204T1242 152L1360
+158V0H808V135Q863 135 885 156T907 215Q907 236 901 261T885 316L844 428ZM451 573H792L699 830Q672 905 651 978T620 1109H618Q610 1074 593 1005T543 839L451 573Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1354" d="M102 135Q136 137 163 141T209 163T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434L670 1438Q789 1438 885 1417T1050 1352T1156 1242T1193 1086Q1193 1034 1176
+990T1124 905T1033 831T900 776V774Q1002 758 1076 723T1200 639T1273 531T1297 407Q1297 307 1260 231T1156 104T998 26T799 0H102V135ZM536 145Q590 145 639 145T736 148Q798 151 843 171T917 227T960 309T974 414Q974 484 952 531T892 608T807 649T710 661Q613
+661 544 659V326Q544 298 544 272T542 221T540 178T536 145ZM651 807Q716 808 760 830T831 889T869 976T881 1082Q881 1144 862 1185T812 1250T742 1284T664 1294Q639 1293 617 1288T579 1266T554 1215T544 1122V804L651 807Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1410" d="M394 738Q394 605 422 494T505 303T640 178T824 133Q888 133 953 150T1079 199T1194 279T1292 385L1390 295Q1315 191 1233 127T1070 28T913 -20T774 -33Q615 -33 486 23T264 178T122 410T72 696Q72 789
+92 882T151 1061T251 1221T390 1350T569 1436T788 1467Q828 1467 872 1461T963 1441T1054 1410T1140 1366H1142L1135 1453H1293V974H1159Q1131 1145 1046 1231T815 1318Q708 1318 629 1269T497 1139T420 954T394 738Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1555" d="M102 1434L699 1436Q834 1436 944 1408T1142 1330T1293 1212T1399 1066T1461 902T1482 731Q1482 648 1463 562T1404 394T1300 241T1149 116T947 31T689 0H102V135Q136 137 163 142T209 164T238 216T248
+313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434ZM695 1299Q657 1300 629 1295T582 1272T554 1219T544 1125V336Q544 308 544 281T542 230T540 185T536 152Q551 153 576 153T630 152T686 151T732 150Q844 150 924 195T1057 316T1134 489T1159
+688Q1159 845 1127 959T1034 1147T887 1259T695 1299Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1278" d="M544 672V336Q544 308 544 282T542 231T540 188T536 155L811 156Q856 156 901 171T981 220T1038 311T1060 451H1195L1183 0H102V135Q136 137 163 142T209 164T238 216T248 313V1098Q248 1126 248 1153T250
+1204T252 1249T256 1282L102 1276V1434H1127L1139 1037H1004Q1004 1120 981 1172T921 1253T841 1292T755 1301L681 1299Q649 1298 624 1293T581 1269T554 1216T544 1121V814H785L776 991H934V493H799Q799 557 783 594T740 649T677 670T598 673L544 672Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1169" d="M544 622V336Q544 308 544 281T542 230T540 185T536 152L718 158V0H102V135Q136 137 163 142T209 164T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H1127L1139
+1037H1004Q1004 1120 981 1172T921 1253T841 1292T755 1301L681 1299Q649 1298 624 1293T581 1269T554 1216T544 1121V764H756L747 941H905V443H770Q770 507 754 544T711 599T648 620T569 623L544 622Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1545" d="M1373 69H1323Q1264 69 1206 53T1082 18T941 -17T771 -33Q604 -33 474 23T255 178T120 410T73 696Q73 789 92 882T151 1061T250 1221T388 1350T567 1436T785 1467Q825 1467 875 1461T978 1441T1081 1410T1173
+1366H1175L1168 1453H1326V974H1192Q1178 1060 1144 1124T1060 1232T947 1296T812 1318Q705 1318 626 1269T496 1139T419 954T394 738Q394 605 421 494T503 301T636 175T821 130Q851 130 889 133T967 143T1044 160T1111 185V375Q1111 403 1111 430T1113 481T1115
+526T1119 559L965 553V711H1509V576Q1474 574 1449 568T1407 544T1382 491T1373 398V69Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1652" d="M1404 336Q1404 308 1404 281T1402 230T1400 185T1396 152L1550 158V0H962V135Q996 137 1023 141T1069 163T1098 216T1108 313V645L544 638V336Q544 308 544 281T542 230T540 185T536 152L690 158V0H102V135Q136
+137 163 141T209 163T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H690V1299Q655 1297 628 1292T583 1270T554 1218T544 1121V800H1108V1098Q1108 1126 1108 1153T1110 1204T1112 1249T1116 1282L962 1276V1434H1550V1299Q1515
+1297 1488 1292T1443 1270T1414 1218T1404 1121V336Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="792" d="M544 336Q544 308 544 281T542 230T540 185T536 152L690 158V0H102V135Q136 137 163 141T209 163T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H690V1299Q655 1297
+628 1292T583 1270T554 1218T544 1121V336Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="924" d="M722 521Q722 373 694 268T612 96T478 -2T295 -33Q235 -33 182 -17T88 29T25 98T2 186Q2 220 11 251T40 305T88 343T154 357Q190 357 215 345T258 314T283 269T291 219Q291 202 286 184T273 148Q277 138
+285 132T303 121T321 116T335 114Q379 114 402 152T426 277V1098Q426 1126 426 1153T428 1204T430 1249T434 1282L280 1276V1434H868V1299Q833 1297 806 1292T761 1270T732 1218T722 1121V521Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1459" d="M544 809H693L849 1077Q867 1108 886 1140T924 1200T959 1249T990 1282V1284L860 1276V1434H1361V1299Q1326 1297 1289 1290T1211 1261T1128 1198T1044 1089L848 775V772Q890 747 921 718T976 654L1187
+357Q1218 313 1251 274T1318 204T1386 156T1456 135V0H1140Q1127 1 1102 22T1048 75T990 142T940 208L738 503Q724 522 709 543T678 583T647 619T618 646L544 645V336Q544 308 544 281T542 230T540 185T536 152L690 158V0H102V135Q136 137 163 141T209 163T238
+216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H690V1299Q655 1297 628 1292T583 1270T554 1218T544 1121V809Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1238" d="M102 0V135Q136 137 163 141T209 163T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H690V1299Q655 1297 628 1292T583 1270T554 1218T544 1121V336Q544 308 544
+282T542 231T540 188T536 155L811 156Q932 156 1001 239T1070 491H1206L1194 0H102Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1990" d="M1445 1102L1026 -20H835L560 654Q548 682 530 730T491 840T452 971T416 1116H414Q417 1001 419 900T420 706L417 336Q417 308 417 281T415 230T412 185T408 152L563 158V0H96V135Q130 137 157 142T202
+164T231 216T242 313L254 1098Q254 1126 255 1153T257 1204T259 1249T263 1282L108 1276V1434H561L871 641Q885 605 901 560T934 470T963 385T985 318H987Q1013 389 1035 455T1084 588L1400 1434H1873V1299Q1838 1297 1811 1292T1764 1270T1735 1218T1727 1121L1758
+336Q1759 308 1759 281T1757 230T1754 185T1750 152L1904 158V0H1335V135Q1369 137 1397 142T1444 164T1473 216T1481 313L1464 747Q1463 765 1461 805T1457 896T1452 1000T1447 1102H1445Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1583" d="M1365 -20H1191L536 817Q484 884 424 970H422L425 336Q425 308 425 281T423 230T421 185T417 152L571 158V0H104V135Q138 137 165 141T211 163T240 216T250 313L245 1098Q245 1126 245 1153T247 1204T249
+1249T253 1282L99 1276V1434H420L1046 644Q1098 578 1131 531T1189 448H1191V1098Q1191 1126 1191 1153T1193 1204T1195 1249T1199 1282L1045 1276V1434H1511V1299Q1476 1297 1449 1292T1404 1270T1375 1218T1365 1121V-20Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1574" d="M394 741Q394 676 403 605T432 465T484 332T561 222T668 146T806 117Q877 117 932 141T1028 208T1099 306T1146 424T1172 553T1180 682Q1180 820 1156 936T1082 1137T956 1269T776 1317Q703 1317 647
+1293T548 1225T476 1126T429 1005T402 874T394 741ZM72 717Q72 803 91 892T150 1064T249 1220T389 1349T569 1435T791 1467Q915 1467 1016 1435T1197 1348T1333 1220T1429 1063T1485 891T1503 717Q1503 632 1484 544T1425 372T1326 215T1186 86T1006 -1T785 -33Q655
+-33 552 -2T370 82T234 208T142 364T89 538T72 717Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1308" d="M693 519Q669 518 650 518T613 517T579 517T544 518V337Q544 281 542 230T536 152L710 158V0H102V135Q136 137 163 141T209 163T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102
+1276V1434L685 1438Q818 1439 926 1413T1112 1333T1231 1193T1273 989Q1274 903 1239 822T1133 674T952 566T693 519ZM636 665Q720 665 781 686T881 750T938 853T957 992Q957 1060 944 1109T909 1191T859 1245T800 1276T739 1290T682 1294Q649 1294 624 1289T581
+1267T554 1218T544 1132V671Q566 669 589 667T636 665Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1576" d="M73 717Q73 803 92 892T151 1064T250 1220T390 1349T570 1435T792 1467Q916 1467 1017 1435T1198 1348T1334 1220T1430 1063T1486 891T1504 717Q1504 615 1475 509T1389 307T1244 134T1042 13V11Q1086
+11 1122 7T1193 -9T1261 -44T1337 -104Q1407 -170 1449 -210T1519 -272T1569 -301T1626 -309V-446H1538Q1467 -446 1420 -443T1335 -429T1263 -396T1185 -335Q1120 -278 1070 -224T974 -127T878 -59T766 -33Q640 -33 540 -2T362 83T231 210T141 366T90 539T73 717ZM395
+741Q395 676 404 605T433 465T485 332T562 222T669 146T807 117Q878 117 933 141T1029 208T1100 306T1147 424T1173 553T1181 682Q1181 820 1157 936T1083 1137T957 1269T777 1317Q704 1317 648 1293T549 1225T477 1126T430 1005T403 874T395 741Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1404" d="M1147 327Q1181 276 1208 240T1260 181T1313 147T1376 135V0H1039Q1003 26 966 76T888 193L738 438Q712 480 691 508T652 558Q635 557 622 557T596 557Q584 557 572 557T544 558V337Q544 281 542 230T536
+152L710 158V0H102V135Q136 137 163 141T209 163T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434L685 1438Q818 1438 925 1416T1110 1344T1228 1212T1269 1013Q1270 945 1248 882T1182 765T1070 670T910 602V600Q948 585 986
+549T1051 472L1147 327ZM644 705Q729 705 789 723T887 780T943 877T961 1013Q961 1079 946 1125T907 1203T853 1252T791 1279T732 1291T682 1294Q649 1294 624 1289T581 1267T554 1218T544 1132V712Q568 709 593 707T644 705Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1225" d="M634 115Q689 115 734 130T812 171T863 233T881 308Q881 362 852 401T775 469T669 522T552 569Q453 609 368 655T221 761T124 898T89 1076Q89 1118 99 1163T132 1252T192 1335T282 1403T406 1450T568
+1467Q608 1467 654 1461T746 1442T834 1412T911 1369H913L906 1453H1064V974H930Q902 1149 811 1234T575 1319Q531 1319 492 1306T422 1270T373 1214T355 1143Q355 1095 375 1057T436 986T539 922T686 857Q737 836 792 811T899 756T997 688T1078 604T1133 503T1154
+380Q1154 289 1117 213T1010 83T844 -2T628 -33Q588 -33 543 -27T452 -8T361 24T274 68H272L279 -19H121V460H255Q269 374 303 310T386 202T499 137T634 115Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1331" d="M1285 1434L1297 970H1162Q1162 1133 1095 1215T909 1297L811 1296V336Q811 308 811 281T809 230T807 185T803 152L967 158V0H369V135Q403 136 430 141T476 164T505 216T515 313V1294H420Q303 1294 236
+1215T167 970H32L44 1434H1285Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1556" d="M1361 608Q1361 431 1318 309T1198 111T1017 1T789 -33Q673 -33 585 -11T431 53T321 153T249 281T211 433T199 602V1098Q199 1126 199 1153T201 1204T203 1249T207 1282L53 1276V1434H642V1299Q607 1297
+580 1292T535 1270T506 1218T496 1121V558Q496 424 525 340T603 207T712 141T838 123Q918 123 981 150T1089 231T1156 368T1179 561V1098Q1179 1126 1179 1153T1181 1204T1183 1249T1187 1282L1033 1276V1434H1507V1299Q1472 1297 1445 1292T1400 1270T1371 1218T1361
+1121V608Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1449" d="M690 677Q708 635 722 599T750 528T776 460T806 386H808Q831 447 856 522T907 667L1062 1096Q1068 1113 1077 1138T1097 1190T1120 1241T1146 1282V1284L989 1276V1434H1450V1299Q1416 1297 1386 1285T1330
+1247T1279 1180T1233 1080L824 -12H656L184 1087Q173 1112 163 1139T144 1193T131 1243T126 1282L17 1276V1434H620V1299H609Q554 1299 520 1279T485 1212Q485 1182 501 1141L690 677Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="2080" d="M1195 1434L1427 679Q1449 607 1466 535T1501 384H1503Q1521 453 1541 522T1581 667L1695 1096Q1709 1145 1729 1196T1779 1282V1284L1622 1276V1434H2083V1299Q2049 1297 2018 1285T1960 1248T1909 1181T1866
+1080L1531 -12H1350L1107 721Q1080 802 1064 877T1033 1023H1031Q1020 953 1006 889T970 756L737 -12H559L194 1091Q183 1116 173 1143T154 1195T141 1243T136 1282L27 1276V1434H630V1299H618Q562 1299 531 1280T499 1210Q498 1196 501 1180T509 1145L632 677Q641
+642 649 611T666 547T683 475T701 387H703Q708 405 717 439T737 515T761 602T785 687T806 759T820 806L1010 1434H1195Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1432" d="M652 1299Q586 1299 556 1284T525 1239Q525 1222 535 1202T563 1159L743 927H745L901 1143Q922 1172 938 1193T969 1229T995 1257T1021 1282V1284L868 1276V1434H1334V1299Q1298 1294 1264 1278T1194
+1234T1122 1165T1044 1067L847 798L1233 307Q1268 262 1295 224T1340 152L1423 158V0H811V135Q874 135 899 148T925 185Q925 203 912 226T879 275L671 539H669L490 291Q469 262 453 241T425 204T401 176T377 152V150L523 158V0H72V135Q130 148 190 200T326 354L564
+672L234 1089Q199 1134 173 1185T131 1282L28 1276V1434H652V1299Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1365" d="M858 568V336Q858 308 858 281T856 230T854 185T850 152L1014 158V0H416V135Q450 136 477 141T523 164T552 216T562 313V492L184 1087Q169 1111 155 1138T130 1191T113 1241T106 1282L7 1276V1434H610V1299Q604
+1299 599 1299T587 1300Q530 1300 497 1280T464 1219Q465 1202 470 1183T489 1141L646 884Q653 872 667 848T696 796T726 738T749 687H752Q762 710 786 759T848 887L954 1096Q962 1112 975 1137T1003 1189T1033 1241T1062 1282V1284L905 1276V1434H1357V1299Q1321
+1293 1292 1279T1235 1240T1182 1175T1125 1080L858 568Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1237" d="M557 388Q513 322 470 261T381 146V144L755 136Q812 136 859 152T941 203T995 296T1014 438H1149L1137 0H82V154L695 1088Q733 1146 766 1193T838 1289V1291L487 1300Q430 1300 383 1285T301 1233T247
+1139T228 997H93L105 1434H1147V1280L557 388Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="791" d="M129 1546H784V1401L394 1395L385 -371L788 -377V-522H127L129 1546Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="1432" d="M51 1427L1221 -555L1380 -450L237 1547L51 1427Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="791" d="M662 -522H7V-377L397 -371L406 1395L3 1401V1546H664L662 -522Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1686" d="M936 1467L1563 894H1282L837 1316H835L391 904H123L754 1467H936Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="1704" d="M221 -102L1480 -111V-317H221V-102Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="578" d="M145 1374Q121 1397 106 1428T91 1492Q91 1512 99 1532T121 1567T155 1592T198 1602Q233 1602 266 1582T320 1527L488 1241L394 1158L145 1374Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1074" d="M631 471Q573 465 522 450T434 411T375 352T353 274Q354 245 364 225T389 192T425 173T468 167Q516 167 557 187T630 242L631 471ZM106 787Q106 847 139 897T231 982T369 1037T538 1057Q628 1057 698
+1034T817 963T891 841T917 665Q917 613 917 574T916 498T916 421T915 329Q915 314 915 293T914 248T912 199T908 150L1040 156V0H653Q649 29 648 48T645 94H643Q573 24 497 -4T340 -33Q274 -33 222 -13T135 45T80 131T61 240Q61 305 84 357T147 450T243 521T361
+571T494 602T632 616V723Q632 764 625 798T601 858T556 897T486 910Q444 908 408 893T346 851Q362 834 366 812T371 775Q371 753 363 731T338 690T295 659T233 647Q203 648 179 659T139 689T115 733T106 787Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1173" d="M128 1157Q128 1194 129 1242T136 1336L-8 1330V1485Q63 1485 117 1491T210 1506T272 1525T307 1546H418V947Q487 1009 558 1033T694 1057Q786 1057 862 1021T992 917T1077 753T1107 538Q1107 414 1073
+310T975 129T818 10T610 -33Q582 -33 546 -29T470 -11T390 27T313 91H311L252 0H128V1157ZM583 872Q532 870 489 847T418 785V307Q418 253 432 217T468 158T519 127T575 117Q642 117 686 150T758 237T796 362T807 507Q807 579 794 645T754 761T685 842T583 872Z"
+/>
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1060" d="M713 756Q713 774 719 799T738 845Q727 865 710 878T673 899T634 910T599 913Q547 913 504 890T430 820T381 705T363 548Q363 470 377 398T425 271T512 183T645 150Q686 150 727 161T807 193T879 243T941
+307L1035 216Q979 139 920 91T801 15T682 -23T567 -33Q463 -33 372 2T212 104T103 268T63 490Q63 605 102 708T211 889T379 1011T596 1057Q693 1057 767 1033T890 970T965 881T990 776Q990 745 981 717T953 668T907 635T846 623Q808 623 783 636T742 668T720 711T713
+756Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1221" d="M1045 1546V329Q1045 314 1045 293T1043 248T1041 199T1037 150L1170 156V0H781L770 95H768Q700 24 628 -4T479 -33Q387 -33 311 3T181 107T96 271T66 486Q66 610 102 714T205 895T365 1014T573 1057Q630
+1057 673 1046T755 1020V1156Q755 1171 755 1192T757 1237T759 1286T763 1335L619 1329V1485Q690 1485 744 1491T837 1506T899 1525T934 1546H1045ZM586 154Q638 154 683 181T755 251V867Q733 882 694 893T610 905Q539 903 492 870T417 782T378 658T366 517Q366
+451 378 386T416 270T485 186T586 154Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1102" d="M585 913Q540 913 505 896T443 849T401 777T377 683H754Q752 746 739 790T704 861T651 901T585 913ZM1037 551L364 539Q364 455 379 384T429 261T518 180T653 150Q684 150 722 158T799 184T879 231T954
+304L1046 217Q991 138 929 89T805 13T682 -23T569 -33Q456 -33 363 5T203 114T100 285T63 510Q63 618 99 716T203 891T364 1012T575 1057Q632 1057 688 1047T796 1014T892 952T969 858T1019 726T1037 551Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="755" d="M497 861L500 333Q500 318 500 297T498 250T496 199T492 150L635 156V0H88V133Q131 133 155 146T192 183T207 240T210 315V856L62 853V1024H210V1084Q210 1208 238 1295T318 1438T445 1520T612 1546Q684
+1546 734 1530T815 1488T859 1430T873 1366Q873 1338 865 1313T839 1269T797 1239T739 1228Q682 1228 651 1261T619 1346Q619 1363 624 1386Q614 1397 600 1400T578 1403Q552 1402 536 1390T511 1360T499 1320T495 1276L496 1024H725V866L497 861Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1140" d="M583 -114Q560 -113 533 -112T479 -109T424 -105T375 -98Q341 -124 325 -164T309 -240Q309 -280 328 -312T383 -366T469 -401T583 -413Q655 -413 710 -398T803 -360T860 -307T879 -249Q879 -186 807 -154T583
+-114ZM553 919Q512 919 481 899T427 846T393 768T381 677Q381 623 392 573T426 485T481 423T556 400Q597 400 628 420T681 473T714 547T725 631Q725 685 715 736T683 828T629 894T553 919ZM1074 985Q1059 985 1043 991T1012 1008T988 1033T975 1064Q961 1061 947
+1046T922 1011T902 970T890 932Q950 881 981 814T1012 668Q1012 579 973 505T870 376T721 292T547 262Q519 262 487 265T423 269Q378 269 348 253T317 207Q317 188 331 175T376 154T457 141T579 131Q697 124 793 106T959 50T1066 -46T1104 -195Q1104 -253 1080
+-302T1015 -392T917 -462T796 -513T663 -544T525 -555Q392 -555 303 -533T159 -473T81 -387T58 -287Q58 -255 67 -222T99 -159T159 -101T252 -52Q210 -40 181 -21T134 21T108 72T100 129Q100 155 110 186T143 248T205 305T300 349V351Q255 368 218 396T155 462T113
+547T98 649Q98 739 136 814T239 943T385 1027T554 1057Q581 1057 613 1054T678 1043T742 1023T799 993Q816 1040 840 1084T896 1164T969 1220T1059 1241Q1128 1241 1164 1205T1201 1109Q1201 1090 1195 1069T1175 1029T1136 998T1074 985Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1271" d="M1107 329Q1107 314 1107 293T1105 248T1103 199T1099 150L1232 156V0H695V133Q738 133 762 146T799 183T814 240T817 315L816 607Q815 742 775 805T650 868Q597 867 548 846T463 793V329Q463 314 463
+293T461 248T459 199T455 150L588 156V0H51V133Q94 133 118 146T155 183T170 240T173 315V1157Q173 1194 174 1242T181 1336L37 1330V1485Q108 1485 162 1491T255 1506T317 1525T352 1546H463V943Q493 967 531 987T610 1023T690 1048T761 1057Q855 1057 920 1031T1027
+949T1088 808T1107 604V329Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="670" d="M495 329Q495 314 495 293T493 248T491 199T487 150L620 156V0H83V133Q126 133 150 146T187 183T202 240T205 315V655Q205 692 206 740T213 834L69 828V983Q140 983 194 989T287 1004T349 1023T384 1044H495V329ZM525
+1393Q525 1358 514 1328T484 1275T436 1239T373 1226Q338 1226 309 1239T258 1275T226 1328T214 1393Q214 1428 226 1459T260 1513T310 1549T370 1562Q403 1562 431 1549T481 1513T513 1459T525 1393Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="603" d="M185 655Q185 692 186 740T193 834L49 828V983Q120 983 174 989T267 1004T329 1023T364 1044H475V4Q475 -138 442 -243T351 -417T214 -521T43 -555Q-14 -555 -56 -541T-125 -503T-166 -449T-180 -387Q-180
+-359 -171 -334T-145 -290T-103 -259T-46 -247Q8 -247 40 -281T72 -369Q72 -385 69 -403Q74 -407 85 -409T105 -412Q133 -412 150 -397T176 -358T187 -308T190 -259L185 655ZM494 1393Q494 1358 483 1328T453 1275T405 1239T342 1226Q307 1226 278 1239T227 1275T195
+1328T183 1393Q183 1428 195 1459T229 1513T279 1549T339 1562Q372 1562 400 1549T450 1513T482 1459T494 1393Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1216" d="M464 329Q464 314 464 293T462 248T460 199T456 150L589 156V0H52V133Q95 133 119 146T156 183T171 240T174 315V1157Q174 1194 175 1242T182 1336L38 1330V1485Q109 1485 163 1491T256 1506T318 1525T353
+1546H464V612H564L710 782Q736 812 753 831T790 868V870L681 868V1024H1143V893Q1089 887 1045 870T965 831T901 782T851 732L720 586V584Q736 576 750 566T780 541T814 506T854 456L991 277Q1003 261 1022 237T1065 189T1118 150T1179 133V0H944Q911 0 884 12T830
+46T776 102T716 179Q689 215 659 257T602 339T550 413T511 469L464 467V329Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="639" d="M463 329Q463 314 463 293T461 248T459 199T455 150L588 156V0H51V133Q94 133 118 146T155 183T170 240T173 315V1157Q173 1194 174 1242T181 1336L37 1330V1485Q108 1485 162 1491T255 1506T317 1525T352
+1546H463V329Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1885" d="M1109 329Q1109 314 1109 293T1107 248T1105 199T1101 150L1234 156V0H707V133Q746 133 768 146T802 183T816 240T819 315L818 635Q818 702 807 747T777 819T730 857T667 868Q618 868 574 846T497 793V329Q497
+314 497 293T495 248T493 199T489 150L612 156V0H85V133Q128 133 152 146T189 183T204 240T207 315V660Q207 697 208 742T215 834L71 828V983Q142 983 196 989T289 1004T351 1023T386 1044H487L496 943H499Q529 966 565 987T638 1023T716 1048T797 1057Q891 1057
+952 1024T1051 922Q1088 953 1129 978T1213 1020T1300 1047T1385 1057Q1467 1057 1530 1035T1635 962T1698 830T1720 631V329Q1720 314 1720 293T1718 248T1716 199T1712 150L1845 156V0H1328V133Q1363 133 1383 146T1414 183T1427 240T1430 315L1429 629Q1429
+698 1417 744T1383 817T1331 855T1263 866Q1211 865 1169 846T1092 799Q1100 757 1104 709T1109 604V329Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1303" d="M1139 329Q1139 314 1139 293T1137 248T1135 199T1131 150L1264 156V0H727V133Q770 133 794 146T831 183T846 240T849 315L848 607Q847 742 807 805T682 868Q629 868 580 846T495 793V329Q495 314 495
+293T493 248T491 199T487 150L620 156V0H83V133Q126 133 150 146T187 183T202 240T205 315V660Q205 697 206 742T213 834L69 828V983Q140 983 194 989T287 1004T349 1023T384 1044H485L494 943H497Q527 966 565 987T644 1023T723 1048T793 1057Q887 1057 952 1031T1059
+949T1120 808T1139 604V329Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1159" d="M575 913Q515 911 475 879T410 794T375 677T364 544Q364 465 376 388T416 249T487 150T593 112Q654 113 692 146T753 231T784 349T793 480Q793 556 783 633T747 773T680 874T575 913ZM579 1057Q689 1057
+783 1021T947 917T1055 752T1095 531Q1095 402 1058 298T953 120T791 7T585 -33Q474 -33 379 3T213 107T103 271T63 489Q63 616 104 721T215 900T380 1016T579 1057Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1231" d="M641 872Q590 870 547 846T476 783V158Q486 150 502 143T538 131T580 123T624 120Q695 120 741 152T815 239T854 363T865 507Q865 579 852 645T812 761T743 842T641 872ZM186 660Q186 697 187 742T194
+834L50 828V983Q121 983 175 989T267 1004T329 1023T364 1044H465L475 946H478Q548 1008 618 1032T752 1057Q844 1057 920 1021T1050 917T1135 753T1165 538Q1165 414 1129 310T1026 129T866 10T658 -33Q601 -33 558 -22T476 4V-193Q476 -208 476 -229T474 -274T472
+-323T468 -372L601 -366V-522H64V-389Q107 -389 131 -376T168 -339T183 -282T186 -207V660Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1174" d="M1046 -193Q1046 -208 1046 -229T1044 -274T1042 -323T1038 -372L1171 -366V-522H634V-389Q676 -389 700 -376T737 -339T752 -282T756 -207L758 82H756Q690 18 621 -7T479 -33Q387 -33 311 3T181 107T96
+271T66 486Q66 610 102 714T206 895T367 1014T578 1057Q635 1057 679 1050T757 1034T818 1018T865 1011Q880 1011 901 1019T935 1044H1046V-193ZM586 152Q637 152 683 178T756 247V728Q756 785 741 820T703 875T651 900T597 907Q529 907 484 873T413 784T377 658T366
+517Q367 451 379 386T418 269T485 185T586 152Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="984" d="M792 1057Q828 1057 860 1047T917 1017T956 964T971 887Q971 863 963 838T938 791T894 757T827 743Q806 743 784 748T744 767T712 804T695 863Q664 863 633 843T574 792T525 726T495 663V329Q495 314 495
+293T493 248T491 199T487 150L620 156V0H83V133Q126 133 150 146T187 183T202 240T205 315V660Q205 697 206 742T213 834L69 828V983Q140 983 194 989T287 1004T349 1023T384 1044H485L494 868H497Q517 895 545 928T611 989T694 1037T792 1057Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="993" d="M225 338Q229 291 255 250T323 179T421 132T543 115Q568 115 593 121T639 139T671 171T684 217Q684 246 669 266T623 304T549 339T446 379Q382 404 317 430T199 495T113 588T79 727Q79 786 101 845T171
+951T291 1027T465 1057Q493 1057 525 1053T591 1041T655 1019T711 988H713L710 1046H866V684H734Q725 737 701 779T639 851T555 897T452 913Q426 913 402 907T358 888T328 855T317 804Q317 768 336 745T389 704T468 673T567 640Q645 613 711 581T825 507T900 410T928
+283Q928 203 897 144T813 45T694 -13T555 -33Q511 -33 467 -27T383 -11T310 15T252 48H250L257 -14H101L93 338H225Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="846" d="M34 1024Q87 1025 133 1050T215 1114T277 1197T315 1281H466L465 1024H726V866L465 861Q464 716 464 621T463 468T462 386T462 357Q462 321 466 286T484 222T522 176T586 158Q599 158 618 162T662 178T715
+215T772 281L871 189Q815 107 759 62T652 -4T559 -29T489 -33Q455 -33 419 -28T347 -7T280 35T224 107T185 213T171 361L174 855L34 853V1024Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1266" d="M1091 329Q1090 272 1089 248T1087 199T1083 150L1216 156V0H827L816 107H814Q783 80 750 55T679 10T599 -21T507 -33Q416 -33 352 -7T246 75T186 215T167 420V655Q167 692 168 740T175 834L31 828V983Q102
+983 156 989T249 1004T311 1023T346 1044H458V417Q458 282 492 219T605 156Q630 156 657 163T710 184T759 216T801 254V655Q801 692 802 740T809 834L665 828V983Q736 983 790 989T882 1004T944 1023T979 1044H1091V329Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1101" d="M492 893Q454 891 439 873T423 825Q423 805 428 782T443 733L615 309H617L766 731Q784 781 799 812T834 874V876L707 868V1024H1095V893Q1059 887 1030 860T977 795T936 719T906 648L644 -6H465L141 704Q124
+741 115 765T102 807T95 839T88 872L12 868V1024H492V893Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1660" d="M980 1024L1144 459Q1156 416 1169 366T1194 274H1196Q1202 316 1216 364T1243 453L1322 712Q1331 740 1338 762T1352 804T1367 840T1383 874V876L1265 868V1024H1654V893Q1613 893 1582 866T1529 802T1492
+728T1470 671L1237 -6H1020L879 431Q873 447 864 476T846 540T826 612T806 682H804Q798 639 785 586T757 481T730 389T711 331L598 -6H395L147 704Q133 743 125 767T112 808T103 840T96 872L16 868V1024H507V893Q464 890 447 867T429 808Q428 791 431 772T441 733L510
+483Q522 438 533 389T552 288H554Q559 310 564 333T575 382T589 440T608 510L758 1024H980Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1122" d="M920 285Q948 253 973 221T1018 152L1088 156V0H605V131Q641 133 657 142T673 168Q671 196 638 232L517 360H515L420 246Q415 239 404 226T378 197T351 169T328 150V148L421 156V0H82V131Q124 148 160
+182T238 265L416 469L216 705Q203 720 186 741T151 785T119 831T99 872L42 868V1024H496V893Q469 891 457 882T445 859Q445 843 457 823T489 780L584 670H586L663 763Q688 793 712 821T763 874V876L664 868V1024H1025V893Q962 867 914 827T819 730L682 562L920
+285Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1128" d="M657 274Q666 300 679 342T708 437T744 553T786 683Q792 702 801 727T821 780T846 832T873 874V876L756 868V1024H1120V893Q1056 877 1015 815T941 659L684 -72Q641 -197 602 -288T520 -439T425 -526T304
+-555Q264 -555 230 -543T171 -509T132 -456T117 -387Q117 -359 127 -334T154 -289T196 -258T250 -246Q271 -246 290 -254T323 -278T346 -314T355 -360Q355 -373 352 -388V-390Q373 -390 396 -362T442 -287T487 -180T527 -54L202 595Q173 652 155 694T127 767T112
+824T104 872L10 868V1024H520V893Q472 887 453 865T434 813Q434 794 440 774T455 733L655 274H657Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="1053" d="M72 0V148L542 769Q559 791 576 811T608 847T634 874T648 889V891L371 887Q335 886 310 866T266 810T237 729T217 629H90L119 1024H949V894L492 275Q462 234 433 204T377 150V148L665 141Q713 141 746
+161T802 216T837 299T858 402H985L955 0H72Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="754" d="M172 537Q246 528 309 500T418 426T491 318T517 181Q517 142 514 97T506 6T498 -78T494 -145Q494 -228 506 -280T545 -361T613 -400T711 -411Q718 -411 724 -411T739 -410V-555H682Q449 -555 333
+-444T217 -117Q217 -72 220 -20T227 86T234 189T238 279Q238 331 229 367T197 425T136 456T41 466H-6V612H41Q98 612 136 620T196 649T228 703T238 791Q238 872 228 957T217 1134Q217 1351 333 1453T682 1556H739V1412Q726 1413 715 1413T692 1413Q640 1413 603
+1404T541 1367T506 1290T494 1163Q494 1136 497 1103T505 1034T512 960T516 887Q516 812 491 752T419 647T310 575T172 541V537Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="531" d="M407 1556L399 -555H130L124 1556H407Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="754" d="M582 541Q507 548 444 575T335 646T264 751T238 887Q238 922 241 959T249 1033T256 1103T260 1163Q260 1241 249 1290T213 1366T152 1403T62 1413Q51 1413 40 1413T15 1412V1556H72Q305 1556
+421 1454T537 1134Q537 1043 527 958T516 791Q516 738 525 704T557 649T618 621T713 612H760V466H713Q656 466 618 457T558 425T526 367T516 279Q516 239 519 189T526 86T533 -19T537 -117Q537 -333 421 -444T72 -555H15V-410Q23 -410 29 -410T43 -411Q100 -411
+141 -401T208 -361T247 -280T260 -145Q260 -118 257 -79T249 6T241 96T237 181Q237 256 263 318T335 425T445 499T582 537V541Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1106" d="M351 565Q309 565 275 557T211 536T154 504T99 466V708Q131 734 160 754T220 789T284 810T359 817Q414 817 455 806T528 777T586 740T640 702T699 674T773 662Q841 662 900 688T1009 760V518Q967
+470 907 441T765 411Q714 411 675 422T603 451T543 488T486 525T425 553T351 565Z" />
+<glyph unicode="&#xa0;" glyph-name="uni00A0" horiz-adv-x="539" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="486" d="M94 898Q94 931 106 960T140 1010T188 1044T244 1057Q274 1057 300 1045T347 1011T379 960T391 898Q391 865 379 836T347 784T299 750T242 737Q210 737 183 749T136 784T105 835T94 898ZM173
+587H312L389 -257Q392 -290 384 -323T358 -382T310 -426T242 -443Q201 -443 172 -426T125 -383T100 -323T96 -257L173 587Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1157" d="M754 756Q754 774 760 799T779 845Q768 865 751 878T714 899T675 910T640 913Q588 913 545 890T471 820T422 705T404 548Q404 470 418 398T466 271T553 183T686 150Q727 150 768 161T848 193T920
+243T982 307L1076 216Q1031 154 984 111T889 39T793 -5T698 -26L697 -280H528L527 -26Q437 -14 360 26T226 132T137 288T104 490Q104 592 134 684T221 851T356 977T532 1047L531 1282H712L710 1053Q790 1044 850 1018T950 955T1011 871T1031 776Q1031 745 1022
+717T994 668T948 635T887 623Q849 623 824 636T783 668T761 711T754 756Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1173" d="M545 604Q548 589 549 572T551 538Q551 463 517 393T412 274V272Q461 292 501 298T576 305Q633 305 677 289T757 254T823 218T882 202Q905 202 927 230T954 320H1088Q1085 244 1069 180T1023
+68T950 -6T850 -33Q809 -33 771 -20T695 13T622 56T548 99T471 132T389 148Q380 110 363 78T323 20T274 -19T220 -33Q188 -33 166 -24T131 2T111 38T105 81Q105 111 118 139T155 193T211 238T282 272Q289 285 295 303T307 342T315 381T318 417Q318 469 311 513T293
+600L132 597V768H247Q236 813 230 862T223 973Q223 1091 258 1183T353 1338T491 1434T654 1467Q749 1467 815 1442T922 1379T981 1297T1000 1213Q1000 1182 991 1154T965 1105T922 1072T863 1060Q827 1060 802 1073T760 1105T737 1145T729 1185Q729 1212 736 1240T764
+1292Q754 1304 733 1314T676 1324Q621 1324 584 1299T525 1233T493 1144T483 1048Q483 967 492 898T513 768H835V610L545 604Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1160" d="M276 999L378 871Q420 897 470 912T580 927Q640 927 690 912T782 870L884 998L1032 880L908 739Q969 635 969 520Q969 405 914 309L1032 175L884 56L786 179Q700 126 579 126Q519 126 468
+139T374 178L277 56L128 175L246 309Q191 405 191 520Q191 577 206 632T251 739L128 880L276 999ZM580 777Q540 777 514 753T471 693T448 619T441 550Q441 512 447 465T469 378T511 310T580 282Q622 282 649 309T691 377T713 465T720 550Q720 580 713 619T690 693T647
+752T580 777Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1479" d="M915 286Q914 243 913 208T908 152L1072 158V0H474V135Q507 136 532 140T576 159T605 203T619 283L396 282V441H620V543H396V701H496L242 1087Q227 1111 213 1138T188 1191T171 1241T164 1282L65
+1276V1434H668V1299Q662 1299 657 1299T646 1300Q589 1300 555 1280T520 1218Q520 1186 547 1141L704 884Q711 872 725 849T754 797T784 740T807 689H810Q829 735 906 887L1012 1096Q1020 1112 1033 1137T1061 1189T1091 1241T1120 1282V1284L963 1276V1434H1415V1299Q1379
+1293 1350 1279T1293 1240T1240 1175T1183 1080L980 697H1120V546H916V438H1120V286H915Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="507" d="M369 1557L361 767H144L138 1557H369ZM369 231L361 -555H144L138 231H369Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1124" d="M325 678Q325 631 348 590T408 511T494 441T591 376T688 317T773 260Q787 290 795 325T803 393Q803 440 780 481T720 560T634 630T537 693T440 752T355 809Q340 778 333 745T325 678ZM729
+-155Q729 -113 712 -77T667 -9T603 50T529 102T454 148T385 190Q329 226 276 268T181 360T115 472T90 609Q90 690 133 772T249 924Q201 984 185 1049T168 1174Q168 1213 177 1256T207 1342T260 1423T338 1491T441 1538T574 1556Q658 1556 728 1532T848 1468T925
+1380T953 1280Q953 1250 945 1224T920 1178T879 1147T823 1135Q788 1135 764 1147T725 1177T703 1215T696 1253Q696 1275 701 1296T719 1338Q704 1370 666 1390T582 1410Q535 1410 501 1395T444 1355T410 1301T397 1241Q398 1195 415 1157T459 1085T522 1024T596
+971T674 923T748 878Q803 842 855 801T947 709T1011 597T1035 463Q1035 423 1023 382T990 299T940 219T876 145Q889 125 903 102T930 51T950 -8T958 -77Q958 -136 936 -204T864 -330T737 -428T546 -467Q462 -467 392 -443T272 -379T195 -291T167 -191Q167 -161
+175 -135T200 -89T241 -58T296 -46Q331 -46 355 -58T395 -89T417 -127T424 -164Q424 -186 419 -207T401 -249Q408 -266 422 -279T456 -301T498 -316T544 -321Q591 -321 626 -307T684 -269T718 -216T729 -155Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="874" d="M395 1382Q395 1350 384 1322T355 1273T311 1240T259 1228Q231 1228 207 1240T164 1273T134 1322T123 1382Q123 1414 134 1442T164 1492T208 1525T260 1538Q289 1538 314 1526T357 1492T385
+1443T395 1382ZM751 1382Q751 1350 740 1322T711 1273T667 1240T615 1228Q587 1228 563 1240T520 1273T490 1322T479 1382Q479 1414 490 1442T520 1492T564 1525T616 1538Q645 1538 670 1526T713 1492T741 1443T751 1382Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1874" d="M968 1066Q914 1066 867 1040T784 967T728 856T708 715Q708 644 729 582T790 473T888 399T1020 371Q1092 371 1162 409T1293 521L1390 428Q1339 358 1281 313T1165 240T1053 203T955 192Q848
+192 758 231T603 337T501 496T464 693Q464 752 477 813T516 931T581 1039T672 1126T791 1186T936 1208Q1005 1208 1064 1194T1182 1137Q1181 1143 1181 1153T1180 1172T1179 1190T1179 1201H1335V842H1199Q1191 903 1170 946T1117 1015T1047 1054T968 1066ZM95
+697Q95 814 124 922T207 1124T337 1296T507 1429T712 1515T944 1546Q1067 1546 1177 1516T1380 1429T1547 1295T1673 1123T1752 920T1780 694Q1780 578 1751 471T1667 270T1536 100T1367 -31T1166 -116T941 -146Q753 -146 597 -83T330 92T157 359T95 697ZM240 697Q240
+598 262 506T326 334T430 187T570 73T743 -1T947 -28Q1106 -28 1233 29T1450 186T1588 416T1637 697Q1637 796 1615 888T1551 1062T1447 1210T1309 1326T1140 1401T941 1428Q836 1428 744 1402T573 1327T434 1211T329 1063T263 889T240 697Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="790" d="M282 950Q284 932 297 918T340 904Q390 904 440 954V1053Q410 1050 382 1043T332 1023T296 993T282 955V950ZM102 1265Q102 1304 123 1340T183 1405T273 1450T388 1467Q509 1467 574 1403T640
+1200Q640 1174 640 1144T639 1083T639 1022T638 967Q638 957 639 945T644 922T655 904T674 896Q682 896 690 897T709 907L749 847Q718 805 674 779T584 752Q562 752 541 759T503 780T474 817T459 869H457Q442 840 420 819T373 782T321 760T273 752Q176 752 124
+794T72 916Q72 974 105 1016T191 1086T309 1129T440 1150V1239Q440 1259 438 1279T429 1315T406 1342T363 1353Q343 1353 323 1347T288 1326Q296 1314 299 1297T303 1267Q303 1252 298 1234T280 1201T248 1176T200 1165Q152 1165 127 1194T102 1265Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1011" d="M41 525V573L588 1142L685 1043L298 546V544L678 68L582 -26L41 525ZM491 530V577L840 986L936 907L731 562V559L933 213L838 133L491 530Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1190" d="M129 741L1050 736V306H871L865 544L129 541V741Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="957" d="M103 761H854V554L103 547V761Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1874" d="M1220 461Q1243 426 1260 402T1293 363T1326 340T1368 331V241H1153Q1129 260 1102 292T1049 370Q1003 447 978 491T940 558T922 591T911 609Q900 608 891 608T872 608Q863 608 854 608T833
+609V468Q833 431 833 396T831 344L947 348V241H534V331Q558 332 576 335T606 351T625 386T632 452V970Q632 1010 634 1044T638 1096L534 1092V1199L921 1200Q1009 1200 1081 1185T1204 1137T1284 1051T1312 919Q1312 873 1300 830T1261 750T1190 684T1083 637V636Q1109
+625 1128 602T1165 549L1220 461ZM890 725Q993 725 1045 774T1098 915Q1098 975 1078 1009T1030 1060T970 1081T918 1086Q876 1086 855 1064T833 975V731Q850 727 861 726T890 725ZM95 697Q95 814 124 922T207 1124T337 1296T507 1429T712 1515T944 1546Q1067 1546
+1177 1516T1380 1429T1547 1295T1673 1123T1752 920T1780 694Q1780 578 1751 471T1667 270T1536 100T1367 -31T1166 -116T941 -146Q753 -146 597 -83T330 92T157 359T95 697ZM240 697Q240 598 262 506T326 334T430 187T570 73T743 -1T947 -28Q1106 -28 1233 29T1450
+186T1588 416T1637 697Q1637 796 1615 888T1551 1062T1447 1210T1309 1326T1140 1401T941 1428Q836 1428 744 1402T573 1327T434 1211T329 1063T263 889T240 697Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="766" d="M92 1481H674V1292L92 1285V1481Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="782" d="M232 1139Q232 1102 243 1069T276 1010T326 970T392 955Q428 955 457 970T508 1010T540 1068T552 1139Q552 1176 541 1209T508 1267T457 1308T391 1323Q356 1323 327 1308T276 1268T244 1209T232
+1139ZM58 1139Q58 1209 85 1269T158 1373T265 1442T394 1467Q470 1467 531 1442T636 1373T702 1269T726 1139Q726 1069 699 1009T626 904T519 834T389 808Q313 808 252 833T148 903T82 1008T58 1139Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1139" d="M109 760L466 758V1054H671V758L1030 757V568L671 566V254H466V565L109 564V760ZM1030 1H109V181L1030 189V1Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="767" d="M260 1315Q277 1301 282 1282T288 1251Q288 1237 283 1220T265 1189T232 1164T184 1154Q136 1156 112 1187T88 1264Q88 1295 106 1330T159 1396T246 1447T367 1467Q419 1467 470 1455T561
+1417T625 1350T650 1248Q650 1194 623 1150T551 1063T451 979T338 885Q323 872 313 861T296 839T282 817T268 791L520 786Q547 785 563 798T580 862H677L666 618H95Q96 689 113 743T158 842T222 924T300 998Q339 1033 364 1066T403 1130T422 1186T427 1232Q427
+1295 401 1321T330 1348Q310 1348 289 1338T260 1315Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="748" d="M74 797Q74 820 81 841T103 879T137 904T181 914Q208 914 226 905T255 881T270 848T275 812Q275 806 274 797T269 778T260 757T246 740Q253 729 265 723T290 714T315 709T336 708Q396
+708 430 746T464 846Q464 911 423 952T301 994Q285 994 265 993T232 991V1102Q250 1101 268 1100T303 1099Q342 1099 368 1112T409 1145T430 1191T437 1240Q437 1295 410 1325T331 1356Q304 1356 286 1348T259 1332Q276 1318 281 1299T287 1268Q287 1254 282 1237T265
+1206T234 1181T187 1171Q139 1173 113 1201T87 1275Q87 1304 103 1338T154 1400T240 1448T364 1467Q423 1467 473 1454T561 1414T619 1347T640 1252Q640 1223 628 1194T595 1140T546 1097T486 1071V1069Q588 1049 633 993T679 852Q679 798 658 752T594 671T490
+618T345 598Q282 598 232 615T146 659T93 723T74 797Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="578" d="M184 1158L90 1241L258 1527Q279 1561 311 1581T379 1602Q403 1602 422 1593T456 1568T479 1532T487 1492Q487 1460 472 1429T433 1374L184 1158Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1253" d="M1005 1024L1003 291Q1003 279 1003 261T1008 227T1023 199T1053 187Q1067 187 1085 194T1128 223L1197 137Q1179 112 1153 86T1094 39T1024 3T948 -11Q888 -11 842 19T779 120H777Q717 47 656
+8T537 -31Q431 -31 372 112H370Q374 27 386 -52T412 -199T436 -319T447 -400Q447 -429 441 -457T419 -506T378 -541T316 -555Q277 -555 250 -540T205 -496T180 -429T172 -341L173 1024H428V466Q428 397 437 341T464 245T510 183T576 161Q614 161 662 178T749 237V1024H1005Z"
+/>
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1174" d="M994 1434V-522H762L765 1292L573 1290Q573 1153 573 1003T572 698T571 383T570 69T570 -236T569 -522H339L344 821Q294 830 248 850T164 906T105 995T83 1125Q83 1204 109 1262T180 1358T280
+1415T395 1434H994Z" />
+<glyph unicode="&#xb7;" glyph-name="middot" horiz-adv-x="463" d="M380 699Q380 666 370 637T341 587T295 553T235 540Q201 540 173 552T125 586T94 637T83 699Q83 732 95 761T127 813T175 847T232 860Q264 860 291 848T338 813T369 762T380 699Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="665" d="M424 -109Q455 -110 482 -118T530 -144T561 -188T573 -252Q573 -300 550 -337T488 -404T400 -454T299 -491T197 -515T108 -530L92 -424Q108 -421 132 -416T184 -404T239 -386T289 -363T324
+-332T338 -294Q338 -267 321 -256T281 -245Q258 -245 236 -253T199 -272L123 -240L186 20H342L282 -141H284Q297 -134 315 -128T352 -118T390 -112T424 -109Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="569" d="M83 1191L42 1271L342 1467H413V809Q413 777 412 748T409 704L497 707V617H132V694Q151 695 166 698T192 711T208 741T214 796V1267L83 1191Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="775" d="M388 1355Q337 1353 309 1297T281 1126Q281 998 308 930T396 861Q445 863 472 919T499 1087Q499 1149 493 1199T474 1283T440 1336T388 1355ZM391 1467Q466 1467 525 1441T626 1367T690
+1254T712 1109Q712 1029 690 962T625 847T522 773T386 746Q312 746 252 772T150 844T85 953T62 1092Q62 1171 85 1240T150 1359T254 1438T391 1467Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1011" d="M970 583V535L423 -34L326 65L713 562V564L333 1040L429 1134L970 583ZM520 578V531L171 122L75 201L280 546V549L78 895L173 975L520 578Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1621" d="M1317 1357L404 -33L271 66L1178 1467L1317 1357ZM118 1191L77 1271L377 1467H448V809Q448 777 447 748T444 704L532 707V617H167V694Q186 695 201 698T227 711T243 741T249 796V1267L118
+1191ZM1414 197V184Q1414 152 1413 123T1410 79L1498 82V-8H1133V69Q1152 70 1168 73T1194 86T1211 116T1217 171V198L907 200V320L1343 842H1414V311H1535V196L1414 197ZM1043 317L1221 314L1230 558H1228L1043 317Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1705" d="M1317 1357L404 -33L271 66L1178 1467L1317 1357ZM118 1191L77 1271L377 1467H448V809Q448 777 447 748T444 704L532 707V617H167V694Q186 695 201 698T227 711T243 741T249 796V1267L118
+1191ZM1194 688Q1211 674 1216 655T1222 624Q1222 610 1217 593T1199 562T1166 537T1118 527Q1070 529 1046 560T1022 637Q1022 668 1040 703T1093 769T1180 820T1301 840Q1353 840 1404 828T1495 790T1559 723T1584 621Q1584 567 1557 523T1485 436T1385 352T1272
+258Q1257 245 1247 234T1230 212T1216 190T1202 164L1454 159Q1481 158 1497 171T1514 235H1611L1600 -9H1029Q1030 62 1047 116T1092 215T1156 297T1234 371Q1273 406 1298 439T1337 503T1356 559T1361 605Q1361 668 1335 694T1264 721Q1244 721 1223 711T1194
+688Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1755" d="M1451 1357L538 -33L405 66L1312 1467L1451 1357ZM90 797Q90 820 97 841T119 879T153 904T197 914Q224 914 242 905T271 881T286 848T291 812Q291 806 290 797T285 778T276 757T262
+740Q269 729 281 723T306 714T331 709T352 708Q412 708 446 746T480 846Q480 911 439 952T317 994Q301 994 281 993T248 991V1102Q266 1101 284 1100T319 1099Q358 1099 384 1112T425 1145T446 1191T453 1240Q453 1295 426 1325T347 1356Q320 1356 302 1348T275
+1332Q292 1318 297 1299T303 1268Q303 1254 298 1237T281 1206T250 1181T203 1171Q155 1173 129 1201T103 1275Q103 1304 119 1338T170 1400T256 1448T380 1467Q439 1467 489 1454T577 1414T635 1347T656 1252Q656 1223 644 1194T611 1140T562 1097T502 1071V1069Q604
+1049 649 993T695 852Q695 798 674 752T610 671T506 618T361 598Q298 598 248 615T162 659T109 723T90 797ZM1552 197V184Q1552 152 1551 123T1548 79L1636 82V-8H1271V69Q1290 70 1306 73T1332 86T1349 116T1355 171V198L1045 200V320L1481 842H1552V311H1673V196L1552
+197ZM1181 317L1359 314L1368 558H1366L1181 317Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="1010" d="M364 898Q364 931 376 960T410 1010T458 1044T514 1057Q544 1057 570 1045T617 1011T649 960T661 898Q661 865 649 836T617 784T569 750T512 737Q480 737 453 749T406 784T375 835T364
+898ZM381 -76Q381 -124 389 -165T417 -236T470 -283T556 -300Q581 -300 605 -294T649 -279T686 -258T712 -234Q691 -213 683 -183T674 -132Q674 -112 681 -88T705 -43T746 -8T807 7Q842 7 868 -4T911 -34T936 -81T944 -139Q944 -194 912 -248T822 -345T687 -416T517
+-443Q396 -443 313 -415T178 -341T105 -237T82 -117Q82 -45 113 16T192 129T295 226T397 310T476 383T508 451Q508 477 489 494T427 511Q413 511 398 510T364 503L332 608Q358 622 385 630T439 644T490 651T534 653Q567 653 599 646T656 621T696 577T712 511Q712
+486 706 463T681 412T630 348T545 260Q509 224 479 189T428 115T394 29T381 -76Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1368" d="M844 428L399 420L366 324Q361 310 354 289T337 245T318 199T301 158L447 164V0H8V141Q51 141 80 160T132 212T171 286T205 375L605 1470H747L1184 354Q1190 339 1198 314T1216 261T1232 204T1242
+152L1360 158V0H808V135Q863 135 885 156T907 215Q907 236 901 261T885 316L844 428ZM451 573H792L699 830Q672 905 651 978T620 1109H618Q610 1074 593 1005T543 839L451 573ZM409 1745Q374 1766 350 1799T326 1870Q326 1892 335 1911T359 1943T392 1965T430 1973Q461
+1973 491 1959T546 1919L781 1677L708 1576L409 1745Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1368" d="M844 428L399 420L366 324Q361 310 354 289T337 245T318 199T301 158L447 164V0H8V141Q51 141 80 160T132 212T171 286T205 375L605 1470H747L1184 354Q1190 339 1198 314T1216 261T1232 204T1242
+152L1360 158V0H808V135Q863 135 885 156T907 215Q907 236 901 261T885 316L844 428ZM451 573H792L699 830Q672 905 651 978T620 1109H618Q610 1074 593 1005T543 839L451 573ZM658 1576L585 1677L820 1919Q844 1944 874 1958T935 1973Q954 1973 972 1966T1006
+1944T1030 1911T1039 1869Q1039 1831 1016 1799T957 1745L658 1576Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1368" d="M844 428L399 420L366 324Q361 310 354 289T337 245T318 199T301 158L447 164V0H8V141Q51 141 80 160T132 212T171 286T205 375L605 1470H747L1184 354Q1190 339 1198 314T1216 261T1232
+204T1242 152L1360 158V0H808V135Q863 135 885 156T907 215Q907 236 901 261T885 316L844 428ZM451 573H792L699 830Q672 905 651 978T620 1109H618Q610 1074 593 1005T543 839L451 573ZM663 1988H703L1103 1681L1039 1586L674 1764L300 1589L245 1681L663 1988Z"
+/>
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1368" d="M844 428L399 420L366 324Q361 310 354 289T337 245T318 199T301 158L447 164V0H8V141Q51 141 80 160T132 212T171 286T205 375L605 1470H747L1184 354Q1190 339 1198 314T1216 261T1232 204T1242
+152L1360 158V0H808V135Q863 135 885 156T907 215Q907 236 901 261T885 316L844 428ZM451 573H792L699 830Q672 905 651 978T620 1109H618Q610 1074 593 1005T543 839L451 573ZM535 1732Q496 1732 450 1710T362 1627L248 1702Q271 1759 303 1800T373 1868T450 1908T527
+1921Q578 1921 616 1905T688 1871T755 1836T827 1820Q848 1820 871 1830T916 1857T959 1899T994 1953L1110 1889Q1083 1809 1049 1759T978 1681T905 1642T837 1631Q789 1631 752 1647T681 1681T612 1716T535 1732Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1368" d="M844 428L399 420L366 324Q361 310 354 289T337 245T318 199T301 158L447 164V0H8V141Q51 141 80 160T132 212T171 286T205 375L605 1470H747L1184 354Q1190 339 1198 314T1216 261T1232
+204T1242 152L1360 158V0H808V135Q863 135 885 156T907 215Q907 236 901 261T885 316L844 428ZM451 573H792L699 830Q672 905 651 978T620 1109H618Q610 1074 593 1005T543 839L451 573ZM635 1786Q635 1754 624 1726T594 1677T550 1644T498 1632Q471 1632 446 1644T403
+1677T373 1726T362 1786Q362 1818 373 1846T404 1896T448 1930T500 1943Q528 1943 553 1931T596 1897T624 1847T635 1786ZM992 1786Q992 1754 981 1726T951 1677T907 1644T855 1632Q828 1632 803 1644T760 1677T730 1726T719 1786Q719 1818 730 1846T761 1896T805
+1930T857 1943Q885 1943 910 1931T953 1897T981 1847T992 1786Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1368" d="M844 428L399 420L366 324Q361 310 354 289T337 245T318 199T301 158L447 164V0H8V141Q51 141 80 160T132 212T171 286T205 375L605 1470H747L1184 354Q1190 339 1198 314T1216 261T1232 204T1242
+152L1360 158V0H808V135Q863 135 885 156T907 215Q907 236 901 261T885 316L844 428ZM451 573H792L699 830Q672 905 651 978T620 1109H618Q610 1074 593 1005T543 839L451 573ZM656 1952Q619 1949 597 1913T574 1813Q574 1733 601 1691T671 1648Q707 1648 731 1678T755
+1775Q755 1862 731 1907T665 1952H656ZM663 2061Q710 2061 759 2046T847 1998T912 1918T938 1803Q938 1741 914 1692T850 1608T763 1556T666 1538Q616 1538 567 1553T479 1601T416 1682T392 1799Q392 1857 416 1905T479 1988T566 2042T663 2061Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1915" d="M739 0V135Q773 137 800 141T846 163T875 216T885 313V424L484 414L412 309Q379 261 347 220T282 153V151L446 158V0H-12V135Q24 135 57 155T120 206T178 275T232 350L892 1279Q892 1280 892 1280T893
+1282L739 1276V1434H1764L1776 1037H1641Q1641 1117 1619 1168T1563 1249T1486 1290T1402 1301L1318 1299Q1286 1298 1261 1293T1218 1269T1191 1216T1181 1121V814H1422L1413 991H1571V493H1436Q1436 553 1423 588T1386 642T1330 667T1251 673L1181 672V336Q1181
+308 1181 282T1179 231T1177 188T1173 155L1448 156Q1493 156 1538 171T1618 220T1675 311T1697 451H1832L1820 0H739ZM583 565H885V742Q885 808 887 879T897 1025Q859 967 822 911T749 803L583 565Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1410" d="M857 -106Q888 -107 916 -117T966 -145T999 -192T1012 -257Q1012 -305 988 -344T925 -416T836 -474T734 -517T631 -546T541 -563L525 -451Q541 -448 565 -442T617 -425T672 -402T721 -373T756
+-339T770 -299Q770 -271 755 -260T717 -249Q695 -249 671 -258T632 -279L547 -247L602 -14Q480 14 382 79T215 238T109 448T72 696Q72 789 92 882T151 1061T251 1221T390 1350T569 1436T788 1467Q828 1467 872 1461T963 1441T1054 1410T1140 1366H1142L1135 1453H1293V974H1159Q1131
+1145 1046 1231T815 1318Q708 1318 629 1269T497 1139T420 954T394 738Q394 605 422 494T505 303T640 178T824 133Q888 133 953 150T1079 199T1194 279T1292 385L1390 295Q1315 191 1233 127T1070 28T913 -20T774 -33Q769 -33 765 -33T755 -32L715 -138H717Q730
+-131 748 -125T785 -115T823 -109T857 -106Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1278" d="M544 672V336Q544 308 544 282T542 231T540 188T536 155L811 156Q856 156 901 171T981 220T1038 311T1060 451H1195L1183 0H102V135Q136 137 163 142T209 164T238 216T248 313V1098Q248 1126
+248 1153T250 1204T252 1249T256 1282L102 1276V1434H1127L1139 1037H1004Q1004 1120 981 1172T921 1253T841 1292T755 1301L681 1299Q649 1298 624 1293T581 1269T554 1216T544 1121V814H785L776 991H934V493H799Q799 557 783 594T740 649T677 670T598 673L544
+672ZM434 1745Q399 1766 375 1799T351 1870Q351 1892 360 1911T384 1943T417 1965T455 1973Q486 1973 516 1959T571 1919L806 1677L733 1576L434 1745Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1278" d="M544 672V336Q544 308 544 282T542 231T540 188T536 155L811 156Q856 156 901 171T981 220T1038 311T1060 451H1195L1183 0H102V135Q136 137 163 142T209 164T238 216T248 313V1098Q248 1126
+248 1153T250 1204T252 1249T256 1282L102 1276V1434H1127L1139 1037H1004Q1004 1120 981 1172T921 1253T841 1292T755 1301L681 1299Q649 1298 624 1293T581 1269T554 1216T544 1121V814H785L776 991H934V493H799Q799 557 783 594T740 649T677 670T598 673L544
+672ZM554 1576L481 1677L716 1919Q740 1944 770 1958T831 1973Q850 1973 868 1966T902 1944T926 1911T935 1869Q935 1831 912 1799T853 1745L554 1576Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1278" d="M544 672V336Q544 308 544 282T542 231T540 188T536 155L811 156Q856 156 901 171T981 220T1038 311T1060 451H1195L1183 0H102V135Q136 137 163 142T209 164T238 216T248 313V1098Q248
+1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H1127L1139 1037H1004Q1004 1120 981 1172T921 1253T841 1292T755 1301L681 1299Q649 1298 624 1293T581 1269T554 1216T544 1121V814H785L776 991H934V493H799Q799 557 783 594T740 649T677 670T598 673L544
+672ZM646 1988H686L1086 1681L1022 1586L657 1764L283 1589L228 1681L646 1988Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1278" d="M544 672V336Q544 308 544 282T542 231T540 188T536 155L811 156Q856 156 901 171T981 220T1038 311T1060 451H1195L1183 0H102V135Q136 137 163 142T209 164T238 216T248 313V1098Q248
+1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H1127L1139 1037H1004Q1004 1120 981 1172T921 1253T841 1292T755 1301L681 1299Q649 1298 624 1293T581 1269T554 1216T544 1121V814H785L776 991H934V493H799Q799 557 783 594T740 649T677 670T598 673L544
+672ZM604 1786Q604 1754 593 1726T563 1677T519 1644T467 1632Q440 1632 415 1644T372 1677T342 1726T331 1786Q331 1818 342 1846T373 1896T417 1930T469 1943Q497 1943 522 1931T565 1897T593 1847T604 1786ZM961 1786Q961 1754 950 1726T920 1677T876 1644T824
+1632Q797 1632 772 1644T729 1677T699 1726T688 1786Q688 1818 699 1846T730 1896T774 1930T826 1943Q854 1943 879 1931T922 1897T950 1847T961 1786Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="792" d="M544 336Q544 308 544 281T542 230T540 185T536 152L690 158V0H102V135Q136 137 163 141T209 163T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H690V1299Q655
+1297 628 1292T583 1270T554 1218T544 1121V336ZM412 1745Q377 1766 353 1799T329 1870Q329 1892 338 1911T362 1943T395 1965T433 1973Q464 1973 494 1959T549 1919L784 1677L711 1576L412 1745Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="791" d="M544 336Q544 308 544 281T542 230T540 185T536 152L690 158V0H102V135Q136 137 163 141T209 163T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H690V1299Q655
+1297 628 1292T583 1270T554 1218T544 1121V336ZM323 1576L250 1677L485 1919Q509 1944 539 1958T600 1973Q619 1973 637 1966T671 1944T695 1911T704 1869Q704 1831 681 1799T622 1745L323 1576Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="792" d="M389 1988H429L749 1681L685 1586L400 1764L106 1589L51 1681L389 1988ZM544 336Q544 308 544 281T542 230T540 185T536 152L690 158V0H102V135Q136 137 163 141T209 163T238 216T248 313V1098Q248
+1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H690V1299Q655 1297 628 1292T583 1270T554 1218T544 1121V336Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="792" d="M544 336Q544 308 544 281T542 230T540 185T536 152L690 158V0H102V135Q136 137 163 141T209 163T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102 1276V1434H690V1299Q655
+1297 628 1292T583 1270T554 1218T544 1121V336ZM367 1786Q367 1754 356 1726T326 1677T282 1644T230 1632Q203 1632 178 1644T135 1677T105 1726T94 1786Q94 1818 105 1846T136 1896T180 1930T232 1943Q260 1943 285 1931T328 1897T356 1847T367 1786ZM724 1786Q724
+1754 713 1726T683 1677T639 1644T587 1632Q560 1632 535 1644T492 1677T462 1726T451 1786Q451 1818 462 1846T493 1896T537 1930T589 1943Q617 1943 642 1931T685 1897T713 1847T724 1786Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1555" d="M61 819H248V1099Q248 1127 248 1154T250 1205T252 1250T256 1283L102 1277V1435L699 1437Q834 1437 944 1409T1142 1330T1293 1213T1399 1067T1461 903T1482 732Q1482 649 1463 563T1404 395T1300
+242T1149 117T947 32T689 1H102V136Q136 138 163 142T209 164T238 217T248 314V620L61 618V819ZM695 1300H678Q644 1300 619 1294T578 1269T553 1216T544 1126V819H762V627L544 624V337Q544 309 544 282T542 231T540 186T536 153Q543 154 552 154T572 154Q591 154
+613 154T656 153T698 152T732 151Q844 151 924 196T1057 317T1134 490T1159 689Q1159 846 1127 960T1034 1148T887 1260T695 1300Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1583" d="M1365 -20H1191L536 817Q484 884 424 970H422L425 336Q425 308 425 281T423 230T421 185T417 152L571 158V0H104V135Q138 137 165 141T211 163T240 216T250 313L245 1098Q245 1126 245 1153T247
+1204T249 1249T253 1282L99 1276V1434H420L1046 644Q1098 578 1131 531T1189 448H1191V1098Q1191 1126 1191 1153T1193 1204T1195 1249T1199 1282L1045 1276V1434H1511V1299Q1476 1297 1449 1292T1404 1270T1375 1218T1365 1121V-20ZM659 1732Q620 1732 574 1710T486
+1627L372 1702Q395 1759 427 1800T497 1868T574 1908T651 1921Q702 1921 740 1905T812 1871T879 1836T951 1820Q972 1820 995 1830T1040 1857T1083 1899T1118 1953L1234 1889Q1207 1809 1173 1759T1102 1681T1029 1642T961 1631Q913 1631 876 1647T805 1681T736
+1716T659 1732Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1574" d="M394 741Q394 676 403 605T432 465T484 332T561 222T668 146T806 117Q877 117 932 141T1028 208T1099 306T1146 424T1172 553T1180 682Q1180 820 1156 936T1082 1137T956 1269T776 1317Q703
+1317 647 1293T548 1225T476 1126T429 1005T402 874T394 741ZM72 717Q72 803 91 892T150 1064T249 1220T389 1349T569 1435T791 1467Q915 1467 1016 1435T1197 1348T1333 1220T1429 1063T1485 891T1503 717Q1503 632 1484 544T1425 372T1326 215T1186 86T1006 -1T785
+-33Q655 -33 552 -2T370 82T234 208T142 364T89 538T72 717ZM549 1745Q514 1766 490 1799T466 1870Q466 1892 475 1911T499 1943T532 1965T570 1973Q601 1973 631 1959T686 1919L921 1677L848 1576L549 1745Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1574" d="M394 741Q394 676 403 605T432 465T484 332T561 222T668 146T806 117Q877 117 932 141T1028 208T1099 306T1146 424T1172 553T1180 682Q1180 820 1156 936T1082 1137T956 1269T776 1317Q703
+1317 647 1293T548 1225T476 1126T429 1005T402 874T394 741ZM72 717Q72 803 91 892T150 1064T249 1220T389 1349T569 1435T791 1467Q915 1467 1016 1435T1197 1348T1333 1220T1429 1063T1485 891T1503 717Q1503 632 1484 544T1425 372T1326 215T1186 86T1006 -1T785
+-33Q655 -33 552 -2T370 82T234 208T142 364T89 538T72 717ZM740 1576L667 1677L902 1919Q926 1944 956 1958T1017 1973Q1036 1973 1054 1966T1088 1944T1112 1911T1121 1869Q1121 1831 1098 1799T1039 1745L740 1576Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1574" d="M394 741Q394 676 403 605T432 465T484 332T561 222T668 146T806 117Q877 117 932 141T1028 208T1099 306T1146 424T1172 553T1180 682Q1180 820 1156 936T1082 1137T956 1269T776 1317Q703
+1317 647 1293T548 1225T476 1126T429 1005T402 874T394 741ZM72 717Q72 803 91 892T150 1064T249 1220T389 1349T569 1435T791 1467Q915 1467 1016 1435T1197 1348T1333 1220T1429 1063T1485 891T1503 717Q1503 632 1484 544T1425 372T1326 215T1186 86T1006 -1T785
+-33Q655 -33 552 -2T370 82T234 208T142 364T89 538T72 717ZM785 1988H825L1225 1681L1161 1586L796 1764L422 1589L367 1681L785 1988Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1574" d="M394 741Q394 676 403 605T432 465T484 332T561 222T668 146T806 117Q877 117 932 141T1028 208T1099 306T1146 424T1172 553T1180 682Q1180 820 1156 936T1082 1137T956 1269T776 1317Q703
+1317 647 1293T548 1225T476 1126T429 1005T402 874T394 741ZM72 717Q72 803 91 892T150 1064T249 1220T389 1349T569 1435T791 1467Q915 1467 1016 1435T1197 1348T1333 1220T1429 1063T1485 891T1503 717Q1503 632 1484 544T1425 372T1326 215T1186 86T1006 -1T785
+-33Q655 -33 552 -2T370 82T234 208T142 364T89 538T72 717ZM640 1732Q601 1732 555 1710T467 1627L353 1702Q376 1759 408 1800T478 1868T555 1908T632 1921Q683 1921 721 1905T793 1871T860 1836T932 1820Q953 1820 976 1830T1021 1857T1064 1899T1099 1953L1215
+1889Q1188 1809 1154 1759T1083 1681T1010 1642T942 1631Q894 1631 857 1647T786 1681T717 1716T640 1732Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1574" d="M394 741Q394 676 403 605T432 465T484 332T561 222T668 146T806 117Q877 117 932 141T1028 208T1099 306T1146 424T1172 553T1180 682Q1180 820 1156 936T1082 1137T956 1269T776 1317Q703
+1317 647 1293T548 1225T476 1126T429 1005T402 874T394 741ZM72 717Q72 803 91 892T150 1064T249 1220T389 1349T569 1435T791 1467Q915 1467 1016 1435T1197 1348T1333 1220T1429 1063T1485 891T1503 717Q1503 632 1484 544T1425 372T1326 215T1186 86T1006 -1T785
+-33Q655 -33 552 -2T370 82T234 208T142 364T89 538T72 717ZM757 1786Q757 1754 746 1726T716 1677T672 1644T620 1632Q593 1632 568 1644T525 1677T495 1726T484 1786Q484 1818 495 1846T526 1896T570 1930T622 1943Q650 1943 675 1931T718 1897T746 1847T757
+1786ZM1114 1786Q1114 1754 1103 1726T1073 1677T1029 1644T977 1632Q950 1632 925 1644T882 1677T852 1726T841 1786Q841 1818 852 1846T883 1896T927 1930T979 1943Q1007 1943 1032 1931T1075 1897T1103 1847T1114 1786Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1147" d="M92 302L420 623L95 945L256 1097L578 772L913 1107L1051 958L723 629L1056 287L899 134L566 476L238 151L92 302Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1573" d="M72 717Q72 803 91 892T150 1064T249 1220T389 1349T569 1435T791 1467Q881 1467 957 1451T1099 1404L1220 1611L1382 1510L1258 1300Q1321 1243 1367 1173T1444 1028T1488 873T1503 717Q1503
+632 1484 544T1425 372T1326 215T1186 86T1006 -1T785 -33Q704 -33 634 -21T503 14L376 -202L224 -100L342 102Q270 157 219 228T136 379T88 545T72 717ZM394 741Q394 694 398 643T413 540T440 437T480 340L1001 1236Q956 1275 901 1296T777 1317Q704 1317 648
+1293T549 1226T477 1126T429 1005T402 874T394 741ZM1180 682Q1180 793 1165 888T1118 1062L602 183Q645 150 694 134T806 117Q877 117 932 141T1028 208T1099 306T1146 424T1172 553T1180 682Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1557" d="M1361 608Q1361 431 1318 309T1198 111T1017 1T789 -33Q673 -33 585 -11T431 53T321 153T249 281T211 433T199 602V1098Q199 1126 199 1153T201 1204T203 1249T207 1282L53 1276V1434H642V1299Q607
+1297 580 1292T535 1270T506 1218T496 1121V558Q496 424 525 340T603 207T712 141T838 123Q918 123 981 150T1089 231T1156 368T1179 561V1098Q1179 1126 1179 1153T1181 1204T1183 1249T1187 1282L1033 1276V1434H1507V1299Q1472 1297 1445 1292T1400 1270T1371
+1218T1361 1121V608ZM647 1745Q612 1766 588 1799T564 1870Q564 1892 573 1911T597 1943T630 1965T668 1973Q699 1973 729 1959T784 1919L1019 1677L946 1576L647 1745Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1557" d="M1361 608Q1361 431 1318 309T1198 111T1017 1T789 -33Q673 -33 585 -11T431 53T321 153T249 281T211 433T199 602V1098Q199 1126 199 1153T201 1204T203 1249T207 1282L53 1276V1434H642V1299Q607
+1297 580 1292T535 1270T506 1218T496 1121V558Q496 424 525 340T603 207T712 141T838 123Q918 123 981 150T1089 231T1156 368T1179 561V1098Q1179 1126 1179 1153T1181 1204T1183 1249T1187 1282L1033 1276V1434H1507V1299Q1472 1297 1445 1292T1400 1270T1371
+1218T1361 1121V608ZM753 1576L680 1677L915 1919Q939 1944 969 1958T1030 1973Q1049 1973 1067 1966T1101 1944T1125 1911T1134 1869Q1134 1831 1111 1799T1052 1745L753 1576Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1557" d="M1361 608Q1361 431 1318 309T1198 111T1017 1T789 -33Q673 -33 585 -11T431 53T321 153T249 281T211 433T199 602V1098Q199 1126 199 1153T201 1204T203 1249T207 1282L53 1276V1434H642V1299Q607
+1297 580 1292T535 1270T506 1218T496 1121V558Q496 424 525 340T603 207T712 141T838 123Q918 123 981 150T1089 231T1156 368T1179 561V1098Q1179 1126 1179 1153T1181 1204T1183 1249T1187 1282L1033 1276V1434H1507V1299Q1472 1297 1445 1292T1400 1270T1371
+1218T1361 1121V608ZM824 1988H864L1264 1681L1200 1586L835 1764L461 1589L406 1681L824 1988Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1557" d="M1361 608Q1361 431 1318 309T1198 111T1017 1T789 -33Q673 -33 585 -11T431 53T321 153T249 281T211 433T199 602V1098Q199 1126 199 1153T201 1204T203 1249T207 1282L53 1276V1434H642V1299Q607
+1297 580 1292T535 1270T506 1218T496 1121V558Q496 424 525 340T603 207T712 141T838 123Q918 123 981 150T1089 231T1156 368T1179 561V1098Q1179 1126 1179 1153T1181 1204T1183 1249T1187 1282L1033 1276V1434H1507V1299Q1472 1297 1445 1292T1400 1270T1371
+1218T1361 1121V608ZM800 1786Q800 1754 789 1726T759 1677T715 1644T663 1632Q636 1632 611 1644T568 1677T538 1726T527 1786Q527 1818 538 1846T569 1896T613 1930T665 1943Q693 1943 718 1931T761 1897T789 1847T800 1786ZM1157 1786Q1157 1754 1146 1726T1116
+1677T1072 1644T1020 1632Q993 1632 968 1644T925 1677T895 1726T884 1786Q884 1818 895 1846T926 1896T970 1930T1022 1943Q1050 1943 1075 1931T1118 1897T1146 1847T1157 1786Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1365" d="M858 568V336Q858 308 858 281T856 230T854 185T850 152L1014 158V0H416V135Q450 136 477 141T523 164T552 216T562 313V492L184 1087Q169 1111 155 1138T130 1191T113 1241T106 1282L7 1276V1434H610V1299Q604
+1299 599 1299T587 1300Q530 1300 497 1280T464 1219Q465 1202 470 1183T489 1141L646 884Q653 872 667 848T696 796T726 738T749 687H752Q762 710 786 759T848 887L954 1096Q962 1112 975 1137T1003 1189T1033 1241T1062 1282V1284L905 1276V1434H1357V1299Q1321
+1293 1292 1279T1235 1240T1182 1175T1125 1080L858 568ZM665 1576L592 1677L827 1919Q851 1944 881 1958T942 1973Q961 1973 979 1966T1013 1944T1037 1911T1046 1869Q1046 1831 1023 1799T964 1745L665 1576Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1296" d="M677 311Q635 309 605 309T544 309Q543 260 541 218T536 152Q597 155 690 158V0H102V135Q136 137 163 142T209 164T238 216T248 313V1098Q248 1126 248 1153T250 1204T252 1249T256 1282L102
+1276V1434H690V1299Q659 1297 634 1293T591 1276T562 1238T546 1168L669 1170Q804 1171 914 1150T1104 1077T1224 941T1263 735Q1261 653 1224 578T1113 445T931 351T677 311ZM666 1025Q628 1025 599 1025T544 1024V461Q562 459 581 458T620 457Q789 457 868 531T947
+754Q947 820 932 865T893 941T839 988T777 1013T716 1023T666 1025Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1579" d="M1277 909Q1236 912 1196 912Q1155 912 1118 907T1053 890T1007 857T990 804Q990 772 1003 751T1042 713T1107 681T1200 648Q1278 621 1342 588T1453 511T1525 411T1551 283Q1551 203 1521
+144T1441 45T1326 -13T1188 -33Q1098 -33 1036 -11T925 48H923L930 -14H774L766 338H898Q902 291 921 250T975 179T1060 132T1176 115Q1198 115 1221 121T1263 141T1294 173T1307 217Q1307 246 1293 267T1251 308T1180 345T1079 387Q1015 412 956 439T852 504T779
+598T752 737Q752 788 766 838T812 930T892 1003T1011 1048Q1011 1160 988 1228T928 1332T849 1380T768 1392Q720 1392 672 1376T586 1317T523 1196T499 997V333Q499 318 499 297T497 250T495 199T491 150L634 156V0H87V133Q130 133 154 146T191 183T206 240T209
+315V858L61 853V1024H212Q224 1177 272 1277T394 1437T564 1521T767 1546Q803 1546 855 1541T965 1519T1079 1467T1181 1375T1255 1230T1283 1021Q1283 969 1277 909Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1074" d="M631 471Q573 465 522 450T434 411T375 352T353 274Q354 245 364 225T389 192T425 173T468 167Q516 167 557 187T630 242L631 471ZM106 787Q106 847 139 897T231 982T369 1037T538 1057Q628
+1057 698 1034T817 963T891 841T917 665Q917 613 917 574T916 498T916 421T915 329Q915 314 915 293T914 248T912 199T908 150L1040 156V0H653Q649 29 648 48T645 94H643Q573 24 497 -4T340 -33Q274 -33 222 -13T135 45T80 131T61 240Q61 305 84 357T147 450T243
+521T361 571T494 602T632 616V723Q632 764 625 798T601 858T556 897T486 910Q444 908 408 893T346 851Q362 834 366 812T371 775Q371 753 363 731T338 690T295 659T233 647Q203 648 179 659T139 689T115 733T106 787ZM295 1374Q271 1397 256 1428T241 1492Q241
+1512 249 1532T271 1567T305 1592T348 1602Q383 1602 416 1582T470 1527L638 1241L544 1158L295 1374Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1074" d="M631 471Q573 465 522 450T434 411T375 352T353 274Q354 245 364 225T389 192T425 173T468 167Q516 167 557 187T630 242L631 471ZM106 787Q106 847 139 897T231 982T369 1037T538 1057Q628
+1057 698 1034T817 963T891 841T917 665Q917 613 917 574T916 498T916 421T915 329Q915 314 915 293T914 248T912 199T908 150L1040 156V0H653Q649 29 648 48T645 94H643Q573 24 497 -4T340 -33Q274 -33 222 -13T135 45T80 131T61 240Q61 305 84 357T147 450T243
+521T361 571T494 602T632 616V723Q632 764 625 798T601 858T556 897T486 910Q444 908 408 893T346 851Q362 834 366 812T371 775Q371 753 363 731T338 690T295 659T233 647Q203 648 179 659T139 689T115 733T106 787ZM450 1158L356 1241L524 1527Q545 1561 577
+1581T645 1602Q669 1602 688 1593T722 1568T745 1532T753 1492Q753 1460 738 1429T699 1374L450 1158Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1074" d="M631 471Q573 465 522 450T434 411T375 352T353 274Q354 245 364 225T389 192T425 173T468 167Q516 167 557 187T630 242L631 471ZM106 787Q106 847 139 897T231 982T369 1037T538 1057Q628
+1057 698 1034T817 963T891 841T917 665Q917 613 917 574T916 498T916 421T915 329Q915 314 915 293T914 248T912 199T908 150L1040 156V0H653Q649 29 648 48T645 94H643Q573 24 497 -4T340 -33Q274 -33 222 -13T135 45T80 131T61 240Q61 305 84 357T147 450T243
+521T361 571T494 602T632 616V723Q632 764 625 798T601 858T556 897T486 910Q444 908 408 893T346 851Q362 834 366 812T371 775Q371 753 363 731T338 690T295 659T233 647Q203 648 179 659T139 689T115 733T106 787ZM513 1603H534L862 1256L774 1151L513 1365H511L249
+1166L163 1264L513 1603Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1074" d="M631 471Q573 465 522 450T434 411T375 352T353 274Q354 245 364 225T389 192T425 173T468 167Q516 167 557 187T630 242L631 471ZM106 787Q106 847 139 897T231 982T369 1037T538 1057Q628
+1057 698 1034T817 963T891 841T917 665Q917 613 917 574T916 498T916 421T915 329Q915 314 915 293T914 248T912 199T908 150L1040 156V0H653Q649 29 648 48T645 94H643Q573 24 497 -4T340 -33Q274 -33 222 -13T135 45T80 131T61 240Q61 305 84 357T147 450T243
+521T361 571T494 602T632 616V723Q632 764 625 798T601 858T556 897T486 910Q444 908 408 893T346 851Q362 834 366 812T371 775Q371 753 363 731T338 690T295 659T233 647Q203 648 179 659T139 689T115 733T106 787ZM386 1322Q374 1322 359 1318T326 1305T292
+1279T258 1239L144 1307Q160 1353 187 1392T246 1458T313 1501T383 1517Q431 1517 462 1505T519 1478T570 1451T633 1439Q669 1439 701 1466T760 1542L876 1483Q855 1419 826 1374T764 1299T697 1257T633 1243Q592 1243 560 1255T499 1282T443 1309T386 1322Z"
+/>
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1074" d="M631 471Q573 465 522 450T434 411T375 352T353 274Q354 245 364 225T389 192T425 173T468 167Q516 167 557 187T630 242L631 471ZM106 787Q106 847 139 897T231 982T369 1037T538 1057Q628
+1057 698 1034T817 963T891 841T917 665Q917 613 917 574T916 498T916 421T915 329Q915 314 915 293T914 248T912 199T908 150L1040 156V0H653Q649 29 648 48T645 94H643Q573 24 497 -4T340 -33Q274 -33 222 -13T135 45T80 131T61 240Q61 305 84 357T147 450T243
+521T361 571T494 602T632 616V723Q632 764 625 798T601 858T556 897T486 910Q444 908 408 893T346 851Q362 834 366 812T371 775Q371 753 363 731T338 690T295 659T233 647Q203 648 179 659T139 689T115 733T106 787ZM466 1382Q466 1350 455 1322T426 1273T382
+1240T330 1228Q302 1228 278 1240T235 1273T205 1322T194 1382Q194 1414 205 1442T235 1492T279 1525T331 1538Q360 1538 385 1526T428 1492T456 1443T466 1382ZM822 1382Q822 1350 811 1322T782 1273T738 1240T686 1228Q658 1228 634 1240T591 1273T561 1322T550
+1382Q550 1414 561 1442T591 1492T635 1525T687 1538Q716 1538 741 1526T784 1492T812 1443T822 1382Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1074" d="M631 471Q573 465 522 450T434 411T375 352T353 274Q354 245 364 225T389 192T425 173T468 167Q516 167 557 187T630 242L631 471ZM106 787Q106 847 139 897T231 982T369 1037T538 1057Q628
+1057 698 1034T817 963T891 841T917 665Q917 613 917 574T916 498T916 421T915 329Q915 314 915 293T914 248T912 199T908 150L1040 156V0H653Q649 29 648 48T645 94H643Q573 24 497 -4T340 -33Q274 -33 222 -13T135 45T80 131T61 240Q61 305 84 357T147 450T243
+521T361 571T494 602T632 616V723Q632 764 625 798T601 858T556 897T486 910Q444 908 408 893T346 851Q362 834 366 812T371 775Q371 753 363 731T338 690T295 659T233 647Q203 648 179 659T139 689T115 733T106 787ZM523 1505Q497 1504 475 1481T453 1406Q453
+1341 476 1310T536 1278Q562 1278 583 1303T604 1376Q604 1446 580 1475T523 1505ZM524 1628Q567 1628 610 1614T688 1572T745 1500T767 1397Q767 1341 746 1296T691 1219T613 1170T527 1153Q483 1153 440 1168T362 1214T305 1288T283 1389Q283 1440 303 1483T356
+1559T433 1610T524 1628Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1577" d="M343 -33Q277 -33 225 -13T136 45T80 131T60 240Q60 305 83 357T148 450T244 521T362 571T495 602T633 616V727Q633 768 625 802T600 860T556 897T491 911Q449 909 410 897T345 857Q361 840 365
+815T370 775Q370 753 362 731T337 690T294 659T232 647Q202 648 178 659T138 689T114 733T105 787Q105 844 136 893T224 978T356 1036T523 1057Q628 1057 699 1019T799 884H801Q829 931 861 964T932 1017T1018 1047T1124 1057Q1193 1056 1259 1030T1378 944T1463
+788T1496 551L915 539Q915 455 926 384T965 261T1041 180T1164 150Q1195 150 1229 158T1300 184T1373 231T1445 304L1537 217Q1482 138 1424 89T1309 13T1195 -23T1087 -33Q1030 -33 981 -19T891 18T817 73T758 139Q711 85 659 52T554 -1T447 -26T343 -33ZM632
+471Q573 465 522 450T433 411T372 352T350 274Q351 245 362 225T390 192T429 173T473 167Q521 167 564 188T640 245Q635 305 634 360T632 471ZM1090 911Q1048 911 1019 893T971 843T942 770T928 683H1225Q1223 746 1211 789T1181 860T1139 899T1090 911Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1065" d="M642 -109Q673 -110 700 -118T748 -144T779 -188T791 -252Q791 -300 768 -337T706 -404T618 -454T517 -491T415 -515T326 -530L310 -424Q326 -421 350 -416T402 -404T457 -386T507 -363T542
+-332T556 -294Q556 -267 539 -256T499 -245Q476 -245 454 -253T417 -272L341 -240L398 -5Q325 18 264 61T159 168T90 312T65 490Q65 605 104 708T213 889T381 1011T598 1057Q695 1057 769 1033T892 970T967 881T992 776Q992 745 983 717T955 668T909 635T848 623Q810
+623 785 636T744 668T722 711T715 756Q715 774 721 799T740 845Q729 865 712 878T675 899T636 910T601 913Q549 913 506 890T432 820T383 705T365 548Q365 470 379 398T427 271T514 183T647 150Q688 150 729 161T809 193T881 243T943 307L1037 216Q981 139 922
+91T803 15T684 -22T569 -32Q561 -32 555 -32T541 -31L500 -141H502Q515 -134 533 -128T570 -118T608 -112T642 -109Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1103" d="M585 913Q540 913 505 896T443 849T401 777T377 683H754Q752 746 739 790T704 861T651 901T585 913ZM1037 551L364 539Q364 455 379 384T429 261T518 180T653 150Q684 150 722 158T799 184T879
+231T954 304L1046 217Q991 138 929 89T805 13T682 -23T569 -33Q456 -33 363 5T203 114T100 285T63 510Q63 618 99 716T203 891T364 1012T575 1057Q632 1057 688 1047T796 1014T892 952T969 858T1019 726T1037 551ZM324 1374Q300 1397 285 1428T270 1492Q270 1512
+278 1532T300 1567T334 1592T377 1602Q412 1602 445 1582T499 1527L667 1241L573 1158L324 1374Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1103" d="M585 913Q540 913 505 896T443 849T401 777T377 683H754Q752 746 739 790T704 861T651 901T585 913ZM1037 551L364 539Q364 455 379 384T429 261T518 180T653 150Q684 150 722 158T799 184T879
+231T954 304L1046 217Q991 138 929 89T805 13T682 -23T569 -33Q456 -33 363 5T203 114T100 285T63 510Q63 618 99 716T203 891T364 1012T575 1057Q632 1057 688 1047T796 1014T892 952T969 858T1019 726T1037 551ZM516 1158L422 1241L590 1527Q611 1561 643 1581T711
+1602Q735 1602 754 1593T788 1568T811 1532T819 1492Q819 1460 804 1429T765 1374L516 1158Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1103" d="M585 913Q540 913 505 896T443 849T401 777T377 683H754Q752 746 739 790T704 861T651 901T585 913ZM1037 551L364 539Q364 455 379 384T429 261T518 180T653 150Q684 150 722 158T799
+184T879 231T954 304L1046 217Q991 138 929 89T805 13T682 -23T569 -33Q456 -33 363 5T203 114T100 285T63 510Q63 618 99 716T203 891T364 1012T575 1057Q632 1057 688 1047T796 1014T892 952T969 858T1019 726T1037 551ZM579 1603H600L928 1256L840 1151L579
+1365H577L315 1166L229 1264L579 1603Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1103" d="M585 913Q540 913 505 896T443 849T401 777T377 683H754Q752 746 739 790T704 861T651 901T585 913ZM1037 551L364 539Q364 455 379 384T429 261T518 180T653 150Q684 150 722 158T799 184T879
+231T954 304L1046 217Q991 138 929 89T805 13T682 -23T569 -33Q456 -33 363 5T203 114T100 285T63 510Q63 618 99 716T203 891T364 1012T575 1057Q632 1057 688 1047T796 1014T892 952T969 858T1019 726T1037 551ZM542 1382Q542 1350 531 1322T502 1273T458 1240T406
+1228Q378 1228 354 1240T311 1273T281 1322T270 1382Q270 1414 281 1442T311 1492T355 1525T407 1538Q436 1538 461 1526T504 1492T532 1443T542 1382ZM898 1382Q898 1350 887 1322T858 1273T814 1240T762 1228Q734 1228 710 1240T667 1273T637 1322T626 1382Q626
+1414 637 1442T667 1492T711 1525T763 1538Q792 1538 817 1526T860 1492T888 1443T898 1382Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="670" d="M495 329Q495 314 495 293T493 248T491 199T487 150L620 156V0H83V133Q126 133 150 146T187 183T202 240T205 315V655Q205 692 206 740T213 834L69 828V983Q140 983 194 989T287 1004T349 1023T384
+1044H495V329ZM340 1374Q316 1397 301 1428T286 1492Q286 1512 294 1532T316 1567T350 1592T393 1602Q428 1602 461 1582T515 1527L683 1241L589 1158L340 1374Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="670" d="M495 329Q495 314 495 293T493 248T491 199T487 150L620 156V0H83V133Q126 133 150 146T187 183T202 240T205 315V655Q205 692 206 740T213 834L69 828V983Q140 983 194 989T287 1004T349 1023T384
+1044H495V329ZM312 1158L218 1241L386 1527Q407 1561 439 1581T507 1602Q531 1602 550 1593T584 1568T607 1532T615 1492Q615 1460 600 1429T561 1374L312 1158Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="669" d="M338 1603H359L657 1256L569 1151L338 1365H336L104 1166L18 1264L338 1603ZM495 329Q495 314 495 293T493 248T491 199T487 150L620 156V0H83V133Q126 133 150 146T187 183T202 240T205
+315V655Q205 692 206 740T213 834L69 828V983Q140 983 194 989T287 1004T349 1023T384 1044H495V329Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="670" d="M495 329Q495 314 495 293T493 248T491 199T487 150L620 156V0H83V133Q126 133 150 146T187 183T202 240T205 315V655Q205 692 206 740T213 834L69 828V983Q140 983 194 989T287 1004T349
+1023T384 1044H495V329ZM301 1382Q301 1350 291 1322T264 1273T223 1240T172 1228Q144 1228 121 1240T80 1273T53 1322T43 1382Q43 1414 53 1442T80 1492T122 1525T173 1538Q202 1538 226 1526T266 1492T292 1443T301 1382ZM637 1382Q637 1350 627 1322T600 1273T559
+1240T508 1228Q480 1228 457 1240T416 1273T389 1322T379 1382Q379 1414 389 1442T416 1492T458 1525T509 1538Q538 1538 562 1526T602 1492T628 1443T637 1382Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1110" d="M241 1224L341 1341Q303 1363 256 1379T153 1406L183 1556Q274 1548 342 1526T458 1481L563 1618L682 1512L595 1409Q689 1346 766 1258T898 1059T984 822T1015 553Q1015 433 986 327T897 140T748
+14T537 -33Q436 -33 350 0T201 98T103 256T67 471Q67 570 95 667T182 842T328 967T535 1015Q553 1015 575 1013T621 1004T669 987T715 957H717Q706 997 681 1041T622 1127T553 1204T483 1260L365 1115L241 1224ZM751 490Q751 550 741 614T708 732T646 820T550 855Q503
+855 466 826T404 749T365 637T351 505Q351 419 366 352T409 238T472 167T551 142Q592 142 628 164T692 230T735 339T751 490Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1303" d="M1139 329Q1139 314 1139 293T1137 248T1135 199T1131 150L1264 156V0H727V133Q770 133 794 146T831 183T846 240T849 315L848 607Q847 742 807 805T682 868Q629 868 580 846T495 793V329Q495
+314 495 293T493 248T491 199T487 150L620 156V0H83V133Q126 133 150 146T187 183T202 240T205 315V660Q205 697 206 742T213 834L69 828V983Q140 983 194 989T287 1004T349 1023T384 1044H485L494 943H497Q527 966 565 987T644 1023T723 1048T793 1057Q887 1057
+952 1031T1059 949T1120 808T1139 604V329ZM526 1322Q514 1322 499 1318T466 1305T432 1279T398 1239L284 1307Q300 1353 327 1392T386 1458T453 1501T523 1517Q571 1517 602 1505T659 1478T710 1451T773 1439Q809 1439 841 1466T900 1542L1016 1483Q995 1419 966
+1374T904 1299T837 1257T773 1243Q732 1243 700 1255T639 1282T583 1309T526 1322Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1159" d="M575 913Q515 911 475 879T410 794T375 677T364 544Q364 465 376 388T416 249T487 150T593 112Q654 113 692 146T753 231T784 349T793 480Q793 556 783 633T747 773T680 874T575 913ZM579 1057Q689
+1057 783 1021T947 917T1055 752T1095 531Q1095 402 1058 298T953 120T791 7T585 -33Q474 -33 379 3T213 107T103 271T63 489Q63 616 104 721T215 900T380 1016T579 1057ZM340 1374Q316 1397 301 1428T286 1492Q286 1512 294 1532T316 1567T350 1592T393 1602Q428
+1602 461 1582T515 1527L683 1241L589 1158L340 1374Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1159" d="M575 913Q515 911 475 879T410 794T375 677T364 544Q364 465 376 388T416 249T487 150T593 112Q654 113 692 146T753 231T784 349T793 480Q793 556 783 633T747 773T680 874T575 913ZM579 1057Q689
+1057 783 1021T947 917T1055 752T1095 531Q1095 402 1058 298T953 120T791 7T585 -33Q474 -33 379 3T213 107T103 271T63 489Q63 616 104 721T215 900T380 1016T579 1057ZM534 1158L440 1241L608 1527Q629 1561 661 1581T729 1602Q753 1602 772 1593T806 1568T829
+1532T837 1492Q837 1460 822 1429T783 1374L534 1158Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1159" d="M575 913Q515 911 475 879T410 794T375 677T364 544Q364 465 376 388T416 249T487 150T593 112Q654 113 692 146T753 231T784 349T793 480Q793 556 783 633T747 773T680 874T575 913ZM579
+1057Q689 1057 783 1021T947 917T1055 752T1095 531Q1095 402 1058 298T953 120T791 7T585 -33Q474 -33 379 3T213 107T103 271T63 489Q63 616 104 721T215 900T380 1016T579 1057ZM587 1603H608L936 1256L848 1151L587 1365H585L323 1166L237 1264L587 1603Z"
+/>
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1159" d="M575 913Q515 911 475 879T410 794T375 677T364 544Q364 465 376 388T416 249T487 150T593 112Q654 113 692 146T753 231T784 349T793 480Q793 556 783 633T747 773T680 874T575 913ZM579 1057Q689
+1057 783 1021T947 917T1055 752T1095 531Q1095 402 1058 298T953 120T791 7T585 -33Q474 -33 379 3T213 107T103 271T63 489Q63 616 104 721T215 900T380 1016T579 1057ZM448 1322Q436 1322 421 1318T388 1305T354 1279T320 1239L206 1307Q222 1353 249 1392T308
+1458T375 1501T445 1517Q493 1517 524 1505T581 1478T632 1451T695 1439Q731 1439 763 1466T822 1542L938 1483Q917 1419 888 1374T826 1299T759 1257T695 1243Q654 1243 622 1255T561 1282T505 1309T448 1322Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1159" d="M575 913Q515 911 475 879T410 794T375 677T364 544Q364 465 376 388T416 249T487 150T593 112Q654 113 692 146T753 231T784 349T793 480Q793 556 783 633T747 773T680 874T575 913ZM579
+1057Q689 1057 783 1021T947 917T1055 752T1095 531Q1095 402 1058 298T953 120T791 7T585 -33Q474 -33 379 3T213 107T103 271T63 489Q63 616 104 721T215 900T380 1016T579 1057ZM540 1382Q540 1350 529 1322T500 1273T456 1240T404 1228Q376 1228 352 1240T309
+1273T279 1322T268 1382Q268 1414 279 1442T309 1492T353 1525T405 1538Q434 1538 459 1526T502 1492T530 1443T540 1382ZM896 1382Q896 1350 885 1322T856 1273T812 1240T760 1228Q732 1228 708 1240T665 1273T635 1322T624 1382Q624 1414 635 1442T665 1492T709
+1525T761 1538Q790 1538 815 1526T858 1492T886 1443T896 1382Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="575" d="M436 249Q436 216 426 187T397 137T351 103T291 90Q257 90 229 102T181 136T150 187T139 249Q139 282 151 311T183 363T231 397T288 410Q320 410 347 398T394 363T425 312T436 249ZM436 951Q436
+918 426 889T397 839T351 805T291 792Q257 792 229 804T181 838T150 889T139 951Q139 984 151 1013T183 1065T231 1099T288 1112Q320 1112 347 1100T394 1065T425 1014T436 951Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1159" d="M579 1057Q704 1057 806 1011L912 1176L1049 1088L942 922Q1014 853 1054 755T1095 531Q1095 402 1058 298T953 120T791 7T585 -33Q522 -33 465 -22T356 12L238 -170L112 -74L222 98Q147 167
+105 264T63 489Q63 616 104 721T215 900T380 1016T579 1057ZM575 913Q515 911 475 879T410 794T375 677T364 544Q364 495 368 447T383 350H385L703 850Q679 881 648 897T575 913ZM793 480Q793 526 790 574T778 667H776L461 175Q487 144 519 128T593 112Q654 112
+692 145T753 231T784 349T793 480Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1266" d="M1091 329Q1090 272 1089 248T1087 199T1083 150L1216 156V0H827L816 107H814Q783 80 750 55T679 10T599 -21T507 -33Q416 -33 352 -7T246 75T186 215T167 420V655Q167 692 168 740T175 834L31
+828V983Q102 983 156 989T249 1004T311 1023T346 1044H458V417Q458 282 492 219T605 156Q630 156 657 163T710 184T759 216T801 254V655Q801 692 802 740T809 834L665 828V983Q736 983 790 989T882 1004T944 1023T979 1044H1091V329ZM404 1374Q380 1397 365 1428T350
+1492Q350 1512 358 1532T380 1567T414 1592T457 1602Q492 1602 525 1582T579 1527L747 1241L653 1158L404 1374Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1266" d="M1091 329Q1090 272 1089 248T1087 199T1083 150L1216 156V0H827L816 107H814Q783 80 750 55T679 10T599 -21T507 -33Q416 -33 352 -7T246 75T186 215T167 420V655Q167 692 168 740T175 834L31
+828V983Q102 983 156 989T249 1004T311 1023T346 1044H458V417Q458 282 492 219T605 156Q630 156 657 163T710 184T759 216T801 254V655Q801 692 802 740T809 834L665 828V983Q736 983 790 989T882 1004T944 1023T979 1044H1091V329ZM630 1158L536 1241L704 1527Q725
+1561 757 1581T825 1602Q849 1602 868 1593T902 1568T925 1532T933 1492Q933 1460 918 1429T879 1374L630 1158Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1266" d="M1091 329Q1090 272 1089 248T1087 199T1083 150L1216 156V0H827L816 107H814Q783 80 750 55T679 10T599 -21T507 -33Q416 -33 352 -7T246 75T186 215T167 420V655Q167 692 168 740T175
+834L31 828V983Q102 983 156 989T249 1004T311 1023T346 1044H458V417Q458 282 492 219T605 156Q630 156 657 163T710 184T759 216T801 254V655Q801 692 802 740T809 834L665 828V983Q736 983 790 989T882 1004T944 1023T979 1044H1091V329ZM619 1603H640L968 1256L880
+1151L619 1365H617L355 1166L269 1264L619 1603Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1266" d="M1091 329Q1090 272 1089 248T1087 199T1083 150L1216 156V0H827L816 107H814Q783 80 750 55T679 10T599 -21T507 -33Q416 -33 352 -7T246 75T186 215T167 420V655Q167 692 168 740T175
+834L31 828V983Q102 983 156 989T249 1004T311 1023T346 1044H458V417Q458 282 492 219T605 156Q630 156 657 163T710 184T759 216T801 254V655Q801 692 802 740T809 834L665 828V983Q736 983 790 989T882 1004T944 1023T979 1044H1091V329ZM586 1382Q586 1350
+575 1322T546 1273T502 1240T450 1228Q422 1228 398 1240T355 1273T325 1322T314 1382Q314 1414 325 1442T355 1492T399 1525T451 1538Q480 1538 505 1526T548 1492T576 1443T586 1382ZM942 1382Q942 1350 931 1322T902 1273T858 1240T806 1228Q778 1228 754 1240T711
+1273T681 1322T670 1382Q670 1414 681 1442T711 1492T755 1525T807 1538Q836 1538 861 1526T904 1492T932 1443T942 1382Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1128" d="M657 274Q666 300 679 342T708 437T744 553T786 683Q792 702 801 727T821 780T846 832T873 874V876L756 868V1024H1120V893Q1056 877 1015 815T941 659L684 -72Q641 -197 602 -288T520 -439T425
+-526T304 -555Q264 -555 230 -543T171 -509T132 -456T117 -387Q117 -359 127 -334T154 -289T196 -258T250 -246Q271 -246 290 -254T323 -278T346 -314T355 -360Q355 -373 352 -388V-390Q373 -390 396 -362T442 -287T487 -180T527 -54L202 595Q173 652 155 694T127
+767T112 824T104 872L10 868V1024H520V893Q472 887 453 865T434 813Q434 794 440 774T455 733L655 274H657ZM593 1158L499 1241L667 1527Q688 1561 720 1581T788 1602Q812 1602 831 1593T865 1568T888 1532T896 1492Q896 1460 881 1429T842 1374L593 1158Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1173" d="M583 872Q532 870 489 846T418 783V158Q428 150 444 143T480 131T522 123T566 120Q637 121 683 153T757 239T796 362T807 507Q807 577 794 644T754 762T685 843T583 872ZM128 1157Q128 1194
+129 1242T136 1336L-8 1330V1485Q63 1485 117 1491T210 1506T272 1525T307 1546H418V946H421Q491 1008 560 1032T694 1057Q786 1057 862 1021T992 917T1077 753T1107 538Q1107 414 1071 310T968 129T808 10T600 -33Q544 -33 500 -22T418 4V-193Q418 -208 418 -229T416
+-274T414 -323T410 -372L543 -366V-522H6V-389Q49 -389 73 -376T110 -339T125 -282T128 -207V1157Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1128" d="M657 274Q666 300 679 342T708 437T744 553T786 683Q792 702 801 727T821 780T846 832T873 874V876L756 868V1024H1120V893Q1056 877 1015 815T941 659L684 -72Q641 -197 602 -288T520 -439T425
+-526T304 -555Q264 -555 230 -543T171 -509T132 -456T117 -387Q117 -359 127 -334T154 -289T196 -258T250 -246Q271 -246 290 -254T323 -278T346 -314T355 -360Q355 -373 352 -388V-390Q373 -390 396 -362T442 -287T487 -180T527 -54L202 595Q173 652 155 694T127
+767T112 824T104 872L10 868V1024H520V893Q472 887 453 865T434 813Q434 794 440 774T455 733L655 274H657ZM570 1382Q570 1350 559 1322T530 1273T486 1240T434 1228Q406 1228 382 1240T339 1273T309 1322T298 1382Q298 1414 309 1442T339 1492T383 1525T435 1538Q464
+1538 489 1526T532 1492T560 1443T570 1382ZM926 1382Q926 1350 915 1322T886 1273T842 1240T790 1228Q762 1228 738 1240T695 1273T665 1322T654 1382Q654 1414 665 1442T695 1492T739 1525T791 1538Q820 1538 845 1526T888 1492T916 1443T926 1382Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1153" d="M106 753H1047V539L106 532V753Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1358" d="M106 753H1252V539L106 532V753Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="457" d="M69 1108Q69 1208 114 1322T257 1555L336 1498Q320 1477 300 1441T261 1361T231 1269T219 1175Q234 1180 243 1181T263 1182Q290 1182 315 1174T360 1150T392 1108T404 1046Q404 1015 393
+987T362 938T314 905T251 892Q205 892 171 908T115 954T81 1023T69 1108Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="431" d="M378 1341Q378 1241 333 1127T190 894L111 951Q127 972 147 1008T186 1088T216 1180T228 1274Q213 1269 204 1268T184 1267Q157 1267 132 1275T87 1299T55 1341T43 1403Q43 1434 54 1462T85
+1511T133 1544T196 1557Q242 1557 276 1541T332 1495T366 1426T378 1341Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="512" d="M425 65Q425 -35 380 -149T237 -382L158 -325Q174 -304 194 -268T233 -188T263 -96T275 -2Q260 -7 251 -8T231 -9Q204 -9 179 -1T134 23T102 65T90 127Q90 158 101 186T132 235T180
+268T243 281Q289 281 323 265T379 219T413 150T425 65Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="867" d="M69 1108Q69 1208 114 1322T257 1555L336 1498Q320 1477 300 1441T261 1361T231 1269T219 1175Q234 1180 243 1181T263 1182Q290 1182 315 1174T360 1150T392 1108T404 1046Q404 1015
+393 987T362 938T314 905T251 892Q205 892 171 908T115 954T81 1023T69 1108ZM479 1108Q479 1208 524 1322T667 1555L746 1498Q730 1477 710 1441T671 1361T641 1269T629 1175Q644 1180 653 1181T673 1182Q700 1182 725 1174T770 1150T802 1108T814 1046Q814 1015
+803 987T772 938T724 905T661 892Q615 892 581 908T525 954T491 1023T479 1108Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="841" d="M378 1341Q378 1241 333 1127T190 894L111 951Q127 972 147 1008T186 1088T216 1180T228 1274Q213 1269 204 1268T184 1267Q157 1267 132 1275T87 1299T55 1341T43 1403Q43 1434 54
+1462T85 1511T133 1544T196 1557Q242 1557 276 1541T332 1495T366 1426T378 1341ZM788 1341Q788 1241 743 1127T600 894L521 951Q537 972 557 1008T596 1088T626 1180T638 1274Q623 1269 614 1268T594 1267Q567 1267 542 1275T497 1299T465 1341T453 1403Q453 1434
+464 1462T495 1511T543 1544T606 1557Q652 1557 686 1541T742 1495T776 1426T788 1341Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="922" d="M425 65Q425 -35 380 -149T237 -382L158 -325Q174 -304 194 -268T233 -188T263 -96T275 -2Q260 -7 251 -8T231 -9Q204 -9 179 -1T134 23T102 65T90 127Q90 158 101 186T132 235T180
+268T243 281Q289 281 323 265T379 219T413 150T425 65ZM835 65Q835 -35 790 -149T647 -382L568 -325Q584 -304 604 -268T643 -188T673 -96T685 -2Q670 -7 661 -8T641 -9Q614 -9 589 -1T544 23T512 65T500 127Q500 158 511 186T542 235T590 268T653 281Q699 281
+733 265T789 219T823 150T835 65Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="782" d="M64 743Q64 810 89 869T159 971T262 1040T390 1065Q457 1065 516 1040T621 972T692 869T718 743Q718 675 692 617T621 515T517 447T390 422Q322 422 263 447T159 515T90 616T64 743Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="774" d="M38 581V537L594 -33L707 80L333 562V564L707 1020L590 1133L38 581Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="774" d="M736 581V537L180 -33L67 80L441 562V564L67 1020L184 1133L736 581Z" />
+<hkern g1="quotedbl" g2="ampersand" k="31" />
+<hkern g1="quotedbl" g2="comma" k="256" />
+<hkern g1="quotedbl" g2="period" k="240" />
+<hkern g1="quotedbl" g2="slash" k="215" />
+<hkern g1="quotedbl" g2="four" k="82" />
+<hkern g1="quotedbl" g2="at" k="41" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="J" k="63" />
+<hkern g1="quotedbl" g2="a" k="33" />
+<hkern g1="quotedbl" g2="b" k="-10" />
+<hkern g1="quotedbl" g2="c" k="57" />
+<hkern g1="quotedbl" g2="d" k="80" />
+<hkern g1="quotedbl" g2="e" k="57" />
+<hkern g1="quotedbl" g2="g" k="59" />
+<hkern g1="quotedbl" g2="o" k="57" />
+<hkern g1="quotedbl" g2="q" k="80" />
+<hkern g1="quotedbl" g2="s" k="25" />
+<hkern g1="quotedbl" g2="guillemotleft" k="96" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="AE" k="211" />
+<hkern g1="quotedbl" g2="agrave" k="33" />
+<hkern g1="quotedbl" g2="aacute" k="33" />
+<hkern g1="quotedbl" g2="acircumflex" k="33" />
+<hkern g1="quotedbl" g2="atilde" k="33" />
+<hkern g1="quotedbl" g2="adieresis" k="33" />
+<hkern g1="quotedbl" g2="aring" k="33" />
+<hkern g1="quotedbl" g2="ae" k="33" />
+<hkern g1="quotedbl" g2="ccedilla" k="57" />
+<hkern g1="quotedbl" g2="egrave" k="57" />
+<hkern g1="quotedbl" g2="eacute" k="57" />
+<hkern g1="quotedbl" g2="ecircumflex" k="57" />
+<hkern g1="quotedbl" g2="edieresis" k="57" />
+<hkern g1="quotedbl" g2="eth" k="23" />
+<hkern g1="quotedbl" g2="ograve" k="57" />
+<hkern g1="quotedbl" g2="oacute" k="57" />
+<hkern g1="quotedbl" g2="ocircumflex" k="57" />
+<hkern g1="quotedbl" g2="otilde" k="57" />
+<hkern g1="quotedbl" g2="odieresis" k="57" />
+<hkern g1="quotedbl" g2="oslash" k="57" />
+<hkern g1="quotedbl" g2="thorn" k="-10" />
+<hkern g1="quotedbl" g2="oe" k="57" />
+<hkern g1="quotedbl" g2="quotesinglbase" k="256" />
+<hkern g1="quotedbl" g2="quotedblbase" k="260" />
+<hkern g1="quotedbl" g2="guilsinglleft" k="96" />
+<hkern g1="ampersand" g2="quotedbl" k="109" />
+<hkern g1="ampersand" g2="quotesingle" k="109" />
+<hkern g1="ampersand" g2="A" k="-100" />
+<hkern g1="ampersand" g2="J" k="-96" />
+<hkern g1="ampersand" g2="M" k="-12" />
+<hkern g1="ampersand" g2="T" k="70" />
+<hkern g1="ampersand" g2="U" k="39" />
+<hkern g1="ampersand" g2="V" k="104" />
+<hkern g1="ampersand" g2="W" k="94" />
+<hkern g1="ampersand" g2="X" k="-37" />
+<hkern g1="ampersand" g2="Y" k="94" />
+<hkern g1="ampersand" g2="Z" k="-27" />
+<hkern g1="ampersand" g2="a" k="-14" />
+<hkern g1="ampersand" g2="h" k="-45" />
+<hkern g1="ampersand" g2="i" k="-14" />
+<hkern g1="ampersand" g2="k" k="-45" />
+<hkern g1="ampersand" g2="l" k="-45" />
+<hkern g1="ampersand" g2="m" k="-14" />
+<hkern g1="ampersand" g2="n" k="-14" />
+<hkern g1="ampersand" g2="r" k="-14" />
+<hkern g1="ampersand" g2="v" k="31" />
+<hkern g1="ampersand" g2="w" k="29" />
+<hkern g1="ampersand" g2="x" k="-14" />
+<hkern g1="ampersand" g2="y" k="37" />
+<hkern g1="ampersand" g2="z" k="-25" />
+<hkern g1="ampersand" g2="Agrave" k="-100" />
+<hkern g1="ampersand" g2="Aacute" k="-100" />
+<hkern g1="ampersand" g2="Acircumflex" k="-100" />
+<hkern g1="ampersand" g2="Atilde" k="-100" />
+<hkern g1="ampersand" g2="Adieresis" k="-100" />
+<hkern g1="ampersand" g2="Aring" k="-100" />
+<hkern g1="ampersand" g2="AE" k="-121" />
+<hkern g1="ampersand" g2="Ugrave" k="39" />
+<hkern g1="ampersand" g2="Uacute" k="39" />
+<hkern g1="ampersand" g2="Ucircumflex" k="39" />
+<hkern g1="ampersand" g2="Udieresis" k="39" />
+<hkern g1="ampersand" g2="Yacute" k="94" />
+<hkern g1="ampersand" g2="agrave" k="-14" />
+<hkern g1="ampersand" g2="aacute" k="-14" />
+<hkern g1="ampersand" g2="acircumflex" k="-14" />
+<hkern g1="ampersand" g2="atilde" k="-14" />
+<hkern g1="ampersand" g2="adieresis" k="-14" />
+<hkern g1="ampersand" g2="aring" k="-14" />
+<hkern g1="ampersand" g2="ae" k="-14" />
+<hkern g1="ampersand" g2="igrave" k="-14" />
+<hkern g1="ampersand" g2="iacute" k="-14" />
+<hkern g1="ampersand" g2="icircumflex" k="-14" />
+<hkern g1="ampersand" g2="idieresis" k="-14" />
+<hkern g1="ampersand" g2="ntilde" k="-14" />
+<hkern g1="ampersand" g2="yacute" k="37" />
+<hkern g1="ampersand" g2="ydieresis" k="37" />
+<hkern g1="ampersand" g2="dotlessi" k="-14" />
+<hkern g1="ampersand" g2="quoteright" k="82" />
+<hkern g1="ampersand" g2="quotedblright" k="82" />
+<hkern g1="quotesingle" g2="ampersand" k="31" />
+<hkern g1="quotesingle" g2="comma" k="193" />
+<hkern g1="quotesingle" g2="period" k="193" />
+<hkern g1="quotesingle" g2="slash" k="193" />
+<hkern g1="quotesingle" g2="four" k="82" />
+<hkern g1="quotesingle" g2="at" k="41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="J" k="63" />
+<hkern g1="quotesingle" g2="a" k="33" />
+<hkern g1="quotesingle" g2="b" k="-10" />
+<hkern g1="quotesingle" g2="c" k="57" />
+<hkern g1="quotesingle" g2="d" k="80" />
+<hkern g1="quotesingle" g2="e" k="57" />
+<hkern g1="quotesingle" g2="g" k="59" />
+<hkern g1="quotesingle" g2="o" k="57" />
+<hkern g1="quotesingle" g2="q" k="80" />
+<hkern g1="quotesingle" g2="s" k="25" />
+<hkern g1="quotesingle" g2="guillemotleft" k="96" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="AE" k="193" />
+<hkern g1="quotesingle" g2="agrave" k="33" />
+<hkern g1="quotesingle" g2="aacute" k="33" />
+<hkern g1="quotesingle" g2="acircumflex" k="33" />
+<hkern g1="quotesingle" g2="atilde" k="33" />
+<hkern g1="quotesingle" g2="adieresis" k="33" />
+<hkern g1="quotesingle" g2="aring" k="33" />
+<hkern g1="quotesingle" g2="ae" k="33" />
+<hkern g1="quotesingle" g2="ccedilla" k="57" />
+<hkern g1="quotesingle" g2="egrave" k="57" />
+<hkern g1="quotesingle" g2="eacute" k="57" />
+<hkern g1="quotesingle" g2="ecircumflex" k="57" />
+<hkern g1="quotesingle" g2="edieresis" k="57" />
+<hkern g1="quotesingle" g2="eth" k="23" />
+<hkern g1="quotesingle" g2="ograve" k="57" />
+<hkern g1="quotesingle" g2="oacute" k="57" />
+<hkern g1="quotesingle" g2="ocircumflex" k="57" />
+<hkern g1="quotesingle" g2="otilde" k="57" />
+<hkern g1="quotesingle" g2="odieresis" k="57" />
+<hkern g1="quotesingle" g2="oslash" k="57" />
+<hkern g1="quotesingle" g2="thorn" k="-10" />
+<hkern g1="quotesingle" g2="oe" k="57" />
+<hkern g1="quotesingle" g2="quotesinglbase" k="193" />
+<hkern g1="quotesingle" g2="quotedblbase" k="193" />
+<hkern g1="quotesingle" g2="guilsinglleft" k="96" />
+<hkern g1="parenleft" g2="parenleft" k="41" />
+<hkern g1="parenleft" g2="zero" k="43" />
+<hkern g1="parenleft" g2="three" k="23" />
+<hkern g1="parenleft" g2="four" k="51" />
+<hkern g1="parenleft" g2="six" k="43" />
+<hkern g1="parenleft" g2="eight" k="39" />
+<hkern g1="parenleft" g2="nine" k="29" />
+<hkern g1="parenleft" g2="A" k="47" />
+<hkern g1="parenleft" g2="C" k="47" />
+<hkern g1="parenleft" g2="G" k="47" />
+<hkern g1="parenleft" g2="J" k="35" />
+<hkern g1="parenleft" g2="O" k="47" />
+<hkern g1="parenleft" g2="Q" k="47" />
+<hkern g1="parenleft" g2="S" k="23" />
+<hkern g1="parenleft" g2="V" k="-23" />
+<hkern g1="parenleft" g2="W" k="-12" />
+<hkern g1="parenleft" g2="X" k="-12" />
+<hkern g1="parenleft" g2="Y" k="-33" />
+<hkern g1="parenleft" g2="a" k="57" />
+<hkern g1="parenleft" g2="b" k="-70" />
+<hkern g1="parenleft" g2="c" k="70" />
+<hkern g1="parenleft" g2="d" k="63" />
+<hkern g1="parenleft" g2="e" k="70" />
+<hkern g1="parenleft" g2="f" k="33" />
+<hkern g1="parenleft" g2="h" k="-25" />
+<hkern g1="parenleft" g2="i" k="25" />
+<hkern g1="parenleft" g2="j" k="-209" />
+<hkern g1="parenleft" g2="k" k="-25" />
+<hkern g1="parenleft" g2="l" k="-25" />
+<hkern g1="parenleft" g2="m" k="47" />
+<hkern g1="parenleft" g2="n" k="47" />
+<hkern g1="parenleft" g2="o" k="70" />
+<hkern g1="parenleft" g2="q" k="63" />
+<hkern g1="parenleft" g2="r" k="47" />
+<hkern g1="parenleft" g2="s" k="51" />
+<hkern g1="parenleft" g2="t" k="43" />
+<hkern g1="parenleft" g2="u" k="49" />
+<hkern g1="parenleft" g2="v" k="49" />
+<hkern g1="parenleft" g2="w" k="49" />
+<hkern g1="parenleft" g2="x" k="39" />
+<hkern g1="parenleft" g2="z" k="45" />
+<hkern g1="parenleft" g2="braceleft" k="39" />
+<hkern g1="parenleft" g2="Agrave" k="47" />
+<hkern g1="parenleft" g2="Aacute" k="47" />
+<hkern g1="parenleft" g2="Acircumflex" k="47" />
+<hkern g1="parenleft" g2="Atilde" k="47" />
+<hkern g1="parenleft" g2="Adieresis" k="47" />
+<hkern g1="parenleft" g2="Aring" k="47" />
+<hkern g1="parenleft" g2="AE" k="37" />
+<hkern g1="parenleft" g2="Ccedilla" k="47" />
+<hkern g1="parenleft" g2="Ograve" k="47" />
+<hkern g1="parenleft" g2="Oacute" k="47" />
+<hkern g1="parenleft" g2="Ocircumflex" k="47" />
+<hkern g1="parenleft" g2="Otilde" k="47" />
+<hkern g1="parenleft" g2="Odieresis" k="47" />
+<hkern g1="parenleft" g2="Oslash" k="47" />
+<hkern g1="parenleft" g2="Yacute" k="-33" />
+<hkern g1="parenleft" g2="germandbls" k="33" />
+<hkern g1="parenleft" g2="agrave" k="57" />
+<hkern g1="parenleft" g2="aacute" k="57" />
+<hkern g1="parenleft" g2="acircumflex" k="57" />
+<hkern g1="parenleft" g2="atilde" k="57" />
+<hkern g1="parenleft" g2="adieresis" k="57" />
+<hkern g1="parenleft" g2="aring" k="57" />
+<hkern g1="parenleft" g2="ae" k="57" />
+<hkern g1="parenleft" g2="ccedilla" k="70" />
+<hkern g1="parenleft" g2="egrave" k="70" />
+<hkern g1="parenleft" g2="eacute" k="70" />
+<hkern g1="parenleft" g2="ecircumflex" k="70" />
+<hkern g1="parenleft" g2="edieresis" k="70" />
+<hkern g1="parenleft" g2="igrave" k="-33" />
+<hkern g1="parenleft" g2="iacute" k="25" />
+<hkern g1="parenleft" g2="icircumflex" k="25" />
+<hkern g1="parenleft" g2="idieresis" k="10" />
+<hkern g1="parenleft" g2="eth" k="25" />
+<hkern g1="parenleft" g2="ntilde" k="47" />
+<hkern g1="parenleft" g2="ograve" k="70" />
+<hkern g1="parenleft" g2="oacute" k="70" />
+<hkern g1="parenleft" g2="ocircumflex" k="70" />
+<hkern g1="parenleft" g2="otilde" k="70" />
+<hkern g1="parenleft" g2="odieresis" k="70" />
+<hkern g1="parenleft" g2="oslash" k="70" />
+<hkern g1="parenleft" g2="ugrave" k="49" />
+<hkern g1="parenleft" g2="uacute" k="49" />
+<hkern g1="parenleft" g2="ucircumflex" k="49" />
+<hkern g1="parenleft" g2="udieresis" k="49" />
+<hkern g1="parenleft" g2="thorn" k="-70" />
+<hkern g1="parenleft" g2="dotlessi" k="25" />
+<hkern g1="parenleft" g2="OE" k="47" />
+<hkern g1="parenleft" g2="oe" k="70" />
+<hkern g1="parenright" g2="parenright" k="41" />
+<hkern g1="parenright" g2="bracketright" k="70" />
+<hkern g1="parenright" g2="braceright" k="43" />
+<hkern g1="asterisk" g2="A" k="104" />
+<hkern g1="asterisk" g2="B" k="16" />
+<hkern g1="asterisk" g2="D" k="16" />
+<hkern g1="asterisk" g2="E" k="16" />
+<hkern g1="asterisk" g2="F" k="16" />
+<hkern g1="asterisk" g2="H" k="16" />
+<hkern g1="asterisk" g2="I" k="16" />
+<hkern g1="asterisk" g2="J" k="82" />
+<hkern g1="asterisk" g2="K" k="16" />
+<hkern g1="asterisk" g2="L" k="16" />
+<hkern g1="asterisk" g2="M" k="18" />
+<hkern g1="asterisk" g2="N" k="16" />
+<hkern g1="asterisk" g2="P" k="16" />
+<hkern g1="asterisk" g2="R" k="16" />
+<hkern g1="asterisk" g2="T" k="-55" />
+<hkern g1="asterisk" g2="a" k="23" />
+<hkern g1="asterisk" g2="c" k="20" />
+<hkern g1="asterisk" g2="d" k="31" />
+<hkern g1="asterisk" g2="e" k="20" />
+<hkern g1="asterisk" g2="g" k="29" />
+<hkern g1="asterisk" g2="o" k="20" />
+<hkern g1="asterisk" g2="q" k="31" />
+<hkern g1="asterisk" g2="v" k="-20" />
+<hkern g1="asterisk" g2="w" k="-16" />
+<hkern g1="asterisk" g2="y" k="-20" />
+<hkern g1="asterisk" g2="Agrave" k="104" />
+<hkern g1="asterisk" g2="Aacute" k="104" />
+<hkern g1="asterisk" g2="Acircumflex" k="104" />
+<hkern g1="asterisk" g2="Atilde" k="104" />
+<hkern g1="asterisk" g2="Adieresis" k="104" />
+<hkern g1="asterisk" g2="Aring" k="104" />
+<hkern g1="asterisk" g2="AE" k="166" />
+<hkern g1="asterisk" g2="Egrave" k="16" />
+<hkern g1="asterisk" g2="Eacute" k="16" />
+<hkern g1="asterisk" g2="Ecircumflex" k="16" />
+<hkern g1="asterisk" g2="Edieresis" k="16" />
+<hkern g1="asterisk" g2="Igrave" k="16" />
+<hkern g1="asterisk" g2="Iacute" k="16" />
+<hkern g1="asterisk" g2="Icircumflex" k="16" />
+<hkern g1="asterisk" g2="Idieresis" k="16" />
+<hkern g1="asterisk" g2="Eth" k="16" />
+<hkern g1="asterisk" g2="Ntilde" k="16" />
+<hkern g1="asterisk" g2="Thorn" k="16" />
+<hkern g1="asterisk" g2="agrave" k="23" />
+<hkern g1="asterisk" g2="aacute" k="23" />
+<hkern g1="asterisk" g2="acircumflex" k="23" />
+<hkern g1="asterisk" g2="atilde" k="23" />
+<hkern g1="asterisk" g2="adieresis" k="23" />
+<hkern g1="asterisk" g2="aring" k="23" />
+<hkern g1="asterisk" g2="ae" k="23" />
+<hkern g1="asterisk" g2="ccedilla" k="20" />
+<hkern g1="asterisk" g2="egrave" k="20" />
+<hkern g1="asterisk" g2="eacute" k="20" />
+<hkern g1="asterisk" g2="ecircumflex" k="20" />
+<hkern g1="asterisk" g2="edieresis" k="20" />
+<hkern g1="asterisk" g2="eth" k="20" />
+<hkern g1="asterisk" g2="ograve" k="20" />
+<hkern g1="asterisk" g2="oacute" k="20" />
+<hkern g1="asterisk" g2="ocircumflex" k="20" />
+<hkern g1="asterisk" g2="otilde" k="20" />
+<hkern g1="asterisk" g2="odieresis" k="20" />
+<hkern g1="asterisk" g2="oslash" k="20" />
+<hkern g1="asterisk" g2="yacute" k="-20" />
+<hkern g1="asterisk" g2="ydieresis" k="-20" />
+<hkern g1="asterisk" g2="oe" k="20" />
+<hkern g1="plus" g2="one" k="35" />
+<hkern g1="plus" g2="two" k="37" />
+<hkern g1="plus" g2="three" k="20" />
+<hkern g1="plus" g2="seven" k="72" />
+<hkern g1="comma" g2="quotedbl" k="256" />
+<hkern g1="comma" g2="quotesingle" k="193" />
+<hkern g1="comma" g2="zero" k="31" />
+<hkern g1="comma" g2="seven" k="59" />
+<hkern g1="comma" g2="C" k="43" />
+<hkern g1="comma" g2="G" k="43" />
+<hkern g1="comma" g2="O" k="43" />
+<hkern g1="comma" g2="Q" k="43" />
+<hkern g1="comma" g2="T" k="115" />
+<hkern g1="comma" g2="U" k="66" />
+<hkern g1="comma" g2="V" k="229" />
+<hkern g1="comma" g2="W" k="160" />
+<hkern g1="comma" g2="Y" k="143" />
+<hkern g1="comma" g2="j" k="18" />
+<hkern g1="comma" g2="p" k="16" />
+<hkern g1="comma" g2="t" k="27" />
+<hkern g1="comma" g2="u" k="25" />
+<hkern g1="comma" g2="v" k="86" />
+<hkern g1="comma" g2="w" k="70" />
+<hkern g1="comma" g2="y" k="96" />
+<hkern g1="comma" g2="Ccedilla" k="43" />
+<hkern g1="comma" g2="Ograve" k="43" />
+<hkern g1="comma" g2="Oacute" k="43" />
+<hkern g1="comma" g2="Ocircumflex" k="43" />
+<hkern g1="comma" g2="Otilde" k="43" />
+<hkern g1="comma" g2="Odieresis" k="43" />
+<hkern g1="comma" g2="Oslash" k="43" />
+<hkern g1="comma" g2="Ugrave" k="66" />
+<hkern g1="comma" g2="Uacute" k="66" />
+<hkern g1="comma" g2="Ucircumflex" k="66" />
+<hkern g1="comma" g2="Udieresis" k="66" />
+<hkern g1="comma" g2="Yacute" k="143" />
+<hkern g1="comma" g2="ugrave" k="25" />
+<hkern g1="comma" g2="uacute" k="25" />
+<hkern g1="comma" g2="ucircumflex" k="25" />
+<hkern g1="comma" g2="udieresis" k="25" />
+<hkern g1="comma" g2="yacute" k="96" />
+<hkern g1="comma" g2="ydieresis" k="96" />
+<hkern g1="comma" g2="OE" k="43" />
+<hkern g1="comma" g2="quoteleft" k="227" />
+<hkern g1="comma" g2="quoteright" k="215" />
+<hkern g1="comma" g2="quotedblleft" k="254" />
+<hkern g1="comma" g2="quotedblright" k="254" />
+<hkern g1="hyphen" g2="one" k="57" />
+<hkern g1="hyphen" g2="two" k="59" />
+<hkern g1="hyphen" g2="three" k="41" />
+<hkern g1="hyphen" g2="seven" k="121" />
+<hkern g1="hyphen" g2="eight" k="23" />
+<hkern g1="hyphen" g2="A" k="80" />
+<hkern g1="hyphen" g2="B" k="47" />
+<hkern g1="hyphen" g2="D" k="47" />
+<hkern g1="hyphen" g2="E" k="47" />
+<hkern g1="hyphen" g2="F" k="47" />
+<hkern g1="hyphen" g2="H" k="47" />
+<hkern g1="hyphen" g2="I" k="47" />
+<hkern g1="hyphen" g2="J" k="119" />
+<hkern g1="hyphen" g2="K" k="47" />
+<hkern g1="hyphen" g2="L" k="47" />
+<hkern g1="hyphen" g2="M" k="47" />
+<hkern g1="hyphen" g2="N" k="47" />
+<hkern g1="hyphen" g2="P" k="47" />
+<hkern g1="hyphen" g2="R" k="47" />
+<hkern g1="hyphen" g2="S" k="20" />
+<hkern g1="hyphen" g2="T" k="129" />
+<hkern g1="hyphen" g2="U" k="33" />
+<hkern g1="hyphen" g2="V" k="106" />
+<hkern g1="hyphen" g2="W" k="94" />
+<hkern g1="hyphen" g2="X" k="125" />
+<hkern g1="hyphen" g2="Y" k="135" />
+<hkern g1="hyphen" g2="Z" k="74" />
+<hkern g1="hyphen" g2="f" k="18" />
+<hkern g1="hyphen" g2="h" k="16" />
+<hkern g1="hyphen" g2="k" k="16" />
+<hkern g1="hyphen" g2="l" k="16" />
+<hkern g1="hyphen" g2="x" k="25" />
+<hkern g1="hyphen" g2="y" k="16" />
+<hkern g1="hyphen" g2="Agrave" k="80" />
+<hkern g1="hyphen" g2="Aacute" k="80" />
+<hkern g1="hyphen" g2="Acircumflex" k="80" />
+<hkern g1="hyphen" g2="Atilde" k="80" />
+<hkern g1="hyphen" g2="Adieresis" k="80" />
+<hkern g1="hyphen" g2="Aring" k="80" />
+<hkern g1="hyphen" g2="AE" k="121" />
+<hkern g1="hyphen" g2="Egrave" k="47" />
+<hkern g1="hyphen" g2="Eacute" k="47" />
+<hkern g1="hyphen" g2="Ecircumflex" k="47" />
+<hkern g1="hyphen" g2="Edieresis" k="47" />
+<hkern g1="hyphen" g2="Igrave" k="47" />
+<hkern g1="hyphen" g2="Iacute" k="47" />
+<hkern g1="hyphen" g2="Icircumflex" k="47" />
+<hkern g1="hyphen" g2="Idieresis" k="47" />
+<hkern g1="hyphen" g2="Eth" k="47" />
+<hkern g1="hyphen" g2="Ntilde" k="47" />
+<hkern g1="hyphen" g2="Ugrave" k="33" />
+<hkern g1="hyphen" g2="Uacute" k="33" />
+<hkern g1="hyphen" g2="Ucircumflex" k="33" />
+<hkern g1="hyphen" g2="Udieresis" k="33" />
+<hkern g1="hyphen" g2="Yacute" k="135" />
+<hkern g1="hyphen" g2="Thorn" k="47" />
+<hkern g1="hyphen" g2="germandbls" k="18" />
+<hkern g1="hyphen" g2="yacute" k="16" />
+<hkern g1="hyphen" g2="ydieresis" k="16" />
+<hkern g1="period" g2="quotedbl" k="240" />
+<hkern g1="period" g2="quotesingle" k="193" />
+<hkern g1="period" g2="zero" k="31" />
+<hkern g1="period" g2="seven" k="59" />
+<hkern g1="period" g2="C" k="43" />
+<hkern g1="period" g2="G" k="43" />
+<hkern g1="period" g2="O" k="43" />
+<hkern g1="period" g2="Q" k="43" />
+<hkern g1="period" g2="T" k="115" />
+<hkern g1="period" g2="U" k="66" />
+<hkern g1="period" g2="V" k="229" />
+<hkern g1="period" g2="W" k="160" />
+<hkern g1="period" g2="Y" k="143" />
+<hkern g1="period" g2="j" k="18" />
+<hkern g1="period" g2="p" k="16" />
+<hkern g1="period" g2="t" k="27" />
+<hkern g1="period" g2="u" k="25" />
+<hkern g1="period" g2="v" k="86" />
+<hkern g1="period" g2="w" k="70" />
+<hkern g1="period" g2="y" k="96" />
+<hkern g1="period" g2="Ccedilla" k="43" />
+<hkern g1="period" g2="Ograve" k="43" />
+<hkern g1="period" g2="Oacute" k="43" />
+<hkern g1="period" g2="Ocircumflex" k="43" />
+<hkern g1="period" g2="Otilde" k="43" />
+<hkern g1="period" g2="Odieresis" k="43" />
+<hkern g1="period" g2="Oslash" k="43" />
+<hkern g1="period" g2="Ugrave" k="66" />
+<hkern g1="period" g2="Uacute" k="66" />
+<hkern g1="period" g2="Ucircumflex" k="66" />
+<hkern g1="period" g2="Udieresis" k="66" />
+<hkern g1="period" g2="Yacute" k="143" />
+<hkern g1="period" g2="ugrave" k="25" />
+<hkern g1="period" g2="uacute" k="25" />
+<hkern g1="period" g2="ucircumflex" k="25" />
+<hkern g1="period" g2="udieresis" k="25" />
+<hkern g1="period" g2="yacute" k="96" />
+<hkern g1="period" g2="ydieresis" k="96" />
+<hkern g1="period" g2="OE" k="43" />
+<hkern g1="period" g2="quoteleft" k="227" />
+<hkern g1="period" g2="quoteright" k="215" />
+<hkern g1="period" g2="quotedblleft" k="240" />
+<hkern g1="period" g2="quotedblright" k="240" />
+<hkern g1="slash" g2="slash" k="700" />
+<hkern g1="slash" g2="zero" k="27" />
+<hkern g1="slash" g2="four" k="94" />
+<hkern g1="slash" g2="six" k="31" />
+<hkern g1="slash" g2="seven" k="-12" />
+<hkern g1="slash" g2="A" k="143" />
+<hkern g1="slash" g2="C" k="37" />
+<hkern g1="slash" g2="G" k="37" />
+<hkern g1="slash" g2="J" k="45" />
+<hkern g1="slash" g2="O" k="37" />
+<hkern g1="slash" g2="Q" k="37" />
+<hkern g1="slash" g2="T" k="-14" />
+<hkern g1="slash" g2="V" k="-55" />
+<hkern g1="slash" g2="W" k="-39" />
+<hkern g1="slash" g2="X" k="-39" />
+<hkern g1="slash" g2="Y" k="-55" />
+<hkern g1="slash" g2="a" k="94" />
+<hkern g1="slash" g2="b" k="-68" />
+<hkern g1="slash" g2="c" k="113" />
+<hkern g1="slash" g2="d" k="104" />
+<hkern g1="slash" g2="e" k="113" />
+<hkern g1="slash" g2="g" k="111" />
+<hkern g1="slash" g2="m" k="61" />
+<hkern g1="slash" g2="n" k="61" />
+<hkern g1="slash" g2="o" k="113" />
+<hkern g1="slash" g2="p" k="55" />
+<hkern g1="slash" g2="q" k="104" />
+<hkern g1="slash" g2="r" k="61" />
+<hkern g1="slash" g2="s" k="86" />
+<hkern g1="slash" g2="t" k="31" />
+<hkern g1="slash" g2="u" k="47" />
+<hkern g1="slash" g2="v" k="33" />
+<hkern g1="slash" g2="w" k="35" />
+<hkern g1="slash" g2="x" k="39" />
+<hkern g1="slash" g2="y" k="35" />
+<hkern g1="slash" g2="z" k="66" />
+<hkern g1="slash" g2="Agrave" k="143" />
+<hkern g1="slash" g2="Aacute" k="143" />
+<hkern g1="slash" g2="Acircumflex" k="143" />
+<hkern g1="slash" g2="Atilde" k="143" />
+<hkern g1="slash" g2="Adieresis" k="143" />
+<hkern g1="slash" g2="Aring" k="143" />
+<hkern g1="slash" g2="AE" k="182" />
+<hkern g1="slash" g2="Ccedilla" k="37" />
+<hkern g1="slash" g2="Ograve" k="37" />
+<hkern g1="slash" g2="Oacute" k="37" />
+<hkern g1="slash" g2="Ocircumflex" k="37" />
+<hkern g1="slash" g2="Otilde" k="37" />
+<hkern g1="slash" g2="Odieresis" k="37" />
+<hkern g1="slash" g2="Oslash" k="37" />
+<hkern g1="slash" g2="Yacute" k="-55" />
+<hkern g1="slash" g2="agrave" k="94" />
+<hkern g1="slash" g2="aacute" k="94" />
+<hkern g1="slash" g2="acircumflex" k="94" />
+<hkern g1="slash" g2="atilde" k="94" />
+<hkern g1="slash" g2="adieresis" k="94" />
+<hkern g1="slash" g2="aring" k="94" />
+<hkern g1="slash" g2="ae" k="94" />
+<hkern g1="slash" g2="ccedilla" k="113" />
+<hkern g1="slash" g2="egrave" k="113" />
+<hkern g1="slash" g2="eacute" k="113" />
+<hkern g1="slash" g2="ecircumflex" k="113" />
+<hkern g1="slash" g2="edieresis" k="113" />
+<hkern g1="slash" g2="ntilde" k="61" />
+<hkern g1="slash" g2="ograve" k="113" />
+<hkern g1="slash" g2="oacute" k="113" />
+<hkern g1="slash" g2="ocircumflex" k="113" />
+<hkern g1="slash" g2="otilde" k="113" />
+<hkern g1="slash" g2="odieresis" k="113" />
+<hkern g1="slash" g2="oslash" k="113" />
+<hkern g1="slash" g2="ugrave" k="47" />
+<hkern g1="slash" g2="uacute" k="47" />
+<hkern g1="slash" g2="ucircumflex" k="47" />
+<hkern g1="slash" g2="udieresis" k="47" />
+<hkern g1="slash" g2="yacute" k="35" />
+<hkern g1="slash" g2="thorn" k="-68" />
+<hkern g1="slash" g2="ydieresis" k="35" />
+<hkern g1="slash" g2="OE" k="37" />
+<hkern g1="slash" g2="oe" k="113" />
+<hkern g1="zero" g2="parenright" k="43" />
+<hkern g1="zero" g2="comma" k="35" />
+<hkern g1="zero" g2="period" k="35" />
+<hkern g1="zero" g2="slash" k="131" />
+<hkern g1="zero" g2="A" k="41" />
+<hkern g1="zero" g2="V" k="37" />
+<hkern g1="zero" g2="W" k="37" />
+<hkern g1="zero" g2="Y" k="37" />
+<hkern g1="zero" g2="backslash" k="23" />
+<hkern g1="zero" g2="bracketright" k="82" />
+<hkern g1="zero" g2="braceright" k="47" />
+<hkern g1="zero" g2="Agrave" k="41" />
+<hkern g1="zero" g2="Aacute" k="41" />
+<hkern g1="zero" g2="Acircumflex" k="41" />
+<hkern g1="zero" g2="Atilde" k="41" />
+<hkern g1="zero" g2="Adieresis" k="41" />
+<hkern g1="zero" g2="Aring" k="41" />
+<hkern g1="zero" g2="Yacute" k="37" />
+<hkern g1="zero" g2="quotesinglbase" k="35" />
+<hkern g1="zero" g2="quotedblbase" k="35" />
+<hkern g1="zero" g2="fraction" k="27" />
+<hkern g1="one" g2="parenright" k="27" />
+<hkern g1="one" g2="plus" k="20" />
+<hkern g1="one" g2="hyphen" k="31" />
+<hkern g1="one" g2="slash" k="49" />
+<hkern g1="one" g2="A" k="-18" />
+<hkern g1="one" g2="J" k="-23" />
+<hkern g1="one" g2="U" k="20" />
+<hkern g1="one" g2="V" k="35" />
+<hkern g1="one" g2="W" k="37" />
+<hkern g1="one" g2="Y" k="31" />
+<hkern g1="one" g2="bracketright" k="39" />
+<hkern g1="one" g2="braceright" k="25" />
+<hkern g1="one" g2="uni00AD" k="31" />
+<hkern g1="one" g2="middot" k="33" />
+<hkern g1="one" g2="Agrave" k="-18" />
+<hkern g1="one" g2="Aacute" k="-18" />
+<hkern g1="one" g2="Acircumflex" k="-18" />
+<hkern g1="one" g2="Atilde" k="-18" />
+<hkern g1="one" g2="Adieresis" k="-18" />
+<hkern g1="one" g2="Aring" k="-18" />
+<hkern g1="one" g2="Ugrave" k="20" />
+<hkern g1="one" g2="Uacute" k="20" />
+<hkern g1="one" g2="Ucircumflex" k="20" />
+<hkern g1="one" g2="Udieresis" k="20" />
+<hkern g1="one" g2="Yacute" k="31" />
+<hkern g1="one" g2="endash" k="31" />
+<hkern g1="one" g2="emdash" k="31" />
+<hkern g1="one" g2="fraction" k="-59" />
+<hkern g1="one" g2="minus" k="27" />
+<hkern g1="two" g2="hyphen" k="33" />
+<hkern g1="two" g2="slash" k="59" />
+<hkern g1="two" g2="bracketright" k="47" />
+<hkern g1="two" g2="braceright" k="23" />
+<hkern g1="two" g2="uni00AD" k="33" />
+<hkern g1="two" g2="middot" k="33" />
+<hkern g1="two" g2="endash" k="33" />
+<hkern g1="two" g2="emdash" k="33" />
+<hkern g1="two" g2="fraction" k="-31" />
+<hkern g1="two" g2="minus" k="25" />
+<hkern g1="three" g2="parenright" k="39" />
+<hkern g1="three" g2="slash" k="96" />
+<hkern g1="three" g2="V" k="29" />
+<hkern g1="three" g2="W" k="29" />
+<hkern g1="three" g2="Y" k="27" />
+<hkern g1="three" g2="bracketright" k="61" />
+<hkern g1="three" g2="braceright" k="43" />
+<hkern g1="three" g2="Yacute" k="27" />
+<hkern g1="four" g2="quotedbl" k="33" />
+<hkern g1="four" g2="quotesingle" k="33" />
+<hkern g1="four" g2="parenright" k="35" />
+<hkern g1="four" g2="slash" k="63" />
+<hkern g1="four" g2="four" k="-20" />
+<hkern g1="four" g2="T" k="27" />
+<hkern g1="four" g2="V" k="49" />
+<hkern g1="four" g2="W" k="49" />
+<hkern g1="four" g2="Y" k="45" />
+<hkern g1="four" g2="backslash" k="27" />
+<hkern g1="four" g2="bracketright" k="51" />
+<hkern g1="four" g2="braceright" k="39" />
+<hkern g1="four" g2="degree" k="33" />
+<hkern g1="four" g2="Yacute" k="45" />
+<hkern g1="four" g2="fraction" k="-18" />
+<hkern g1="five" g2="slash" k="94" />
+<hkern g1="five" g2="four" k="-23" />
+<hkern g1="six" g2="parenright" k="35" />
+<hkern g1="six" g2="slash" k="102" />
+<hkern g1="six" g2="A" k="20" />
+<hkern g1="six" g2="V" k="23" />
+<hkern g1="six" g2="W" k="23" />
+<hkern g1="six" g2="Y" k="20" />
+<hkern g1="six" g2="bracketright" k="49" />
+<hkern g1="six" g2="braceright" k="39" />
+<hkern g1="six" g2="Agrave" k="20" />
+<hkern g1="six" g2="Aacute" k="20" />
+<hkern g1="six" g2="Acircumflex" k="20" />
+<hkern g1="six" g2="Atilde" k="20" />
+<hkern g1="six" g2="Adieresis" k="20" />
+<hkern g1="six" g2="Aring" k="20" />
+<hkern g1="six" g2="Yacute" k="20" />
+<hkern g1="seven" g2="numbersign" k="20" />
+<hkern g1="seven" g2="plus" k="33" />
+<hkern g1="seven" g2="comma" k="129" />
+<hkern g1="seven" g2="hyphen" k="43" />
+<hkern g1="seven" g2="period" k="129" />
+<hkern g1="seven" g2="slash" k="172" />
+<hkern g1="seven" g2="four" k="39" />
+<hkern g1="seven" g2="seven" k="-29" />
+<hkern g1="seven" g2="A" k="86" />
+<hkern g1="seven" g2="J" k="43" />
+<hkern g1="seven" g2="T" k="-27" />
+<hkern g1="seven" g2="V" k="-47" />
+<hkern g1="seven" g2="W" k="-39" />
+<hkern g1="seven" g2="X" k="-39" />
+<hkern g1="seven" g2="Y" k="-57" />
+<hkern g1="seven" g2="backslash" k="-18" />
+<hkern g1="seven" g2="bracketright" k="-53" />
+<hkern g1="seven" g2="c" k="76" />
+<hkern g1="seven" g2="e" k="76" />
+<hkern g1="seven" g2="o" k="76" />
+<hkern g1="seven" g2="z" k="25" />
+<hkern g1="seven" g2="braceright" k="-43" />
+<hkern g1="seven" g2="cent" k="45" />
+<hkern g1="seven" g2="uni00AD" k="43" />
+<hkern g1="seven" g2="middot" k="37" />
+<hkern g1="seven" g2="Agrave" k="86" />
+<hkern g1="seven" g2="Aacute" k="86" />
+<hkern g1="seven" g2="Acircumflex" k="86" />
+<hkern g1="seven" g2="Atilde" k="86" />
+<hkern g1="seven" g2="Adieresis" k="86" />
+<hkern g1="seven" g2="Aring" k="86" />
+<hkern g1="seven" g2="AE" k="156" />
+<hkern g1="seven" g2="Yacute" k="-57" />
+<hkern g1="seven" g2="ccedilla" k="76" />
+<hkern g1="seven" g2="egrave" k="76" />
+<hkern g1="seven" g2="eacute" k="76" />
+<hkern g1="seven" g2="ecircumflex" k="76" />
+<hkern g1="seven" g2="edieresis" k="76" />
+<hkern g1="seven" g2="ograve" k="76" />
+<hkern g1="seven" g2="oacute" k="76" />
+<hkern g1="seven" g2="ocircumflex" k="76" />
+<hkern g1="seven" g2="otilde" k="76" />
+<hkern g1="seven" g2="odieresis" k="76" />
+<hkern g1="seven" g2="oslash" k="76" />
+<hkern g1="seven" g2="oe" k="76" />
+<hkern g1="seven" g2="endash" k="43" />
+<hkern g1="seven" g2="emdash" k="43" />
+<hkern g1="seven" g2="quotesinglbase" k="129" />
+<hkern g1="seven" g2="quotedblbase" k="129" />
+<hkern g1="seven" g2="fraction" k="84" />
+<hkern g1="seven" g2="minus" k="37" />
+<hkern g1="eight" g2="parenright" k="37" />
+<hkern g1="eight" g2="slash" k="92" />
+<hkern g1="eight" g2="V" k="27" />
+<hkern g1="eight" g2="W" k="29" />
+<hkern g1="eight" g2="Y" k="25" />
+<hkern g1="eight" g2="bracketright" k="61" />
+<hkern g1="eight" g2="braceright" k="41" />
+<hkern g1="eight" g2="Yacute" k="25" />
+<hkern g1="nine" g2="parenright" k="41" />
+<hkern g1="nine" g2="comma" k="33" />
+<hkern g1="nine" g2="period" k="33" />
+<hkern g1="nine" g2="slash" k="129" />
+<hkern g1="nine" g2="A" k="39" />
+<hkern g1="nine" g2="V" k="29" />
+<hkern g1="nine" g2="W" k="29" />
+<hkern g1="nine" g2="Y" k="27" />
+<hkern g1="nine" g2="bracketright" k="70" />
+<hkern g1="nine" g2="braceright" k="43" />
+<hkern g1="nine" g2="Agrave" k="39" />
+<hkern g1="nine" g2="Aacute" k="39" />
+<hkern g1="nine" g2="Acircumflex" k="39" />
+<hkern g1="nine" g2="Atilde" k="39" />
+<hkern g1="nine" g2="Adieresis" k="39" />
+<hkern g1="nine" g2="Aring" k="39" />
+<hkern g1="nine" g2="Yacute" k="27" />
+<hkern g1="nine" g2="quotesinglbase" k="33" />
+<hkern g1="nine" g2="quotedblbase" k="33" />
+<hkern g1="nine" g2="fraction" k="25" />
+<hkern g1="equal" g2="seven" k="59" />
+<hkern g1="at" g2="quotedbl" k="20" />
+<hkern g1="at" g2="quotesingle" k="20" />
+<hkern g1="at" g2="A" k="25" />
+<hkern g1="at" g2="V" k="70" />
+<hkern g1="at" g2="W" k="66" />
+<hkern g1="at" g2="X" k="23" />
+<hkern g1="at" g2="Y" k="72" />
+<hkern g1="at" g2="Agrave" k="25" />
+<hkern g1="at" g2="Aacute" k="25" />
+<hkern g1="at" g2="Acircumflex" k="25" />
+<hkern g1="at" g2="Atilde" k="25" />
+<hkern g1="at" g2="Adieresis" k="25" />
+<hkern g1="at" g2="Aring" k="25" />
+<hkern g1="at" g2="Yacute" k="72" />
+<hkern g1="at" g2="quoteright" k="20" />
+<hkern g1="at" g2="quotedblright" k="20" />
+<hkern g1="A" g2="quotedbl" k="147" />
+<hkern g1="A" g2="quotesingle" k="147" />
+<hkern g1="A" g2="parenright" k="43" />
+<hkern g1="A" g2="asterisk" k="104" />
+<hkern g1="A" g2="hyphen" k="78" />
+<hkern g1="A" g2="slash" k="31" />
+<hkern g1="A" g2="zero" k="31" />
+<hkern g1="A" g2="two" k="-18" />
+<hkern g1="A" g2="four" k="20" />
+<hkern g1="A" g2="six" k="23" />
+<hkern g1="A" g2="seven" k="59" />
+<hkern g1="A" g2="question" k="61" />
+<hkern g1="A" g2="A" k="-49" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-35" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="109" />
+<hkern g1="A" g2="U" k="80" />
+<hkern g1="A" g2="V" k="160" />
+<hkern g1="A" g2="W" k="143" />
+<hkern g1="A" g2="Y" k="139" />
+<hkern g1="A" g2="backslash" k="145" />
+<hkern g1="A" g2="bracketright" k="109" />
+<hkern g1="A" g2="b" k="16" />
+<hkern g1="A" g2="c" k="27" />
+<hkern g1="A" g2="d" k="23" />
+<hkern g1="A" g2="e" k="27" />
+<hkern g1="A" g2="f" k="12" />
+<hkern g1="A" g2="g" k="12" />
+<hkern g1="A" g2="j" k="33" />
+<hkern g1="A" g2="o" k="27" />
+<hkern g1="A" g2="p" k="31" />
+<hkern g1="A" g2="q" k="23" />
+<hkern g1="A" g2="s" k="12" />
+<hkern g1="A" g2="t" k="45" />
+<hkern g1="A" g2="u" k="43" />
+<hkern g1="A" g2="v" k="100" />
+<hkern g1="A" g2="w" k="66" />
+<hkern g1="A" g2="y" k="109" />
+<hkern g1="A" g2="z" k="-25" />
+<hkern g1="A" g2="braceright" k="49" />
+<hkern g1="A" g2="guillemotleft" k="41" />
+<hkern g1="A" g2="uni00AD" k="78" />
+<hkern g1="A" g2="registered" k="33" />
+<hkern g1="A" g2="guillemotright" k="-16" />
+<hkern g1="A" g2="Agrave" k="-49" />
+<hkern g1="A" g2="Aacute" k="-49" />
+<hkern g1="A" g2="Acircumflex" k="-49" />
+<hkern g1="A" g2="Atilde" k="-49" />
+<hkern g1="A" g2="Adieresis" k="-49" />
+<hkern g1="A" g2="Aring" k="-49" />
+<hkern g1="A" g2="AE" k="-49" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Ugrave" k="80" />
+<hkern g1="A" g2="Uacute" k="80" />
+<hkern g1="A" g2="Ucircumflex" k="80" />
+<hkern g1="A" g2="Udieresis" k="80" />
+<hkern g1="A" g2="Yacute" k="139" />
+<hkern g1="A" g2="germandbls" k="12" />
+<hkern g1="A" g2="ccedilla" k="27" />
+<hkern g1="A" g2="egrave" k="27" />
+<hkern g1="A" g2="eacute" k="27" />
+<hkern g1="A" g2="ecircumflex" k="27" />
+<hkern g1="A" g2="edieresis" k="27" />
+<hkern g1="A" g2="eth" k="23" />
+<hkern g1="A" g2="ograve" k="27" />
+<hkern g1="A" g2="oacute" k="27" />
+<hkern g1="A" g2="ocircumflex" k="27" />
+<hkern g1="A" g2="otilde" k="27" />
+<hkern g1="A" g2="odieresis" k="27" />
+<hkern g1="A" g2="oslash" k="27" />
+<hkern g1="A" g2="ugrave" k="43" />
+<hkern g1="A" g2="uacute" k="43" />
+<hkern g1="A" g2="ucircumflex" k="43" />
+<hkern g1="A" g2="udieresis" k="43" />
+<hkern g1="A" g2="yacute" k="109" />
+<hkern g1="A" g2="thorn" k="16" />
+<hkern g1="A" g2="ydieresis" k="109" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="oe" k="27" />
+<hkern g1="A" g2="endash" k="78" />
+<hkern g1="A" g2="emdash" k="78" />
+<hkern g1="A" g2="quoteleft" k="135" />
+<hkern g1="A" g2="quoteright" k="141" />
+<hkern g1="A" g2="quotedblleft" k="135" />
+<hkern g1="A" g2="quotedblright" k="141" />
+<hkern g1="A" g2="guilsinglleft" k="41" />
+<hkern g1="A" g2="guilsinglright" k="-16" />
+<hkern g1="B" g2="parenright" k="45" />
+<hkern g1="B" g2="slash" k="100" />
+<hkern g1="B" g2="four" k="-25" />
+<hkern g1="B" g2="A" k="31" />
+<hkern g1="B" g2="B" k="23" />
+<hkern g1="B" g2="D" k="23" />
+<hkern g1="B" g2="E" k="23" />
+<hkern g1="B" g2="F" k="23" />
+<hkern g1="B" g2="H" k="23" />
+<hkern g1="B" g2="I" k="23" />
+<hkern g1="B" g2="K" k="23" />
+<hkern g1="B" g2="L" k="23" />
+<hkern g1="B" g2="M" k="25" />
+<hkern g1="B" g2="N" k="23" />
+<hkern g1="B" g2="P" k="23" />
+<hkern g1="B" g2="R" k="23" />
+<hkern g1="B" g2="T" k="14" />
+<hkern g1="B" g2="U" k="12" />
+<hkern g1="B" g2="V" k="45" />
+<hkern g1="B" g2="W" k="45" />
+<hkern g1="B" g2="X" k="63" />
+<hkern g1="B" g2="Y" k="43" />
+<hkern g1="B" g2="backslash" k="37" />
+<hkern g1="B" g2="bracketright" k="94" />
+<hkern g1="B" g2="f" k="23" />
+<hkern g1="B" g2="g" k="12" />
+<hkern g1="B" g2="h" k="20" />
+<hkern g1="B" g2="i" k="25" />
+<hkern g1="B" g2="j" k="20" />
+<hkern g1="B" g2="k" k="20" />
+<hkern g1="B" g2="l" k="20" />
+<hkern g1="B" g2="m" k="23" />
+<hkern g1="B" g2="n" k="23" />
+<hkern g1="B" g2="p" k="20" />
+<hkern g1="B" g2="r" k="23" />
+<hkern g1="B" g2="t" k="16" />
+<hkern g1="B" g2="u" k="16" />
+<hkern g1="B" g2="v" k="29" />
+<hkern g1="B" g2="w" k="27" />
+<hkern g1="B" g2="x" k="37" />
+<hkern g1="B" g2="y" k="31" />
+<hkern g1="B" g2="z" k="14" />
+<hkern g1="B" g2="braceright" k="55" />
+<hkern g1="B" g2="Agrave" k="31" />
+<hkern g1="B" g2="Aacute" k="31" />
+<hkern g1="B" g2="Acircumflex" k="31" />
+<hkern g1="B" g2="Atilde" k="31" />
+<hkern g1="B" g2="Adieresis" k="31" />
+<hkern g1="B" g2="Aring" k="31" />
+<hkern g1="B" g2="AE" k="33" />
+<hkern g1="B" g2="Egrave" k="23" />
+<hkern g1="B" g2="Eacute" k="23" />
+<hkern g1="B" g2="Ecircumflex" k="23" />
+<hkern g1="B" g2="Edieresis" k="23" />
+<hkern g1="B" g2="Igrave" k="23" />
+<hkern g1="B" g2="Iacute" k="23" />
+<hkern g1="B" g2="Icircumflex" k="23" />
+<hkern g1="B" g2="Idieresis" k="23" />
+<hkern g1="B" g2="Eth" k="23" />
+<hkern g1="B" g2="Ntilde" k="23" />
+<hkern g1="B" g2="Ugrave" k="12" />
+<hkern g1="B" g2="Uacute" k="12" />
+<hkern g1="B" g2="Ucircumflex" k="12" />
+<hkern g1="B" g2="Udieresis" k="12" />
+<hkern g1="B" g2="Yacute" k="43" />
+<hkern g1="B" g2="Thorn" k="23" />
+<hkern g1="B" g2="germandbls" k="23" />
+<hkern g1="B" g2="igrave" k="25" />
+<hkern g1="B" g2="iacute" k="25" />
+<hkern g1="B" g2="icircumflex" k="25" />
+<hkern g1="B" g2="idieresis" k="25" />
+<hkern g1="B" g2="ntilde" k="23" />
+<hkern g1="B" g2="ugrave" k="16" />
+<hkern g1="B" g2="uacute" k="16" />
+<hkern g1="B" g2="ucircumflex" k="16" />
+<hkern g1="B" g2="udieresis" k="16" />
+<hkern g1="B" g2="yacute" k="31" />
+<hkern g1="B" g2="ydieresis" k="31" />
+<hkern g1="B" g2="dotlessi" k="25" />
+<hkern g1="C" g2="ampersand" k="-25" />
+<hkern g1="C" g2="hyphen" k="55" />
+<hkern g1="C" g2="slash" k="78" />
+<hkern g1="C" g2="three" k="-16" />
+<hkern g1="C" g2="A" k="14" />
+<hkern g1="C" g2="g" k="16" />
+<hkern g1="C" g2="uni00AD" k="55" />
+<hkern g1="C" g2="Agrave" k="14" />
+<hkern g1="C" g2="Aacute" k="14" />
+<hkern g1="C" g2="Acircumflex" k="14" />
+<hkern g1="C" g2="Atilde" k="14" />
+<hkern g1="C" g2="Adieresis" k="14" />
+<hkern g1="C" g2="Aring" k="14" />
+<hkern g1="C" g2="AE" k="25" />
+<hkern g1="C" g2="endash" k="55" />
+<hkern g1="C" g2="emdash" k="55" />
+<hkern g1="D" g2="parenright" k="51" />
+<hkern g1="D" g2="comma" k="55" />
+<hkern g1="D" g2="period" k="55" />
+<hkern g1="D" g2="slash" k="147" />
+<hkern g1="D" g2="A" k="57" />
+<hkern g1="D" g2="B" k="29" />
+<hkern g1="D" g2="D" k="29" />
+<hkern g1="D" g2="E" k="29" />
+<hkern g1="D" g2="F" k="29" />
+<hkern g1="D" g2="H" k="29" />
+<hkern g1="D" g2="I" k="29" />
+<hkern g1="D" g2="J" k="23" />
+<hkern g1="D" g2="K" k="29" />
+<hkern g1="D" g2="L" k="29" />
+<hkern g1="D" g2="M" k="31" />
+<hkern g1="D" g2="N" k="29" />
+<hkern g1="D" g2="P" k="29" />
+<hkern g1="D" g2="R" k="29" />
+<hkern g1="D" g2="U" k="16" />
+<hkern g1="D" g2="V" k="53" />
+<hkern g1="D" g2="W" k="51" />
+<hkern g1="D" g2="X" k="74" />
+<hkern g1="D" g2="Y" k="57" />
+<hkern g1="D" g2="backslash" k="41" />
+<hkern g1="D" g2="bracketright" k="102" />
+<hkern g1="D" g2="a" k="12" />
+<hkern g1="D" g2="b" k="12" />
+<hkern g1="D" g2="g" k="12" />
+<hkern g1="D" g2="h" k="29" />
+<hkern g1="D" g2="k" k="29" />
+<hkern g1="D" g2="l" k="29" />
+<hkern g1="D" g2="x" k="12" />
+<hkern g1="D" g2="braceright" k="57" />
+<hkern g1="D" g2="Agrave" k="57" />
+<hkern g1="D" g2="Aacute" k="57" />
+<hkern g1="D" g2="Acircumflex" k="57" />
+<hkern g1="D" g2="Atilde" k="57" />
+<hkern g1="D" g2="Adieresis" k="57" />
+<hkern g1="D" g2="Aring" k="57" />
+<hkern g1="D" g2="AE" k="82" />
+<hkern g1="D" g2="Egrave" k="29" />
+<hkern g1="D" g2="Eacute" k="29" />
+<hkern g1="D" g2="Ecircumflex" k="29" />
+<hkern g1="D" g2="Edieresis" k="29" />
+<hkern g1="D" g2="Igrave" k="29" />
+<hkern g1="D" g2="Iacute" k="29" />
+<hkern g1="D" g2="Icircumflex" k="29" />
+<hkern g1="D" g2="Idieresis" k="29" />
+<hkern g1="D" g2="Eth" k="29" />
+<hkern g1="D" g2="Ntilde" k="29" />
+<hkern g1="D" g2="Ugrave" k="16" />
+<hkern g1="D" g2="Uacute" k="16" />
+<hkern g1="D" g2="Ucircumflex" k="16" />
+<hkern g1="D" g2="Udieresis" k="16" />
+<hkern g1="D" g2="Yacute" k="57" />
+<hkern g1="D" g2="Thorn" k="29" />
+<hkern g1="D" g2="agrave" k="12" />
+<hkern g1="D" g2="aacute" k="12" />
+<hkern g1="D" g2="acircumflex" k="12" />
+<hkern g1="D" g2="atilde" k="12" />
+<hkern g1="D" g2="adieresis" k="12" />
+<hkern g1="D" g2="aring" k="12" />
+<hkern g1="D" g2="ae" k="12" />
+<hkern g1="D" g2="thorn" k="12" />
+<hkern g1="D" g2="quotesinglbase" k="55" />
+<hkern g1="D" g2="quotedblbase" k="55" />
+<hkern g1="E" g2="hyphen" k="29" />
+<hkern g1="E" g2="slash" k="57" />
+<hkern g1="E" g2="V" k="14" />
+<hkern g1="E" g2="W" k="14" />
+<hkern g1="E" g2="Y" k="14" />
+<hkern g1="E" g2="g" k="16" />
+<hkern g1="E" g2="j" k="23" />
+<hkern g1="E" g2="p" k="23" />
+<hkern g1="E" g2="t" k="14" />
+<hkern g1="E" g2="u" k="18" />
+<hkern g1="E" g2="v" k="31" />
+<hkern g1="E" g2="w" k="25" />
+<hkern g1="E" g2="y" k="33" />
+<hkern g1="E" g2="uni00AD" k="29" />
+<hkern g1="E" g2="Yacute" k="14" />
+<hkern g1="E" g2="otilde" k="10" />
+<hkern g1="E" g2="ugrave" k="18" />
+<hkern g1="E" g2="uacute" k="18" />
+<hkern g1="E" g2="ucircumflex" k="18" />
+<hkern g1="E" g2="udieresis" k="18" />
+<hkern g1="E" g2="yacute" k="33" />
+<hkern g1="E" g2="ydieresis" k="33" />
+<hkern g1="E" g2="endash" k="29" />
+<hkern g1="E" g2="emdash" k="29" />
+<hkern g1="F" g2="asterisk" k="-57" />
+<hkern g1="F" g2="comma" k="131" />
+<hkern g1="F" g2="hyphen" k="61" />
+<hkern g1="F" g2="period" k="131" />
+<hkern g1="F" g2="slash" k="176" />
+<hkern g1="F" g2="one" k="-59" />
+<hkern g1="F" g2="four" k="29" />
+<hkern g1="F" g2="seven" k="-45" />
+<hkern g1="F" g2="at" k="25" />
+<hkern g1="F" g2="A" k="104" />
+<hkern g1="F" g2="J" k="57" />
+<hkern g1="F" g2="Y" k="-12" />
+<hkern g1="F" g2="backslash" k="-18" />
+<hkern g1="F" g2="bracketright" k="-55" />
+<hkern g1="F" g2="a" k="84" />
+<hkern g1="F" g2="b" k="-55" />
+<hkern g1="F" g2="c" k="86" />
+<hkern g1="F" g2="d" k="86" />
+<hkern g1="F" g2="e" k="86" />
+<hkern g1="F" g2="g" k="82" />
+<hkern g1="F" g2="i" k="23" />
+<hkern g1="F" g2="j" k="16" />
+<hkern g1="F" g2="m" k="31" />
+<hkern g1="F" g2="n" k="31" />
+<hkern g1="F" g2="o" k="86" />
+<hkern g1="F" g2="p" k="25" />
+<hkern g1="F" g2="q" k="86" />
+<hkern g1="F" g2="r" k="31" />
+<hkern g1="F" g2="s" k="70" />
+<hkern g1="F" g2="u" k="18" />
+<hkern g1="F" g2="z" k="31" />
+<hkern g1="F" g2="braceright" k="-43" />
+<hkern g1="F" g2="guillemotleft" k="43" />
+<hkern g1="F" g2="uni00AD" k="61" />
+<hkern g1="F" g2="Agrave" k="104" />
+<hkern g1="F" g2="Aacute" k="104" />
+<hkern g1="F" g2="Acircumflex" k="104" />
+<hkern g1="F" g2="Atilde" k="104" />
+<hkern g1="F" g2="Adieresis" k="104" />
+<hkern g1="F" g2="Aring" k="104" />
+<hkern g1="F" g2="AE" k="166" />
+<hkern g1="F" g2="Yacute" k="-12" />
+<hkern g1="F" g2="agrave" k="84" />
+<hkern g1="F" g2="aacute" k="84" />
+<hkern g1="F" g2="acircumflex" k="84" />
+<hkern g1="F" g2="atilde" k="84" />
+<hkern g1="F" g2="adieresis" k="84" />
+<hkern g1="F" g2="aring" k="84" />
+<hkern g1="F" g2="ae" k="84" />
+<hkern g1="F" g2="ccedilla" k="86" />
+<hkern g1="F" g2="egrave" k="86" />
+<hkern g1="F" g2="eacute" k="86" />
+<hkern g1="F" g2="ecircumflex" k="86" />
+<hkern g1="F" g2="edieresis" k="86" />
+<hkern g1="F" g2="iacute" k="23" />
+<hkern g1="F" g2="icircumflex" k="-33" />
+<hkern g1="F" g2="eth" k="41" />
+<hkern g1="F" g2="ntilde" k="31" />
+<hkern g1="F" g2="ograve" k="86" />
+<hkern g1="F" g2="oacute" k="86" />
+<hkern g1="F" g2="ocircumflex" k="86" />
+<hkern g1="F" g2="otilde" k="86" />
+<hkern g1="F" g2="odieresis" k="86" />
+<hkern g1="F" g2="oslash" k="86" />
+<hkern g1="F" g2="ugrave" k="18" />
+<hkern g1="F" g2="uacute" k="18" />
+<hkern g1="F" g2="ucircumflex" k="18" />
+<hkern g1="F" g2="udieresis" k="18" />
+<hkern g1="F" g2="thorn" k="-55" />
+<hkern g1="F" g2="dotlessi" k="23" />
+<hkern g1="F" g2="oe" k="86" />
+<hkern g1="F" g2="endash" k="61" />
+<hkern g1="F" g2="emdash" k="61" />
+<hkern g1="F" g2="quoteright" k="-23" />
+<hkern g1="F" g2="quotesinglbase" k="131" />
+<hkern g1="F" g2="quotedblright" k="-23" />
+<hkern g1="F" g2="quotedblbase" k="131" />
+<hkern g1="F" g2="guilsinglleft" k="43" />
+<hkern g1="G" g2="quotedbl" k="16" />
+<hkern g1="G" g2="quotesingle" k="16" />
+<hkern g1="G" g2="parenright" k="31" />
+<hkern g1="G" g2="slash" k="98" />
+<hkern g1="G" g2="four" k="-37" />
+<hkern g1="G" g2="A" k="16" />
+<hkern g1="G" g2="T" k="14" />
+<hkern g1="G" g2="V" k="29" />
+<hkern g1="G" g2="W" k="29" />
+<hkern g1="G" g2="X" k="20" />
+<hkern g1="G" g2="Y" k="29" />
+<hkern g1="G" g2="bracketright" k="43" />
+<hkern g1="G" g2="f" k="14" />
+<hkern g1="G" g2="h" k="12" />
+<hkern g1="G" g2="i" k="12" />
+<hkern g1="G" g2="j" k="12" />
+<hkern g1="G" g2="k" k="12" />
+<hkern g1="G" g2="l" k="12" />
+<hkern g1="G" g2="m" k="12" />
+<hkern g1="G" g2="n" k="12" />
+<hkern g1="G" g2="p" k="12" />
+<hkern g1="G" g2="r" k="12" />
+<hkern g1="G" g2="v" k="12" />
+<hkern g1="G" g2="w" k="14" />
+<hkern g1="G" g2="x" k="23" />
+<hkern g1="G" g2="y" k="14" />
+<hkern g1="G" g2="braceright" k="29" />
+<hkern g1="G" g2="guillemotleft" k="-18" />
+<hkern g1="G" g2="Agrave" k="16" />
+<hkern g1="G" g2="Aacute" k="16" />
+<hkern g1="G" g2="Acircumflex" k="16" />
+<hkern g1="G" g2="Atilde" k="16" />
+<hkern g1="G" g2="Adieresis" k="16" />
+<hkern g1="G" g2="Aring" k="16" />
+<hkern g1="G" g2="AE" k="16" />
+<hkern g1="G" g2="Yacute" k="29" />
+<hkern g1="G" g2="germandbls" k="14" />
+<hkern g1="G" g2="igrave" k="12" />
+<hkern g1="G" g2="iacute" k="12" />
+<hkern g1="G" g2="icircumflex" k="12" />
+<hkern g1="G" g2="idieresis" k="12" />
+<hkern g1="G" g2="ntilde" k="12" />
+<hkern g1="G" g2="yacute" k="14" />
+<hkern g1="G" g2="ydieresis" k="14" />
+<hkern g1="G" g2="dotlessi" k="12" />
+<hkern g1="G" g2="guilsinglleft" k="-18" />
+<hkern g1="H" g2="asterisk" k="18" />
+<hkern g1="H" g2="hyphen" k="47" />
+<hkern g1="H" g2="slash" k="61" />
+<hkern g1="H" g2="C" k="25" />
+<hkern g1="H" g2="G" k="25" />
+<hkern g1="H" g2="O" k="25" />
+<hkern g1="H" g2="Q" k="25" />
+<hkern g1="H" g2="a" k="25" />
+<hkern g1="H" g2="c" k="53" />
+<hkern g1="H" g2="d" k="49" />
+<hkern g1="H" g2="e" k="53" />
+<hkern g1="H" g2="f" k="27" />
+<hkern g1="H" g2="g" k="35" />
+<hkern g1="H" g2="i" k="25" />
+<hkern g1="H" g2="j" k="43" />
+<hkern g1="H" g2="m" k="23" />
+<hkern g1="H" g2="n" k="23" />
+<hkern g1="H" g2="o" k="53" />
+<hkern g1="H" g2="p" k="49" />
+<hkern g1="H" g2="q" k="49" />
+<hkern g1="H" g2="r" k="23" />
+<hkern g1="H" g2="s" k="25" />
+<hkern g1="H" g2="t" k="51" />
+<hkern g1="H" g2="u" k="51" />
+<hkern g1="H" g2="v" k="66" />
+<hkern g1="H" g2="w" k="63" />
+<hkern g1="H" g2="x" k="20" />
+<hkern g1="H" g2="y" k="66" />
+<hkern g1="H" g2="z" k="18" />
+<hkern g1="H" g2="guillemotleft" k="33" />
+<hkern g1="H" g2="uni00AD" k="47" />
+<hkern g1="H" g2="Ccedilla" k="25" />
+<hkern g1="H" g2="Ograve" k="25" />
+<hkern g1="H" g2="Oacute" k="25" />
+<hkern g1="H" g2="Ocircumflex" k="25" />
+<hkern g1="H" g2="Otilde" k="25" />
+<hkern g1="H" g2="Odieresis" k="25" />
+<hkern g1="H" g2="Oslash" k="25" />
+<hkern g1="H" g2="germandbls" k="27" />
+<hkern g1="H" g2="agrave" k="25" />
+<hkern g1="H" g2="aacute" k="25" />
+<hkern g1="H" g2="acircumflex" k="25" />
+<hkern g1="H" g2="atilde" k="25" />
+<hkern g1="H" g2="adieresis" k="25" />
+<hkern g1="H" g2="aring" k="25" />
+<hkern g1="H" g2="ae" k="25" />
+<hkern g1="H" g2="ccedilla" k="53" />
+<hkern g1="H" g2="egrave" k="53" />
+<hkern g1="H" g2="eacute" k="53" />
+<hkern g1="H" g2="ecircumflex" k="53" />
+<hkern g1="H" g2="edieresis" k="53" />
+<hkern g1="H" g2="igrave" k="25" />
+<hkern g1="H" g2="iacute" k="25" />
+<hkern g1="H" g2="icircumflex" k="25" />
+<hkern g1="H" g2="idieresis" k="25" />
+<hkern g1="H" g2="eth" k="43" />
+<hkern g1="H" g2="ntilde" k="23" />
+<hkern g1="H" g2="ograve" k="53" />
+<hkern g1="H" g2="oacute" k="53" />
+<hkern g1="H" g2="ocircumflex" k="53" />
+<hkern g1="H" g2="otilde" k="53" />
+<hkern g1="H" g2="odieresis" k="53" />
+<hkern g1="H" g2="oslash" k="53" />
+<hkern g1="H" g2="ugrave" k="51" />
+<hkern g1="H" g2="uacute" k="51" />
+<hkern g1="H" g2="ucircumflex" k="51" />
+<hkern g1="H" g2="udieresis" k="51" />
+<hkern g1="H" g2="yacute" k="66" />
+<hkern g1="H" g2="ydieresis" k="66" />
+<hkern g1="H" g2="dotlessi" k="25" />
+<hkern g1="H" g2="OE" k="25" />
+<hkern g1="H" g2="oe" k="53" />
+<hkern g1="H" g2="endash" k="47" />
+<hkern g1="H" g2="emdash" k="47" />
+<hkern g1="H" g2="guilsinglleft" k="33" />
+<hkern g1="I" g2="asterisk" k="18" />
+<hkern g1="I" g2="hyphen" k="47" />
+<hkern g1="I" g2="slash" k="61" />
+<hkern g1="I" g2="C" k="25" />
+<hkern g1="I" g2="G" k="25" />
+<hkern g1="I" g2="O" k="25" />
+<hkern g1="I" g2="Q" k="25" />
+<hkern g1="I" g2="a" k="25" />
+<hkern g1="I" g2="c" k="53" />
+<hkern g1="I" g2="d" k="49" />
+<hkern g1="I" g2="e" k="53" />
+<hkern g1="I" g2="f" k="27" />
+<hkern g1="I" g2="g" k="35" />
+<hkern g1="I" g2="i" k="25" />
+<hkern g1="I" g2="j" k="43" />
+<hkern g1="I" g2="m" k="23" />
+<hkern g1="I" g2="n" k="23" />
+<hkern g1="I" g2="o" k="53" />
+<hkern g1="I" g2="p" k="49" />
+<hkern g1="I" g2="q" k="49" />
+<hkern g1="I" g2="r" k="23" />
+<hkern g1="I" g2="s" k="25" />
+<hkern g1="I" g2="t" k="51" />
+<hkern g1="I" g2="u" k="51" />
+<hkern g1="I" g2="v" k="66" />
+<hkern g1="I" g2="w" k="63" />
+<hkern g1="I" g2="x" k="20" />
+<hkern g1="I" g2="y" k="66" />
+<hkern g1="I" g2="z" k="18" />
+<hkern g1="I" g2="guillemotleft" k="33" />
+<hkern g1="I" g2="uni00AD" k="47" />
+<hkern g1="I" g2="Ccedilla" k="25" />
+<hkern g1="I" g2="Ograve" k="25" />
+<hkern g1="I" g2="Oacute" k="25" />
+<hkern g1="I" g2="Ocircumflex" k="25" />
+<hkern g1="I" g2="Otilde" k="25" />
+<hkern g1="I" g2="Odieresis" k="25" />
+<hkern g1="I" g2="Oslash" k="25" />
+<hkern g1="I" g2="germandbls" k="27" />
+<hkern g1="I" g2="agrave" k="25" />
+<hkern g1="I" g2="aacute" k="25" />
+<hkern g1="I" g2="acircumflex" k="25" />
+<hkern g1="I" g2="atilde" k="25" />
+<hkern g1="I" g2="adieresis" k="25" />
+<hkern g1="I" g2="aring" k="25" />
+<hkern g1="I" g2="ae" k="25" />
+<hkern g1="I" g2="ccedilla" k="53" />
+<hkern g1="I" g2="egrave" k="53" />
+<hkern g1="I" g2="eacute" k="53" />
+<hkern g1="I" g2="ecircumflex" k="53" />
+<hkern g1="I" g2="edieresis" k="53" />
+<hkern g1="I" g2="igrave" k="25" />
+<hkern g1="I" g2="iacute" k="25" />
+<hkern g1="I" g2="icircumflex" k="25" />
+<hkern g1="I" g2="idieresis" k="25" />
+<hkern g1="I" g2="eth" k="43" />
+<hkern g1="I" g2="ntilde" k="23" />
+<hkern g1="I" g2="ograve" k="53" />
+<hkern g1="I" g2="oacute" k="53" />
+<hkern g1="I" g2="ocircumflex" k="53" />
+<hkern g1="I" g2="otilde" k="53" />
+<hkern g1="I" g2="odieresis" k="53" />
+<hkern g1="I" g2="oslash" k="53" />
+<hkern g1="I" g2="ugrave" k="51" />
+<hkern g1="I" g2="uacute" k="51" />
+<hkern g1="I" g2="ucircumflex" k="51" />
+<hkern g1="I" g2="udieresis" k="51" />
+<hkern g1="I" g2="yacute" k="66" />
+<hkern g1="I" g2="ydieresis" k="66" />
+<hkern g1="I" g2="dotlessi" k="25" />
+<hkern g1="I" g2="OE" k="25" />
+<hkern g1="I" g2="oe" k="53" />
+<hkern g1="I" g2="endash" k="47" />
+<hkern g1="I" g2="emdash" k="47" />
+<hkern g1="I" g2="guilsinglleft" k="33" />
+<hkern g1="J" g2="comma" k="55" />
+<hkern g1="J" g2="hyphen" k="35" />
+<hkern g1="J" g2="period" k="55" />
+<hkern g1="J" g2="slash" k="147" />
+<hkern g1="J" g2="colon" k="25" />
+<hkern g1="J" g2="semicolon" k="33" />
+<hkern g1="J" g2="at" k="20" />
+<hkern g1="J" g2="A" k="66" />
+<hkern g1="J" g2="C" k="16" />
+<hkern g1="J" g2="G" k="16" />
+<hkern g1="J" g2="J" k="23" />
+<hkern g1="J" g2="O" k="16" />
+<hkern g1="J" g2="Q" k="16" />
+<hkern g1="J" g2="bracketright" k="-39" />
+<hkern g1="J" g2="a" k="61" />
+<hkern g1="J" g2="b" k="-39" />
+<hkern g1="J" g2="c" k="57" />
+<hkern g1="J" g2="d" k="57" />
+<hkern g1="J" g2="e" k="57" />
+<hkern g1="J" g2="f" k="43" />
+<hkern g1="J" g2="g" k="59" />
+<hkern g1="J" g2="i" k="43" />
+<hkern g1="J" g2="j" k="33" />
+<hkern g1="J" g2="m" k="55" />
+<hkern g1="J" g2="n" k="55" />
+<hkern g1="J" g2="o" k="57" />
+<hkern g1="J" g2="p" k="53" />
+<hkern g1="J" g2="q" k="57" />
+<hkern g1="J" g2="r" k="55" />
+<hkern g1="J" g2="s" k="55" />
+<hkern g1="J" g2="t" k="43" />
+<hkern g1="J" g2="u" k="43" />
+<hkern g1="J" g2="v" k="39" />
+<hkern g1="J" g2="w" k="41" />
+<hkern g1="J" g2="x" k="45" />
+<hkern g1="J" g2="y" k="39" />
+<hkern g1="J" g2="z" k="59" />
+<hkern g1="J" g2="braceright" k="-27" />
+<hkern g1="J" g2="guillemotleft" k="20" />
+<hkern g1="J" g2="uni00AD" k="35" />
+<hkern g1="J" g2="guillemotright" k="23" />
+<hkern g1="J" g2="Agrave" k="66" />
+<hkern g1="J" g2="Aacute" k="66" />
+<hkern g1="J" g2="Acircumflex" k="66" />
+<hkern g1="J" g2="Atilde" k="66" />
+<hkern g1="J" g2="Adieresis" k="66" />
+<hkern g1="J" g2="Aring" k="66" />
+<hkern g1="J" g2="AE" k="68" />
+<hkern g1="J" g2="Ccedilla" k="16" />
+<hkern g1="J" g2="Ograve" k="16" />
+<hkern g1="J" g2="Oacute" k="16" />
+<hkern g1="J" g2="Ocircumflex" k="16" />
+<hkern g1="J" g2="Otilde" k="16" />
+<hkern g1="J" g2="Odieresis" k="16" />
+<hkern g1="J" g2="Oslash" k="16" />
+<hkern g1="J" g2="germandbls" k="43" />
+<hkern g1="J" g2="agrave" k="61" />
+<hkern g1="J" g2="aacute" k="61" />
+<hkern g1="J" g2="acircumflex" k="61" />
+<hkern g1="J" g2="atilde" k="61" />
+<hkern g1="J" g2="adieresis" k="61" />
+<hkern g1="J" g2="aring" k="61" />
+<hkern g1="J" g2="ae" k="61" />
+<hkern g1="J" g2="ccedilla" k="57" />
+<hkern g1="J" g2="egrave" k="57" />
+<hkern g1="J" g2="eacute" k="57" />
+<hkern g1="J" g2="ecircumflex" k="57" />
+<hkern g1="J" g2="edieresis" k="57" />
+<hkern g1="J" g2="igrave" k="12" />
+<hkern g1="J" g2="iacute" k="43" />
+<hkern g1="J" g2="icircumflex" k="27" />
+<hkern g1="J" g2="idieresis" k="12" />
+<hkern g1="J" g2="eth" k="41" />
+<hkern g1="J" g2="ntilde" k="55" />
+<hkern g1="J" g2="ograve" k="57" />
+<hkern g1="J" g2="oacute" k="57" />
+<hkern g1="J" g2="ocircumflex" k="57" />
+<hkern g1="J" g2="otilde" k="57" />
+<hkern g1="J" g2="odieresis" k="57" />
+<hkern g1="J" g2="oslash" k="57" />
+<hkern g1="J" g2="ugrave" k="43" />
+<hkern g1="J" g2="uacute" k="43" />
+<hkern g1="J" g2="ucircumflex" k="43" />
+<hkern g1="J" g2="udieresis" k="43" />
+<hkern g1="J" g2="yacute" k="39" />
+<hkern g1="J" g2="thorn" k="-39" />
+<hkern g1="J" g2="ydieresis" k="39" />
+<hkern g1="J" g2="dotlessi" k="43" />
+<hkern g1="J" g2="OE" k="16" />
+<hkern g1="J" g2="oe" k="57" />
+<hkern g1="J" g2="endash" k="35" />
+<hkern g1="J" g2="emdash" k="35" />
+<hkern g1="J" g2="quotesinglbase" k="55" />
+<hkern g1="J" g2="quotedblbase" k="55" />
+<hkern g1="J" g2="guilsinglleft" k="20" />
+<hkern g1="J" g2="guilsinglright" k="23" />
+<hkern g1="K" g2="asterisk" k="39" />
+<hkern g1="K" g2="hyphen" k="117" />
+<hkern g1="K" g2="two" k="-27" />
+<hkern g1="K" g2="C" k="84" />
+<hkern g1="K" g2="G" k="84" />
+<hkern g1="K" g2="J" k="-33" />
+<hkern g1="K" g2="O" k="84" />
+<hkern g1="K" g2="Q" k="84" />
+<hkern g1="K" g2="c" k="55" />
+<hkern g1="K" g2="d" k="43" />
+<hkern g1="K" g2="e" k="55" />
+<hkern g1="K" g2="g" k="16" />
+<hkern g1="K" g2="j" k="31" />
+<hkern g1="K" g2="o" k="55" />
+<hkern g1="K" g2="p" k="29" />
+<hkern g1="K" g2="q" k="43" />
+<hkern g1="K" g2="t" k="53" />
+<hkern g1="K" g2="u" k="55" />
+<hkern g1="K" g2="v" k="135" />
+<hkern g1="K" g2="w" k="123" />
+<hkern g1="K" g2="y" k="143" />
+<hkern g1="K" g2="guillemotleft" k="55" />
+<hkern g1="K" g2="uni00AD" k="117" />
+<hkern g1="K" g2="guillemotright" k="-23" />
+<hkern g1="K" g2="Ccedilla" k="84" />
+<hkern g1="K" g2="Ograve" k="84" />
+<hkern g1="K" g2="Oacute" k="84" />
+<hkern g1="K" g2="Ocircumflex" k="84" />
+<hkern g1="K" g2="Otilde" k="84" />
+<hkern g1="K" g2="Odieresis" k="84" />
+<hkern g1="K" g2="Oslash" k="84" />
+<hkern g1="K" g2="ccedilla" k="55" />
+<hkern g1="K" g2="egrave" k="55" />
+<hkern g1="K" g2="eacute" k="55" />
+<hkern g1="K" g2="ecircumflex" k="55" />
+<hkern g1="K" g2="edieresis" k="55" />
+<hkern g1="K" g2="eth" k="45" />
+<hkern g1="K" g2="ograve" k="55" />
+<hkern g1="K" g2="oacute" k="55" />
+<hkern g1="K" g2="ocircumflex" k="55" />
+<hkern g1="K" g2="otilde" k="55" />
+<hkern g1="K" g2="odieresis" k="55" />
+<hkern g1="K" g2="oslash" k="55" />
+<hkern g1="K" g2="ugrave" k="55" />
+<hkern g1="K" g2="uacute" k="55" />
+<hkern g1="K" g2="ucircumflex" k="55" />
+<hkern g1="K" g2="udieresis" k="55" />
+<hkern g1="K" g2="yacute" k="143" />
+<hkern g1="K" g2="ydieresis" k="143" />
+<hkern g1="K" g2="OE" k="84" />
+<hkern g1="K" g2="oe" k="55" />
+<hkern g1="K" g2="endash" k="117" />
+<hkern g1="K" g2="emdash" k="117" />
+<hkern g1="K" g2="guilsinglleft" k="55" />
+<hkern g1="K" g2="guilsinglright" k="-23" />
+<hkern g1="L" g2="quotedbl" k="170" />
+<hkern g1="L" g2="ampersand" k="-16" />
+<hkern g1="L" g2="quotesingle" k="170" />
+<hkern g1="L" g2="parenright" k="37" />
+<hkern g1="L" g2="asterisk" k="100" />
+<hkern g1="L" g2="slash" k="39" />
+<hkern g1="L" g2="four" k="-49" />
+<hkern g1="L" g2="seven" k="55" />
+<hkern g1="L" g2="question" k="41" />
+<hkern g1="L" g2="J" k="-29" />
+<hkern g1="L" g2="T" k="125" />
+<hkern g1="L" g2="U" k="27" />
+<hkern g1="L" g2="V" k="158" />
+<hkern g1="L" g2="W" k="129" />
+<hkern g1="L" g2="Y" k="158" />
+<hkern g1="L" g2="backslash" k="129" />
+<hkern g1="L" g2="bracketright" k="94" />
+<hkern g1="L" g2="j" k="18" />
+<hkern g1="L" g2="p" k="16" />
+<hkern g1="L" g2="t" k="18" />
+<hkern g1="L" g2="u" k="18" />
+<hkern g1="L" g2="v" k="88" />
+<hkern g1="L" g2="w" k="68" />
+<hkern g1="L" g2="y" k="90" />
+<hkern g1="L" g2="braceright" k="43" />
+<hkern g1="L" g2="middot" k="231" />
+<hkern g1="L" g2="AE" k="-27" />
+<hkern g1="L" g2="Ugrave" k="27" />
+<hkern g1="L" g2="Uacute" k="27" />
+<hkern g1="L" g2="Ucircumflex" k="27" />
+<hkern g1="L" g2="Udieresis" k="27" />
+<hkern g1="L" g2="Yacute" k="158" />
+<hkern g1="L" g2="ugrave" k="18" />
+<hkern g1="L" g2="uacute" k="18" />
+<hkern g1="L" g2="ucircumflex" k="18" />
+<hkern g1="L" g2="udieresis" k="18" />
+<hkern g1="L" g2="yacute" k="90" />
+<hkern g1="L" g2="ydieresis" k="90" />
+<hkern g1="L" g2="quoteleft" k="176" />
+<hkern g1="L" g2="quoteright" k="170" />
+<hkern g1="L" g2="quotedblleft" k="176" />
+<hkern g1="L" g2="quotedblright" k="170" />
+<hkern g1="M" g2="asterisk" k="23" />
+<hkern g1="M" g2="hyphen" k="45" />
+<hkern g1="M" g2="slash" k="55" />
+<hkern g1="M" g2="C" k="25" />
+<hkern g1="M" g2="G" k="25" />
+<hkern g1="M" g2="O" k="25" />
+<hkern g1="M" g2="Q" k="25" />
+<hkern g1="M" g2="V" k="12" />
+<hkern g1="M" g2="W" k="12" />
+<hkern g1="M" g2="a" k="16" />
+<hkern g1="M" g2="c" k="47" />
+<hkern g1="M" g2="d" k="41" />
+<hkern g1="M" g2="e" k="47" />
+<hkern g1="M" g2="f" k="20" />
+<hkern g1="M" g2="g" k="27" />
+<hkern g1="M" g2="i" k="18" />
+<hkern g1="M" g2="j" k="43" />
+<hkern g1="M" g2="m" k="18" />
+<hkern g1="M" g2="n" k="18" />
+<hkern g1="M" g2="o" k="47" />
+<hkern g1="M" g2="p" k="47" />
+<hkern g1="M" g2="q" k="41" />
+<hkern g1="M" g2="r" k="18" />
+<hkern g1="M" g2="s" k="18" />
+<hkern g1="M" g2="t" k="49" />
+<hkern g1="M" g2="u" k="47" />
+<hkern g1="M" g2="v" k="70" />
+<hkern g1="M" g2="w" k="66" />
+<hkern g1="M" g2="x" k="16" />
+<hkern g1="M" g2="y" k="70" />
+<hkern g1="M" g2="z" k="14" />
+<hkern g1="M" g2="guillemotleft" k="31" />
+<hkern g1="M" g2="uni00AD" k="45" />
+<hkern g1="M" g2="Ccedilla" k="25" />
+<hkern g1="M" g2="Ograve" k="25" />
+<hkern g1="M" g2="Oacute" k="25" />
+<hkern g1="M" g2="Ocircumflex" k="25" />
+<hkern g1="M" g2="Otilde" k="25" />
+<hkern g1="M" g2="Odieresis" k="25" />
+<hkern g1="M" g2="Oslash" k="25" />
+<hkern g1="M" g2="germandbls" k="20" />
+<hkern g1="M" g2="agrave" k="16" />
+<hkern g1="M" g2="aacute" k="16" />
+<hkern g1="M" g2="acircumflex" k="16" />
+<hkern g1="M" g2="atilde" k="16" />
+<hkern g1="M" g2="adieresis" k="16" />
+<hkern g1="M" g2="aring" k="16" />
+<hkern g1="M" g2="ae" k="16" />
+<hkern g1="M" g2="ccedilla" k="47" />
+<hkern g1="M" g2="egrave" k="47" />
+<hkern g1="M" g2="eacute" k="47" />
+<hkern g1="M" g2="ecircumflex" k="47" />
+<hkern g1="M" g2="edieresis" k="47" />
+<hkern g1="M" g2="igrave" k="18" />
+<hkern g1="M" g2="iacute" k="18" />
+<hkern g1="M" g2="icircumflex" k="18" />
+<hkern g1="M" g2="idieresis" k="18" />
+<hkern g1="M" g2="eth" k="41" />
+<hkern g1="M" g2="ntilde" k="18" />
+<hkern g1="M" g2="ograve" k="47" />
+<hkern g1="M" g2="oacute" k="47" />
+<hkern g1="M" g2="ocircumflex" k="47" />
+<hkern g1="M" g2="otilde" k="47" />
+<hkern g1="M" g2="odieresis" k="47" />
+<hkern g1="M" g2="oslash" k="47" />
+<hkern g1="M" g2="ugrave" k="47" />
+<hkern g1="M" g2="uacute" k="47" />
+<hkern g1="M" g2="ucircumflex" k="47" />
+<hkern g1="M" g2="udieresis" k="47" />
+<hkern g1="M" g2="yacute" k="70" />
+<hkern g1="M" g2="ydieresis" k="70" />
+<hkern g1="M" g2="dotlessi" k="18" />
+<hkern g1="M" g2="OE" k="25" />
+<hkern g1="M" g2="oe" k="47" />
+<hkern g1="M" g2="endash" k="45" />
+<hkern g1="M" g2="emdash" k="45" />
+<hkern g1="M" g2="guilsinglleft" k="31" />
+<hkern g1="N" g2="comma" k="37" />
+<hkern g1="N" g2="hyphen" k="37" />
+<hkern g1="N" g2="period" k="37" />
+<hkern g1="N" g2="slash" k="102" />
+<hkern g1="N" g2="colon" k="18" />
+<hkern g1="N" g2="semicolon" k="27" />
+<hkern g1="N" g2="at" k="20" />
+<hkern g1="N" g2="A" k="33" />
+<hkern g1="N" g2="C" k="20" />
+<hkern g1="N" g2="G" k="20" />
+<hkern g1="N" g2="J" k="12" />
+<hkern g1="N" g2="O" k="20" />
+<hkern g1="N" g2="Q" k="20" />
+<hkern g1="N" g2="bracketright" k="-23" />
+<hkern g1="N" g2="a" k="55" />
+<hkern g1="N" g2="b" k="-23" />
+<hkern g1="N" g2="c" k="53" />
+<hkern g1="N" g2="d" k="49" />
+<hkern g1="N" g2="e" k="53" />
+<hkern g1="N" g2="f" k="43" />
+<hkern g1="N" g2="g" k="53" />
+<hkern g1="N" g2="i" k="43" />
+<hkern g1="N" g2="j" k="39" />
+<hkern g1="N" g2="m" k="47" />
+<hkern g1="N" g2="n" k="47" />
+<hkern g1="N" g2="o" k="53" />
+<hkern g1="N" g2="p" k="47" />
+<hkern g1="N" g2="q" k="49" />
+<hkern g1="N" g2="r" k="47" />
+<hkern g1="N" g2="s" k="49" />
+<hkern g1="N" g2="t" k="49" />
+<hkern g1="N" g2="u" k="47" />
+<hkern g1="N" g2="v" k="47" />
+<hkern g1="N" g2="w" k="47" />
+<hkern g1="N" g2="x" k="43" />
+<hkern g1="N" g2="y" k="47" />
+<hkern g1="N" g2="z" k="51" />
+<hkern g1="N" g2="braceright" k="-10" />
+<hkern g1="N" g2="guillemotleft" k="25" />
+<hkern g1="N" g2="uni00AD" k="37" />
+<hkern g1="N" g2="Agrave" k="33" />
+<hkern g1="N" g2="Aacute" k="33" />
+<hkern g1="N" g2="Acircumflex" k="33" />
+<hkern g1="N" g2="Atilde" k="33" />
+<hkern g1="N" g2="Adieresis" k="33" />
+<hkern g1="N" g2="Aring" k="33" />
+<hkern g1="N" g2="AE" k="29" />
+<hkern g1="N" g2="Ccedilla" k="20" />
+<hkern g1="N" g2="Ograve" k="20" />
+<hkern g1="N" g2="Oacute" k="20" />
+<hkern g1="N" g2="Ocircumflex" k="20" />
+<hkern g1="N" g2="Otilde" k="20" />
+<hkern g1="N" g2="Odieresis" k="20" />
+<hkern g1="N" g2="Oslash" k="20" />
+<hkern g1="N" g2="germandbls" k="43" />
+<hkern g1="N" g2="agrave" k="55" />
+<hkern g1="N" g2="aacute" k="55" />
+<hkern g1="N" g2="acircumflex" k="55" />
+<hkern g1="N" g2="atilde" k="55" />
+<hkern g1="N" g2="adieresis" k="55" />
+<hkern g1="N" g2="aring" k="55" />
+<hkern g1="N" g2="ae" k="55" />
+<hkern g1="N" g2="ccedilla" k="53" />
+<hkern g1="N" g2="egrave" k="53" />
+<hkern g1="N" g2="eacute" k="53" />
+<hkern g1="N" g2="ecircumflex" k="53" />
+<hkern g1="N" g2="edieresis" k="53" />
+<hkern g1="N" g2="igrave" k="29" />
+<hkern g1="N" g2="iacute" k="43" />
+<hkern g1="N" g2="icircumflex" k="43" />
+<hkern g1="N" g2="idieresis" k="29" />
+<hkern g1="N" g2="eth" k="45" />
+<hkern g1="N" g2="ntilde" k="47" />
+<hkern g1="N" g2="ograve" k="53" />
+<hkern g1="N" g2="oacute" k="53" />
+<hkern g1="N" g2="ocircumflex" k="53" />
+<hkern g1="N" g2="otilde" k="53" />
+<hkern g1="N" g2="odieresis" k="53" />
+<hkern g1="N" g2="oslash" k="53" />
+<hkern g1="N" g2="ugrave" k="47" />
+<hkern g1="N" g2="uacute" k="47" />
+<hkern g1="N" g2="ucircumflex" k="47" />
+<hkern g1="N" g2="udieresis" k="47" />
+<hkern g1="N" g2="yacute" k="47" />
+<hkern g1="N" g2="thorn" k="-23" />
+<hkern g1="N" g2="ydieresis" k="47" />
+<hkern g1="N" g2="dotlessi" k="43" />
+<hkern g1="N" g2="OE" k="20" />
+<hkern g1="N" g2="oe" k="53" />
+<hkern g1="N" g2="endash" k="37" />
+<hkern g1="N" g2="emdash" k="37" />
+<hkern g1="N" g2="quotesinglbase" k="37" />
+<hkern g1="N" g2="quotedblbase" k="37" />
+<hkern g1="N" g2="guilsinglleft" k="25" />
+<hkern g1="O" g2="parenright" k="47" />
+<hkern g1="O" g2="comma" k="49" />
+<hkern g1="O" g2="period" k="49" />
+<hkern g1="O" g2="slash" k="141" />
+<hkern g1="O" g2="A" k="49" />
+<hkern g1="O" g2="B" k="25" />
+<hkern g1="O" g2="D" k="25" />
+<hkern g1="O" g2="E" k="25" />
+<hkern g1="O" g2="F" k="25" />
+<hkern g1="O" g2="H" k="25" />
+<hkern g1="O" g2="I" k="25" />
+<hkern g1="O" g2="J" k="18" />
+<hkern g1="O" g2="K" k="25" />
+<hkern g1="O" g2="L" k="25" />
+<hkern g1="O" g2="M" k="25" />
+<hkern g1="O" g2="N" k="25" />
+<hkern g1="O" g2="P" k="25" />
+<hkern g1="O" g2="R" k="25" />
+<hkern g1="O" g2="U" k="12" />
+<hkern g1="O" g2="V" k="45" />
+<hkern g1="O" g2="W" k="45" />
+<hkern g1="O" g2="X" k="66" />
+<hkern g1="O" g2="Y" k="47" />
+<hkern g1="O" g2="backslash" k="33" />
+<hkern g1="O" g2="bracketright" k="94" />
+<hkern g1="O" g2="a" k="12" />
+<hkern g1="O" g2="b" k="10" />
+<hkern g1="O" g2="g" k="12" />
+<hkern g1="O" g2="h" k="27" />
+<hkern g1="O" g2="k" k="27" />
+<hkern g1="O" g2="l" k="27" />
+<hkern g1="O" g2="x" k="12" />
+<hkern g1="O" g2="braceright" k="53" />
+<hkern g1="O" g2="Agrave" k="49" />
+<hkern g1="O" g2="Aacute" k="49" />
+<hkern g1="O" g2="Acircumflex" k="49" />
+<hkern g1="O" g2="Atilde" k="49" />
+<hkern g1="O" g2="Adieresis" k="49" />
+<hkern g1="O" g2="Aring" k="49" />
+<hkern g1="O" g2="AE" k="63" />
+<hkern g1="O" g2="Egrave" k="25" />
+<hkern g1="O" g2="Eacute" k="25" />
+<hkern g1="O" g2="Ecircumflex" k="25" />
+<hkern g1="O" g2="Edieresis" k="25" />
+<hkern g1="O" g2="Igrave" k="25" />
+<hkern g1="O" g2="Iacute" k="25" />
+<hkern g1="O" g2="Icircumflex" k="25" />
+<hkern g1="O" g2="Idieresis" k="25" />
+<hkern g1="O" g2="Eth" k="25" />
+<hkern g1="O" g2="Ntilde" k="25" />
+<hkern g1="O" g2="Ugrave" k="12" />
+<hkern g1="O" g2="Uacute" k="12" />
+<hkern g1="O" g2="Ucircumflex" k="12" />
+<hkern g1="O" g2="Udieresis" k="12" />
+<hkern g1="O" g2="Yacute" k="47" />
+<hkern g1="O" g2="Thorn" k="25" />
+<hkern g1="O" g2="agrave" k="12" />
+<hkern g1="O" g2="aacute" k="12" />
+<hkern g1="O" g2="acircumflex" k="12" />
+<hkern g1="O" g2="atilde" k="12" />
+<hkern g1="O" g2="adieresis" k="12" />
+<hkern g1="O" g2="aring" k="12" />
+<hkern g1="O" g2="ae" k="12" />
+<hkern g1="O" g2="thorn" k="10" />
+<hkern g1="O" g2="quotesinglbase" k="49" />
+<hkern g1="O" g2="quotedblbase" k="49" />
+<hkern g1="P" g2="parenright" k="20" />
+<hkern g1="P" g2="asterisk" k="-45" />
+<hkern g1="P" g2="comma" k="186" />
+<hkern g1="P" g2="hyphen" k="16" />
+<hkern g1="P" g2="period" k="186" />
+<hkern g1="P" g2="slash" k="190" />
+<hkern g1="P" g2="one" k="-43" />
+<hkern g1="P" g2="seven" k="-35" />
+<hkern g1="P" g2="A" k="113" />
+<hkern g1="P" g2="B" k="12" />
+<hkern g1="P" g2="D" k="12" />
+<hkern g1="P" g2="E" k="12" />
+<hkern g1="P" g2="F" k="12" />
+<hkern g1="P" g2="H" k="12" />
+<hkern g1="P" g2="I" k="12" />
+<hkern g1="P" g2="J" k="88" />
+<hkern g1="P" g2="K" k="12" />
+<hkern g1="P" g2="L" k="12" />
+<hkern g1="P" g2="M" k="12" />
+<hkern g1="P" g2="N" k="12" />
+<hkern g1="P" g2="P" k="12" />
+<hkern g1="P" g2="R" k="12" />
+<hkern g1="P" g2="W" k="10" />
+<hkern g1="P" g2="X" k="33" />
+<hkern g1="P" g2="bracketright" k="49" />
+<hkern g1="P" g2="a" k="20" />
+<hkern g1="P" g2="c" k="35" />
+<hkern g1="P" g2="d" k="33" />
+<hkern g1="P" g2="e" k="35" />
+<hkern g1="P" g2="g" k="33" />
+<hkern g1="P" g2="h" k="12" />
+<hkern g1="P" g2="k" k="12" />
+<hkern g1="P" g2="l" k="12" />
+<hkern g1="P" g2="o" k="35" />
+<hkern g1="P" g2="q" k="33" />
+<hkern g1="P" g2="s" k="12" />
+<hkern g1="P" g2="braceright" k="31" />
+<hkern g1="P" g2="guillemotleft" k="20" />
+<hkern g1="P" g2="uni00AD" k="16" />
+<hkern g1="P" g2="Agrave" k="113" />
+<hkern g1="P" g2="Aacute" k="113" />
+<hkern g1="P" g2="Acircumflex" k="113" />
+<hkern g1="P" g2="Atilde" k="113" />
+<hkern g1="P" g2="Adieresis" k="113" />
+<hkern g1="P" g2="Aring" k="113" />
+<hkern g1="P" g2="AE" k="217" />
+<hkern g1="P" g2="Egrave" k="12" />
+<hkern g1="P" g2="Eacute" k="12" />
+<hkern g1="P" g2="Ecircumflex" k="12" />
+<hkern g1="P" g2="Edieresis" k="12" />
+<hkern g1="P" g2="Igrave" k="12" />
+<hkern g1="P" g2="Iacute" k="12" />
+<hkern g1="P" g2="Icircumflex" k="12" />
+<hkern g1="P" g2="Idieresis" k="12" />
+<hkern g1="P" g2="Eth" k="12" />
+<hkern g1="P" g2="Ntilde" k="12" />
+<hkern g1="P" g2="Thorn" k="12" />
+<hkern g1="P" g2="agrave" k="20" />
+<hkern g1="P" g2="aacute" k="20" />
+<hkern g1="P" g2="acircumflex" k="20" />
+<hkern g1="P" g2="atilde" k="20" />
+<hkern g1="P" g2="adieresis" k="20" />
+<hkern g1="P" g2="aring" k="20" />
+<hkern g1="P" g2="ae" k="20" />
+<hkern g1="P" g2="ccedilla" k="35" />
+<hkern g1="P" g2="egrave" k="35" />
+<hkern g1="P" g2="eacute" k="35" />
+<hkern g1="P" g2="ecircumflex" k="35" />
+<hkern g1="P" g2="edieresis" k="35" />
+<hkern g1="P" g2="eth" k="41" />
+<hkern g1="P" g2="ograve" k="35" />
+<hkern g1="P" g2="oacute" k="35" />
+<hkern g1="P" g2="ocircumflex" k="35" />
+<hkern g1="P" g2="otilde" k="35" />
+<hkern g1="P" g2="odieresis" k="35" />
+<hkern g1="P" g2="oslash" k="35" />
+<hkern g1="P" g2="oe" k="35" />
+<hkern g1="P" g2="endash" k="16" />
+<hkern g1="P" g2="emdash" k="16" />
+<hkern g1="P" g2="quoteleft" k="-41" />
+<hkern g1="P" g2="quotesinglbase" k="186" />
+<hkern g1="P" g2="quotedblleft" k="-41" />
+<hkern g1="P" g2="quotedblbase" k="186" />
+<hkern g1="P" g2="guilsinglleft" k="20" />
+<hkern g1="Q" g2="parenright" k="-96" />
+<hkern g1="Q" g2="comma" k="27" />
+<hkern g1="Q" g2="period" k="49" />
+<hkern g1="Q" g2="slash" k="-100" />
+<hkern g1="Q" g2="A" k="49" />
+<hkern g1="Q" g2="B" k="25" />
+<hkern g1="Q" g2="D" k="25" />
+<hkern g1="Q" g2="E" k="25" />
+<hkern g1="Q" g2="F" k="25" />
+<hkern g1="Q" g2="H" k="25" />
+<hkern g1="Q" g2="I" k="25" />
+<hkern g1="Q" g2="J" k="18" />
+<hkern g1="Q" g2="K" k="25" />
+<hkern g1="Q" g2="L" k="25" />
+<hkern g1="Q" g2="M" k="25" />
+<hkern g1="Q" g2="N" k="25" />
+<hkern g1="Q" g2="P" k="25" />
+<hkern g1="Q" g2="R" k="25" />
+<hkern g1="Q" g2="U" k="12" />
+<hkern g1="Q" g2="V" k="45" />
+<hkern g1="Q" g2="W" k="45" />
+<hkern g1="Q" g2="X" k="66" />
+<hkern g1="Q" g2="Y" k="47" />
+<hkern g1="Q" g2="backslash" k="33" />
+<hkern g1="Q" g2="bracketright" k="-141" />
+<hkern g1="Q" g2="a" k="12" />
+<hkern g1="Q" g2="b" k="10" />
+<hkern g1="Q" g2="g" k="-78" />
+<hkern g1="Q" g2="h" k="27" />
+<hkern g1="Q" g2="j" k="-317" />
+<hkern g1="Q" g2="k" k="27" />
+<hkern g1="Q" g2="l" k="27" />
+<hkern g1="Q" g2="x" k="12" />
+<hkern g1="Q" g2="bar" k="-18" />
+<hkern g1="Q" g2="braceright" k="-133" />
+<hkern g1="Q" g2="Agrave" k="49" />
+<hkern g1="Q" g2="Aacute" k="49" />
+<hkern g1="Q" g2="Acircumflex" k="49" />
+<hkern g1="Q" g2="Atilde" k="49" />
+<hkern g1="Q" g2="Adieresis" k="49" />
+<hkern g1="Q" g2="Aring" k="49" />
+<hkern g1="Q" g2="AE" k="63" />
+<hkern g1="Q" g2="Egrave" k="25" />
+<hkern g1="Q" g2="Eacute" k="25" />
+<hkern g1="Q" g2="Ecircumflex" k="25" />
+<hkern g1="Q" g2="Edieresis" k="25" />
+<hkern g1="Q" g2="Igrave" k="25" />
+<hkern g1="Q" g2="Iacute" k="25" />
+<hkern g1="Q" g2="Icircumflex" k="25" />
+<hkern g1="Q" g2="Idieresis" k="25" />
+<hkern g1="Q" g2="Eth" k="25" />
+<hkern g1="Q" g2="Ntilde" k="25" />
+<hkern g1="Q" g2="Ugrave" k="12" />
+<hkern g1="Q" g2="Uacute" k="12" />
+<hkern g1="Q" g2="Ucircumflex" k="12" />
+<hkern g1="Q" g2="Udieresis" k="12" />
+<hkern g1="Q" g2="Yacute" k="47" />
+<hkern g1="Q" g2="Thorn" k="25" />
+<hkern g1="Q" g2="agrave" k="12" />
+<hkern g1="Q" g2="aacute" k="12" />
+<hkern g1="Q" g2="acircumflex" k="12" />
+<hkern g1="Q" g2="atilde" k="12" />
+<hkern g1="Q" g2="adieresis" k="12" />
+<hkern g1="Q" g2="aring" k="12" />
+<hkern g1="Q" g2="ae" k="12" />
+<hkern g1="Q" g2="thorn" k="10" />
+<hkern g1="Q" g2="quotesinglbase" k="27" />
+<hkern g1="Q" g2="quotedblbase" k="27" />
+<hkern g1="R" g2="parenright" k="23" />
+<hkern g1="R" g2="hyphen" k="27" />
+<hkern g1="R" g2="slash" k="39" />
+<hkern g1="R" g2="C" k="10" />
+<hkern g1="R" g2="G" k="10" />
+<hkern g1="R" g2="J" k="-12" />
+<hkern g1="R" g2="O" k="10" />
+<hkern g1="R" g2="Q" k="10" />
+<hkern g1="R" g2="U" k="20" />
+<hkern g1="R" g2="V" k="41" />
+<hkern g1="R" g2="W" k="41" />
+<hkern g1="R" g2="X" k="20" />
+<hkern g1="R" g2="Y" k="35" />
+<hkern g1="R" g2="backslash" k="29" />
+<hkern g1="R" g2="bracketright" k="80" />
+<hkern g1="R" g2="c" k="29" />
+<hkern g1="R" g2="d" k="20" />
+<hkern g1="R" g2="e" k="29" />
+<hkern g1="R" g2="j" k="12" />
+<hkern g1="R" g2="o" k="29" />
+<hkern g1="R" g2="p" k="12" />
+<hkern g1="R" g2="q" k="20" />
+<hkern g1="R" g2="t" k="12" />
+<hkern g1="R" g2="u" k="12" />
+<hkern g1="R" g2="v" k="18" />
+<hkern g1="R" g2="w" k="18" />
+<hkern g1="R" g2="y" k="18" />
+<hkern g1="R" g2="braceright" k="35" />
+<hkern g1="R" g2="guillemotleft" k="45" />
+<hkern g1="R" g2="uni00AD" k="27" />
+<hkern g1="R" g2="Ccedilla" k="10" />
+<hkern g1="R" g2="Ograve" k="10" />
+<hkern g1="R" g2="Oacute" k="10" />
+<hkern g1="R" g2="Ocircumflex" k="10" />
+<hkern g1="R" g2="Otilde" k="10" />
+<hkern g1="R" g2="Odieresis" k="10" />
+<hkern g1="R" g2="Oslash" k="10" />
+<hkern g1="R" g2="Ugrave" k="20" />
+<hkern g1="R" g2="Uacute" k="20" />
+<hkern g1="R" g2="Ucircumflex" k="20" />
+<hkern g1="R" g2="Udieresis" k="20" />
+<hkern g1="R" g2="Yacute" k="35" />
+<hkern g1="R" g2="ccedilla" k="29" />
+<hkern g1="R" g2="egrave" k="29" />
+<hkern g1="R" g2="eacute" k="29" />
+<hkern g1="R" g2="ecircumflex" k="29" />
+<hkern g1="R" g2="edieresis" k="29" />
+<hkern g1="R" g2="eth" k="25" />
+<hkern g1="R" g2="ograve" k="29" />
+<hkern g1="R" g2="oacute" k="29" />
+<hkern g1="R" g2="ocircumflex" k="29" />
+<hkern g1="R" g2="otilde" k="29" />
+<hkern g1="R" g2="odieresis" k="29" />
+<hkern g1="R" g2="oslash" k="29" />
+<hkern g1="R" g2="ugrave" k="12" />
+<hkern g1="R" g2="uacute" k="12" />
+<hkern g1="R" g2="ucircumflex" k="12" />
+<hkern g1="R" g2="udieresis" k="12" />
+<hkern g1="R" g2="yacute" k="18" />
+<hkern g1="R" g2="ydieresis" k="18" />
+<hkern g1="R" g2="OE" k="10" />
+<hkern g1="R" g2="oe" k="29" />
+<hkern g1="R" g2="endash" k="27" />
+<hkern g1="R" g2="emdash" k="27" />
+<hkern g1="R" g2="guilsinglleft" k="45" />
+<hkern g1="S" g2="parenright" k="23" />
+<hkern g1="S" g2="slash" k="94" />
+<hkern g1="S" g2="four" k="-12" />
+<hkern g1="S" g2="A" k="14" />
+<hkern g1="S" g2="V" k="16" />
+<hkern g1="S" g2="W" k="16" />
+<hkern g1="S" g2="Y" k="16" />
+<hkern g1="S" g2="bracketright" k="20" />
+<hkern g1="S" g2="f" k="16" />
+<hkern g1="S" g2="g" k="18" />
+<hkern g1="S" g2="h" k="10" />
+<hkern g1="S" g2="i" k="18" />
+<hkern g1="S" g2="j" k="20" />
+<hkern g1="S" g2="k" k="10" />
+<hkern g1="S" g2="l" k="10" />
+<hkern g1="S" g2="m" k="18" />
+<hkern g1="S" g2="n" k="18" />
+<hkern g1="S" g2="p" k="20" />
+<hkern g1="S" g2="r" k="18" />
+<hkern g1="S" g2="s" k="10" />
+<hkern g1="S" g2="t" k="14" />
+<hkern g1="S" g2="u" k="16" />
+<hkern g1="S" g2="v" k="23" />
+<hkern g1="S" g2="w" k="23" />
+<hkern g1="S" g2="x" k="23" />
+<hkern g1="S" g2="y" k="23" />
+<hkern g1="S" g2="z" k="14" />
+<hkern g1="S" g2="Agrave" k="14" />
+<hkern g1="S" g2="Aacute" k="14" />
+<hkern g1="S" g2="Acircumflex" k="14" />
+<hkern g1="S" g2="Atilde" k="14" />
+<hkern g1="S" g2="Adieresis" k="14" />
+<hkern g1="S" g2="Aring" k="14" />
+<hkern g1="S" g2="AE" k="12" />
+<hkern g1="S" g2="Yacute" k="16" />
+<hkern g1="S" g2="germandbls" k="16" />
+<hkern g1="S" g2="igrave" k="18" />
+<hkern g1="S" g2="iacute" k="18" />
+<hkern g1="S" g2="icircumflex" k="18" />
+<hkern g1="S" g2="idieresis" k="18" />
+<hkern g1="S" g2="ntilde" k="18" />
+<hkern g1="S" g2="ugrave" k="16" />
+<hkern g1="S" g2="uacute" k="16" />
+<hkern g1="S" g2="ucircumflex" k="16" />
+<hkern g1="S" g2="udieresis" k="16" />
+<hkern g1="S" g2="yacute" k="23" />
+<hkern g1="S" g2="ydieresis" k="23" />
+<hkern g1="S" g2="dotlessi" k="18" />
+<hkern g1="T" g2="ampersand" k="20" />
+<hkern g1="T" g2="asterisk" k="-51" />
+<hkern g1="T" g2="comma" k="111" />
+<hkern g1="T" g2="hyphen" k="131" />
+<hkern g1="T" g2="period" k="111" />
+<hkern g1="T" g2="slash" k="164" />
+<hkern g1="T" g2="one" k="-53" />
+<hkern g1="T" g2="four" k="63" />
+<hkern g1="T" g2="seven" k="-41" />
+<hkern g1="T" g2="at" k="31" />
+<hkern g1="T" g2="A" k="109" />
+<hkern g1="T" g2="J" k="57" />
+<hkern g1="T" g2="backslash" k="-12" />
+<hkern g1="T" g2="bracketright" k="-49" />
+<hkern g1="T" g2="a" k="66" />
+<hkern g1="T" g2="b" k="-51" />
+<hkern g1="T" g2="c" k="104" />
+<hkern g1="T" g2="d" k="98" />
+<hkern g1="T" g2="e" k="104" />
+<hkern g1="T" g2="g" k="88" />
+<hkern g1="T" g2="o" k="104" />
+<hkern g1="T" g2="q" k="98" />
+<hkern g1="T" g2="s" k="53" />
+<hkern g1="T" g2="z" k="16" />
+<hkern g1="T" g2="braceright" k="-39" />
+<hkern g1="T" g2="guillemotleft" k="94" />
+<hkern g1="T" g2="uni00AD" k="131" />
+<hkern g1="T" g2="Agrave" k="109" />
+<hkern g1="T" g2="Aacute" k="109" />
+<hkern g1="T" g2="Acircumflex" k="109" />
+<hkern g1="T" g2="Atilde" k="109" />
+<hkern g1="T" g2="Adieresis" k="109" />
+<hkern g1="T" g2="Aring" k="109" />
+<hkern g1="T" g2="AE" k="104" />
+<hkern g1="T" g2="agrave" k="66" />
+<hkern g1="T" g2="aacute" k="66" />
+<hkern g1="T" g2="acircumflex" k="66" />
+<hkern g1="T" g2="atilde" k="66" />
+<hkern g1="T" g2="adieresis" k="66" />
+<hkern g1="T" g2="aring" k="66" />
+<hkern g1="T" g2="ae" k="66" />
+<hkern g1="T" g2="ccedilla" k="104" />
+<hkern g1="T" g2="egrave" k="104" />
+<hkern g1="T" g2="eacute" k="104" />
+<hkern g1="T" g2="ecircumflex" k="104" />
+<hkern g1="T" g2="edieresis" k="104" />
+<hkern g1="T" g2="icircumflex" k="-27" />
+<hkern g1="T" g2="eth" k="41" />
+<hkern g1="T" g2="ograve" k="104" />
+<hkern g1="T" g2="oacute" k="104" />
+<hkern g1="T" g2="ocircumflex" k="104" />
+<hkern g1="T" g2="otilde" k="104" />
+<hkern g1="T" g2="odieresis" k="104" />
+<hkern g1="T" g2="oslash" k="104" />
+<hkern g1="T" g2="thorn" k="-51" />
+<hkern g1="T" g2="oe" k="104" />
+<hkern g1="T" g2="endash" k="131" />
+<hkern g1="T" g2="emdash" k="131" />
+<hkern g1="T" g2="quoteleft" k="-76" />
+<hkern g1="T" g2="quoteright" k="-16" />
+<hkern g1="T" g2="quotesinglbase" k="111" />
+<hkern g1="T" g2="quotedblleft" k="-76" />
+<hkern g1="T" g2="quotedblright" k="-16" />
+<hkern g1="T" g2="quotedblbase" k="111" />
+<hkern g1="T" g2="guilsinglleft" k="94" />
+<hkern g1="U" g2="comma" k="66" />
+<hkern g1="U" g2="hyphen" k="31" />
+<hkern g1="U" g2="period" k="66" />
+<hkern g1="U" g2="slash" k="156" />
+<hkern g1="U" g2="seven" k="-18" />
+<hkern g1="U" g2="colon" k="25" />
+<hkern g1="U" g2="semicolon" k="33" />
+<hkern g1="U" g2="A" k="86" />
+<hkern g1="U" g2="C" k="12" />
+<hkern g1="U" g2="G" k="12" />
+<hkern g1="U" g2="J" k="29" />
+<hkern g1="U" g2="O" k="12" />
+<hkern g1="U" g2="Q" k="12" />
+<hkern g1="U" g2="bracketright" k="-45" />
+<hkern g1="U" g2="a" k="68" />
+<hkern g1="U" g2="b" k="-43" />
+<hkern g1="U" g2="c" k="57" />
+<hkern g1="U" g2="d" k="57" />
+<hkern g1="U" g2="e" k="57" />
+<hkern g1="U" g2="f" k="39" />
+<hkern g1="U" g2="g" k="63" />
+<hkern g1="U" g2="i" k="41" />
+<hkern g1="U" g2="j" k="31" />
+<hkern g1="U" g2="m" k="57" />
+<hkern g1="U" g2="n" k="57" />
+<hkern g1="U" g2="o" k="57" />
+<hkern g1="U" g2="p" k="49" />
+<hkern g1="U" g2="q" k="57" />
+<hkern g1="U" g2="r" k="57" />
+<hkern g1="U" g2="s" k="57" />
+<hkern g1="U" g2="t" k="39" />
+<hkern g1="U" g2="u" k="39" />
+<hkern g1="U" g2="v" k="35" />
+<hkern g1="U" g2="w" k="37" />
+<hkern g1="U" g2="x" k="43" />
+<hkern g1="U" g2="y" k="35" />
+<hkern g1="U" g2="z" k="59" />
+<hkern g1="U" g2="braceright" k="-35" />
+<hkern g1="U" g2="uni00AD" k="31" />
+<hkern g1="U" g2="guillemotright" k="23" />
+<hkern g1="U" g2="Agrave" k="86" />
+<hkern g1="U" g2="Aacute" k="86" />
+<hkern g1="U" g2="Acircumflex" k="86" />
+<hkern g1="U" g2="Atilde" k="86" />
+<hkern g1="U" g2="Adieresis" k="86" />
+<hkern g1="U" g2="Aring" k="86" />
+<hkern g1="U" g2="AE" k="88" />
+<hkern g1="U" g2="Ccedilla" k="12" />
+<hkern g1="U" g2="Ograve" k="12" />
+<hkern g1="U" g2="Oacute" k="12" />
+<hkern g1="U" g2="Ocircumflex" k="12" />
+<hkern g1="U" g2="Otilde" k="12" />
+<hkern g1="U" g2="Odieresis" k="12" />
+<hkern g1="U" g2="Oslash" k="12" />
+<hkern g1="U" g2="germandbls" k="39" />
+<hkern g1="U" g2="agrave" k="68" />
+<hkern g1="U" g2="aacute" k="68" />
+<hkern g1="U" g2="acircumflex" k="68" />
+<hkern g1="U" g2="atilde" k="68" />
+<hkern g1="U" g2="adieresis" k="68" />
+<hkern g1="U" g2="aring" k="68" />
+<hkern g1="U" g2="ae" k="68" />
+<hkern g1="U" g2="ccedilla" k="57" />
+<hkern g1="U" g2="egrave" k="57" />
+<hkern g1="U" g2="eacute" k="57" />
+<hkern g1="U" g2="ecircumflex" k="57" />
+<hkern g1="U" g2="edieresis" k="57" />
+<hkern g1="U" g2="iacute" k="41" />
+<hkern g1="U" g2="icircumflex" k="18" />
+<hkern g1="U" g2="eth" k="39" />
+<hkern g1="U" g2="ntilde" k="57" />
+<hkern g1="U" g2="ograve" k="57" />
+<hkern g1="U" g2="oacute" k="57" />
+<hkern g1="U" g2="ocircumflex" k="57" />
+<hkern g1="U" g2="otilde" k="57" />
+<hkern g1="U" g2="odieresis" k="57" />
+<hkern g1="U" g2="oslash" k="57" />
+<hkern g1="U" g2="ugrave" k="39" />
+<hkern g1="U" g2="uacute" k="39" />
+<hkern g1="U" g2="ucircumflex" k="39" />
+<hkern g1="U" g2="udieresis" k="39" />
+<hkern g1="U" g2="yacute" k="35" />
+<hkern g1="U" g2="thorn" k="-43" />
+<hkern g1="U" g2="ydieresis" k="35" />
+<hkern g1="U" g2="dotlessi" k="41" />
+<hkern g1="U" g2="OE" k="12" />
+<hkern g1="U" g2="oe" k="57" />
+<hkern g1="U" g2="endash" k="31" />
+<hkern g1="U" g2="emdash" k="31" />
+<hkern g1="U" g2="quotesinglbase" k="66" />
+<hkern g1="U" g2="quotedblbase" k="66" />
+<hkern g1="U" g2="guilsinglright" k="23" />
+<hkern g1="V" g2="quotedbl" k="-16" />
+<hkern g1="V" g2="ampersand" k="45" />
+<hkern g1="V" g2="quotesingle" k="-16" />
+<hkern g1="V" g2="parenright" k="-41" />
+<hkern g1="V" g2="asterisk" k="18" />
+<hkern g1="V" g2="comma" k="229" />
+<hkern g1="V" g2="hyphen" k="113" />
+<hkern g1="V" g2="period" k="229" />
+<hkern g1="V" g2="slash" k="227" />
+<hkern g1="V" g2="zero" k="39" />
+<hkern g1="V" g2="four" k="90" />
+<hkern g1="V" g2="six" k="41" />
+<hkern g1="V" g2="seven" k="-68" />
+<hkern g1="V" g2="eight" k="27" />
+<hkern g1="V" g2="nine" k="20" />
+<hkern g1="V" g2="colon" k="72" />
+<hkern g1="V" g2="semicolon" k="80" />
+<hkern g1="V" g2="at" k="88" />
+<hkern g1="V" g2="A" k="158" />
+<hkern g1="V" g2="C" k="53" />
+<hkern g1="V" g2="G" k="53" />
+<hkern g1="V" g2="J" k="72" />
+<hkern g1="V" g2="O" k="53" />
+<hkern g1="V" g2="Q" k="53" />
+<hkern g1="V" g2="S" k="18" />
+<hkern g1="V" g2="T" k="-14" />
+<hkern g1="V" g2="Y" k="-49" />
+<hkern g1="V" g2="backslash" k="-57" />
+<hkern g1="V" g2="bracketright" k="-96" />
+<hkern g1="V" g2="a" k="166" />
+<hkern g1="V" g2="b" k="-94" />
+<hkern g1="V" g2="c" k="162" />
+<hkern g1="V" g2="d" k="156" />
+<hkern g1="V" g2="e" k="162" />
+<hkern g1="V" g2="f" k="55" />
+<hkern g1="V" g2="g" k="160" />
+<hkern g1="V" g2="h" k="-49" />
+<hkern g1="V" g2="i" k="53" />
+<hkern g1="V" g2="j" k="39" />
+<hkern g1="V" g2="k" k="-49" />
+<hkern g1="V" g2="l" k="-49" />
+<hkern g1="V" g2="m" k="113" />
+<hkern g1="V" g2="n" k="113" />
+<hkern g1="V" g2="o" k="162" />
+<hkern g1="V" g2="p" k="100" />
+<hkern g1="V" g2="q" k="156" />
+<hkern g1="V" g2="r" k="113" />
+<hkern g1="V" g2="s" k="156" />
+<hkern g1="V" g2="t" k="76" />
+<hkern g1="V" g2="u" k="96" />
+<hkern g1="V" g2="v" k="80" />
+<hkern g1="V" g2="w" k="84" />
+<hkern g1="V" g2="x" k="94" />
+<hkern g1="V" g2="y" k="82" />
+<hkern g1="V" g2="z" k="131" />
+<hkern g1="V" g2="braceright" k="-84" />
+<hkern g1="V" g2="guillemotleft" k="109" />
+<hkern g1="V" g2="uni00AD" k="113" />
+<hkern g1="V" g2="registered" k="45" />
+<hkern g1="V" g2="guillemotright" k="61" />
+<hkern g1="V" g2="Agrave" k="158" />
+<hkern g1="V" g2="Aacute" k="158" />
+<hkern g1="V" g2="Acircumflex" k="158" />
+<hkern g1="V" g2="Atilde" k="158" />
+<hkern g1="V" g2="Adieresis" k="158" />
+<hkern g1="V" g2="Aring" k="158" />
+<hkern g1="V" g2="AE" k="223" />
+<hkern g1="V" g2="Ccedilla" k="53" />
+<hkern g1="V" g2="Ograve" k="53" />
+<hkern g1="V" g2="Oacute" k="53" />
+<hkern g1="V" g2="Ocircumflex" k="53" />
+<hkern g1="V" g2="Otilde" k="53" />
+<hkern g1="V" g2="Odieresis" k="53" />
+<hkern g1="V" g2="Oslash" k="53" />
+<hkern g1="V" g2="Yacute" k="-49" />
+<hkern g1="V" g2="germandbls" k="55" />
+<hkern g1="V" g2="agrave" k="166" />
+<hkern g1="V" g2="aacute" k="166" />
+<hkern g1="V" g2="acircumflex" k="117" />
+<hkern g1="V" g2="atilde" k="59" />
+<hkern g1="V" g2="adieresis" k="106" />
+<hkern g1="V" g2="aring" k="166" />
+<hkern g1="V" g2="ae" k="166" />
+<hkern g1="V" g2="ccedilla" k="162" />
+<hkern g1="V" g2="egrave" k="162" />
+<hkern g1="V" g2="eacute" k="162" />
+<hkern g1="V" g2="ecircumflex" k="162" />
+<hkern g1="V" g2="edieresis" k="162" />
+<hkern g1="V" g2="igrave" k="-45" />
+<hkern g1="V" g2="iacute" k="53" />
+<hkern g1="V" g2="icircumflex" k="-31" />
+<hkern g1="V" g2="idieresis" k="-43" />
+<hkern g1="V" g2="eth" k="41" />
+<hkern g1="V" g2="ntilde" k="113" />
+<hkern g1="V" g2="ograve" k="162" />
+<hkern g1="V" g2="oacute" k="162" />
+<hkern g1="V" g2="ocircumflex" k="162" />
+<hkern g1="V" g2="otilde" k="121" />
+<hkern g1="V" g2="odieresis" k="162" />
+<hkern g1="V" g2="oslash" k="162" />
+<hkern g1="V" g2="ugrave" k="96" />
+<hkern g1="V" g2="uacute" k="96" />
+<hkern g1="V" g2="ucircumflex" k="96" />
+<hkern g1="V" g2="udieresis" k="96" />
+<hkern g1="V" g2="yacute" k="82" />
+<hkern g1="V" g2="thorn" k="-94" />
+<hkern g1="V" g2="ydieresis" k="82" />
+<hkern g1="V" g2="dotlessi" k="53" />
+<hkern g1="V" g2="OE" k="53" />
+<hkern g1="V" g2="oe" k="162" />
+<hkern g1="V" g2="endash" k="113" />
+<hkern g1="V" g2="emdash" k="113" />
+<hkern g1="V" g2="quoteleft" k="-76" />
+<hkern g1="V" g2="quoteright" k="-55" />
+<hkern g1="V" g2="quotesinglbase" k="229" />
+<hkern g1="V" g2="quotedblleft" k="-76" />
+<hkern g1="V" g2="quotedblright" k="-55" />
+<hkern g1="V" g2="quotedblbase" k="229" />
+<hkern g1="V" g2="guilsinglleft" k="109" />
+<hkern g1="V" g2="guilsinglright" k="61" />
+<hkern g1="W" g2="quotedbl" k="-18" />
+<hkern g1="W" g2="ampersand" k="43" />
+<hkern g1="W" g2="quotesingle" k="-18" />
+<hkern g1="W" g2="parenright" k="-43" />
+<hkern g1="W" g2="asterisk" k="23" />
+<hkern g1="W" g2="comma" k="160" />
+<hkern g1="W" g2="hyphen" k="98" />
+<hkern g1="W" g2="period" k="160" />
+<hkern g1="W" g2="slash" k="213" />
+<hkern g1="W" g2="zero" k="37" />
+<hkern g1="W" g2="one" k="23" />
+<hkern g1="W" g2="three" k="23" />
+<hkern g1="W" g2="four" k="80" />
+<hkern g1="W" g2="six" k="37" />
+<hkern g1="W" g2="seven" k="-70" />
+<hkern g1="W" g2="eight" k="27" />
+<hkern g1="W" g2="nine" k="25" />
+<hkern g1="W" g2="colon" k="66" />
+<hkern g1="W" g2="semicolon" k="74" />
+<hkern g1="W" g2="at" k="80" />
+<hkern g1="W" g2="A" k="143" />
+<hkern g1="W" g2="C" k="49" />
+<hkern g1="W" g2="G" k="49" />
+<hkern g1="W" g2="J" k="63" />
+<hkern g1="W" g2="M" k="10" />
+<hkern g1="W" g2="O" k="49" />
+<hkern g1="W" g2="Q" k="49" />
+<hkern g1="W" g2="S" k="23" />
+<hkern g1="W" g2="T" k="-16" />
+<hkern g1="W" g2="X" k="-49" />
+<hkern g1="W" g2="backslash" k="-57" />
+<hkern g1="W" g2="bracketright" k="-98" />
+<hkern g1="W" g2="a" k="143" />
+<hkern g1="W" g2="b" k="-96" />
+<hkern g1="W" g2="c" k="139" />
+<hkern g1="W" g2="d" k="135" />
+<hkern g1="W" g2="e" k="139" />
+<hkern g1="W" g2="f" k="53" />
+<hkern g1="W" g2="g" k="137" />
+<hkern g1="W" g2="h" k="-51" />
+<hkern g1="W" g2="i" k="51" />
+<hkern g1="W" g2="j" k="39" />
+<hkern g1="W" g2="k" k="-51" />
+<hkern g1="W" g2="l" k="-51" />
+<hkern g1="W" g2="m" k="96" />
+<hkern g1="W" g2="n" k="96" />
+<hkern g1="W" g2="o" k="139" />
+<hkern g1="W" g2="p" k="90" />
+<hkern g1="W" g2="q" k="135" />
+<hkern g1="W" g2="r" k="96" />
+<hkern g1="W" g2="s" k="133" />
+<hkern g1="W" g2="t" k="70" />
+<hkern g1="W" g2="u" k="94" />
+<hkern g1="W" g2="v" k="74" />
+<hkern g1="W" g2="w" k="78" />
+<hkern g1="W" g2="x" k="90" />
+<hkern g1="W" g2="y" k="76" />
+<hkern g1="W" g2="z" k="117" />
+<hkern g1="W" g2="braceright" k="-86" />
+<hkern g1="W" g2="guillemotleft" k="94" />
+<hkern g1="W" g2="uni00AD" k="98" />
+<hkern g1="W" g2="registered" k="43" />
+<hkern g1="W" g2="guillemotright" k="57" />
+<hkern g1="W" g2="Agrave" k="143" />
+<hkern g1="W" g2="Aacute" k="143" />
+<hkern g1="W" g2="Acircumflex" k="143" />
+<hkern g1="W" g2="Atilde" k="143" />
+<hkern g1="W" g2="Adieresis" k="143" />
+<hkern g1="W" g2="Aring" k="143" />
+<hkern g1="W" g2="AE" k="209" />
+<hkern g1="W" g2="Ccedilla" k="49" />
+<hkern g1="W" g2="Ograve" k="49" />
+<hkern g1="W" g2="Oacute" k="49" />
+<hkern g1="W" g2="Ocircumflex" k="49" />
+<hkern g1="W" g2="Otilde" k="49" />
+<hkern g1="W" g2="Odieresis" k="49" />
+<hkern g1="W" g2="Oslash" k="49" />
+<hkern g1="W" g2="germandbls" k="53" />
+<hkern g1="W" g2="agrave" k="143" />
+<hkern g1="W" g2="aacute" k="143" />
+<hkern g1="W" g2="acircumflex" k="115" />
+<hkern g1="W" g2="atilde" k="55" />
+<hkern g1="W" g2="adieresis" k="104" />
+<hkern g1="W" g2="aring" k="143" />
+<hkern g1="W" g2="ae" k="143" />
+<hkern g1="W" g2="ccedilla" k="139" />
+<hkern g1="W" g2="egrave" k="139" />
+<hkern g1="W" g2="eacute" k="139" />
+<hkern g1="W" g2="ecircumflex" k="139" />
+<hkern g1="W" g2="edieresis" k="139" />
+<hkern g1="W" g2="igrave" k="-47" />
+<hkern g1="W" g2="iacute" k="51" />
+<hkern g1="W" g2="icircumflex" k="-35" />
+<hkern g1="W" g2="idieresis" k="-45" />
+<hkern g1="W" g2="eth" k="41" />
+<hkern g1="W" g2="ntilde" k="96" />
+<hkern g1="W" g2="ograve" k="139" />
+<hkern g1="W" g2="oacute" k="139" />
+<hkern g1="W" g2="ocircumflex" k="139" />
+<hkern g1="W" g2="otilde" k="119" />
+<hkern g1="W" g2="odieresis" k="139" />
+<hkern g1="W" g2="oslash" k="139" />
+<hkern g1="W" g2="ugrave" k="94" />
+<hkern g1="W" g2="uacute" k="94" />
+<hkern g1="W" g2="ucircumflex" k="94" />
+<hkern g1="W" g2="udieresis" k="94" />
+<hkern g1="W" g2="yacute" k="76" />
+<hkern g1="W" g2="thorn" k="-96" />
+<hkern g1="W" g2="ydieresis" k="76" />
+<hkern g1="W" g2="dotlessi" k="51" />
+<hkern g1="W" g2="OE" k="49" />
+<hkern g1="W" g2="oe" k="139" />
+<hkern g1="W" g2="endash" k="98" />
+<hkern g1="W" g2="emdash" k="98" />
+<hkern g1="W" g2="quoteright" k="-59" />
+<hkern g1="W" g2="quotesinglbase" k="160" />
+<hkern g1="W" g2="quotedblright" k="-59" />
+<hkern g1="W" g2="quotedblbase" k="160" />
+<hkern g1="W" g2="guilsinglleft" k="94" />
+<hkern g1="W" g2="guilsinglright" k="57" />
+<hkern g1="X" g2="asterisk" k="35" />
+<hkern g1="X" g2="hyphen" k="111" />
+<hkern g1="X" g2="slash" k="23" />
+<hkern g1="X" g2="two" k="-25" />
+<hkern g1="X" g2="A" k="-49" />
+<hkern g1="X" g2="C" k="74" />
+<hkern g1="X" g2="G" k="74" />
+<hkern g1="X" g2="J" k="-35" />
+<hkern g1="X" g2="O" k="74" />
+<hkern g1="X" g2="Q" k="74" />
+<hkern g1="X" g2="V" k="49" />
+<hkern g1="X" g2="W" k="49" />
+<hkern g1="X" g2="c" k="31" />
+<hkern g1="X" g2="d" k="33" />
+<hkern g1="X" g2="e" k="31" />
+<hkern g1="X" g2="g" k="12" />
+<hkern g1="X" g2="j" k="29" />
+<hkern g1="X" g2="o" k="31" />
+<hkern g1="X" g2="p" k="31" />
+<hkern g1="X" g2="q" k="33" />
+<hkern g1="X" g2="t" k="49" />
+<hkern g1="X" g2="u" k="51" />
+<hkern g1="X" g2="v" k="127" />
+<hkern g1="X" g2="w" k="104" />
+<hkern g1="X" g2="y" k="135" />
+<hkern g1="X" g2="z" k="-25" />
+<hkern g1="X" g2="guillemotleft" k="49" />
+<hkern g1="X" g2="uni00AD" k="111" />
+<hkern g1="X" g2="guillemotright" k="-14" />
+<hkern g1="X" g2="Agrave" k="-49" />
+<hkern g1="X" g2="Aacute" k="-49" />
+<hkern g1="X" g2="Acircumflex" k="-49" />
+<hkern g1="X" g2="Atilde" k="-49" />
+<hkern g1="X" g2="Adieresis" k="-49" />
+<hkern g1="X" g2="Aring" k="-49" />
+<hkern g1="X" g2="AE" k="-49" />
+<hkern g1="X" g2="Ccedilla" k="74" />
+<hkern g1="X" g2="Ograve" k="74" />
+<hkern g1="X" g2="Oacute" k="74" />
+<hkern g1="X" g2="Ocircumflex" k="74" />
+<hkern g1="X" g2="Otilde" k="74" />
+<hkern g1="X" g2="Odieresis" k="74" />
+<hkern g1="X" g2="Oslash" k="74" />
+<hkern g1="X" g2="ccedilla" k="31" />
+<hkern g1="X" g2="egrave" k="31" />
+<hkern g1="X" g2="eacute" k="31" />
+<hkern g1="X" g2="ecircumflex" k="31" />
+<hkern g1="X" g2="edieresis" k="31" />
+<hkern g1="X" g2="eth" k="37" />
+<hkern g1="X" g2="ograve" k="31" />
+<hkern g1="X" g2="oacute" k="31" />
+<hkern g1="X" g2="ocircumflex" k="31" />
+<hkern g1="X" g2="otilde" k="31" />
+<hkern g1="X" g2="odieresis" k="31" />
+<hkern g1="X" g2="oslash" k="31" />
+<hkern g1="X" g2="ugrave" k="51" />
+<hkern g1="X" g2="uacute" k="51" />
+<hkern g1="X" g2="ucircumflex" k="51" />
+<hkern g1="X" g2="udieresis" k="51" />
+<hkern g1="X" g2="yacute" k="135" />
+<hkern g1="X" g2="ydieresis" k="135" />
+<hkern g1="X" g2="OE" k="74" />
+<hkern g1="X" g2="oe" k="31" />
+<hkern g1="X" g2="endash" k="111" />
+<hkern g1="X" g2="emdash" k="111" />
+<hkern g1="X" g2="guilsinglleft" k="49" />
+<hkern g1="X" g2="guilsinglright" k="-14" />
+<hkern g1="Y" g2="ampersand" k="47" />
+<hkern g1="Y" g2="parenright" k="-33" />
+<hkern g1="Y" g2="asterisk" k="16" />
+<hkern g1="Y" g2="comma" k="115" />
+<hkern g1="Y" g2="hyphen" k="139" />
+<hkern g1="Y" g2="period" k="115" />
+<hkern g1="Y" g2="slash" k="176" />
+<hkern g1="Y" g2="zero" k="45" />
+<hkern g1="Y" g2="four" k="104" />
+<hkern g1="Y" g2="six" k="45" />
+<hkern g1="Y" g2="seven" k="-59" />
+<hkern g1="Y" g2="eight" k="27" />
+<hkern g1="Y" g2="colon" k="68" />
+<hkern g1="Y" g2="semicolon" k="76" />
+<hkern g1="Y" g2="at" k="90" />
+<hkern g1="Y" g2="A" k="133" />
+<hkern g1="Y" g2="C" k="61" />
+<hkern g1="Y" g2="G" k="61" />
+<hkern g1="Y" g2="J" k="57" />
+<hkern g1="Y" g2="O" k="61" />
+<hkern g1="Y" g2="Q" k="61" />
+<hkern g1="Y" g2="S" k="14" />
+<hkern g1="Y" g2="V" k="-25" />
+<hkern g1="Y" g2="W" k="-25" />
+<hkern g1="Y" g2="Y" k="-25" />
+<hkern g1="Y" g2="backslash" k="-57" />
+<hkern g1="Y" g2="bracketright" k="-86" />
+<hkern g1="Y" g2="a" k="166" />
+<hkern g1="Y" g2="b" k="-86" />
+<hkern g1="Y" g2="c" k="170" />
+<hkern g1="Y" g2="d" k="166" />
+<hkern g1="Y" g2="e" k="170" />
+<hkern g1="Y" g2="f" k="59" />
+<hkern g1="Y" g2="g" k="162" />
+<hkern g1="Y" g2="h" k="-41" />
+<hkern g1="Y" g2="i" k="55" />
+<hkern g1="Y" g2="j" k="43" />
+<hkern g1="Y" g2="k" k="-41" />
+<hkern g1="Y" g2="l" k="-41" />
+<hkern g1="Y" g2="m" k="127" />
+<hkern g1="Y" g2="n" k="127" />
+<hkern g1="Y" g2="o" k="170" />
+<hkern g1="Y" g2="p" k="125" />
+<hkern g1="Y" g2="q" k="166" />
+<hkern g1="Y" g2="r" k="127" />
+<hkern g1="Y" g2="s" k="158" />
+<hkern g1="Y" g2="t" k="92" />
+<hkern g1="Y" g2="u" k="121" />
+<hkern g1="Y" g2="v" k="106" />
+<hkern g1="Y" g2="w" k="109" />
+<hkern g1="Y" g2="x" k="119" />
+<hkern g1="Y" g2="y" k="104" />
+<hkern g1="Y" g2="z" k="135" />
+<hkern g1="Y" g2="braceright" k="-76" />
+<hkern g1="Y" g2="guillemotleft" k="135" />
+<hkern g1="Y" g2="uni00AD" k="139" />
+<hkern g1="Y" g2="registered" k="53" />
+<hkern g1="Y" g2="guillemotright" k="61" />
+<hkern g1="Y" g2="Agrave" k="133" />
+<hkern g1="Y" g2="Aacute" k="133" />
+<hkern g1="Y" g2="Acircumflex" k="133" />
+<hkern g1="Y" g2="Atilde" k="133" />
+<hkern g1="Y" g2="Adieresis" k="133" />
+<hkern g1="Y" g2="Aring" k="133" />
+<hkern g1="Y" g2="AE" k="137" />
+<hkern g1="Y" g2="Ccedilla" k="61" />
+<hkern g1="Y" g2="Ograve" k="61" />
+<hkern g1="Y" g2="Oacute" k="61" />
+<hkern g1="Y" g2="Ocircumflex" k="61" />
+<hkern g1="Y" g2="Otilde" k="61" />
+<hkern g1="Y" g2="Odieresis" k="61" />
+<hkern g1="Y" g2="Oslash" k="61" />
+<hkern g1="Y" g2="Yacute" k="-25" />
+<hkern g1="Y" g2="germandbls" k="59" />
+<hkern g1="Y" g2="agrave" k="166" />
+<hkern g1="Y" g2="aacute" k="166" />
+<hkern g1="Y" g2="acircumflex" k="127" />
+<hkern g1="Y" g2="atilde" k="68" />
+<hkern g1="Y" g2="adieresis" k="117" />
+<hkern g1="Y" g2="aring" k="166" />
+<hkern g1="Y" g2="ae" k="166" />
+<hkern g1="Y" g2="ccedilla" k="170" />
+<hkern g1="Y" g2="egrave" k="170" />
+<hkern g1="Y" g2="eacute" k="170" />
+<hkern g1="Y" g2="ecircumflex" k="170" />
+<hkern g1="Y" g2="edieresis" k="170" />
+<hkern g1="Y" g2="igrave" k="-35" />
+<hkern g1="Y" g2="iacute" k="55" />
+<hkern g1="Y" g2="icircumflex" k="-23" />
+<hkern g1="Y" g2="idieresis" k="-35" />
+<hkern g1="Y" g2="eth" k="43" />
+<hkern g1="Y" g2="ntilde" k="127" />
+<hkern g1="Y" g2="ograve" k="170" />
+<hkern g1="Y" g2="oacute" k="170" />
+<hkern g1="Y" g2="ocircumflex" k="170" />
+<hkern g1="Y" g2="otilde" k="129" />
+<hkern g1="Y" g2="odieresis" k="170" />
+<hkern g1="Y" g2="oslash" k="170" />
+<hkern g1="Y" g2="ugrave" k="121" />
+<hkern g1="Y" g2="uacute" k="121" />
+<hkern g1="Y" g2="ucircumflex" k="121" />
+<hkern g1="Y" g2="udieresis" k="121" />
+<hkern g1="Y" g2="yacute" k="104" />
+<hkern g1="Y" g2="thorn" k="-86" />
+<hkern g1="Y" g2="ydieresis" k="104" />
+<hkern g1="Y" g2="dotlessi" k="55" />
+<hkern g1="Y" g2="OE" k="61" />
+<hkern g1="Y" g2="oe" k="170" />
+<hkern g1="Y" g2="endash" k="139" />
+<hkern g1="Y" g2="emdash" k="139" />
+<hkern g1="Y" g2="quoteright" k="-47" />
+<hkern g1="Y" g2="quotesinglbase" k="115" />
+<hkern g1="Y" g2="quotedblright" k="-47" />
+<hkern g1="Y" g2="quotedblbase" k="115" />
+<hkern g1="Y" g2="guilsinglleft" k="135" />
+<hkern g1="Y" g2="guilsinglright" k="61" />
+<hkern g1="Z" g2="hyphen" k="39" />
+<hkern g1="Z" g2="slash" k="59" />
+<hkern g1="Z" g2="W" k="25" />
+<hkern g1="Z" g2="c" k="12" />
+<hkern g1="Z" g2="d" k="10" />
+<hkern g1="Z" g2="e" k="12" />
+<hkern g1="Z" g2="f" k="16" />
+<hkern g1="Z" g2="g" k="20" />
+<hkern g1="Z" g2="i" k="16" />
+<hkern g1="Z" g2="j" k="29" />
+<hkern g1="Z" g2="m" k="16" />
+<hkern g1="Z" g2="n" k="16" />
+<hkern g1="Z" g2="o" k="12" />
+<hkern g1="Z" g2="p" k="35" />
+<hkern g1="Z" g2="q" k="10" />
+<hkern g1="Z" g2="r" k="16" />
+<hkern g1="Z" g2="s" k="12" />
+<hkern g1="Z" g2="t" k="31" />
+<hkern g1="Z" g2="u" k="35" />
+<hkern g1="Z" g2="v" k="61" />
+<hkern g1="Z" g2="w" k="55" />
+<hkern g1="Z" g2="x" k="14" />
+<hkern g1="Z" g2="y" k="63" />
+<hkern g1="Z" g2="z" k="12" />
+<hkern g1="Z" g2="uni00AD" k="39" />
+<hkern g1="Z" g2="germandbls" k="16" />
+<hkern g1="Z" g2="ccedilla" k="12" />
+<hkern g1="Z" g2="egrave" k="12" />
+<hkern g1="Z" g2="eacute" k="12" />
+<hkern g1="Z" g2="ecircumflex" k="12" />
+<hkern g1="Z" g2="edieresis" k="12" />
+<hkern g1="Z" g2="igrave" k="16" />
+<hkern g1="Z" g2="iacute" k="16" />
+<hkern g1="Z" g2="icircumflex" k="16" />
+<hkern g1="Z" g2="idieresis" k="16" />
+<hkern g1="Z" g2="eth" k="10" />
+<hkern g1="Z" g2="ntilde" k="16" />
+<hkern g1="Z" g2="ograve" k="12" />
+<hkern g1="Z" g2="oacute" k="12" />
+<hkern g1="Z" g2="ocircumflex" k="12" />
+<hkern g1="Z" g2="otilde" k="12" />
+<hkern g1="Z" g2="odieresis" k="12" />
+<hkern g1="Z" g2="oslash" k="12" />
+<hkern g1="Z" g2="ugrave" k="35" />
+<hkern g1="Z" g2="uacute" k="35" />
+<hkern g1="Z" g2="ucircumflex" k="35" />
+<hkern g1="Z" g2="udieresis" k="35" />
+<hkern g1="Z" g2="yacute" k="63" />
+<hkern g1="Z" g2="ydieresis" k="63" />
+<hkern g1="Z" g2="dotlessi" k="16" />
+<hkern g1="Z" g2="oe" k="12" />
+<hkern g1="Z" g2="endash" k="39" />
+<hkern g1="Z" g2="emdash" k="39" />
+<hkern g1="bracketleft" g2="parenleft" k="70" />
+<hkern g1="bracketleft" g2="zero" k="86" />
+<hkern g1="bracketleft" g2="one" k="74" />
+<hkern g1="bracketleft" g2="two" k="43" />
+<hkern g1="bracketleft" g2="three" k="47" />
+<hkern g1="bracketleft" g2="four" k="102" />
+<hkern g1="bracketleft" g2="six" k="84" />
+<hkern g1="bracketleft" g2="seven" k="-47" />
+<hkern g1="bracketleft" g2="eight" k="68" />
+<hkern g1="bracketleft" g2="nine" k="59" />
+<hkern g1="bracketleft" g2="A" k="111" />
+<hkern g1="bracketleft" g2="C" k="94" />
+<hkern g1="bracketleft" g2="G" k="94" />
+<hkern g1="bracketleft" g2="J" k="63" />
+<hkern g1="bracketleft" g2="O" k="94" />
+<hkern g1="bracketleft" g2="Q" k="94" />
+<hkern g1="bracketleft" g2="S" k="51" />
+<hkern g1="bracketleft" g2="T" k="-47" />
+<hkern g1="bracketleft" g2="U" k="-39" />
+<hkern g1="bracketleft" g2="V" k="-76" />
+<hkern g1="bracketleft" g2="W" k="-63" />
+<hkern g1="bracketleft" g2="X" k="-63" />
+<hkern g1="bracketleft" g2="Y" k="-84" />
+<hkern g1="bracketleft" g2="a" k="125" />
+<hkern g1="bracketleft" g2="b" k="-88" />
+<hkern g1="bracketleft" g2="c" k="127" />
+<hkern g1="bracketleft" g2="d" k="123" />
+<hkern g1="bracketleft" g2="e" k="127" />
+<hkern g1="bracketleft" g2="f" k="66" />
+<hkern g1="bracketleft" g2="h" k="-43" />
+<hkern g1="bracketleft" g2="i" k="43" />
+<hkern g1="bracketleft" g2="j" k="-264" />
+<hkern g1="bracketleft" g2="k" k="-43" />
+<hkern g1="bracketleft" g2="l" k="-43" />
+<hkern g1="bracketleft" g2="m" k="121" />
+<hkern g1="bracketleft" g2="n" k="121" />
+<hkern g1="bracketleft" g2="o" k="127" />
+<hkern g1="bracketleft" g2="p" k="-20" />
+<hkern g1="bracketleft" g2="q" k="123" />
+<hkern g1="bracketleft" g2="r" k="121" />
+<hkern g1="bracketleft" g2="s" k="121" />
+<hkern g1="bracketleft" g2="t" k="111" />
+<hkern g1="bracketleft" g2="u" k="121" />
+<hkern g1="bracketleft" g2="v" k="125" />
+<hkern g1="bracketleft" g2="w" k="125" />
+<hkern g1="bracketleft" g2="x" k="113" />
+<hkern g1="bracketleft" g2="z" k="119" />
+<hkern g1="bracketleft" g2="braceleft" k="49" />
+<hkern g1="bracketleft" g2="Agrave" k="111" />
+<hkern g1="bracketleft" g2="Aacute" k="111" />
+<hkern g1="bracketleft" g2="Acircumflex" k="111" />
+<hkern g1="bracketleft" g2="Atilde" k="111" />
+<hkern g1="bracketleft" g2="Adieresis" k="111" />
+<hkern g1="bracketleft" g2="Aring" k="111" />
+<hkern g1="bracketleft" g2="AE" k="104" />
+<hkern g1="bracketleft" g2="Ccedilla" k="94" />
+<hkern g1="bracketleft" g2="Ograve" k="94" />
+<hkern g1="bracketleft" g2="Oacute" k="94" />
+<hkern g1="bracketleft" g2="Ocircumflex" k="94" />
+<hkern g1="bracketleft" g2="Otilde" k="94" />
+<hkern g1="bracketleft" g2="Odieresis" k="94" />
+<hkern g1="bracketleft" g2="Oslash" k="94" />
+<hkern g1="bracketleft" g2="Ugrave" k="-39" />
+<hkern g1="bracketleft" g2="Uacute" k="-39" />
+<hkern g1="bracketleft" g2="Ucircumflex" k="-39" />
+<hkern g1="bracketleft" g2="Udieresis" k="-39" />
+<hkern g1="bracketleft" g2="Yacute" k="-84" />
+<hkern g1="bracketleft" g2="germandbls" k="66" />
+<hkern g1="bracketleft" g2="agrave" k="125" />
+<hkern g1="bracketleft" g2="aacute" k="125" />
+<hkern g1="bracketleft" g2="acircumflex" k="125" />
+<hkern g1="bracketleft" g2="atilde" k="125" />
+<hkern g1="bracketleft" g2="adieresis" k="125" />
+<hkern g1="bracketleft" g2="aring" k="125" />
+<hkern g1="bracketleft" g2="ae" k="125" />
+<hkern g1="bracketleft" g2="ccedilla" k="127" />
+<hkern g1="bracketleft" g2="egrave" k="127" />
+<hkern g1="bracketleft" g2="eacute" k="127" />
+<hkern g1="bracketleft" g2="ecircumflex" k="127" />
+<hkern g1="bracketleft" g2="edieresis" k="127" />
+<hkern g1="bracketleft" g2="igrave" k="-49" />
+<hkern g1="bracketleft" g2="iacute" k="43" />
+<hkern g1="bracketleft" g2="icircumflex" k="43" />
+<hkern g1="bracketleft" g2="idieresis" k="-35" />
+<hkern g1="bracketleft" g2="eth" k="27" />
+<hkern g1="bracketleft" g2="ntilde" k="121" />
+<hkern g1="bracketleft" g2="ograve" k="127" />
+<hkern g1="bracketleft" g2="oacute" k="127" />
+<hkern g1="bracketleft" g2="ocircumflex" k="127" />
+<hkern g1="bracketleft" g2="otilde" k="127" />
+<hkern g1="bracketleft" g2="odieresis" k="127" />
+<hkern g1="bracketleft" g2="oslash" k="127" />
+<hkern g1="bracketleft" g2="ugrave" k="121" />
+<hkern g1="bracketleft" g2="uacute" k="121" />
+<hkern g1="bracketleft" g2="ucircumflex" k="121" />
+<hkern g1="bracketleft" g2="udieresis" k="121" />
+<hkern g1="bracketleft" g2="thorn" k="-88" />
+<hkern g1="bracketleft" g2="dotlessi" k="43" />
+<hkern g1="bracketleft" g2="OE" k="94" />
+<hkern g1="bracketleft" g2="oe" k="127" />
+<hkern g1="backslash" g2="quotedbl" k="217" />
+<hkern g1="backslash" g2="quotesingle" k="193" />
+<hkern g1="backslash" g2="zero" k="127" />
+<hkern g1="backslash" g2="one" k="84" />
+<hkern g1="backslash" g2="two" k="51" />
+<hkern g1="backslash" g2="three" k="78" />
+<hkern g1="backslash" g2="four" k="102" />
+<hkern g1="backslash" g2="five" k="84" />
+<hkern g1="backslash" g2="six" k="111" />
+<hkern g1="backslash" g2="seven" k="143" />
+<hkern g1="backslash" g2="eight" k="98" />
+<hkern g1="backslash" g2="nine" k="100" />
+<hkern g1="backslash" g2="A" k="35" />
+<hkern g1="backslash" g2="B" k="61" />
+<hkern g1="backslash" g2="C" k="137" />
+<hkern g1="backslash" g2="D" k="61" />
+<hkern g1="backslash" g2="E" k="61" />
+<hkern g1="backslash" g2="F" k="61" />
+<hkern g1="backslash" g2="G" k="137" />
+<hkern g1="backslash" g2="H" k="61" />
+<hkern g1="backslash" g2="I" k="61" />
+<hkern g1="backslash" g2="J" k="45" />
+<hkern g1="backslash" g2="K" k="61" />
+<hkern g1="backslash" g2="L" k="61" />
+<hkern g1="backslash" g2="M" k="59" />
+<hkern g1="backslash" g2="N" k="61" />
+<hkern g1="backslash" g2="O" k="137" />
+<hkern g1="backslash" g2="P" k="61" />
+<hkern g1="backslash" g2="Q" k="137" />
+<hkern g1="backslash" g2="R" k="61" />
+<hkern g1="backslash" g2="S" k="66" />
+<hkern g1="backslash" g2="T" k="166" />
+<hkern g1="backslash" g2="U" k="158" />
+<hkern g1="backslash" g2="V" k="231" />
+<hkern g1="backslash" g2="W" k="215" />
+<hkern g1="backslash" g2="X" k="49" />
+<hkern g1="backslash" g2="Y" k="195" />
+<hkern g1="backslash" g2="Z" k="55" />
+<hkern g1="backslash" g2="a" k="78" />
+<hkern g1="backslash" g2="b" k="74" />
+<hkern g1="backslash" g2="c" k="115" />
+<hkern g1="backslash" g2="d" k="106" />
+<hkern g1="backslash" g2="e" k="115" />
+<hkern g1="backslash" g2="f" k="63" />
+<hkern g1="backslash" g2="h" k="49" />
+<hkern g1="backslash" g2="i" k="59" />
+<hkern g1="backslash" g2="j" k="-209" />
+<hkern g1="backslash" g2="k" k="49" />
+<hkern g1="backslash" g2="l" k="49" />
+<hkern g1="backslash" g2="m" k="63" />
+<hkern g1="backslash" g2="n" k="63" />
+<hkern g1="backslash" g2="o" k="115" />
+<hkern g1="backslash" g2="q" k="106" />
+<hkern g1="backslash" g2="r" k="63" />
+<hkern g1="backslash" g2="s" k="68" />
+<hkern g1="backslash" g2="t" k="129" />
+<hkern g1="backslash" g2="u" k="129" />
+<hkern g1="backslash" g2="v" k="172" />
+<hkern g1="backslash" g2="w" k="162" />
+<hkern g1="backslash" g2="x" k="61" />
+<hkern g1="backslash" g2="z" k="59" />
+<hkern g1="backslash" g2="Agrave" k="35" />
+<hkern g1="backslash" g2="Aacute" k="35" />
+<hkern g1="backslash" g2="Acircumflex" k="35" />
+<hkern g1="backslash" g2="Atilde" k="35" />
+<hkern g1="backslash" g2="Adieresis" k="35" />
+<hkern g1="backslash" g2="Aring" k="35" />
+<hkern g1="backslash" g2="AE" k="23" />
+<hkern g1="backslash" g2="Ccedilla" k="137" />
+<hkern g1="backslash" g2="Egrave" k="61" />
+<hkern g1="backslash" g2="Eacute" k="61" />
+<hkern g1="backslash" g2="Ecircumflex" k="61" />
+<hkern g1="backslash" g2="Edieresis" k="61" />
+<hkern g1="backslash" g2="Igrave" k="61" />
+<hkern g1="backslash" g2="Iacute" k="61" />
+<hkern g1="backslash" g2="Icircumflex" k="61" />
+<hkern g1="backslash" g2="Idieresis" k="61" />
+<hkern g1="backslash" g2="Eth" k="61" />
+<hkern g1="backslash" g2="Ntilde" k="61" />
+<hkern g1="backslash" g2="Ograve" k="137" />
+<hkern g1="backslash" g2="Oacute" k="137" />
+<hkern g1="backslash" g2="Ocircumflex" k="137" />
+<hkern g1="backslash" g2="Otilde" k="137" />
+<hkern g1="backslash" g2="Odieresis" k="137" />
+<hkern g1="backslash" g2="Oslash" k="137" />
+<hkern g1="backslash" g2="Ugrave" k="158" />
+<hkern g1="backslash" g2="Uacute" k="158" />
+<hkern g1="backslash" g2="Ucircumflex" k="158" />
+<hkern g1="backslash" g2="Udieresis" k="158" />
+<hkern g1="backslash" g2="Yacute" k="195" />
+<hkern g1="backslash" g2="Thorn" k="61" />
+<hkern g1="backslash" g2="germandbls" k="63" />
+<hkern g1="backslash" g2="agrave" k="78" />
+<hkern g1="backslash" g2="aacute" k="78" />
+<hkern g1="backslash" g2="acircumflex" k="78" />
+<hkern g1="backslash" g2="atilde" k="78" />
+<hkern g1="backslash" g2="adieresis" k="78" />
+<hkern g1="backslash" g2="aring" k="78" />
+<hkern g1="backslash" g2="ae" k="78" />
+<hkern g1="backslash" g2="ccedilla" k="115" />
+<hkern g1="backslash" g2="egrave" k="115" />
+<hkern g1="backslash" g2="eacute" k="115" />
+<hkern g1="backslash" g2="ecircumflex" k="115" />
+<hkern g1="backslash" g2="edieresis" k="115" />
+<hkern g1="backslash" g2="igrave" k="59" />
+<hkern g1="backslash" g2="iacute" k="59" />
+<hkern g1="backslash" g2="icircumflex" k="59" />
+<hkern g1="backslash" g2="idieresis" k="59" />
+<hkern g1="backslash" g2="eth" k="106" />
+<hkern g1="backslash" g2="ntilde" k="63" />
+<hkern g1="backslash" g2="ograve" k="115" />
+<hkern g1="backslash" g2="oacute" k="115" />
+<hkern g1="backslash" g2="ocircumflex" k="115" />
+<hkern g1="backslash" g2="otilde" k="115" />
+<hkern g1="backslash" g2="odieresis" k="115" />
+<hkern g1="backslash" g2="oslash" k="115" />
+<hkern g1="backslash" g2="ugrave" k="129" />
+<hkern g1="backslash" g2="uacute" k="129" />
+<hkern g1="backslash" g2="ucircumflex" k="129" />
+<hkern g1="backslash" g2="udieresis" k="129" />
+<hkern g1="backslash" g2="thorn" k="-37" />
+<hkern g1="backslash" g2="dotlessi" k="59" />
+<hkern g1="backslash" g2="OE" k="137" />
+<hkern g1="backslash" g2="oe" k="115" />
+<hkern g1="backslash" g2="quoteright" k="211" />
+<hkern g1="backslash" g2="quotedblright" k="211" />
+<hkern g1="a" g2="quotedbl" k="47" />
+<hkern g1="a" g2="quotesingle" k="47" />
+<hkern g1="a" g2="parenright" k="45" />
+<hkern g1="a" g2="asterisk" k="33" />
+<hkern g1="a" g2="slash" k="43" />
+<hkern g1="a" g2="question" k="41" />
+<hkern g1="a" g2="B" k="10" />
+<hkern g1="a" g2="C" k="20" />
+<hkern g1="a" g2="D" k="10" />
+<hkern g1="a" g2="E" k="10" />
+<hkern g1="a" g2="F" k="10" />
+<hkern g1="a" g2="G" k="20" />
+<hkern g1="a" g2="H" k="10" />
+<hkern g1="a" g2="I" k="10" />
+<hkern g1="a" g2="K" k="10" />
+<hkern g1="a" g2="L" k="10" />
+<hkern g1="a" g2="N" k="10" />
+<hkern g1="a" g2="O" k="20" />
+<hkern g1="a" g2="P" k="10" />
+<hkern g1="a" g2="Q" k="20" />
+<hkern g1="a" g2="R" k="10" />
+<hkern g1="a" g2="T" k="86" />
+<hkern g1="a" g2="U" k="63" />
+<hkern g1="a" g2="V" k="137" />
+<hkern g1="a" g2="W" k="123" />
+<hkern g1="a" g2="Y" k="158" />
+<hkern g1="a" g2="backslash" k="119" />
+<hkern g1="a" g2="bracketright" k="117" />
+<hkern g1="a" g2="v" k="25" />
+<hkern g1="a" g2="w" k="25" />
+<hkern g1="a" g2="y" k="27" />
+<hkern g1="a" g2="braceright" k="51" />
+<hkern g1="a" g2="Ccedilla" k="20" />
+<hkern g1="a" g2="Egrave" k="10" />
+<hkern g1="a" g2="Eacute" k="10" />
+<hkern g1="a" g2="Ecircumflex" k="10" />
+<hkern g1="a" g2="Edieresis" k="10" />
+<hkern g1="a" g2="Igrave" k="10" />
+<hkern g1="a" g2="Iacute" k="10" />
+<hkern g1="a" g2="Icircumflex" k="10" />
+<hkern g1="a" g2="Idieresis" k="10" />
+<hkern g1="a" g2="Eth" k="10" />
+<hkern g1="a" g2="Ntilde" k="10" />
+<hkern g1="a" g2="Ograve" k="20" />
+<hkern g1="a" g2="Oacute" k="20" />
+<hkern g1="a" g2="Ocircumflex" k="20" />
+<hkern g1="a" g2="Otilde" k="20" />
+<hkern g1="a" g2="Odieresis" k="20" />
+<hkern g1="a" g2="Oslash" k="20" />
+<hkern g1="a" g2="Ugrave" k="63" />
+<hkern g1="a" g2="Uacute" k="63" />
+<hkern g1="a" g2="Ucircumflex" k="63" />
+<hkern g1="a" g2="Udieresis" k="63" />
+<hkern g1="a" g2="Yacute" k="158" />
+<hkern g1="a" g2="Thorn" k="10" />
+<hkern g1="a" g2="yacute" k="27" />
+<hkern g1="a" g2="ydieresis" k="27" />
+<hkern g1="a" g2="OE" k="20" />
+<hkern g1="a" g2="quoteleft" k="39" />
+<hkern g1="a" g2="quoteright" k="45" />
+<hkern g1="a" g2="quotedblleft" k="39" />
+<hkern g1="a" g2="quotedblright" k="45" />
+<hkern g1="b" g2="quotedbl" k="61" />
+<hkern g1="b" g2="quotesingle" k="61" />
+<hkern g1="b" g2="parenright" k="63" />
+<hkern g1="b" g2="asterisk" k="23" />
+<hkern g1="b" g2="slash" k="115" />
+<hkern g1="b" g2="question" k="39" />
+<hkern g1="b" g2="A" k="31" />
+<hkern g1="b" g2="B" k="49" />
+<hkern g1="b" g2="D" k="49" />
+<hkern g1="b" g2="E" k="49" />
+<hkern g1="b" g2="F" k="49" />
+<hkern g1="b" g2="H" k="49" />
+<hkern g1="b" g2="I" k="49" />
+<hkern g1="b" g2="K" k="49" />
+<hkern g1="b" g2="L" k="49" />
+<hkern g1="b" g2="M" k="47" />
+<hkern g1="b" g2="N" k="49" />
+<hkern g1="b" g2="P" k="49" />
+<hkern g1="b" g2="R" k="49" />
+<hkern g1="b" g2="S" k="14" />
+<hkern g1="b" g2="T" k="92" />
+<hkern g1="b" g2="U" k="57" />
+<hkern g1="b" g2="V" k="156" />
+<hkern g1="b" g2="W" k="133" />
+<hkern g1="b" g2="X" k="92" />
+<hkern g1="b" g2="Y" k="164" />
+<hkern g1="b" g2="Z" k="37" />
+<hkern g1="b" g2="backslash" k="94" />
+<hkern g1="b" g2="bracketright" k="123" />
+<hkern g1="b" g2="x" k="12" />
+<hkern g1="b" g2="braceright" k="70" />
+<hkern g1="b" g2="Agrave" k="31" />
+<hkern g1="b" g2="Aacute" k="31" />
+<hkern g1="b" g2="Acircumflex" k="31" />
+<hkern g1="b" g2="Atilde" k="31" />
+<hkern g1="b" g2="Adieresis" k="31" />
+<hkern g1="b" g2="Aring" k="31" />
+<hkern g1="b" g2="Egrave" k="49" />
+<hkern g1="b" g2="Eacute" k="49" />
+<hkern g1="b" g2="Ecircumflex" k="49" />
+<hkern g1="b" g2="Edieresis" k="49" />
+<hkern g1="b" g2="Igrave" k="49" />
+<hkern g1="b" g2="Iacute" k="49" />
+<hkern g1="b" g2="Icircumflex" k="49" />
+<hkern g1="b" g2="Idieresis" k="49" />
+<hkern g1="b" g2="Eth" k="49" />
+<hkern g1="b" g2="Ntilde" k="49" />
+<hkern g1="b" g2="Ugrave" k="57" />
+<hkern g1="b" g2="Uacute" k="57" />
+<hkern g1="b" g2="Ucircumflex" k="57" />
+<hkern g1="b" g2="Udieresis" k="57" />
+<hkern g1="b" g2="Yacute" k="164" />
+<hkern g1="b" g2="Thorn" k="49" />
+<hkern g1="b" g2="quoteleft" k="43" />
+<hkern g1="b" g2="quoteright" k="47" />
+<hkern g1="b" g2="quotedblleft" k="43" />
+<hkern g1="b" g2="quotedblright" k="47" />
+<hkern g1="c" g2="parenright" k="45" />
+<hkern g1="c" g2="slash" k="76" />
+<hkern g1="c" g2="B" k="41" />
+<hkern g1="c" g2="C" k="14" />
+<hkern g1="c" g2="D" k="41" />
+<hkern g1="c" g2="E" k="41" />
+<hkern g1="c" g2="F" k="41" />
+<hkern g1="c" g2="G" k="14" />
+<hkern g1="c" g2="H" k="41" />
+<hkern g1="c" g2="I" k="41" />
+<hkern g1="c" g2="J" k="-14" />
+<hkern g1="c" g2="K" k="41" />
+<hkern g1="c" g2="L" k="41" />
+<hkern g1="c" g2="M" k="37" />
+<hkern g1="c" g2="N" k="41" />
+<hkern g1="c" g2="O" k="14" />
+<hkern g1="c" g2="P" k="41" />
+<hkern g1="c" g2="Q" k="14" />
+<hkern g1="c" g2="R" k="41" />
+<hkern g1="c" g2="T" k="35" />
+<hkern g1="c" g2="U" k="51" />
+<hkern g1="c" g2="V" k="135" />
+<hkern g1="c" g2="W" k="119" />
+<hkern g1="c" g2="X" k="51" />
+<hkern g1="c" g2="Y" k="154" />
+<hkern g1="c" g2="backslash" k="74" />
+<hkern g1="c" g2="bracketright" k="113" />
+<hkern g1="c" g2="braceright" k="47" />
+<hkern g1="c" g2="Ccedilla" k="14" />
+<hkern g1="c" g2="Egrave" k="41" />
+<hkern g1="c" g2="Eacute" k="41" />
+<hkern g1="c" g2="Ecircumflex" k="41" />
+<hkern g1="c" g2="Edieresis" k="41" />
+<hkern g1="c" g2="Igrave" k="41" />
+<hkern g1="c" g2="Iacute" k="41" />
+<hkern g1="c" g2="Icircumflex" k="41" />
+<hkern g1="c" g2="Idieresis" k="41" />
+<hkern g1="c" g2="Eth" k="41" />
+<hkern g1="c" g2="Ntilde" k="41" />
+<hkern g1="c" g2="Ograve" k="14" />
+<hkern g1="c" g2="Oacute" k="14" />
+<hkern g1="c" g2="Ocircumflex" k="14" />
+<hkern g1="c" g2="Otilde" k="14" />
+<hkern g1="c" g2="Odieresis" k="14" />
+<hkern g1="c" g2="Oslash" k="14" />
+<hkern g1="c" g2="Ugrave" k="51" />
+<hkern g1="c" g2="Uacute" k="51" />
+<hkern g1="c" g2="Ucircumflex" k="51" />
+<hkern g1="c" g2="Udieresis" k="51" />
+<hkern g1="c" g2="Yacute" k="154" />
+<hkern g1="c" g2="Thorn" k="41" />
+<hkern g1="c" g2="OE" k="14" />
+<hkern g1="d" g2="hyphen" k="18" />
+<hkern g1="d" g2="slash" k="49" />
+<hkern g1="d" g2="B" k="16" />
+<hkern g1="d" g2="C" k="27" />
+<hkern g1="d" g2="D" k="16" />
+<hkern g1="d" g2="E" k="16" />
+<hkern g1="d" g2="F" k="16" />
+<hkern g1="d" g2="G" k="27" />
+<hkern g1="d" g2="H" k="16" />
+<hkern g1="d" g2="I" k="16" />
+<hkern g1="d" g2="K" k="16" />
+<hkern g1="d" g2="L" k="16" />
+<hkern g1="d" g2="M" k="14" />
+<hkern g1="d" g2="N" k="16" />
+<hkern g1="d" g2="O" k="27" />
+<hkern g1="d" g2="P" k="16" />
+<hkern g1="d" g2="Q" k="27" />
+<hkern g1="d" g2="R" k="16" />
+<hkern g1="d" g2="S" k="10" />
+<hkern g1="d" g2="T" k="18" />
+<hkern g1="d" g2="U" k="39" />
+<hkern g1="d" g2="V" k="37" />
+<hkern g1="d" g2="W" k="41" />
+<hkern g1="d" g2="Y" k="33" />
+<hkern g1="d" g2="bracketright" k="23" />
+<hkern g1="d" g2="v" k="16" />
+<hkern g1="d" g2="w" k="16" />
+<hkern g1="d" g2="y" k="16" />
+<hkern g1="d" g2="uni00AD" k="18" />
+<hkern g1="d" g2="Ccedilla" k="27" />
+<hkern g1="d" g2="Egrave" k="16" />
+<hkern g1="d" g2="Eacute" k="16" />
+<hkern g1="d" g2="Ecircumflex" k="16" />
+<hkern g1="d" g2="Edieresis" k="16" />
+<hkern g1="d" g2="Igrave" k="16" />
+<hkern g1="d" g2="Iacute" k="16" />
+<hkern g1="d" g2="Icircumflex" k="16" />
+<hkern g1="d" g2="Idieresis" k="16" />
+<hkern g1="d" g2="Eth" k="16" />
+<hkern g1="d" g2="Ntilde" k="16" />
+<hkern g1="d" g2="Ograve" k="27" />
+<hkern g1="d" g2="Oacute" k="27" />
+<hkern g1="d" g2="Ocircumflex" k="27" />
+<hkern g1="d" g2="Otilde" k="27" />
+<hkern g1="d" g2="Odieresis" k="27" />
+<hkern g1="d" g2="Oslash" k="27" />
+<hkern g1="d" g2="Ugrave" k="39" />
+<hkern g1="d" g2="Uacute" k="39" />
+<hkern g1="d" g2="Ucircumflex" k="39" />
+<hkern g1="d" g2="Udieresis" k="39" />
+<hkern g1="d" g2="Yacute" k="33" />
+<hkern g1="d" g2="Thorn" k="16" />
+<hkern g1="d" g2="yacute" k="16" />
+<hkern g1="d" g2="ydieresis" k="16" />
+<hkern g1="d" g2="OE" k="27" />
+<hkern g1="d" g2="endash" k="18" />
+<hkern g1="d" g2="emdash" k="18" />
+<hkern g1="e" g2="quotedbl" k="39" />
+<hkern g1="e" g2="quotesingle" k="39" />
+<hkern g1="e" g2="parenright" k="59" />
+<hkern g1="e" g2="asterisk" k="16" />
+<hkern g1="e" g2="slash" k="94" />
+<hkern g1="e" g2="question" k="33" />
+<hkern g1="e" g2="A" k="12" />
+<hkern g1="e" g2="B" k="33" />
+<hkern g1="e" g2="D" k="33" />
+<hkern g1="e" g2="E" k="33" />
+<hkern g1="e" g2="F" k="33" />
+<hkern g1="e" g2="H" k="33" />
+<hkern g1="e" g2="I" k="33" />
+<hkern g1="e" g2="K" k="33" />
+<hkern g1="e" g2="L" k="33" />
+<hkern g1="e" g2="M" k="31" />
+<hkern g1="e" g2="N" k="33" />
+<hkern g1="e" g2="P" k="33" />
+<hkern g1="e" g2="R" k="33" />
+<hkern g1="e" g2="S" k="12" />
+<hkern g1="e" g2="T" k="82" />
+<hkern g1="e" g2="U" k="55" />
+<hkern g1="e" g2="V" k="168" />
+<hkern g1="e" g2="W" k="145" />
+<hkern g1="e" g2="X" k="49" />
+<hkern g1="e" g2="Y" k="190" />
+<hkern g1="e" g2="Z" k="16" />
+<hkern g1="e" g2="backslash" k="94" />
+<hkern g1="e" g2="bracketright" k="125" />
+<hkern g1="e" g2="braceright" k="63" />
+<hkern g1="e" g2="Agrave" k="12" />
+<hkern g1="e" g2="Aacute" k="12" />
+<hkern g1="e" g2="Acircumflex" k="12" />
+<hkern g1="e" g2="Atilde" k="12" />
+<hkern g1="e" g2="Adieresis" k="12" />
+<hkern g1="e" g2="Aring" k="12" />
+<hkern g1="e" g2="Egrave" k="33" />
+<hkern g1="e" g2="Eacute" k="33" />
+<hkern g1="e" g2="Ecircumflex" k="33" />
+<hkern g1="e" g2="Edieresis" k="33" />
+<hkern g1="e" g2="Igrave" k="33" />
+<hkern g1="e" g2="Iacute" k="33" />
+<hkern g1="e" g2="Icircumflex" k="33" />
+<hkern g1="e" g2="Idieresis" k="33" />
+<hkern g1="e" g2="Eth" k="33" />
+<hkern g1="e" g2="Ntilde" k="33" />
+<hkern g1="e" g2="Ugrave" k="55" />
+<hkern g1="e" g2="Uacute" k="55" />
+<hkern g1="e" g2="Ucircumflex" k="55" />
+<hkern g1="e" g2="Udieresis" k="55" />
+<hkern g1="e" g2="Yacute" k="190" />
+<hkern g1="e" g2="Thorn" k="33" />
+<hkern g1="e" g2="quoteleft" k="29" />
+<hkern g1="e" g2="quoteright" k="33" />
+<hkern g1="e" g2="quotedblleft" k="29" />
+<hkern g1="e" g2="quotedblright" k="33" />
+<hkern g1="f" g2="exclam" k="-82" />
+<hkern g1="f" g2="quotedbl" k="-115" />
+<hkern g1="f" g2="quotesingle" k="-115" />
+<hkern g1="f" g2="parenright" k="-135" />
+<hkern g1="f" g2="asterisk" k="-39" />
+<hkern g1="f" g2="hyphen" k="31" />
+<hkern g1="f" g2="slash" k="74" />
+<hkern g1="f" g2="question" k="-76" />
+<hkern g1="f" g2="A" k="14" />
+<hkern g1="f" g2="B" k="-102" />
+<hkern g1="f" g2="D" k="-102" />
+<hkern g1="f" g2="E" k="-102" />
+<hkern g1="f" g2="F" k="-102" />
+<hkern g1="f" g2="H" k="-102" />
+<hkern g1="f" g2="I" k="-102" />
+<hkern g1="f" g2="K" k="-102" />
+<hkern g1="f" g2="L" k="-102" />
+<hkern g1="f" g2="M" k="-96" />
+<hkern g1="f" g2="N" k="-102" />
+<hkern g1="f" g2="P" k="-102" />
+<hkern g1="f" g2="R" k="-102" />
+<hkern g1="f" g2="S" k="-31" />
+<hkern g1="f" g2="T" k="-164" />
+<hkern g1="f" g2="U" k="-152" />
+<hkern g1="f" g2="V" k="-188" />
+<hkern g1="f" g2="W" k="-178" />
+<hkern g1="f" g2="X" k="-176" />
+<hkern g1="f" g2="Y" k="-197" />
+<hkern g1="f" g2="Z" k="-102" />
+<hkern g1="f" g2="backslash" k="-147" />
+<hkern g1="f" g2="bracketright" k="-197" />
+<hkern g1="f" g2="b" k="-168" />
+<hkern g1="f" g2="c" k="12" />
+<hkern g1="f" g2="d" k="10" />
+<hkern g1="f" g2="e" k="12" />
+<hkern g1="f" g2="h" k="-123" />
+<hkern g1="f" g2="j" k="-16" />
+<hkern g1="f" g2="k" k="-123" />
+<hkern g1="f" g2="l" k="-123" />
+<hkern g1="f" g2="o" k="12" />
+<hkern g1="f" g2="q" k="10" />
+<hkern g1="f" g2="v" k="-10" />
+<hkern g1="f" g2="bar" k="-80" />
+<hkern g1="f" g2="braceright" k="-182" />
+<hkern g1="f" g2="guillemotleft" k="25" />
+<hkern g1="f" g2="uni00AD" k="31" />
+<hkern g1="f" g2="Agrave" k="14" />
+<hkern g1="f" g2="Aacute" k="14" />
+<hkern g1="f" g2="Acircumflex" k="14" />
+<hkern g1="f" g2="Atilde" k="14" />
+<hkern g1="f" g2="Adieresis" k="14" />
+<hkern g1="f" g2="Aring" k="14" />
+<hkern g1="f" g2="Egrave" k="-102" />
+<hkern g1="f" g2="Eacute" k="-102" />
+<hkern g1="f" g2="Ecircumflex" k="-102" />
+<hkern g1="f" g2="Edieresis" k="-102" />
+<hkern g1="f" g2="Igrave" k="-102" />
+<hkern g1="f" g2="Iacute" k="-102" />
+<hkern g1="f" g2="Icircumflex" k="-102" />
+<hkern g1="f" g2="Idieresis" k="-102" />
+<hkern g1="f" g2="Eth" k="-102" />
+<hkern g1="f" g2="Ntilde" k="-102" />
+<hkern g1="f" g2="Ugrave" k="-152" />
+<hkern g1="f" g2="Uacute" k="-152" />
+<hkern g1="f" g2="Ucircumflex" k="-152" />
+<hkern g1="f" g2="Udieresis" k="-152" />
+<hkern g1="f" g2="Yacute" k="-197" />
+<hkern g1="f" g2="Thorn" k="-102" />
+<hkern g1="f" g2="atilde" k="-47" />
+<hkern g1="f" g2="ccedilla" k="12" />
+<hkern g1="f" g2="egrave" k="12" />
+<hkern g1="f" g2="eacute" k="12" />
+<hkern g1="f" g2="ecircumflex" k="12" />
+<hkern g1="f" g2="edieresis" k="12" />
+<hkern g1="f" g2="igrave" k="-117" />
+<hkern g1="f" g2="icircumflex" k="-115" />
+<hkern g1="f" g2="idieresis" k="-129" />
+<hkern g1="f" g2="ograve" k="12" />
+<hkern g1="f" g2="oacute" k="12" />
+<hkern g1="f" g2="ocircumflex" k="12" />
+<hkern g1="f" g2="otilde" k="12" />
+<hkern g1="f" g2="odieresis" k="12" />
+<hkern g1="f" g2="oslash" k="12" />
+<hkern g1="f" g2="thorn" k="-168" />
+<hkern g1="f" g2="oe" k="12" />
+<hkern g1="f" g2="endash" k="31" />
+<hkern g1="f" g2="emdash" k="31" />
+<hkern g1="f" g2="quoteleft" k="-86" />
+<hkern g1="f" g2="quoteright" k="-160" />
+<hkern g1="f" g2="quotedblleft" k="-86" />
+<hkern g1="f" g2="quotedblright" k="-160" />
+<hkern g1="f" g2="guilsinglleft" k="25" />
+<hkern g1="g" g2="exclam" k="-16" />
+<hkern g1="g" g2="quotedbl" k="-51" />
+<hkern g1="g" g2="quotesingle" k="-51" />
+<hkern g1="g" g2="asterisk" k="-127" />
+<hkern g1="g" g2="question" k="-76" />
+<hkern g1="g" g2="A" k="31" />
+<hkern g1="g" g2="B" k="14" />
+<hkern g1="g" g2="C" k="10" />
+<hkern g1="g" g2="D" k="14" />
+<hkern g1="g" g2="E" k="14" />
+<hkern g1="g" g2="F" k="14" />
+<hkern g1="g" g2="G" k="10" />
+<hkern g1="g" g2="H" k="14" />
+<hkern g1="g" g2="I" k="14" />
+<hkern g1="g" g2="J" k="31" />
+<hkern g1="g" g2="K" k="14" />
+<hkern g1="g" g2="L" k="14" />
+<hkern g1="g" g2="M" k="14" />
+<hkern g1="g" g2="N" k="14" />
+<hkern g1="g" g2="O" k="10" />
+<hkern g1="g" g2="P" k="14" />
+<hkern g1="g" g2="Q" k="10" />
+<hkern g1="g" g2="R" k="14" />
+<hkern g1="g" g2="S" k="-55" />
+<hkern g1="g" g2="T" k="-113" />
+<hkern g1="g" g2="U" k="12" />
+<hkern g1="g" g2="W" k="10" />
+<hkern g1="g" g2="Z" k="-51" />
+<hkern g1="g" g2="a" k="12" />
+<hkern g1="g" g2="b" k="-14" />
+<hkern g1="g" g2="c" k="14" />
+<hkern g1="g" g2="d" k="14" />
+<hkern g1="g" g2="e" k="14" />
+<hkern g1="g" g2="f" k="-10" />
+<hkern g1="g" g2="g" k="14" />
+<hkern g1="g" g2="h" k="12" />
+<hkern g1="g" g2="j" k="-180" />
+<hkern g1="g" g2="k" k="12" />
+<hkern g1="g" g2="l" k="12" />
+<hkern g1="g" g2="o" k="14" />
+<hkern g1="g" g2="q" k="14" />
+<hkern g1="g" g2="s" k="12" />
+<hkern g1="g" g2="t" k="-39" />
+<hkern g1="g" g2="v" k="-61" />
+<hkern g1="g" g2="w" k="-55" />
+<hkern g1="g" g2="x" k="-31" />
+<hkern g1="g" g2="y" k="-61" />
+<hkern g1="g" g2="bar" k="-20" />
+<hkern g1="g" g2="guillemotright" k="-43" />
+<hkern g1="g" g2="Agrave" k="31" />
+<hkern g1="g" g2="Aacute" k="31" />
+<hkern g1="g" g2="Acircumflex" k="31" />
+<hkern g1="g" g2="Atilde" k="31" />
+<hkern g1="g" g2="Adieresis" k="31" />
+<hkern g1="g" g2="Aring" k="31" />
+<hkern g1="g" g2="Ccedilla" k="10" />
+<hkern g1="g" g2="Egrave" k="14" />
+<hkern g1="g" g2="Eacute" k="14" />
+<hkern g1="g" g2="Ecircumflex" k="14" />
+<hkern g1="g" g2="Edieresis" k="14" />
+<hkern g1="g" g2="Igrave" k="14" />
+<hkern g1="g" g2="Iacute" k="14" />
+<hkern g1="g" g2="Icircumflex" k="14" />
+<hkern g1="g" g2="Idieresis" k="14" />
+<hkern g1="g" g2="Eth" k="14" />
+<hkern g1="g" g2="Ntilde" k="14" />
+<hkern g1="g" g2="Ograve" k="10" />
+<hkern g1="g" g2="Oacute" k="10" />
+<hkern g1="g" g2="Ocircumflex" k="10" />
+<hkern g1="g" g2="Otilde" k="10" />
+<hkern g1="g" g2="Odieresis" k="10" />
+<hkern g1="g" g2="Oslash" k="10" />
+<hkern g1="g" g2="Ugrave" k="12" />
+<hkern g1="g" g2="Uacute" k="12" />
+<hkern g1="g" g2="Ucircumflex" k="12" />
+<hkern g1="g" g2="Udieresis" k="12" />
+<hkern g1="g" g2="Thorn" k="14" />
+<hkern g1="g" g2="germandbls" k="-10" />
+<hkern g1="g" g2="agrave" k="12" />
+<hkern g1="g" g2="aacute" k="12" />
+<hkern g1="g" g2="acircumflex" k="12" />
+<hkern g1="g" g2="atilde" k="12" />
+<hkern g1="g" g2="adieresis" k="12" />
+<hkern g1="g" g2="aring" k="12" />
+<hkern g1="g" g2="ae" k="12" />
+<hkern g1="g" g2="ccedilla" k="14" />
+<hkern g1="g" g2="egrave" k="14" />
+<hkern g1="g" g2="eacute" k="14" />
+<hkern g1="g" g2="ecircumflex" k="14" />
+<hkern g1="g" g2="edieresis" k="14" />
+<hkern g1="g" g2="icircumflex" k="-39" />
+<hkern g1="g" g2="eth" k="16" />
+<hkern g1="g" g2="ograve" k="14" />
+<hkern g1="g" g2="oacute" k="14" />
+<hkern g1="g" g2="ocircumflex" k="14" />
+<hkern g1="g" g2="otilde" k="14" />
+<hkern g1="g" g2="odieresis" k="14" />
+<hkern g1="g" g2="oslash" k="14" />
+<hkern g1="g" g2="yacute" k="-61" />
+<hkern g1="g" g2="thorn" k="-14" />
+<hkern g1="g" g2="ydieresis" k="-61" />
+<hkern g1="g" g2="OE" k="10" />
+<hkern g1="g" g2="oe" k="14" />
+<hkern g1="g" g2="quoteleft" k="-78" />
+<hkern g1="g" g2="quotedblleft" k="-78" />
+<hkern g1="g" g2="guilsinglright" k="-43" />
+<hkern g1="h" g2="quotedbl" k="49" />
+<hkern g1="h" g2="quotesingle" k="49" />
+<hkern g1="h" g2="parenright" k="49" />
+<hkern g1="h" g2="asterisk" k="37" />
+<hkern g1="h" g2="hyphen" k="18" />
+<hkern g1="h" g2="slash" k="47" />
+<hkern g1="h" g2="seven" k="100" />
+<hkern g1="h" g2="question" k="43" />
+<hkern g1="h" g2="B" k="12" />
+<hkern g1="h" g2="C" k="27" />
+<hkern g1="h" g2="D" k="12" />
+<hkern g1="h" g2="E" k="12" />
+<hkern g1="h" g2="F" k="12" />
+<hkern g1="h" g2="G" k="27" />
+<hkern g1="h" g2="H" k="12" />
+<hkern g1="h" g2="I" k="12" />
+<hkern g1="h" g2="K" k="12" />
+<hkern g1="h" g2="L" k="12" />
+<hkern g1="h" g2="M" k="12" />
+<hkern g1="h" g2="N" k="12" />
+<hkern g1="h" g2="O" k="27" />
+<hkern g1="h" g2="P" k="12" />
+<hkern g1="h" g2="Q" k="27" />
+<hkern g1="h" g2="R" k="12" />
+<hkern g1="h" g2="S" k="10" />
+<hkern g1="h" g2="T" k="88" />
+<hkern g1="h" g2="U" k="68" />
+<hkern g1="h" g2="V" k="141" />
+<hkern g1="h" g2="W" k="127" />
+<hkern g1="h" g2="Y" k="162" />
+<hkern g1="h" g2="backslash" k="123" />
+<hkern g1="h" g2="bracketright" k="121" />
+<hkern g1="h" g2="j" k="10" />
+<hkern g1="h" g2="t" k="12" />
+<hkern g1="h" g2="u" k="10" />
+<hkern g1="h" g2="v" k="31" />
+<hkern g1="h" g2="w" k="29" />
+<hkern g1="h" g2="y" k="33" />
+<hkern g1="h" g2="braceright" k="57" />
+<hkern g1="h" g2="uni00AD" k="18" />
+<hkern g1="h" g2="Ccedilla" k="27" />
+<hkern g1="h" g2="Egrave" k="12" />
+<hkern g1="h" g2="Eacute" k="12" />
+<hkern g1="h" g2="Ecircumflex" k="12" />
+<hkern g1="h" g2="Edieresis" k="12" />
+<hkern g1="h" g2="Igrave" k="12" />
+<hkern g1="h" g2="Iacute" k="12" />
+<hkern g1="h" g2="Icircumflex" k="12" />
+<hkern g1="h" g2="Idieresis" k="12" />
+<hkern g1="h" g2="Eth" k="12" />
+<hkern g1="h" g2="Ntilde" k="12" />
+<hkern g1="h" g2="Ograve" k="27" />
+<hkern g1="h" g2="Oacute" k="27" />
+<hkern g1="h" g2="Ocircumflex" k="27" />
+<hkern g1="h" g2="Otilde" k="27" />
+<hkern g1="h" g2="Odieresis" k="27" />
+<hkern g1="h" g2="Oslash" k="27" />
+<hkern g1="h" g2="Ugrave" k="68" />
+<hkern g1="h" g2="Uacute" k="68" />
+<hkern g1="h" g2="Ucircumflex" k="68" />
+<hkern g1="h" g2="Udieresis" k="68" />
+<hkern g1="h" g2="Yacute" k="162" />
+<hkern g1="h" g2="Thorn" k="12" />
+<hkern g1="h" g2="ugrave" k="10" />
+<hkern g1="h" g2="uacute" k="10" />
+<hkern g1="h" g2="ucircumflex" k="10" />
+<hkern g1="h" g2="udieresis" k="10" />
+<hkern g1="h" g2="yacute" k="33" />
+<hkern g1="h" g2="ydieresis" k="33" />
+<hkern g1="h" g2="OE" k="27" />
+<hkern g1="h" g2="endash" k="18" />
+<hkern g1="h" g2="emdash" k="18" />
+<hkern g1="h" g2="quoteleft" k="43" />
+<hkern g1="h" g2="quoteright" k="49" />
+<hkern g1="h" g2="quotedblleft" k="43" />
+<hkern g1="h" g2="quotedblright" k="49" />
+<hkern g1="i" g2="asterisk" k="16" />
+<hkern g1="i" g2="hyphen" k="18" />
+<hkern g1="i" g2="slash" k="49" />
+<hkern g1="i" g2="B" k="16" />
+<hkern g1="i" g2="C" k="25" />
+<hkern g1="i" g2="D" k="16" />
+<hkern g1="i" g2="E" k="16" />
+<hkern g1="i" g2="F" k="16" />
+<hkern g1="i" g2="G" k="25" />
+<hkern g1="i" g2="H" k="16" />
+<hkern g1="i" g2="I" k="16" />
+<hkern g1="i" g2="K" k="16" />
+<hkern g1="i" g2="L" k="16" />
+<hkern g1="i" g2="M" k="14" />
+<hkern g1="i" g2="N" k="16" />
+<hkern g1="i" g2="O" k="25" />
+<hkern g1="i" g2="P" k="16" />
+<hkern g1="i" g2="Q" k="25" />
+<hkern g1="i" g2="R" k="16" />
+<hkern g1="i" g2="S" k="10" />
+<hkern g1="i" g2="T" k="18" />
+<hkern g1="i" g2="U" k="37" />
+<hkern g1="i" g2="V" k="33" />
+<hkern g1="i" g2="W" k="35" />
+<hkern g1="i" g2="Y" k="29" />
+<hkern g1="i" g2="v" k="14" />
+<hkern g1="i" g2="w" k="14" />
+<hkern g1="i" g2="y" k="16" />
+<hkern g1="i" g2="uni00AD" k="18" />
+<hkern g1="i" g2="Ccedilla" k="25" />
+<hkern g1="i" g2="Egrave" k="16" />
+<hkern g1="i" g2="Eacute" k="16" />
+<hkern g1="i" g2="Ecircumflex" k="16" />
+<hkern g1="i" g2="Edieresis" k="16" />
+<hkern g1="i" g2="Igrave" k="16" />
+<hkern g1="i" g2="Iacute" k="16" />
+<hkern g1="i" g2="Icircumflex" k="16" />
+<hkern g1="i" g2="Idieresis" k="16" />
+<hkern g1="i" g2="Eth" k="16" />
+<hkern g1="i" g2="Ntilde" k="16" />
+<hkern g1="i" g2="Ograve" k="25" />
+<hkern g1="i" g2="Oacute" k="25" />
+<hkern g1="i" g2="Ocircumflex" k="25" />
+<hkern g1="i" g2="Otilde" k="25" />
+<hkern g1="i" g2="Odieresis" k="25" />
+<hkern g1="i" g2="Oslash" k="25" />
+<hkern g1="i" g2="Ugrave" k="37" />
+<hkern g1="i" g2="Uacute" k="37" />
+<hkern g1="i" g2="Ucircumflex" k="37" />
+<hkern g1="i" g2="Udieresis" k="37" />
+<hkern g1="i" g2="Yacute" k="29" />
+<hkern g1="i" g2="Thorn" k="16" />
+<hkern g1="i" g2="yacute" k="16" />
+<hkern g1="i" g2="ydieresis" k="16" />
+<hkern g1="i" g2="OE" k="25" />
+<hkern g1="i" g2="endash" k="18" />
+<hkern g1="i" g2="emdash" k="18" />
+<hkern g1="j" g2="A" k="14" />
+<hkern g1="j" g2="B" k="23" />
+<hkern g1="j" g2="C" k="10" />
+<hkern g1="j" g2="D" k="23" />
+<hkern g1="j" g2="E" k="23" />
+<hkern g1="j" g2="F" k="23" />
+<hkern g1="j" g2="G" k="10" />
+<hkern g1="j" g2="H" k="23" />
+<hkern g1="j" g2="I" k="23" />
+<hkern g1="j" g2="K" k="23" />
+<hkern g1="j" g2="L" k="23" />
+<hkern g1="j" g2="M" k="23" />
+<hkern g1="j" g2="N" k="23" />
+<hkern g1="j" g2="O" k="10" />
+<hkern g1="j" g2="P" k="23" />
+<hkern g1="j" g2="Q" k="10" />
+<hkern g1="j" g2="R" k="23" />
+<hkern g1="j" g2="S" k="12" />
+<hkern g1="j" g2="U" k="16" />
+<hkern g1="j" g2="V" k="16" />
+<hkern g1="j" g2="W" k="18" />
+<hkern g1="j" g2="Y" k="18" />
+<hkern g1="j" g2="j" k="-57" />
+<hkern g1="j" g2="Agrave" k="14" />
+<hkern g1="j" g2="Aacute" k="14" />
+<hkern g1="j" g2="Acircumflex" k="14" />
+<hkern g1="j" g2="Atilde" k="14" />
+<hkern g1="j" g2="Adieresis" k="14" />
+<hkern g1="j" g2="Aring" k="14" />
+<hkern g1="j" g2="Ccedilla" k="10" />
+<hkern g1="j" g2="Egrave" k="23" />
+<hkern g1="j" g2="Eacute" k="23" />
+<hkern g1="j" g2="Ecircumflex" k="23" />
+<hkern g1="j" g2="Edieresis" k="23" />
+<hkern g1="j" g2="Igrave" k="23" />
+<hkern g1="j" g2="Iacute" k="23" />
+<hkern g1="j" g2="Icircumflex" k="23" />
+<hkern g1="j" g2="Idieresis" k="23" />
+<hkern g1="j" g2="Eth" k="23" />
+<hkern g1="j" g2="Ntilde" k="23" />
+<hkern g1="j" g2="Ograve" k="10" />
+<hkern g1="j" g2="Oacute" k="10" />
+<hkern g1="j" g2="Ocircumflex" k="10" />
+<hkern g1="j" g2="Otilde" k="10" />
+<hkern g1="j" g2="Odieresis" k="10" />
+<hkern g1="j" g2="Oslash" k="10" />
+<hkern g1="j" g2="Ugrave" k="16" />
+<hkern g1="j" g2="Uacute" k="16" />
+<hkern g1="j" g2="Ucircumflex" k="16" />
+<hkern g1="j" g2="Udieresis" k="16" />
+<hkern g1="j" g2="Yacute" k="18" />
+<hkern g1="j" g2="Thorn" k="23" />
+<hkern g1="j" g2="OE" k="10" />
+<hkern g1="k" g2="parenright" k="31" />
+<hkern g1="k" g2="hyphen" k="55" />
+<hkern g1="k" g2="slash" k="41" />
+<hkern g1="k" g2="C" k="53" />
+<hkern g1="k" g2="G" k="53" />
+<hkern g1="k" g2="O" k="53" />
+<hkern g1="k" g2="Q" k="53" />
+<hkern g1="k" g2="U" k="59" />
+<hkern g1="k" g2="V" k="90" />
+<hkern g1="k" g2="W" k="90" />
+<hkern g1="k" g2="Y" k="109" />
+<hkern g1="k" g2="backslash" k="45" />
+<hkern g1="k" g2="bracketright" k="102" />
+<hkern g1="k" g2="c" k="51" />
+<hkern g1="k" g2="d" k="45" />
+<hkern g1="k" g2="e" k="51" />
+<hkern g1="k" g2="g" k="20" />
+<hkern g1="k" g2="o" k="51" />
+<hkern g1="k" g2="q" k="45" />
+<hkern g1="k" g2="braceright" k="39" />
+<hkern g1="k" g2="guillemotleft" k="43" />
+<hkern g1="k" g2="uni00AD" k="55" />
+<hkern g1="k" g2="Ccedilla" k="53" />
+<hkern g1="k" g2="Ograve" k="53" />
+<hkern g1="k" g2="Oacute" k="53" />
+<hkern g1="k" g2="Ocircumflex" k="53" />
+<hkern g1="k" g2="Otilde" k="53" />
+<hkern g1="k" g2="Odieresis" k="53" />
+<hkern g1="k" g2="Oslash" k="53" />
+<hkern g1="k" g2="Ugrave" k="59" />
+<hkern g1="k" g2="Uacute" k="59" />
+<hkern g1="k" g2="Ucircumflex" k="59" />
+<hkern g1="k" g2="Udieresis" k="59" />
+<hkern g1="k" g2="Yacute" k="109" />
+<hkern g1="k" g2="ccedilla" k="51" />
+<hkern g1="k" g2="egrave" k="51" />
+<hkern g1="k" g2="eacute" k="51" />
+<hkern g1="k" g2="ecircumflex" k="51" />
+<hkern g1="k" g2="edieresis" k="51" />
+<hkern g1="k" g2="eth" k="49" />
+<hkern g1="k" g2="ograve" k="51" />
+<hkern g1="k" g2="oacute" k="51" />
+<hkern g1="k" g2="ocircumflex" k="51" />
+<hkern g1="k" g2="otilde" k="51" />
+<hkern g1="k" g2="odieresis" k="51" />
+<hkern g1="k" g2="oslash" k="51" />
+<hkern g1="k" g2="OE" k="53" />
+<hkern g1="k" g2="oe" k="51" />
+<hkern g1="k" g2="endash" k="55" />
+<hkern g1="k" g2="emdash" k="55" />
+<hkern g1="k" g2="guilsinglleft" k="43" />
+<hkern g1="l" g2="hyphen" k="18" />
+<hkern g1="l" g2="slash" k="49" />
+<hkern g1="l" g2="B" k="16" />
+<hkern g1="l" g2="C" k="27" />
+<hkern g1="l" g2="D" k="16" />
+<hkern g1="l" g2="E" k="16" />
+<hkern g1="l" g2="F" k="16" />
+<hkern g1="l" g2="G" k="27" />
+<hkern g1="l" g2="H" k="16" />
+<hkern g1="l" g2="I" k="16" />
+<hkern g1="l" g2="K" k="16" />
+<hkern g1="l" g2="L" k="16" />
+<hkern g1="l" g2="M" k="14" />
+<hkern g1="l" g2="N" k="16" />
+<hkern g1="l" g2="O" k="27" />
+<hkern g1="l" g2="P" k="16" />
+<hkern g1="l" g2="Q" k="27" />
+<hkern g1="l" g2="R" k="16" />
+<hkern g1="l" g2="S" k="10" />
+<hkern g1="l" g2="T" k="18" />
+<hkern g1="l" g2="U" k="39" />
+<hkern g1="l" g2="V" k="37" />
+<hkern g1="l" g2="W" k="41" />
+<hkern g1="l" g2="Y" k="33" />
+<hkern g1="l" g2="bracketright" k="23" />
+<hkern g1="l" g2="v" k="16" />
+<hkern g1="l" g2="w" k="16" />
+<hkern g1="l" g2="y" k="16" />
+<hkern g1="l" g2="uni00AD" k="18" />
+<hkern g1="l" g2="middot" k="127" />
+<hkern g1="l" g2="Ccedilla" k="27" />
+<hkern g1="l" g2="Egrave" k="16" />
+<hkern g1="l" g2="Eacute" k="16" />
+<hkern g1="l" g2="Ecircumflex" k="16" />
+<hkern g1="l" g2="Edieresis" k="16" />
+<hkern g1="l" g2="Igrave" k="16" />
+<hkern g1="l" g2="Iacute" k="16" />
+<hkern g1="l" g2="Icircumflex" k="16" />
+<hkern g1="l" g2="Idieresis" k="16" />
+<hkern g1="l" g2="Eth" k="16" />
+<hkern g1="l" g2="Ntilde" k="16" />
+<hkern g1="l" g2="Ograve" k="27" />
+<hkern g1="l" g2="Oacute" k="27" />
+<hkern g1="l" g2="Ocircumflex" k="27" />
+<hkern g1="l" g2="Otilde" k="27" />
+<hkern g1="l" g2="Odieresis" k="27" />
+<hkern g1="l" g2="Oslash" k="27" />
+<hkern g1="l" g2="Ugrave" k="39" />
+<hkern g1="l" g2="Uacute" k="39" />
+<hkern g1="l" g2="Ucircumflex" k="39" />
+<hkern g1="l" g2="Udieresis" k="39" />
+<hkern g1="l" g2="Yacute" k="33" />
+<hkern g1="l" g2="Thorn" k="16" />
+<hkern g1="l" g2="yacute" k="16" />
+<hkern g1="l" g2="ydieresis" k="16" />
+<hkern g1="l" g2="OE" k="27" />
+<hkern g1="l" g2="endash" k="18" />
+<hkern g1="l" g2="emdash" k="18" />
+<hkern g1="m" g2="quotedbl" k="49" />
+<hkern g1="m" g2="quotesingle" k="49" />
+<hkern g1="m" g2="parenright" k="49" />
+<hkern g1="m" g2="asterisk" k="37" />
+<hkern g1="m" g2="hyphen" k="18" />
+<hkern g1="m" g2="slash" k="47" />
+<hkern g1="m" g2="question" k="43" />
+<hkern g1="m" g2="B" k="12" />
+<hkern g1="m" g2="C" k="27" />
+<hkern g1="m" g2="D" k="12" />
+<hkern g1="m" g2="E" k="12" />
+<hkern g1="m" g2="F" k="12" />
+<hkern g1="m" g2="G" k="27" />
+<hkern g1="m" g2="H" k="12" />
+<hkern g1="m" g2="I" k="12" />
+<hkern g1="m" g2="K" k="12" />
+<hkern g1="m" g2="L" k="12" />
+<hkern g1="m" g2="M" k="12" />
+<hkern g1="m" g2="N" k="12" />
+<hkern g1="m" g2="O" k="27" />
+<hkern g1="m" g2="P" k="12" />
+<hkern g1="m" g2="Q" k="27" />
+<hkern g1="m" g2="R" k="12" />
+<hkern g1="m" g2="S" k="10" />
+<hkern g1="m" g2="T" k="88" />
+<hkern g1="m" g2="U" k="68" />
+<hkern g1="m" g2="V" k="141" />
+<hkern g1="m" g2="W" k="127" />
+<hkern g1="m" g2="Y" k="162" />
+<hkern g1="m" g2="backslash" k="123" />
+<hkern g1="m" g2="bracketright" k="121" />
+<hkern g1="m" g2="j" k="10" />
+<hkern g1="m" g2="t" k="12" />
+<hkern g1="m" g2="u" k="10" />
+<hkern g1="m" g2="v" k="31" />
+<hkern g1="m" g2="w" k="29" />
+<hkern g1="m" g2="y" k="33" />
+<hkern g1="m" g2="braceright" k="57" />
+<hkern g1="m" g2="uni00AD" k="18" />
+<hkern g1="m" g2="Ccedilla" k="27" />
+<hkern g1="m" g2="Egrave" k="12" />
+<hkern g1="m" g2="Eacute" k="12" />
+<hkern g1="m" g2="Ecircumflex" k="12" />
+<hkern g1="m" g2="Edieresis" k="12" />
+<hkern g1="m" g2="Igrave" k="12" />
+<hkern g1="m" g2="Iacute" k="12" />
+<hkern g1="m" g2="Icircumflex" k="12" />
+<hkern g1="m" g2="Idieresis" k="12" />
+<hkern g1="m" g2="Eth" k="12" />
+<hkern g1="m" g2="Ntilde" k="12" />
+<hkern g1="m" g2="Ograve" k="27" />
+<hkern g1="m" g2="Oacute" k="27" />
+<hkern g1="m" g2="Ocircumflex" k="27" />
+<hkern g1="m" g2="Otilde" k="27" />
+<hkern g1="m" g2="Odieresis" k="27" />
+<hkern g1="m" g2="Oslash" k="27" />
+<hkern g1="m" g2="Ugrave" k="68" />
+<hkern g1="m" g2="Uacute" k="68" />
+<hkern g1="m" g2="Ucircumflex" k="68" />
+<hkern g1="m" g2="Udieresis" k="68" />
+<hkern g1="m" g2="Yacute" k="162" />
+<hkern g1="m" g2="Thorn" k="12" />
+<hkern g1="m" g2="ugrave" k="10" />
+<hkern g1="m" g2="uacute" k="10" />
+<hkern g1="m" g2="ucircumflex" k="10" />
+<hkern g1="m" g2="udieresis" k="10" />
+<hkern g1="m" g2="yacute" k="33" />
+<hkern g1="m" g2="ydieresis" k="33" />
+<hkern g1="m" g2="OE" k="27" />
+<hkern g1="m" g2="endash" k="18" />
+<hkern g1="m" g2="emdash" k="18" />
+<hkern g1="m" g2="quoteleft" k="43" />
+<hkern g1="m" g2="quoteright" k="49" />
+<hkern g1="m" g2="quotedblleft" k="43" />
+<hkern g1="m" g2="quotedblright" k="49" />
+<hkern g1="n" g2="quotedbl" k="49" />
+<hkern g1="n" g2="quotesingle" k="49" />
+<hkern g1="n" g2="parenright" k="49" />
+<hkern g1="n" g2="asterisk" k="37" />
+<hkern g1="n" g2="hyphen" k="18" />
+<hkern g1="n" g2="slash" k="47" />
+<hkern g1="n" g2="question" k="43" />
+<hkern g1="n" g2="B" k="12" />
+<hkern g1="n" g2="C" k="27" />
+<hkern g1="n" g2="D" k="12" />
+<hkern g1="n" g2="E" k="12" />
+<hkern g1="n" g2="F" k="12" />
+<hkern g1="n" g2="G" k="27" />
+<hkern g1="n" g2="H" k="12" />
+<hkern g1="n" g2="I" k="12" />
+<hkern g1="n" g2="K" k="12" />
+<hkern g1="n" g2="L" k="12" />
+<hkern g1="n" g2="M" k="12" />
+<hkern g1="n" g2="N" k="12" />
+<hkern g1="n" g2="O" k="27" />
+<hkern g1="n" g2="P" k="12" />
+<hkern g1="n" g2="Q" k="27" />
+<hkern g1="n" g2="R" k="12" />
+<hkern g1="n" g2="S" k="10" />
+<hkern g1="n" g2="T" k="88" />
+<hkern g1="n" g2="U" k="68" />
+<hkern g1="n" g2="V" k="141" />
+<hkern g1="n" g2="W" k="127" />
+<hkern g1="n" g2="Y" k="162" />
+<hkern g1="n" g2="backslash" k="123" />
+<hkern g1="n" g2="bracketright" k="121" />
+<hkern g1="n" g2="j" k="10" />
+<hkern g1="n" g2="t" k="12" />
+<hkern g1="n" g2="u" k="10" />
+<hkern g1="n" g2="v" k="31" />
+<hkern g1="n" g2="w" k="29" />
+<hkern g1="n" g2="y" k="33" />
+<hkern g1="n" g2="braceright" k="57" />
+<hkern g1="n" g2="uni00AD" k="18" />
+<hkern g1="n" g2="Ccedilla" k="27" />
+<hkern g1="n" g2="Egrave" k="12" />
+<hkern g1="n" g2="Eacute" k="12" />
+<hkern g1="n" g2="Ecircumflex" k="12" />
+<hkern g1="n" g2="Edieresis" k="12" />
+<hkern g1="n" g2="Igrave" k="12" />
+<hkern g1="n" g2="Iacute" k="12" />
+<hkern g1="n" g2="Icircumflex" k="12" />
+<hkern g1="n" g2="Idieresis" k="12" />
+<hkern g1="n" g2="Eth" k="12" />
+<hkern g1="n" g2="Ntilde" k="12" />
+<hkern g1="n" g2="Ograve" k="27" />
+<hkern g1="n" g2="Oacute" k="27" />
+<hkern g1="n" g2="Ocircumflex" k="27" />
+<hkern g1="n" g2="Otilde" k="27" />
+<hkern g1="n" g2="Odieresis" k="27" />
+<hkern g1="n" g2="Oslash" k="27" />
+<hkern g1="n" g2="Ugrave" k="68" />
+<hkern g1="n" g2="Uacute" k="68" />
+<hkern g1="n" g2="Ucircumflex" k="68" />
+<hkern g1="n" g2="Udieresis" k="68" />
+<hkern g1="n" g2="Yacute" k="162" />
+<hkern g1="n" g2="Thorn" k="12" />
+<hkern g1="n" g2="ugrave" k="10" />
+<hkern g1="n" g2="uacute" k="10" />
+<hkern g1="n" g2="ucircumflex" k="10" />
+<hkern g1="n" g2="udieresis" k="10" />
+<hkern g1="n" g2="yacute" k="33" />
+<hkern g1="n" g2="ydieresis" k="33" />
+<hkern g1="n" g2="OE" k="27" />
+<hkern g1="n" g2="endash" k="18" />
+<hkern g1="n" g2="emdash" k="18" />
+<hkern g1="n" g2="quoteleft" k="43" />
+<hkern g1="n" g2="quoteright" k="49" />
+<hkern g1="n" g2="quotedblleft" k="43" />
+<hkern g1="n" g2="quotedblright" k="49" />
+<hkern g1="o" g2="quotedbl" k="51" />
+<hkern g1="o" g2="quotesingle" k="51" />
+<hkern g1="o" g2="parenright" k="68" />
+<hkern g1="o" g2="asterisk" k="16" />
+<hkern g1="o" g2="slash" k="117" />
+<hkern g1="o" g2="question" k="41" />
+<hkern g1="o" g2="A" k="31" />
+<hkern g1="o" g2="B" k="51" />
+<hkern g1="o" g2="D" k="51" />
+<hkern g1="o" g2="E" k="51" />
+<hkern g1="o" g2="F" k="51" />
+<hkern g1="o" g2="H" k="51" />
+<hkern g1="o" g2="I" k="51" />
+<hkern g1="o" g2="K" k="51" />
+<hkern g1="o" g2="L" k="51" />
+<hkern g1="o" g2="M" k="51" />
+<hkern g1="o" g2="N" k="51" />
+<hkern g1="o" g2="P" k="51" />
+<hkern g1="o" g2="R" k="51" />
+<hkern g1="o" g2="S" k="16" />
+<hkern g1="o" g2="T" k="94" />
+<hkern g1="o" g2="U" k="59" />
+<hkern g1="o" g2="V" k="162" />
+<hkern g1="o" g2="W" k="137" />
+<hkern g1="o" g2="X" k="92" />
+<hkern g1="o" g2="Y" k="168" />
+<hkern g1="o" g2="Z" k="37" />
+<hkern g1="o" g2="backslash" k="106" />
+<hkern g1="o" g2="bracketright" k="127" />
+<hkern g1="o" g2="v" k="12" />
+<hkern g1="o" g2="w" k="14" />
+<hkern g1="o" g2="x" k="16" />
+<hkern g1="o" g2="y" k="12" />
+<hkern g1="o" g2="braceright" k="74" />
+<hkern g1="o" g2="Agrave" k="31" />
+<hkern g1="o" g2="Aacute" k="31" />
+<hkern g1="o" g2="Acircumflex" k="31" />
+<hkern g1="o" g2="Atilde" k="31" />
+<hkern g1="o" g2="Adieresis" k="31" />
+<hkern g1="o" g2="Aring" k="31" />
+<hkern g1="o" g2="Egrave" k="51" />
+<hkern g1="o" g2="Eacute" k="51" />
+<hkern g1="o" g2="Ecircumflex" k="51" />
+<hkern g1="o" g2="Edieresis" k="51" />
+<hkern g1="o" g2="Igrave" k="51" />
+<hkern g1="o" g2="Iacute" k="51" />
+<hkern g1="o" g2="Icircumflex" k="51" />
+<hkern g1="o" g2="Idieresis" k="51" />
+<hkern g1="o" g2="Eth" k="51" />
+<hkern g1="o" g2="Ntilde" k="51" />
+<hkern g1="o" g2="Ugrave" k="59" />
+<hkern g1="o" g2="Uacute" k="59" />
+<hkern g1="o" g2="Ucircumflex" k="59" />
+<hkern g1="o" g2="Udieresis" k="59" />
+<hkern g1="o" g2="Yacute" k="168" />
+<hkern g1="o" g2="Thorn" k="51" />
+<hkern g1="o" g2="yacute" k="12" />
+<hkern g1="o" g2="ydieresis" k="12" />
+<hkern g1="o" g2="quoteleft" k="37" />
+<hkern g1="o" g2="quoteright" k="43" />
+<hkern g1="o" g2="quotedblleft" k="37" />
+<hkern g1="o" g2="quotedblright" k="43" />
+<hkern g1="p" g2="quotedbl" k="39" />
+<hkern g1="p" g2="quotesingle" k="39" />
+<hkern g1="p" g2="parenright" k="68" />
+<hkern g1="p" g2="slash" k="115" />
+<hkern g1="p" g2="question" k="37" />
+<hkern g1="p" g2="A" k="33" />
+<hkern g1="p" g2="B" k="49" />
+<hkern g1="p" g2="D" k="49" />
+<hkern g1="p" g2="E" k="49" />
+<hkern g1="p" g2="F" k="49" />
+<hkern g1="p" g2="H" k="49" />
+<hkern g1="p" g2="I" k="49" />
+<hkern g1="p" g2="K" k="49" />
+<hkern g1="p" g2="L" k="49" />
+<hkern g1="p" g2="M" k="49" />
+<hkern g1="p" g2="N" k="49" />
+<hkern g1="p" g2="P" k="49" />
+<hkern g1="p" g2="R" k="49" />
+<hkern g1="p" g2="S" k="16" />
+<hkern g1="p" g2="T" k="92" />
+<hkern g1="p" g2="U" k="57" />
+<hkern g1="p" g2="V" k="158" />
+<hkern g1="p" g2="W" k="133" />
+<hkern g1="p" g2="X" k="90" />
+<hkern g1="p" g2="Y" k="164" />
+<hkern g1="p" g2="Z" k="37" />
+<hkern g1="p" g2="backslash" k="100" />
+<hkern g1="p" g2="bracketright" k="125" />
+<hkern g1="p" g2="x" k="12" />
+<hkern g1="p" g2="braceright" k="74" />
+<hkern g1="p" g2="Agrave" k="33" />
+<hkern g1="p" g2="Aacute" k="33" />
+<hkern g1="p" g2="Acircumflex" k="33" />
+<hkern g1="p" g2="Atilde" k="33" />
+<hkern g1="p" g2="Adieresis" k="33" />
+<hkern g1="p" g2="Aring" k="33" />
+<hkern g1="p" g2="Egrave" k="49" />
+<hkern g1="p" g2="Eacute" k="49" />
+<hkern g1="p" g2="Ecircumflex" k="49" />
+<hkern g1="p" g2="Edieresis" k="49" />
+<hkern g1="p" g2="Igrave" k="49" />
+<hkern g1="p" g2="Iacute" k="49" />
+<hkern g1="p" g2="Icircumflex" k="49" />
+<hkern g1="p" g2="Idieresis" k="49" />
+<hkern g1="p" g2="Eth" k="49" />
+<hkern g1="p" g2="Ntilde" k="49" />
+<hkern g1="p" g2="Ugrave" k="57" />
+<hkern g1="p" g2="Uacute" k="57" />
+<hkern g1="p" g2="Ucircumflex" k="57" />
+<hkern g1="p" g2="Udieresis" k="57" />
+<hkern g1="p" g2="Yacute" k="164" />
+<hkern g1="p" g2="Thorn" k="49" />
+<hkern g1="p" g2="quoteleft" k="29" />
+<hkern g1="p" g2="quoteright" k="35" />
+<hkern g1="p" g2="quotedblleft" k="29" />
+<hkern g1="p" g2="quotedblright" k="35" />
+<hkern g1="q" g2="parenright" k="-59" />
+<hkern g1="q" g2="slash" k="-57" />
+<hkern g1="q" g2="A" k="14" />
+<hkern g1="q" g2="B" k="35" />
+<hkern g1="q" g2="C" k="10" />
+<hkern g1="q" g2="D" k="35" />
+<hkern g1="q" g2="E" k="35" />
+<hkern g1="q" g2="F" k="35" />
+<hkern g1="q" g2="G" k="10" />
+<hkern g1="q" g2="H" k="35" />
+<hkern g1="q" g2="I" k="35" />
+<hkern g1="q" g2="K" k="35" />
+<hkern g1="q" g2="L" k="35" />
+<hkern g1="q" g2="M" k="35" />
+<hkern g1="q" g2="N" k="35" />
+<hkern g1="q" g2="O" k="10" />
+<hkern g1="q" g2="P" k="35" />
+<hkern g1="q" g2="Q" k="10" />
+<hkern g1="q" g2="R" k="35" />
+<hkern g1="q" g2="S" k="12" />
+<hkern g1="q" g2="T" k="20" />
+<hkern g1="q" g2="U" k="45" />
+<hkern g1="q" g2="V" k="123" />
+<hkern g1="q" g2="W" k="115" />
+<hkern g1="q" g2="X" k="37" />
+<hkern g1="q" g2="Y" k="125" />
+<hkern g1="q" g2="Z" k="16" />
+<hkern g1="q" g2="backslash" k="68" />
+<hkern g1="q" g2="bracketright" k="-78" />
+<hkern g1="q" g2="j" k="-260" />
+<hkern g1="q" g2="braceright" k="-70" />
+<hkern g1="q" g2="Agrave" k="14" />
+<hkern g1="q" g2="Aacute" k="14" />
+<hkern g1="q" g2="Acircumflex" k="14" />
+<hkern g1="q" g2="Atilde" k="14" />
+<hkern g1="q" g2="Adieresis" k="14" />
+<hkern g1="q" g2="Aring" k="14" />
+<hkern g1="q" g2="Ccedilla" k="10" />
+<hkern g1="q" g2="Egrave" k="35" />
+<hkern g1="q" g2="Eacute" k="35" />
+<hkern g1="q" g2="Ecircumflex" k="35" />
+<hkern g1="q" g2="Edieresis" k="35" />
+<hkern g1="q" g2="Igrave" k="35" />
+<hkern g1="q" g2="Iacute" k="35" />
+<hkern g1="q" g2="Icircumflex" k="35" />
+<hkern g1="q" g2="Idieresis" k="35" />
+<hkern g1="q" g2="Eth" k="35" />
+<hkern g1="q" g2="Ntilde" k="35" />
+<hkern g1="q" g2="Ograve" k="10" />
+<hkern g1="q" g2="Oacute" k="10" />
+<hkern g1="q" g2="Ocircumflex" k="10" />
+<hkern g1="q" g2="Otilde" k="10" />
+<hkern g1="q" g2="Odieresis" k="10" />
+<hkern g1="q" g2="Oslash" k="10" />
+<hkern g1="q" g2="Ugrave" k="45" />
+<hkern g1="q" g2="Uacute" k="45" />
+<hkern g1="q" g2="Ucircumflex" k="45" />
+<hkern g1="q" g2="Udieresis" k="45" />
+<hkern g1="q" g2="Yacute" k="125" />
+<hkern g1="q" g2="Thorn" k="35" />
+<hkern g1="q" g2="OE" k="10" />
+<hkern g1="r" g2="ampersand" k="39" />
+<hkern g1="r" g2="parenright" k="55" />
+<hkern g1="r" g2="comma" k="92" />
+<hkern g1="r" g2="period" k="92" />
+<hkern g1="r" g2="slash" k="166" />
+<hkern g1="r" g2="A" k="113" />
+<hkern g1="r" g2="B" k="76" />
+<hkern g1="r" g2="D" k="76" />
+<hkern g1="r" g2="E" k="76" />
+<hkern g1="r" g2="F" k="76" />
+<hkern g1="r" g2="H" k="76" />
+<hkern g1="r" g2="I" k="76" />
+<hkern g1="r" g2="J" k="135" />
+<hkern g1="r" g2="K" k="76" />
+<hkern g1="r" g2="L" k="76" />
+<hkern g1="r" g2="M" k="76" />
+<hkern g1="r" g2="N" k="76" />
+<hkern g1="r" g2="P" k="76" />
+<hkern g1="r" g2="R" k="76" />
+<hkern g1="r" g2="S" k="14" />
+<hkern g1="r" g2="U" k="45" />
+<hkern g1="r" g2="V" k="82" />
+<hkern g1="r" g2="W" k="80" />
+<hkern g1="r" g2="X" k="111" />
+<hkern g1="r" g2="Y" k="96" />
+<hkern g1="r" g2="Z" k="20" />
+<hkern g1="r" g2="backslash" k="45" />
+<hkern g1="r" g2="bracketright" k="129" />
+<hkern g1="r" g2="a" k="10" />
+<hkern g1="r" g2="c" k="16" />
+<hkern g1="r" g2="d" k="16" />
+<hkern g1="r" g2="e" k="16" />
+<hkern g1="r" g2="g" k="14" />
+<hkern g1="r" g2="h" k="18" />
+<hkern g1="r" g2="k" k="18" />
+<hkern g1="r" g2="l" k="18" />
+<hkern g1="r" g2="o" k="16" />
+<hkern g1="r" g2="q" k="16" />
+<hkern g1="r" g2="v" k="-23" />
+<hkern g1="r" g2="w" k="-16" />
+<hkern g1="r" g2="y" k="-27" />
+<hkern g1="r" g2="braceright" k="59" />
+<hkern g1="r" g2="guillemotleft" k="29" />
+<hkern g1="r" g2="Agrave" k="113" />
+<hkern g1="r" g2="Aacute" k="113" />
+<hkern g1="r" g2="Acircumflex" k="113" />
+<hkern g1="r" g2="Atilde" k="113" />
+<hkern g1="r" g2="Adieresis" k="113" />
+<hkern g1="r" g2="Aring" k="113" />
+<hkern g1="r" g2="Egrave" k="76" />
+<hkern g1="r" g2="Eacute" k="76" />
+<hkern g1="r" g2="Ecircumflex" k="76" />
+<hkern g1="r" g2="Edieresis" k="76" />
+<hkern g1="r" g2="Igrave" k="76" />
+<hkern g1="r" g2="Iacute" k="76" />
+<hkern g1="r" g2="Icircumflex" k="76" />
+<hkern g1="r" g2="Idieresis" k="76" />
+<hkern g1="r" g2="Eth" k="76" />
+<hkern g1="r" g2="Ntilde" k="76" />
+<hkern g1="r" g2="Ugrave" k="45" />
+<hkern g1="r" g2="Uacute" k="45" />
+<hkern g1="r" g2="Ucircumflex" k="45" />
+<hkern g1="r" g2="Udieresis" k="45" />
+<hkern g1="r" g2="Yacute" k="96" />
+<hkern g1="r" g2="Thorn" k="76" />
+<hkern g1="r" g2="agrave" k="10" />
+<hkern g1="r" g2="aacute" k="10" />
+<hkern g1="r" g2="acircumflex" k="10" />
+<hkern g1="r" g2="atilde" k="10" />
+<hkern g1="r" g2="adieresis" k="10" />
+<hkern g1="r" g2="aring" k="10" />
+<hkern g1="r" g2="ae" k="10" />
+<hkern g1="r" g2="ccedilla" k="16" />
+<hkern g1="r" g2="egrave" k="16" />
+<hkern g1="r" g2="eacute" k="16" />
+<hkern g1="r" g2="ecircumflex" k="16" />
+<hkern g1="r" g2="edieresis" k="16" />
+<hkern g1="r" g2="eth" k="20" />
+<hkern g1="r" g2="ograve" k="16" />
+<hkern g1="r" g2="oacute" k="16" />
+<hkern g1="r" g2="ocircumflex" k="16" />
+<hkern g1="r" g2="otilde" k="16" />
+<hkern g1="r" g2="odieresis" k="16" />
+<hkern g1="r" g2="oslash" k="16" />
+<hkern g1="r" g2="yacute" k="-27" />
+<hkern g1="r" g2="ydieresis" k="-27" />
+<hkern g1="r" g2="oe" k="16" />
+<hkern g1="r" g2="quotesinglbase" k="92" />
+<hkern g1="r" g2="quotedblbase" k="92" />
+<hkern g1="r" g2="guilsinglleft" k="29" />
+<hkern g1="s" g2="parenright" k="53" />
+<hkern g1="s" g2="slash" k="86" />
+<hkern g1="s" g2="A" k="10" />
+<hkern g1="s" g2="B" k="33" />
+<hkern g1="s" g2="C" k="10" />
+<hkern g1="s" g2="D" k="33" />
+<hkern g1="s" g2="E" k="33" />
+<hkern g1="s" g2="F" k="33" />
+<hkern g1="s" g2="G" k="10" />
+<hkern g1="s" g2="H" k="33" />
+<hkern g1="s" g2="I" k="33" />
+<hkern g1="s" g2="K" k="33" />
+<hkern g1="s" g2="L" k="33" />
+<hkern g1="s" g2="M" k="31" />
+<hkern g1="s" g2="N" k="33" />
+<hkern g1="s" g2="O" k="10" />
+<hkern g1="s" g2="P" k="33" />
+<hkern g1="s" g2="Q" k="10" />
+<hkern g1="s" g2="R" k="33" />
+<hkern g1="s" g2="T" k="20" />
+<hkern g1="s" g2="U" k="63" />
+<hkern g1="s" g2="V" k="104" />
+<hkern g1="s" g2="W" k="104" />
+<hkern g1="s" g2="X" k="41" />
+<hkern g1="s" g2="Y" k="127" />
+<hkern g1="s" g2="Z" k="10" />
+<hkern g1="s" g2="backslash" k="68" />
+<hkern g1="s" g2="bracketright" k="123" />
+<hkern g1="s" g2="braceright" k="59" />
+<hkern g1="s" g2="Agrave" k="10" />
+<hkern g1="s" g2="Aacute" k="10" />
+<hkern g1="s" g2="Acircumflex" k="10" />
+<hkern g1="s" g2="Atilde" k="10" />
+<hkern g1="s" g2="Adieresis" k="10" />
+<hkern g1="s" g2="Aring" k="10" />
+<hkern g1="s" g2="Ccedilla" k="10" />
+<hkern g1="s" g2="Egrave" k="33" />
+<hkern g1="s" g2="Eacute" k="33" />
+<hkern g1="s" g2="Ecircumflex" k="33" />
+<hkern g1="s" g2="Edieresis" k="33" />
+<hkern g1="s" g2="Igrave" k="33" />
+<hkern g1="s" g2="Iacute" k="33" />
+<hkern g1="s" g2="Icircumflex" k="33" />
+<hkern g1="s" g2="Idieresis" k="33" />
+<hkern g1="s" g2="Eth" k="33" />
+<hkern g1="s" g2="Ntilde" k="33" />
+<hkern g1="s" g2="Ograve" k="10" />
+<hkern g1="s" g2="Oacute" k="10" />
+<hkern g1="s" g2="Ocircumflex" k="10" />
+<hkern g1="s" g2="Otilde" k="10" />
+<hkern g1="s" g2="Odieresis" k="10" />
+<hkern g1="s" g2="Oslash" k="10" />
+<hkern g1="s" g2="Ugrave" k="63" />
+<hkern g1="s" g2="Uacute" k="63" />
+<hkern g1="s" g2="Ucircumflex" k="63" />
+<hkern g1="s" g2="Udieresis" k="63" />
+<hkern g1="s" g2="Yacute" k="127" />
+<hkern g1="s" g2="Thorn" k="33" />
+<hkern g1="s" g2="OE" k="10" />
+<hkern g1="t" g2="ampersand" k="-27" />
+<hkern g1="t" g2="parenright" k="41" />
+<hkern g1="t" g2="hyphen" k="16" />
+<hkern g1="t" g2="slash" k="59" />
+<hkern g1="t" g2="A" k="-23" />
+<hkern g1="t" g2="C" k="10" />
+<hkern g1="t" g2="G" k="10" />
+<hkern g1="t" g2="J" k="-63" />
+<hkern g1="t" g2="O" k="10" />
+<hkern g1="t" g2="Q" k="10" />
+<hkern g1="t" g2="T" k="29" />
+<hkern g1="t" g2="U" k="51" />
+<hkern g1="t" g2="V" k="102" />
+<hkern g1="t" g2="W" k="102" />
+<hkern g1="t" g2="X" k="10" />
+<hkern g1="t" g2="Y" k="139" />
+<hkern g1="t" g2="backslash" k="68" />
+<hkern g1="t" g2="bracketright" k="104" />
+<hkern g1="t" g2="braceright" k="43" />
+<hkern g1="t" g2="guillemotleft" k="29" />
+<hkern g1="t" g2="uni00AD" k="16" />
+<hkern g1="t" g2="guillemotright" k="-20" />
+<hkern g1="t" g2="Agrave" k="-23" />
+<hkern g1="t" g2="Aacute" k="-23" />
+<hkern g1="t" g2="Acircumflex" k="-23" />
+<hkern g1="t" g2="Atilde" k="-23" />
+<hkern g1="t" g2="Adieresis" k="-23" />
+<hkern g1="t" g2="Aring" k="-23" />
+<hkern g1="t" g2="Ccedilla" k="10" />
+<hkern g1="t" g2="Ograve" k="10" />
+<hkern g1="t" g2="Oacute" k="10" />
+<hkern g1="t" g2="Ocircumflex" k="10" />
+<hkern g1="t" g2="Otilde" k="10" />
+<hkern g1="t" g2="Odieresis" k="10" />
+<hkern g1="t" g2="Oslash" k="10" />
+<hkern g1="t" g2="Ugrave" k="51" />
+<hkern g1="t" g2="Uacute" k="51" />
+<hkern g1="t" g2="Ucircumflex" k="51" />
+<hkern g1="t" g2="Udieresis" k="51" />
+<hkern g1="t" g2="Yacute" k="139" />
+<hkern g1="t" g2="OE" k="10" />
+<hkern g1="t" g2="endash" k="16" />
+<hkern g1="t" g2="emdash" k="16" />
+<hkern g1="t" g2="quoteright" k="18" />
+<hkern g1="t" g2="quotedblright" k="18" />
+<hkern g1="t" g2="guilsinglleft" k="29" />
+<hkern g1="u" g2="parenright" k="47" />
+<hkern g1="u" g2="asterisk" k="16" />
+<hkern g1="u" g2="hyphen" k="18" />
+<hkern g1="u" g2="slash" k="51" />
+<hkern g1="u" g2="question" k="20" />
+<hkern g1="u" g2="B" k="16" />
+<hkern g1="u" g2="C" k="25" />
+<hkern g1="u" g2="D" k="16" />
+<hkern g1="u" g2="E" k="16" />
+<hkern g1="u" g2="F" k="16" />
+<hkern g1="u" g2="G" k="25" />
+<hkern g1="u" g2="H" k="16" />
+<hkern g1="u" g2="I" k="16" />
+<hkern g1="u" g2="K" k="16" />
+<hkern g1="u" g2="L" k="16" />
+<hkern g1="u" g2="M" k="14" />
+<hkern g1="u" g2="N" k="16" />
+<hkern g1="u" g2="O" k="25" />
+<hkern g1="u" g2="P" k="16" />
+<hkern g1="u" g2="Q" k="25" />
+<hkern g1="u" g2="R" k="16" />
+<hkern g1="u" g2="S" k="10" />
+<hkern g1="u" g2="T" k="45" />
+<hkern g1="u" g2="U" k="61" />
+<hkern g1="u" g2="V" k="119" />
+<hkern g1="u" g2="W" k="102" />
+<hkern g1="u" g2="Y" k="125" />
+<hkern g1="u" g2="backslash" k="86" />
+<hkern g1="u" g2="bracketright" k="121" />
+<hkern g1="u" g2="v" k="14" />
+<hkern g1="u" g2="w" k="14" />
+<hkern g1="u" g2="y" k="16" />
+<hkern g1="u" g2="braceright" k="55" />
+<hkern g1="u" g2="uni00AD" k="18" />
+<hkern g1="u" g2="Ccedilla" k="25" />
+<hkern g1="u" g2="Egrave" k="16" />
+<hkern g1="u" g2="Eacute" k="16" />
+<hkern g1="u" g2="Ecircumflex" k="16" />
+<hkern g1="u" g2="Edieresis" k="16" />
+<hkern g1="u" g2="Igrave" k="16" />
+<hkern g1="u" g2="Iacute" k="16" />
+<hkern g1="u" g2="Icircumflex" k="16" />
+<hkern g1="u" g2="Idieresis" k="16" />
+<hkern g1="u" g2="Eth" k="16" />
+<hkern g1="u" g2="Ntilde" k="16" />
+<hkern g1="u" g2="Ograve" k="25" />
+<hkern g1="u" g2="Oacute" k="25" />
+<hkern g1="u" g2="Ocircumflex" k="25" />
+<hkern g1="u" g2="Otilde" k="25" />
+<hkern g1="u" g2="Odieresis" k="25" />
+<hkern g1="u" g2="Oslash" k="25" />
+<hkern g1="u" g2="Ugrave" k="61" />
+<hkern g1="u" g2="Uacute" k="61" />
+<hkern g1="u" g2="Ucircumflex" k="61" />
+<hkern g1="u" g2="Udieresis" k="61" />
+<hkern g1="u" g2="Yacute" k="125" />
+<hkern g1="u" g2="Thorn" k="16" />
+<hkern g1="u" g2="yacute" k="16" />
+<hkern g1="u" g2="ydieresis" k="16" />
+<hkern g1="u" g2="OE" k="25" />
+<hkern g1="u" g2="endash" k="18" />
+<hkern g1="u" g2="emdash" k="18" />
+<hkern g1="u" g2="quoteright" k="27" />
+<hkern g1="u" g2="quotedblright" k="27" />
+<hkern g1="v" g2="ampersand" k="23" />
+<hkern g1="v" g2="parenright" k="49" />
+<hkern g1="v" g2="asterisk" k="-23" />
+<hkern g1="v" g2="comma" k="88" />
+<hkern g1="v" g2="hyphen" k="20" />
+<hkern g1="v" g2="period" k="88" />
+<hkern g1="v" g2="slash" k="174" />
+<hkern g1="v" g2="A" k="106" />
+<hkern g1="v" g2="B" k="63" />
+<hkern g1="v" g2="D" k="63" />
+<hkern g1="v" g2="E" k="63" />
+<hkern g1="v" g2="F" k="63" />
+<hkern g1="v" g2="H" k="63" />
+<hkern g1="v" g2="I" k="63" />
+<hkern g1="v" g2="J" k="102" />
+<hkern g1="v" g2="K" k="63" />
+<hkern g1="v" g2="L" k="63" />
+<hkern g1="v" g2="M" k="66" />
+<hkern g1="v" g2="N" k="63" />
+<hkern g1="v" g2="P" k="63" />
+<hkern g1="v" g2="R" k="63" />
+<hkern g1="v" g2="U" k="37" />
+<hkern g1="v" g2="V" k="55" />
+<hkern g1="v" g2="W" k="57" />
+<hkern g1="v" g2="X" k="78" />
+<hkern g1="v" g2="Y" k="63" />
+<hkern g1="v" g2="backslash" k="31" />
+<hkern g1="v" g2="bracketright" k="125" />
+<hkern g1="v" g2="c" k="25" />
+<hkern g1="v" g2="d" k="18" />
+<hkern g1="v" g2="e" k="25" />
+<hkern g1="v" g2="g" k="18" />
+<hkern g1="v" g2="h" k="16" />
+<hkern g1="v" g2="k" k="16" />
+<hkern g1="v" g2="l" k="16" />
+<hkern g1="v" g2="o" k="25" />
+<hkern g1="v" g2="q" k="18" />
+<hkern g1="v" g2="v" k="-41" />
+<hkern g1="v" g2="w" k="-31" />
+<hkern g1="v" g2="braceright" k="55" />
+<hkern g1="v" g2="guillemotleft" k="23" />
+<hkern g1="v" g2="uni00AD" k="20" />
+<hkern g1="v" g2="Agrave" k="106" />
+<hkern g1="v" g2="Aacute" k="106" />
+<hkern g1="v" g2="Acircumflex" k="106" />
+<hkern g1="v" g2="Atilde" k="106" />
+<hkern g1="v" g2="Adieresis" k="106" />
+<hkern g1="v" g2="Aring" k="106" />
+<hkern g1="v" g2="Egrave" k="63" />
+<hkern g1="v" g2="Eacute" k="63" />
+<hkern g1="v" g2="Ecircumflex" k="63" />
+<hkern g1="v" g2="Edieresis" k="63" />
+<hkern g1="v" g2="Igrave" k="63" />
+<hkern g1="v" g2="Iacute" k="63" />
+<hkern g1="v" g2="Icircumflex" k="63" />
+<hkern g1="v" g2="Idieresis" k="63" />
+<hkern g1="v" g2="Eth" k="63" />
+<hkern g1="v" g2="Ntilde" k="63" />
+<hkern g1="v" g2="Ugrave" k="37" />
+<hkern g1="v" g2="Uacute" k="37" />
+<hkern g1="v" g2="Ucircumflex" k="37" />
+<hkern g1="v" g2="Udieresis" k="37" />
+<hkern g1="v" g2="Yacute" k="63" />
+<hkern g1="v" g2="Thorn" k="63" />
+<hkern g1="v" g2="ccedilla" k="25" />
+<hkern g1="v" g2="egrave" k="25" />
+<hkern g1="v" g2="eacute" k="25" />
+<hkern g1="v" g2="ecircumflex" k="25" />
+<hkern g1="v" g2="edieresis" k="25" />
+<hkern g1="v" g2="eth" k="25" />
+<hkern g1="v" g2="ograve" k="25" />
+<hkern g1="v" g2="oacute" k="25" />
+<hkern g1="v" g2="ocircumflex" k="25" />
+<hkern g1="v" g2="otilde" k="25" />
+<hkern g1="v" g2="odieresis" k="25" />
+<hkern g1="v" g2="oslash" k="25" />
+<hkern g1="v" g2="oe" k="25" />
+<hkern g1="v" g2="endash" k="20" />
+<hkern g1="v" g2="emdash" k="20" />
+<hkern g1="v" g2="quoteleft" k="-49" />
+<hkern g1="v" g2="quotesinglbase" k="88" />
+<hkern g1="v" g2="quotedblleft" k="-49" />
+<hkern g1="v" g2="quotedblbase" k="88" />
+<hkern g1="v" g2="guilsinglleft" k="23" />
+<hkern g1="w" g2="ampersand" k="20" />
+<hkern g1="w" g2="parenright" k="47" />
+<hkern g1="w" g2="asterisk" k="-23" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="hyphen" k="23" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="slash" k="170" />
+<hkern g1="w" g2="A" k="104" />
+<hkern g1="w" g2="B" k="63" />
+<hkern g1="w" g2="D" k="63" />
+<hkern g1="w" g2="E" k="63" />
+<hkern g1="w" g2="F" k="63" />
+<hkern g1="w" g2="H" k="63" />
+<hkern g1="w" g2="I" k="63" />
+<hkern g1="w" g2="J" k="92" />
+<hkern g1="w" g2="K" k="63" />
+<hkern g1="w" g2="L" k="63" />
+<hkern g1="w" g2="M" k="66" />
+<hkern g1="w" g2="N" k="63" />
+<hkern g1="w" g2="P" k="63" />
+<hkern g1="w" g2="R" k="63" />
+<hkern g1="w" g2="U" k="37" />
+<hkern g1="w" g2="V" k="55" />
+<hkern g1="w" g2="W" k="57" />
+<hkern g1="w" g2="X" k="78" />
+<hkern g1="w" g2="Y" k="63" />
+<hkern g1="w" g2="backslash" k="31" />
+<hkern g1="w" g2="bracketright" k="125" />
+<hkern g1="w" g2="c" k="20" />
+<hkern g1="w" g2="d" k="18" />
+<hkern g1="w" g2="e" k="20" />
+<hkern g1="w" g2="g" k="18" />
+<hkern g1="w" g2="h" k="16" />
+<hkern g1="w" g2="k" k="16" />
+<hkern g1="w" g2="l" k="16" />
+<hkern g1="w" g2="o" k="20" />
+<hkern g1="w" g2="q" k="18" />
+<hkern g1="w" g2="v" k="-35" />
+<hkern g1="w" g2="braceright" k="55" />
+<hkern g1="w" g2="guillemotleft" k="23" />
+<hkern g1="w" g2="uni00AD" k="23" />
+<hkern g1="w" g2="Agrave" k="104" />
+<hkern g1="w" g2="Aacute" k="104" />
+<hkern g1="w" g2="Acircumflex" k="104" />
+<hkern g1="w" g2="Atilde" k="104" />
+<hkern g1="w" g2="Adieresis" k="104" />
+<hkern g1="w" g2="Aring" k="104" />
+<hkern g1="w" g2="Egrave" k="63" />
+<hkern g1="w" g2="Eacute" k="63" />
+<hkern g1="w" g2="Ecircumflex" k="63" />
+<hkern g1="w" g2="Edieresis" k="63" />
+<hkern g1="w" g2="Igrave" k="63" />
+<hkern g1="w" g2="Iacute" k="63" />
+<hkern g1="w" g2="Icircumflex" k="63" />
+<hkern g1="w" g2="Idieresis" k="63" />
+<hkern g1="w" g2="Eth" k="63" />
+<hkern g1="w" g2="Ntilde" k="63" />
+<hkern g1="w" g2="Ugrave" k="37" />
+<hkern g1="w" g2="Uacute" k="37" />
+<hkern g1="w" g2="Ucircumflex" k="37" />
+<hkern g1="w" g2="Udieresis" k="37" />
+<hkern g1="w" g2="Yacute" k="63" />
+<hkern g1="w" g2="Thorn" k="63" />
+<hkern g1="w" g2="ccedilla" k="20" />
+<hkern g1="w" g2="egrave" k="20" />
+<hkern g1="w" g2="eacute" k="20" />
+<hkern g1="w" g2="ecircumflex" k="20" />
+<hkern g1="w" g2="edieresis" k="20" />
+<hkern g1="w" g2="eth" k="23" />
+<hkern g1="w" g2="ograve" k="20" />
+<hkern g1="w" g2="oacute" k="20" />
+<hkern g1="w" g2="ocircumflex" k="20" />
+<hkern g1="w" g2="otilde" k="20" />
+<hkern g1="w" g2="odieresis" k="20" />
+<hkern g1="w" g2="oslash" k="20" />
+<hkern g1="w" g2="oe" k="20" />
+<hkern g1="w" g2="endash" k="23" />
+<hkern g1="w" g2="emdash" k="23" />
+<hkern g1="w" g2="quoteleft" k="-76" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblleft" k="-76" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="guilsinglleft" k="23" />
+<hkern g1="x" g2="parenright" k="37" />
+<hkern g1="x" g2="hyphen" k="45" />
+<hkern g1="x" g2="slash" k="43" />
+<hkern g1="x" g2="C" k="41" />
+<hkern g1="x" g2="G" k="41" />
+<hkern g1="x" g2="O" k="41" />
+<hkern g1="x" g2="Q" k="41" />
+<hkern g1="x" g2="U" k="74" />
+<hkern g1="x" g2="V" k="94" />
+<hkern g1="x" g2="W" k="92" />
+<hkern g1="x" g2="Y" k="129" />
+<hkern g1="x" g2="backslash" k="59" />
+<hkern g1="x" g2="bracketright" k="113" />
+<hkern g1="x" g2="c" k="29" />
+<hkern g1="x" g2="d" k="25" />
+<hkern g1="x" g2="e" k="29" />
+<hkern g1="x" g2="g" k="10" />
+<hkern g1="x" g2="o" k="29" />
+<hkern g1="x" g2="q" k="25" />
+<hkern g1="x" g2="v" k="10" />
+<hkern g1="x" g2="braceright" k="43" />
+<hkern g1="x" g2="guillemotleft" k="43" />
+<hkern g1="x" g2="uni00AD" k="45" />
+<hkern g1="x" g2="Ccedilla" k="41" />
+<hkern g1="x" g2="Ograve" k="41" />
+<hkern g1="x" g2="Oacute" k="41" />
+<hkern g1="x" g2="Ocircumflex" k="41" />
+<hkern g1="x" g2="Otilde" k="41" />
+<hkern g1="x" g2="Odieresis" k="41" />
+<hkern g1="x" g2="Oslash" k="41" />
+<hkern g1="x" g2="Ugrave" k="74" />
+<hkern g1="x" g2="Uacute" k="74" />
+<hkern g1="x" g2="Ucircumflex" k="74" />
+<hkern g1="x" g2="Udieresis" k="74" />
+<hkern g1="x" g2="Yacute" k="129" />
+<hkern g1="x" g2="ccedilla" k="29" />
+<hkern g1="x" g2="egrave" k="29" />
+<hkern g1="x" g2="eacute" k="29" />
+<hkern g1="x" g2="ecircumflex" k="29" />
+<hkern g1="x" g2="edieresis" k="29" />
+<hkern g1="x" g2="eth" k="27" />
+<hkern g1="x" g2="ograve" k="29" />
+<hkern g1="x" g2="oacute" k="29" />
+<hkern g1="x" g2="ocircumflex" k="29" />
+<hkern g1="x" g2="otilde" k="29" />
+<hkern g1="x" g2="odieresis" k="29" />
+<hkern g1="x" g2="oslash" k="29" />
+<hkern g1="x" g2="OE" k="41" />
+<hkern g1="x" g2="oe" k="29" />
+<hkern g1="x" g2="endash" k="45" />
+<hkern g1="x" g2="emdash" k="45" />
+<hkern g1="x" g2="quoteleft" k="20" />
+<hkern g1="x" g2="quotedblleft" k="20" />
+<hkern g1="x" g2="guilsinglleft" k="43" />
+<hkern g1="y" g2="ampersand" k="20" />
+<hkern g1="y" g2="parenright" k="49" />
+<hkern g1="y" g2="asterisk" k="-23" />
+<hkern g1="y" g2="comma" k="80" />
+<hkern g1="y" g2="hyphen" k="20" />
+<hkern g1="y" g2="period" k="80" />
+<hkern g1="y" g2="slash" k="143" />
+<hkern g1="y" g2="A" k="100" />
+<hkern g1="y" g2="B" k="63" />
+<hkern g1="y" g2="D" k="63" />
+<hkern g1="y" g2="E" k="63" />
+<hkern g1="y" g2="F" k="63" />
+<hkern g1="y" g2="H" k="63" />
+<hkern g1="y" g2="I" k="63" />
+<hkern g1="y" g2="J" k="88" />
+<hkern g1="y" g2="K" k="63" />
+<hkern g1="y" g2="L" k="63" />
+<hkern g1="y" g2="M" k="66" />
+<hkern g1="y" g2="N" k="63" />
+<hkern g1="y" g2="P" k="63" />
+<hkern g1="y" g2="R" k="63" />
+<hkern g1="y" g2="U" k="37" />
+<hkern g1="y" g2="V" k="59" />
+<hkern g1="y" g2="W" k="61" />
+<hkern g1="y" g2="X" k="78" />
+<hkern g1="y" g2="Y" k="66" />
+<hkern g1="y" g2="backslash" k="35" />
+<hkern g1="y" g2="bracketright" k="119" />
+<hkern g1="y" g2="c" k="18" />
+<hkern g1="y" g2="d" k="18" />
+<hkern g1="y" g2="e" k="18" />
+<hkern g1="y" g2="g" k="18" />
+<hkern g1="y" g2="h" k="16" />
+<hkern g1="y" g2="k" k="16" />
+<hkern g1="y" g2="l" k="16" />
+<hkern g1="y" g2="o" k="18" />
+<hkern g1="y" g2="q" k="18" />
+<hkern g1="y" g2="braceright" k="55" />
+<hkern g1="y" g2="guillemotleft" k="20" />
+<hkern g1="y" g2="uni00AD" k="20" />
+<hkern g1="y" g2="Agrave" k="100" />
+<hkern g1="y" g2="Aacute" k="100" />
+<hkern g1="y" g2="Acircumflex" k="100" />
+<hkern g1="y" g2="Atilde" k="100" />
+<hkern g1="y" g2="Adieresis" k="100" />
+<hkern g1="y" g2="Aring" k="100" />
+<hkern g1="y" g2="Egrave" k="63" />
+<hkern g1="y" g2="Eacute" k="63" />
+<hkern g1="y" g2="Ecircumflex" k="63" />
+<hkern g1="y" g2="Edieresis" k="63" />
+<hkern g1="y" g2="Igrave" k="63" />
+<hkern g1="y" g2="Iacute" k="63" />
+<hkern g1="y" g2="Icircumflex" k="63" />
+<hkern g1="y" g2="Idieresis" k="63" />
+<hkern g1="y" g2="Eth" k="63" />
+<hkern g1="y" g2="Ntilde" k="63" />
+<hkern g1="y" g2="Ugrave" k="37" />
+<hkern g1="y" g2="Uacute" k="37" />
+<hkern g1="y" g2="Ucircumflex" k="37" />
+<hkern g1="y" g2="Udieresis" k="37" />
+<hkern g1="y" g2="Yacute" k="66" />
+<hkern g1="y" g2="Thorn" k="63" />
+<hkern g1="y" g2="ccedilla" k="18" />
+<hkern g1="y" g2="egrave" k="18" />
+<hkern g1="y" g2="eacute" k="18" />
+<hkern g1="y" g2="ecircumflex" k="18" />
+<hkern g1="y" g2="edieresis" k="18" />
+<hkern g1="y" g2="eth" k="23" />
+<hkern g1="y" g2="ograve" k="18" />
+<hkern g1="y" g2="oacute" k="18" />
+<hkern g1="y" g2="ocircumflex" k="18" />
+<hkern g1="y" g2="otilde" k="18" />
+<hkern g1="y" g2="odieresis" k="18" />
+<hkern g1="y" g2="oslash" k="18" />
+<hkern g1="y" g2="oe" k="18" />
+<hkern g1="y" g2="endash" k="20" />
+<hkern g1="y" g2="emdash" k="20" />
+<hkern g1="y" g2="quotesinglbase" k="80" />
+<hkern g1="y" g2="quotedblbase" k="80" />
+<hkern g1="y" g2="guilsinglleft" k="20" />
+<hkern g1="z" g2="parenright" k="47" />
+<hkern g1="z" g2="hyphen" k="18" />
+<hkern g1="z" g2="slash" k="66" />
+<hkern g1="z" g2="B" k="23" />
+<hkern g1="z" g2="C" k="10" />
+<hkern g1="z" g2="D" k="23" />
+<hkern g1="z" g2="E" k="23" />
+<hkern g1="z" g2="F" k="23" />
+<hkern g1="z" g2="G" k="10" />
+<hkern g1="z" g2="H" k="23" />
+<hkern g1="z" g2="I" k="23" />
+<hkern g1="z" g2="K" k="23" />
+<hkern g1="z" g2="L" k="23" />
+<hkern g1="z" g2="M" k="20" />
+<hkern g1="z" g2="N" k="23" />
+<hkern g1="z" g2="O" k="10" />
+<hkern g1="z" g2="P" k="23" />
+<hkern g1="z" g2="Q" k="10" />
+<hkern g1="z" g2="R" k="23" />
+<hkern g1="z" g2="T" k="12" />
+<hkern g1="z" g2="U" k="57" />
+<hkern g1="z" g2="V" k="96" />
+<hkern g1="z" g2="W" k="96" />
+<hkern g1="z" g2="X" k="14" />
+<hkern g1="z" g2="Y" k="127" />
+<hkern g1="z" g2="backslash" k="63" />
+<hkern g1="z" g2="bracketright" k="119" />
+<hkern g1="z" g2="t" k="25" />
+<hkern g1="z" g2="v" k="10" />
+<hkern g1="z" g2="braceright" k="53" />
+<hkern g1="z" g2="uni00AD" k="18" />
+<hkern g1="z" g2="Ccedilla" k="10" />
+<hkern g1="z" g2="Egrave" k="23" />
+<hkern g1="z" g2="Eacute" k="23" />
+<hkern g1="z" g2="Ecircumflex" k="23" />
+<hkern g1="z" g2="Edieresis" k="23" />
+<hkern g1="z" g2="Igrave" k="23" />
+<hkern g1="z" g2="Iacute" k="23" />
+<hkern g1="z" g2="Icircumflex" k="23" />
+<hkern g1="z" g2="Idieresis" k="23" />
+<hkern g1="z" g2="Eth" k="23" />
+<hkern g1="z" g2="Ntilde" k="23" />
+<hkern g1="z" g2="Ograve" k="10" />
+<hkern g1="z" g2="Oacute" k="10" />
+<hkern g1="z" g2="Ocircumflex" k="10" />
+<hkern g1="z" g2="Otilde" k="10" />
+<hkern g1="z" g2="Odieresis" k="10" />
+<hkern g1="z" g2="Oslash" k="10" />
+<hkern g1="z" g2="Ugrave" k="57" />
+<hkern g1="z" g2="Uacute" k="57" />
+<hkern g1="z" g2="Ucircumflex" k="57" />
+<hkern g1="z" g2="Udieresis" k="57" />
+<hkern g1="z" g2="Yacute" k="127" />
+<hkern g1="z" g2="Thorn" k="23" />
+<hkern g1="z" g2="OE" k="10" />
+<hkern g1="z" g2="endash" k="18" />
+<hkern g1="z" g2="emdash" k="18" />
+<hkern g1="braceleft" g2="parenleft" k="43" />
+<hkern g1="braceleft" g2="zero" k="49" />
+<hkern g1="braceleft" g2="one" k="37" />
+<hkern g1="braceleft" g2="three" k="27" />
+<hkern g1="braceleft" g2="four" k="59" />
+<hkern g1="braceleft" g2="six" k="47" />
+<hkern g1="braceleft" g2="seven" k="-39" />
+<hkern g1="braceleft" g2="eight" k="43" />
+<hkern g1="braceleft" g2="nine" k="35" />
+<hkern g1="braceleft" g2="A" k="53" />
+<hkern g1="braceleft" g2="C" k="53" />
+<hkern g1="braceleft" g2="G" k="53" />
+<hkern g1="braceleft" g2="J" k="35" />
+<hkern g1="braceleft" g2="O" k="53" />
+<hkern g1="braceleft" g2="Q" k="53" />
+<hkern g1="braceleft" g2="S" k="31" />
+<hkern g1="braceleft" g2="T" k="-41" />
+<hkern g1="braceleft" g2="U" k="-31" />
+<hkern g1="braceleft" g2="V" k="-68" />
+<hkern g1="braceleft" g2="W" k="-55" />
+<hkern g1="braceleft" g2="X" k="-55" />
+<hkern g1="braceleft" g2="Y" k="-76" />
+<hkern g1="braceleft" g2="a" k="59" />
+<hkern g1="braceleft" g2="b" k="-80" />
+<hkern g1="braceleft" g2="c" k="76" />
+<hkern g1="braceleft" g2="d" k="70" />
+<hkern g1="braceleft" g2="e" k="76" />
+<hkern g1="braceleft" g2="f" k="37" />
+<hkern g1="braceleft" g2="h" k="-35" />
+<hkern g1="braceleft" g2="i" k="25" />
+<hkern g1="braceleft" g2="j" k="-250" />
+<hkern g1="braceleft" g2="k" k="-35" />
+<hkern g1="braceleft" g2="l" k="-35" />
+<hkern g1="braceleft" g2="m" k="53" />
+<hkern g1="braceleft" g2="n" k="53" />
+<hkern g1="braceleft" g2="o" k="76" />
+<hkern g1="braceleft" g2="q" k="70" />
+<hkern g1="braceleft" g2="r" k="53" />
+<hkern g1="braceleft" g2="s" k="57" />
+<hkern g1="braceleft" g2="t" k="49" />
+<hkern g1="braceleft" g2="u" k="55" />
+<hkern g1="braceleft" g2="v" k="57" />
+<hkern g1="braceleft" g2="w" k="57" />
+<hkern g1="braceleft" g2="x" k="45" />
+<hkern g1="braceleft" g2="z" k="53" />
+<hkern g1="braceleft" g2="braceleft" k="43" />
+<hkern g1="braceleft" g2="Agrave" k="53" />
+<hkern g1="braceleft" g2="Aacute" k="53" />
+<hkern g1="braceleft" g2="Acircumflex" k="53" />
+<hkern g1="braceleft" g2="Atilde" k="53" />
+<hkern g1="braceleft" g2="Adieresis" k="53" />
+<hkern g1="braceleft" g2="Aring" k="53" />
+<hkern g1="braceleft" g2="AE" k="43" />
+<hkern g1="braceleft" g2="Ccedilla" k="53" />
+<hkern g1="braceleft" g2="Ograve" k="53" />
+<hkern g1="braceleft" g2="Oacute" k="53" />
+<hkern g1="braceleft" g2="Ocircumflex" k="53" />
+<hkern g1="braceleft" g2="Otilde" k="53" />
+<hkern g1="braceleft" g2="Odieresis" k="53" />
+<hkern g1="braceleft" g2="Oslash" k="53" />
+<hkern g1="braceleft" g2="Ugrave" k="-31" />
+<hkern g1="braceleft" g2="Uacute" k="-31" />
+<hkern g1="braceleft" g2="Ucircumflex" k="-31" />
+<hkern g1="braceleft" g2="Udieresis" k="-31" />
+<hkern g1="braceleft" g2="Yacute" k="-76" />
+<hkern g1="braceleft" g2="germandbls" k="37" />
+<hkern g1="braceleft" g2="agrave" k="59" />
+<hkern g1="braceleft" g2="aacute" k="59" />
+<hkern g1="braceleft" g2="acircumflex" k="59" />
+<hkern g1="braceleft" g2="atilde" k="59" />
+<hkern g1="braceleft" g2="adieresis" k="59" />
+<hkern g1="braceleft" g2="aring" k="59" />
+<hkern g1="braceleft" g2="ae" k="59" />
+<hkern g1="braceleft" g2="ccedilla" k="76" />
+<hkern g1="braceleft" g2="egrave" k="76" />
+<hkern g1="braceleft" g2="eacute" k="76" />
+<hkern g1="braceleft" g2="ecircumflex" k="76" />
+<hkern g1="braceleft" g2="edieresis" k="76" />
+<hkern g1="braceleft" g2="igrave" k="-43" />
+<hkern g1="braceleft" g2="iacute" k="25" />
+<hkern g1="braceleft" g2="icircumflex" k="25" />
+<hkern g1="braceleft" g2="idieresis" k="-27" />
+<hkern g1="braceleft" g2="eth" k="20" />
+<hkern g1="braceleft" g2="ntilde" k="53" />
+<hkern g1="braceleft" g2="ograve" k="76" />
+<hkern g1="braceleft" g2="oacute" k="76" />
+<hkern g1="braceleft" g2="ocircumflex" k="76" />
+<hkern g1="braceleft" g2="otilde" k="76" />
+<hkern g1="braceleft" g2="odieresis" k="76" />
+<hkern g1="braceleft" g2="oslash" k="76" />
+<hkern g1="braceleft" g2="ugrave" k="55" />
+<hkern g1="braceleft" g2="uacute" k="55" />
+<hkern g1="braceleft" g2="ucircumflex" k="55" />
+<hkern g1="braceleft" g2="udieresis" k="55" />
+<hkern g1="braceleft" g2="thorn" k="-80" />
+<hkern g1="braceleft" g2="dotlessi" k="25" />
+<hkern g1="braceleft" g2="OE" k="53" />
+<hkern g1="braceleft" g2="oe" k="76" />
+<hkern g1="bar" g2="j" k="-135" />
+<hkern g1="braceright" g2="parenright" k="39" />
+<hkern g1="braceright" g2="bracketright" k="49" />
+<hkern g1="braceright" g2="braceright" k="43" />
+<hkern g1="exclamdown" g2="U" k="37" />
+<hkern g1="exclamdown" g2="V" k="82" />
+<hkern g1="exclamdown" g2="W" k="78" />
+<hkern g1="exclamdown" g2="Y" k="82" />
+<hkern g1="exclamdown" g2="j" k="-150" />
+<hkern g1="exclamdown" g2="Ugrave" k="37" />
+<hkern g1="exclamdown" g2="Uacute" k="37" />
+<hkern g1="exclamdown" g2="Ucircumflex" k="37" />
+<hkern g1="exclamdown" g2="Udieresis" k="37" />
+<hkern g1="exclamdown" g2="Yacute" k="82" />
+<hkern g1="guillemotleft" g2="A" k="-16" />
+<hkern g1="guillemotleft" g2="U" k="23" />
+<hkern g1="guillemotleft" g2="V" k="51" />
+<hkern g1="guillemotleft" g2="W" k="51" />
+<hkern g1="guillemotleft" g2="Y" k="47" />
+<hkern g1="guillemotleft" g2="Agrave" k="-16" />
+<hkern g1="guillemotleft" g2="Aacute" k="-16" />
+<hkern g1="guillemotleft" g2="Acircumflex" k="-16" />
+<hkern g1="guillemotleft" g2="Atilde" k="-16" />
+<hkern g1="guillemotleft" g2="Adieresis" k="-16" />
+<hkern g1="guillemotleft" g2="Aring" k="-16" />
+<hkern g1="guillemotleft" g2="AE" k="-31" />
+<hkern g1="guillemotleft" g2="Ugrave" k="23" />
+<hkern g1="guillemotleft" g2="Uacute" k="23" />
+<hkern g1="guillemotleft" g2="Ucircumflex" k="23" />
+<hkern g1="guillemotleft" g2="Udieresis" k="23" />
+<hkern g1="guillemotleft" g2="Yacute" k="47" />
+<hkern g1="uni00AD" g2="one" k="57" />
+<hkern g1="uni00AD" g2="two" k="59" />
+<hkern g1="uni00AD" g2="three" k="41" />
+<hkern g1="uni00AD" g2="seven" k="121" />
+<hkern g1="uni00AD" g2="eight" k="23" />
+<hkern g1="uni00AD" g2="A" k="80" />
+<hkern g1="uni00AD" g2="B" k="47" />
+<hkern g1="uni00AD" g2="D" k="47" />
+<hkern g1="uni00AD" g2="E" k="47" />
+<hkern g1="uni00AD" g2="F" k="47" />
+<hkern g1="uni00AD" g2="H" k="47" />
+<hkern g1="uni00AD" g2="I" k="47" />
+<hkern g1="uni00AD" g2="J" k="119" />
+<hkern g1="uni00AD" g2="K" k="47" />
+<hkern g1="uni00AD" g2="L" k="47" />
+<hkern g1="uni00AD" g2="M" k="47" />
+<hkern g1="uni00AD" g2="N" k="47" />
+<hkern g1="uni00AD" g2="P" k="47" />
+<hkern g1="uni00AD" g2="R" k="47" />
+<hkern g1="uni00AD" g2="S" k="20" />
+<hkern g1="uni00AD" g2="T" k="129" />
+<hkern g1="uni00AD" g2="U" k="33" />
+<hkern g1="uni00AD" g2="V" k="106" />
+<hkern g1="uni00AD" g2="W" k="94" />
+<hkern g1="uni00AD" g2="X" k="125" />
+<hkern g1="uni00AD" g2="Y" k="135" />
+<hkern g1="uni00AD" g2="Z" k="74" />
+<hkern g1="uni00AD" g2="f" k="18" />
+<hkern g1="uni00AD" g2="h" k="16" />
+<hkern g1="uni00AD" g2="k" k="16" />
+<hkern g1="uni00AD" g2="l" k="16" />
+<hkern g1="uni00AD" g2="x" k="25" />
+<hkern g1="uni00AD" g2="y" k="16" />
+<hkern g1="uni00AD" g2="Agrave" k="80" />
+<hkern g1="uni00AD" g2="Aacute" k="80" />
+<hkern g1="uni00AD" g2="Acircumflex" k="80" />
+<hkern g1="uni00AD" g2="Atilde" k="80" />
+<hkern g1="uni00AD" g2="Adieresis" k="80" />
+<hkern g1="uni00AD" g2="Aring" k="80" />
+<hkern g1="uni00AD" g2="AE" k="121" />
+<hkern g1="uni00AD" g2="Egrave" k="47" />
+<hkern g1="uni00AD" g2="Eacute" k="47" />
+<hkern g1="uni00AD" g2="Ecircumflex" k="47" />
+<hkern g1="uni00AD" g2="Edieresis" k="47" />
+<hkern g1="uni00AD" g2="Igrave" k="47" />
+<hkern g1="uni00AD" g2="Iacute" k="47" />
+<hkern g1="uni00AD" g2="Icircumflex" k="47" />
+<hkern g1="uni00AD" g2="Idieresis" k="47" />
+<hkern g1="uni00AD" g2="Eth" k="47" />
+<hkern g1="uni00AD" g2="Ntilde" k="47" />
+<hkern g1="uni00AD" g2="Ugrave" k="33" />
+<hkern g1="uni00AD" g2="Uacute" k="33" />
+<hkern g1="uni00AD" g2="Ucircumflex" k="33" />
+<hkern g1="uni00AD" g2="Udieresis" k="33" />
+<hkern g1="uni00AD" g2="Yacute" k="135" />
+<hkern g1="uni00AD" g2="Thorn" k="47" />
+<hkern g1="uni00AD" g2="germandbls" k="18" />
+<hkern g1="uni00AD" g2="yacute" k="16" />
+<hkern g1="uni00AD" g2="ydieresis" k="16" />
+<hkern g1="registered" g2="A" k="41" />
+<hkern g1="registered" g2="B" k="20" />
+<hkern g1="registered" g2="D" k="20" />
+<hkern g1="registered" g2="E" k="20" />
+<hkern g1="registered" g2="F" k="20" />
+<hkern g1="registered" g2="H" k="20" />
+<hkern g1="registered" g2="I" k="20" />
+<hkern g1="registered" g2="K" k="20" />
+<hkern g1="registered" g2="L" k="20" />
+<hkern g1="registered" g2="M" k="20" />
+<hkern g1="registered" g2="N" k="20" />
+<hkern g1="registered" g2="P" k="20" />
+<hkern g1="registered" g2="R" k="20" />
+<hkern g1="registered" g2="V" k="47" />
+<hkern g1="registered" g2="W" k="45" />
+<hkern g1="registered" g2="X" k="20" />
+<hkern g1="registered" g2="Y" k="45" />
+<hkern g1="registered" g2="Agrave" k="41" />
+<hkern g1="registered" g2="Aacute" k="41" />
+<hkern g1="registered" g2="Acircumflex" k="41" />
+<hkern g1="registered" g2="Atilde" k="41" />
+<hkern g1="registered" g2="Adieresis" k="41" />
+<hkern g1="registered" g2="Aring" k="41" />
+<hkern g1="registered" g2="AE" k="43" />
+<hkern g1="registered" g2="Egrave" k="20" />
+<hkern g1="registered" g2="Eacute" k="20" />
+<hkern g1="registered" g2="Ecircumflex" k="20" />
+<hkern g1="registered" g2="Edieresis" k="20" />
+<hkern g1="registered" g2="Igrave" k="20" />
+<hkern g1="registered" g2="Iacute" k="20" />
+<hkern g1="registered" g2="Icircumflex" k="20" />
+<hkern g1="registered" g2="Idieresis" k="20" />
+<hkern g1="registered" g2="Eth" k="20" />
+<hkern g1="registered" g2="Ntilde" k="20" />
+<hkern g1="registered" g2="Yacute" k="45" />
+<hkern g1="registered" g2="Thorn" k="20" />
+<hkern g1="degree" g2="one" k="-33" />
+<hkern g1="degree" g2="four" k="59" />
+<hkern g1="degree" g2="seven" k="-16" />
+<hkern g1="middot" g2="one" k="51" />
+<hkern g1="middot" g2="two" k="55" />
+<hkern g1="middot" g2="three" k="45" />
+<hkern g1="middot" g2="seven" k="119" />
+<hkern g1="middot" g2="eight" k="29" />
+<hkern g1="middot" g2="L" k="47" />
+<hkern g1="middot" g2="l" k="127" />
+<hkern g1="guillemotright" g2="quotedbl" k="98" />
+<hkern g1="guillemotright" g2="quotesingle" k="98" />
+<hkern g1="guillemotright" g2="A" k="45" />
+<hkern g1="guillemotright" g2="B" k="35" />
+<hkern g1="guillemotright" g2="D" k="35" />
+<hkern g1="guillemotright" g2="E" k="35" />
+<hkern g1="guillemotright" g2="F" k="35" />
+<hkern g1="guillemotright" g2="H" k="35" />
+<hkern g1="guillemotright" g2="I" k="35" />
+<hkern g1="guillemotright" g2="J" k="25" />
+<hkern g1="guillemotright" g2="K" k="35" />
+<hkern g1="guillemotright" g2="L" k="35" />
+<hkern g1="guillemotright" g2="M" k="33" />
+<hkern g1="guillemotright" g2="N" k="35" />
+<hkern g1="guillemotright" g2="P" k="35" />
+<hkern g1="guillemotright" g2="R" k="35" />
+<hkern g1="guillemotright" g2="T" k="92" />
+<hkern g1="guillemotright" g2="V" k="106" />
+<hkern g1="guillemotright" g2="W" k="92" />
+<hkern g1="guillemotright" g2="X" k="76" />
+<hkern g1="guillemotright" g2="Y" k="135" />
+<hkern g1="guillemotright" g2="Z" k="43" />
+<hkern g1="guillemotright" g2="x" k="31" />
+<hkern g1="guillemotright" g2="Agrave" k="45" />
+<hkern g1="guillemotright" g2="Aacute" k="45" />
+<hkern g1="guillemotright" g2="Acircumflex" k="45" />
+<hkern g1="guillemotright" g2="Atilde" k="45" />
+<hkern g1="guillemotright" g2="Adieresis" k="45" />
+<hkern g1="guillemotright" g2="Aring" k="45" />
+<hkern g1="guillemotright" g2="AE" k="59" />
+<hkern g1="guillemotright" g2="Egrave" k="35" />
+<hkern g1="guillemotright" g2="Eacute" k="35" />
+<hkern g1="guillemotright" g2="Ecircumflex" k="35" />
+<hkern g1="guillemotright" g2="Edieresis" k="35" />
+<hkern g1="guillemotright" g2="Igrave" k="35" />
+<hkern g1="guillemotright" g2="Iacute" k="35" />
+<hkern g1="guillemotright" g2="Icircumflex" k="35" />
+<hkern g1="guillemotright" g2="Idieresis" k="35" />
+<hkern g1="guillemotright" g2="Eth" k="35" />
+<hkern g1="guillemotright" g2="Ntilde" k="35" />
+<hkern g1="guillemotright" g2="Yacute" k="135" />
+<hkern g1="guillemotright" g2="Thorn" k="35" />
+<hkern g1="guillemotright" g2="quoteright" k="82" />
+<hkern g1="guillemotright" g2="quotedblright" k="82" />
+<hkern g1="questiondown" g2="C" k="51" />
+<hkern g1="questiondown" g2="G" k="51" />
+<hkern g1="questiondown" g2="O" k="51" />
+<hkern g1="questiondown" g2="Q" k="51" />
+<hkern g1="questiondown" g2="T" k="68" />
+<hkern g1="questiondown" g2="U" k="82" />
+<hkern g1="questiondown" g2="V" k="152" />
+<hkern g1="questiondown" g2="W" k="141" />
+<hkern g1="questiondown" g2="Y" k="127" />
+<hkern g1="questiondown" g2="a" k="20" />
+<hkern g1="questiondown" g2="c" k="43" />
+<hkern g1="questiondown" g2="d" k="41" />
+<hkern g1="questiondown" g2="e" k="43" />
+<hkern g1="questiondown" g2="j" k="-106" />
+<hkern g1="questiondown" g2="o" k="43" />
+<hkern g1="questiondown" g2="q" k="41" />
+<hkern g1="questiondown" g2="t" k="47" />
+<hkern g1="questiondown" g2="u" k="47" />
+<hkern g1="questiondown" g2="v" k="66" />
+<hkern g1="questiondown" g2="w" k="63" />
+<hkern g1="questiondown" g2="y" k="23" />
+<hkern g1="questiondown" g2="Ccedilla" k="51" />
+<hkern g1="questiondown" g2="Ograve" k="51" />
+<hkern g1="questiondown" g2="Oacute" k="51" />
+<hkern g1="questiondown" g2="Ocircumflex" k="51" />
+<hkern g1="questiondown" g2="Otilde" k="51" />
+<hkern g1="questiondown" g2="Odieresis" k="51" />
+<hkern g1="questiondown" g2="Oslash" k="51" />
+<hkern g1="questiondown" g2="Ugrave" k="82" />
+<hkern g1="questiondown" g2="Uacute" k="82" />
+<hkern g1="questiondown" g2="Ucircumflex" k="82" />
+<hkern g1="questiondown" g2="Udieresis" k="82" />
+<hkern g1="questiondown" g2="Yacute" k="127" />
+<hkern g1="questiondown" g2="agrave" k="20" />
+<hkern g1="questiondown" g2="aacute" k="20" />
+<hkern g1="questiondown" g2="acircumflex" k="20" />
+<hkern g1="questiondown" g2="atilde" k="20" />
+<hkern g1="questiondown" g2="adieresis" k="20" />
+<hkern g1="questiondown" g2="aring" k="20" />
+<hkern g1="questiondown" g2="ae" k="20" />
+<hkern g1="questiondown" g2="ccedilla" k="43" />
+<hkern g1="questiondown" g2="egrave" k="43" />
+<hkern g1="questiondown" g2="eacute" k="43" />
+<hkern g1="questiondown" g2="ecircumflex" k="43" />
+<hkern g1="questiondown" g2="edieresis" k="43" />
+<hkern g1="questiondown" g2="eth" k="43" />
+<hkern g1="questiondown" g2="ograve" k="43" />
+<hkern g1="questiondown" g2="oacute" k="43" />
+<hkern g1="questiondown" g2="ocircumflex" k="43" />
+<hkern g1="questiondown" g2="otilde" k="43" />
+<hkern g1="questiondown" g2="odieresis" k="43" />
+<hkern g1="questiondown" g2="oslash" k="43" />
+<hkern g1="questiondown" g2="ugrave" k="47" />
+<hkern g1="questiondown" g2="uacute" k="47" />
+<hkern g1="questiondown" g2="ucircumflex" k="47" />
+<hkern g1="questiondown" g2="udieresis" k="47" />
+<hkern g1="questiondown" g2="yacute" k="23" />
+<hkern g1="questiondown" g2="ydieresis" k="23" />
+<hkern g1="questiondown" g2="OE" k="51" />
+<hkern g1="questiondown" g2="oe" k="43" />
+<hkern g1="Agrave" g2="quotedbl" k="147" />
+<hkern g1="Agrave" g2="quotesingle" k="147" />
+<hkern g1="Agrave" g2="parenright" k="43" />
+<hkern g1="Agrave" g2="asterisk" k="104" />
+<hkern g1="Agrave" g2="hyphen" k="78" />
+<hkern g1="Agrave" g2="slash" k="31" />
+<hkern g1="Agrave" g2="zero" k="31" />
+<hkern g1="Agrave" g2="two" k="-18" />
+<hkern g1="Agrave" g2="four" k="20" />
+<hkern g1="Agrave" g2="six" k="23" />
+<hkern g1="Agrave" g2="seven" k="59" />
+<hkern g1="Agrave" g2="question" k="61" />
+<hkern g1="Agrave" g2="A" k="-49" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-35" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="109" />
+<hkern g1="Agrave" g2="U" k="80" />
+<hkern g1="Agrave" g2="V" k="160" />
+<hkern g1="Agrave" g2="W" k="143" />
+<hkern g1="Agrave" g2="Y" k="139" />
+<hkern g1="Agrave" g2="backslash" k="145" />
+<hkern g1="Agrave" g2="bracketright" k="109" />
+<hkern g1="Agrave" g2="b" k="16" />
+<hkern g1="Agrave" g2="c" k="27" />
+<hkern g1="Agrave" g2="d" k="23" />
+<hkern g1="Agrave" g2="e" k="27" />
+<hkern g1="Agrave" g2="f" k="12" />
+<hkern g1="Agrave" g2="g" k="12" />
+<hkern g1="Agrave" g2="i" k="10" />
+<hkern g1="Agrave" g2="j" k="33" />
+<hkern g1="Agrave" g2="m" k="10" />
+<hkern g1="Agrave" g2="n" k="10" />
+<hkern g1="Agrave" g2="o" k="27" />
+<hkern g1="Agrave" g2="p" k="31" />
+<hkern g1="Agrave" g2="q" k="23" />
+<hkern g1="Agrave" g2="r" k="10" />
+<hkern g1="Agrave" g2="s" k="12" />
+<hkern g1="Agrave" g2="t" k="45" />
+<hkern g1="Agrave" g2="u" k="43" />
+<hkern g1="Agrave" g2="v" k="100" />
+<hkern g1="Agrave" g2="w" k="66" />
+<hkern g1="Agrave" g2="y" k="109" />
+<hkern g1="Agrave" g2="z" k="-25" />
+<hkern g1="Agrave" g2="braceright" k="49" />
+<hkern g1="Agrave" g2="guillemotleft" k="41" />
+<hkern g1="Agrave" g2="uni00AD" k="78" />
+<hkern g1="Agrave" g2="registered" k="33" />
+<hkern g1="Agrave" g2="guillemotright" k="-16" />
+<hkern g1="Agrave" g2="Agrave" k="-49" />
+<hkern g1="Agrave" g2="Aacute" k="-49" />
+<hkern g1="Agrave" g2="Acircumflex" k="-49" />
+<hkern g1="Agrave" g2="Atilde" k="-49" />
+<hkern g1="Agrave" g2="Adieresis" k="-49" />
+<hkern g1="Agrave" g2="Aring" k="-49" />
+<hkern g1="Agrave" g2="AE" k="-49" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Ugrave" k="80" />
+<hkern g1="Agrave" g2="Uacute" k="80" />
+<hkern g1="Agrave" g2="Ucircumflex" k="80" />
+<hkern g1="Agrave" g2="Udieresis" k="80" />
+<hkern g1="Agrave" g2="Yacute" k="139" />
+<hkern g1="Agrave" g2="germandbls" k="12" />
+<hkern g1="Agrave" g2="ccedilla" k="27" />
+<hkern g1="Agrave" g2="egrave" k="27" />
+<hkern g1="Agrave" g2="eacute" k="27" />
+<hkern g1="Agrave" g2="ecircumflex" k="27" />
+<hkern g1="Agrave" g2="edieresis" k="27" />
+<hkern g1="Agrave" g2="igrave" k="10" />
+<hkern g1="Agrave" g2="iacute" k="10" />
+<hkern g1="Agrave" g2="icircumflex" k="10" />
+<hkern g1="Agrave" g2="idieresis" k="10" />
+<hkern g1="Agrave" g2="eth" k="23" />
+<hkern g1="Agrave" g2="ntilde" k="10" />
+<hkern g1="Agrave" g2="ograve" k="27" />
+<hkern g1="Agrave" g2="oacute" k="27" />
+<hkern g1="Agrave" g2="ocircumflex" k="27" />
+<hkern g1="Agrave" g2="otilde" k="27" />
+<hkern g1="Agrave" g2="odieresis" k="27" />
+<hkern g1="Agrave" g2="oslash" k="27" />
+<hkern g1="Agrave" g2="ugrave" k="43" />
+<hkern g1="Agrave" g2="uacute" k="43" />
+<hkern g1="Agrave" g2="ucircumflex" k="43" />
+<hkern g1="Agrave" g2="udieresis" k="43" />
+<hkern g1="Agrave" g2="yacute" k="109" />
+<hkern g1="Agrave" g2="thorn" k="16" />
+<hkern g1="Agrave" g2="ydieresis" k="109" />
+<hkern g1="Agrave" g2="dotlessi" k="10" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="oe" k="27" />
+<hkern g1="Agrave" g2="endash" k="78" />
+<hkern g1="Agrave" g2="emdash" k="78" />
+<hkern g1="Agrave" g2="quoteleft" k="135" />
+<hkern g1="Agrave" g2="quoteright" k="141" />
+<hkern g1="Agrave" g2="quotedblleft" k="135" />
+<hkern g1="Agrave" g2="quotedblright" k="141" />
+<hkern g1="Agrave" g2="guilsinglleft" k="41" />
+<hkern g1="Agrave" g2="guilsinglright" k="-16" />
+<hkern g1="Aacute" g2="quotedbl" k="147" />
+<hkern g1="Aacute" g2="quotesingle" k="147" />
+<hkern g1="Aacute" g2="parenright" k="43" />
+<hkern g1="Aacute" g2="asterisk" k="104" />
+<hkern g1="Aacute" g2="hyphen" k="78" />
+<hkern g1="Aacute" g2="slash" k="31" />
+<hkern g1="Aacute" g2="zero" k="31" />
+<hkern g1="Aacute" g2="two" k="-18" />
+<hkern g1="Aacute" g2="four" k="20" />
+<hkern g1="Aacute" g2="six" k="23" />
+<hkern g1="Aacute" g2="seven" k="59" />
+<hkern g1="Aacute" g2="question" k="61" />
+<hkern g1="Aacute" g2="A" k="-49" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-35" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="109" />
+<hkern g1="Aacute" g2="U" k="80" />
+<hkern g1="Aacute" g2="V" k="160" />
+<hkern g1="Aacute" g2="W" k="143" />
+<hkern g1="Aacute" g2="Y" k="139" />
+<hkern g1="Aacute" g2="backslash" k="145" />
+<hkern g1="Aacute" g2="bracketright" k="109" />
+<hkern g1="Aacute" g2="b" k="16" />
+<hkern g1="Aacute" g2="c" k="27" />
+<hkern g1="Aacute" g2="d" k="23" />
+<hkern g1="Aacute" g2="e" k="27" />
+<hkern g1="Aacute" g2="f" k="12" />
+<hkern g1="Aacute" g2="g" k="12" />
+<hkern g1="Aacute" g2="i" k="10" />
+<hkern g1="Aacute" g2="j" k="33" />
+<hkern g1="Aacute" g2="m" k="10" />
+<hkern g1="Aacute" g2="n" k="10" />
+<hkern g1="Aacute" g2="o" k="27" />
+<hkern g1="Aacute" g2="p" k="31" />
+<hkern g1="Aacute" g2="q" k="23" />
+<hkern g1="Aacute" g2="r" k="10" />
+<hkern g1="Aacute" g2="s" k="12" />
+<hkern g1="Aacute" g2="t" k="45" />
+<hkern g1="Aacute" g2="u" k="43" />
+<hkern g1="Aacute" g2="v" k="100" />
+<hkern g1="Aacute" g2="w" k="66" />
+<hkern g1="Aacute" g2="y" k="109" />
+<hkern g1="Aacute" g2="z" k="-25" />
+<hkern g1="Aacute" g2="braceright" k="49" />
+<hkern g1="Aacute" g2="guillemotleft" k="41" />
+<hkern g1="Aacute" g2="uni00AD" k="78" />
+<hkern g1="Aacute" g2="registered" k="33" />
+<hkern g1="Aacute" g2="guillemotright" k="-16" />
+<hkern g1="Aacute" g2="Agrave" k="-49" />
+<hkern g1="Aacute" g2="Aacute" k="-49" />
+<hkern g1="Aacute" g2="Acircumflex" k="-49" />
+<hkern g1="Aacute" g2="Atilde" k="-49" />
+<hkern g1="Aacute" g2="Adieresis" k="-49" />
+<hkern g1="Aacute" g2="Aring" k="-49" />
+<hkern g1="Aacute" g2="AE" k="-49" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Ugrave" k="80" />
+<hkern g1="Aacute" g2="Uacute" k="80" />
+<hkern g1="Aacute" g2="Ucircumflex" k="80" />
+<hkern g1="Aacute" g2="Udieresis" k="80" />
+<hkern g1="Aacute" g2="Yacute" k="139" />
+<hkern g1="Aacute" g2="germandbls" k="12" />
+<hkern g1="Aacute" g2="ccedilla" k="27" />
+<hkern g1="Aacute" g2="egrave" k="27" />
+<hkern g1="Aacute" g2="eacute" k="27" />
+<hkern g1="Aacute" g2="ecircumflex" k="27" />
+<hkern g1="Aacute" g2="edieresis" k="27" />
+<hkern g1="Aacute" g2="igrave" k="10" />
+<hkern g1="Aacute" g2="iacute" k="10" />
+<hkern g1="Aacute" g2="icircumflex" k="10" />
+<hkern g1="Aacute" g2="idieresis" k="10" />
+<hkern g1="Aacute" g2="eth" k="23" />
+<hkern g1="Aacute" g2="ntilde" k="10" />
+<hkern g1="Aacute" g2="ograve" k="27" />
+<hkern g1="Aacute" g2="oacute" k="27" />
+<hkern g1="Aacute" g2="ocircumflex" k="27" />
+<hkern g1="Aacute" g2="otilde" k="27" />
+<hkern g1="Aacute" g2="odieresis" k="27" />
+<hkern g1="Aacute" g2="oslash" k="27" />
+<hkern g1="Aacute" g2="ugrave" k="43" />
+<hkern g1="Aacute" g2="uacute" k="43" />
+<hkern g1="Aacute" g2="ucircumflex" k="43" />
+<hkern g1="Aacute" g2="udieresis" k="43" />
+<hkern g1="Aacute" g2="yacute" k="109" />
+<hkern g1="Aacute" g2="thorn" k="16" />
+<hkern g1="Aacute" g2="ydieresis" k="109" />
+<hkern g1="Aacute" g2="dotlessi" k="10" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="oe" k="27" />
+<hkern g1="Aacute" g2="endash" k="78" />
+<hkern g1="Aacute" g2="emdash" k="78" />
+<hkern g1="Aacute" g2="quoteleft" k="135" />
+<hkern g1="Aacute" g2="quoteright" k="141" />
+<hkern g1="Aacute" g2="quotedblleft" k="135" />
+<hkern g1="Aacute" g2="quotedblright" k="141" />
+<hkern g1="Aacute" g2="guilsinglleft" k="41" />
+<hkern g1="Aacute" g2="guilsinglright" k="-16" />
+<hkern g1="Acircumflex" g2="quotedbl" k="147" />
+<hkern g1="Acircumflex" g2="quotesingle" k="147" />
+<hkern g1="Acircumflex" g2="parenright" k="43" />
+<hkern g1="Acircumflex" g2="asterisk" k="104" />
+<hkern g1="Acircumflex" g2="hyphen" k="78" />
+<hkern g1="Acircumflex" g2="slash" k="31" />
+<hkern g1="Acircumflex" g2="zero" k="31" />
+<hkern g1="Acircumflex" g2="two" k="-18" />
+<hkern g1="Acircumflex" g2="four" k="20" />
+<hkern g1="Acircumflex" g2="six" k="23" />
+<hkern g1="Acircumflex" g2="seven" k="59" />
+<hkern g1="Acircumflex" g2="question" k="61" />
+<hkern g1="Acircumflex" g2="A" k="-49" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-35" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="109" />
+<hkern g1="Acircumflex" g2="U" k="80" />
+<hkern g1="Acircumflex" g2="V" k="160" />
+<hkern g1="Acircumflex" g2="W" k="143" />
+<hkern g1="Acircumflex" g2="Y" k="139" />
+<hkern g1="Acircumflex" g2="backslash" k="145" />
+<hkern g1="Acircumflex" g2="bracketright" k="109" />
+<hkern g1="Acircumflex" g2="b" k="16" />
+<hkern g1="Acircumflex" g2="c" k="27" />
+<hkern g1="Acircumflex" g2="d" k="23" />
+<hkern g1="Acircumflex" g2="e" k="27" />
+<hkern g1="Acircumflex" g2="f" k="12" />
+<hkern g1="Acircumflex" g2="g" k="12" />
+<hkern g1="Acircumflex" g2="i" k="10" />
+<hkern g1="Acircumflex" g2="j" k="33" />
+<hkern g1="Acircumflex" g2="m" k="10" />
+<hkern g1="Acircumflex" g2="n" k="10" />
+<hkern g1="Acircumflex" g2="o" k="27" />
+<hkern g1="Acircumflex" g2="p" k="31" />
+<hkern g1="Acircumflex" g2="q" k="23" />
+<hkern g1="Acircumflex" g2="r" k="10" />
+<hkern g1="Acircumflex" g2="s" k="12" />
+<hkern g1="Acircumflex" g2="t" k="45" />
+<hkern g1="Acircumflex" g2="u" k="43" />
+<hkern g1="Acircumflex" g2="v" k="100" />
+<hkern g1="Acircumflex" g2="w" k="66" />
+<hkern g1="Acircumflex" g2="y" k="109" />
+<hkern g1="Acircumflex" g2="z" k="-25" />
+<hkern g1="Acircumflex" g2="braceright" k="49" />
+<hkern g1="Acircumflex" g2="guillemotleft" k="41" />
+<hkern g1="Acircumflex" g2="uni00AD" k="78" />
+<hkern g1="Acircumflex" g2="registered" k="33" />
+<hkern g1="Acircumflex" g2="guillemotright" k="-16" />
+<hkern g1="Acircumflex" g2="Agrave" k="-49" />
+<hkern g1="Acircumflex" g2="Aacute" k="-49" />
+<hkern g1="Acircumflex" g2="Acircumflex" k="-49" />
+<hkern g1="Acircumflex" g2="Atilde" k="-49" />
+<hkern g1="Acircumflex" g2="Adieresis" k="-49" />
+<hkern g1="Acircumflex" g2="Aring" k="-49" />
+<hkern g1="Acircumflex" g2="AE" k="-49" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Ugrave" k="80" />
+<hkern g1="Acircumflex" g2="Uacute" k="80" />
+<hkern g1="Acircumflex" g2="Ucircumflex" k="80" />
+<hkern g1="Acircumflex" g2="Udieresis" k="80" />
+<hkern g1="Acircumflex" g2="Yacute" k="139" />
+<hkern g1="Acircumflex" g2="germandbls" k="12" />
+<hkern g1="Acircumflex" g2="ccedilla" k="27" />
+<hkern g1="Acircumflex" g2="egrave" k="27" />
+<hkern g1="Acircumflex" g2="eacute" k="27" />
+<hkern g1="Acircumflex" g2="ecircumflex" k="27" />
+<hkern g1="Acircumflex" g2="edieresis" k="27" />
+<hkern g1="Acircumflex" g2="igrave" k="10" />
+<hkern g1="Acircumflex" g2="iacute" k="10" />
+<hkern g1="Acircumflex" g2="icircumflex" k="10" />
+<hkern g1="Acircumflex" g2="idieresis" k="10" />
+<hkern g1="Acircumflex" g2="eth" k="23" />
+<hkern g1="Acircumflex" g2="ntilde" k="10" />
+<hkern g1="Acircumflex" g2="ograve" k="27" />
+<hkern g1="Acircumflex" g2="oacute" k="27" />
+<hkern g1="Acircumflex" g2="ocircumflex" k="27" />
+<hkern g1="Acircumflex" g2="otilde" k="27" />
+<hkern g1="Acircumflex" g2="odieresis" k="27" />
+<hkern g1="Acircumflex" g2="oslash" k="27" />
+<hkern g1="Acircumflex" g2="ugrave" k="43" />
+<hkern g1="Acircumflex" g2="uacute" k="43" />
+<hkern g1="Acircumflex" g2="ucircumflex" k="43" />
+<hkern g1="Acircumflex" g2="udieresis" k="43" />
+<hkern g1="Acircumflex" g2="yacute" k="109" />
+<hkern g1="Acircumflex" g2="thorn" k="16" />
+<hkern g1="Acircumflex" g2="ydieresis" k="109" />
+<hkern g1="Acircumflex" g2="dotlessi" k="10" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="oe" k="27" />
+<hkern g1="Acircumflex" g2="endash" k="78" />
+<hkern g1="Acircumflex" g2="emdash" k="78" />
+<hkern g1="Acircumflex" g2="quoteleft" k="135" />
+<hkern g1="Acircumflex" g2="quoteright" k="141" />
+<hkern g1="Acircumflex" g2="quotedblleft" k="135" />
+<hkern g1="Acircumflex" g2="quotedblright" k="141" />
+<hkern g1="Acircumflex" g2="guilsinglleft" k="41" />
+<hkern g1="Acircumflex" g2="guilsinglright" k="-16" />
+<hkern g1="Atilde" g2="quotedbl" k="147" />
+<hkern g1="Atilde" g2="quotesingle" k="147" />
+<hkern g1="Atilde" g2="parenright" k="43" />
+<hkern g1="Atilde" g2="asterisk" k="104" />
+<hkern g1="Atilde" g2="hyphen" k="78" />
+<hkern g1="Atilde" g2="slash" k="31" />
+<hkern g1="Atilde" g2="zero" k="31" />
+<hkern g1="Atilde" g2="two" k="-18" />
+<hkern g1="Atilde" g2="four" k="20" />
+<hkern g1="Atilde" g2="six" k="23" />
+<hkern g1="Atilde" g2="seven" k="59" />
+<hkern g1="Atilde" g2="question" k="61" />
+<hkern g1="Atilde" g2="A" k="-49" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-35" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="109" />
+<hkern g1="Atilde" g2="U" k="80" />
+<hkern g1="Atilde" g2="V" k="160" />
+<hkern g1="Atilde" g2="W" k="143" />
+<hkern g1="Atilde" g2="Y" k="139" />
+<hkern g1="Atilde" g2="backslash" k="145" />
+<hkern g1="Atilde" g2="bracketright" k="109" />
+<hkern g1="Atilde" g2="b" k="16" />
+<hkern g1="Atilde" g2="c" k="27" />
+<hkern g1="Atilde" g2="d" k="23" />
+<hkern g1="Atilde" g2="e" k="27" />
+<hkern g1="Atilde" g2="f" k="12" />
+<hkern g1="Atilde" g2="g" k="12" />
+<hkern g1="Atilde" g2="i" k="10" />
+<hkern g1="Atilde" g2="j" k="33" />
+<hkern g1="Atilde" g2="m" k="10" />
+<hkern g1="Atilde" g2="n" k="10" />
+<hkern g1="Atilde" g2="o" k="27" />
+<hkern g1="Atilde" g2="p" k="31" />
+<hkern g1="Atilde" g2="q" k="23" />
+<hkern g1="Atilde" g2="r" k="10" />
+<hkern g1="Atilde" g2="s" k="12" />
+<hkern g1="Atilde" g2="t" k="45" />
+<hkern g1="Atilde" g2="u" k="43" />
+<hkern g1="Atilde" g2="v" k="100" />
+<hkern g1="Atilde" g2="w" k="66" />
+<hkern g1="Atilde" g2="y" k="109" />
+<hkern g1="Atilde" g2="z" k="-25" />
+<hkern g1="Atilde" g2="braceright" k="49" />
+<hkern g1="Atilde" g2="guillemotleft" k="41" />
+<hkern g1="Atilde" g2="uni00AD" k="78" />
+<hkern g1="Atilde" g2="registered" k="33" />
+<hkern g1="Atilde" g2="guillemotright" k="-16" />
+<hkern g1="Atilde" g2="Agrave" k="-49" />
+<hkern g1="Atilde" g2="Aacute" k="-49" />
+<hkern g1="Atilde" g2="Acircumflex" k="-49" />
+<hkern g1="Atilde" g2="Atilde" k="-49" />
+<hkern g1="Atilde" g2="Adieresis" k="-49" />
+<hkern g1="Atilde" g2="Aring" k="-49" />
+<hkern g1="Atilde" g2="AE" k="-49" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Ugrave" k="80" />
+<hkern g1="Atilde" g2="Uacute" k="80" />
+<hkern g1="Atilde" g2="Ucircumflex" k="80" />
+<hkern g1="Atilde" g2="Udieresis" k="80" />
+<hkern g1="Atilde" g2="Yacute" k="139" />
+<hkern g1="Atilde" g2="germandbls" k="12" />
+<hkern g1="Atilde" g2="ccedilla" k="27" />
+<hkern g1="Atilde" g2="egrave" k="27" />
+<hkern g1="Atilde" g2="eacute" k="27" />
+<hkern g1="Atilde" g2="ecircumflex" k="27" />
+<hkern g1="Atilde" g2="edieresis" k="27" />
+<hkern g1="Atilde" g2="igrave" k="10" />
+<hkern g1="Atilde" g2="iacute" k="10" />
+<hkern g1="Atilde" g2="icircumflex" k="10" />
+<hkern g1="Atilde" g2="idieresis" k="10" />
+<hkern g1="Atilde" g2="eth" k="23" />
+<hkern g1="Atilde" g2="ntilde" k="10" />
+<hkern g1="Atilde" g2="ograve" k="27" />
+<hkern g1="Atilde" g2="oacute" k="27" />
+<hkern g1="Atilde" g2="ocircumflex" k="27" />
+<hkern g1="Atilde" g2="otilde" k="27" />
+<hkern g1="Atilde" g2="odieresis" k="27" />
+<hkern g1="Atilde" g2="oslash" k="27" />
+<hkern g1="Atilde" g2="ugrave" k="43" />
+<hkern g1="Atilde" g2="uacute" k="43" />
+<hkern g1="Atilde" g2="ucircumflex" k="43" />
+<hkern g1="Atilde" g2="udieresis" k="43" />
+<hkern g1="Atilde" g2="yacute" k="109" />
+<hkern g1="Atilde" g2="thorn" k="16" />
+<hkern g1="Atilde" g2="ydieresis" k="109" />
+<hkern g1="Atilde" g2="dotlessi" k="10" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="oe" k="27" />
+<hkern g1="Atilde" g2="endash" k="78" />
+<hkern g1="Atilde" g2="emdash" k="78" />
+<hkern g1="Atilde" g2="quoteleft" k="135" />
+<hkern g1="Atilde" g2="quoteright" k="141" />
+<hkern g1="Atilde" g2="quotedblleft" k="135" />
+<hkern g1="Atilde" g2="quotedblright" k="141" />
+<hkern g1="Atilde" g2="guilsinglleft" k="41" />
+<hkern g1="Atilde" g2="guilsinglright" k="-16" />
+<hkern g1="Adieresis" g2="quotedbl" k="147" />
+<hkern g1="Adieresis" g2="quotesingle" k="147" />
+<hkern g1="Adieresis" g2="parenright" k="43" />
+<hkern g1="Adieresis" g2="asterisk" k="104" />
+<hkern g1="Adieresis" g2="hyphen" k="78" />
+<hkern g1="Adieresis" g2="slash" k="31" />
+<hkern g1="Adieresis" g2="zero" k="31" />
+<hkern g1="Adieresis" g2="two" k="-18" />
+<hkern g1="Adieresis" g2="four" k="20" />
+<hkern g1="Adieresis" g2="six" k="23" />
+<hkern g1="Adieresis" g2="seven" k="59" />
+<hkern g1="Adieresis" g2="question" k="61" />
+<hkern g1="Adieresis" g2="A" k="-49" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-35" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="109" />
+<hkern g1="Adieresis" g2="U" k="80" />
+<hkern g1="Adieresis" g2="V" k="160" />
+<hkern g1="Adieresis" g2="W" k="143" />
+<hkern g1="Adieresis" g2="Y" k="139" />
+<hkern g1="Adieresis" g2="backslash" k="145" />
+<hkern g1="Adieresis" g2="bracketright" k="109" />
+<hkern g1="Adieresis" g2="b" k="16" />
+<hkern g1="Adieresis" g2="c" k="27" />
+<hkern g1="Adieresis" g2="d" k="23" />
+<hkern g1="Adieresis" g2="e" k="27" />
+<hkern g1="Adieresis" g2="f" k="12" />
+<hkern g1="Adieresis" g2="g" k="12" />
+<hkern g1="Adieresis" g2="i" k="10" />
+<hkern g1="Adieresis" g2="j" k="33" />
+<hkern g1="Adieresis" g2="m" k="10" />
+<hkern g1="Adieresis" g2="n" k="10" />
+<hkern g1="Adieresis" g2="o" k="27" />
+<hkern g1="Adieresis" g2="p" k="31" />
+<hkern g1="Adieresis" g2="q" k="23" />
+<hkern g1="Adieresis" g2="r" k="10" />
+<hkern g1="Adieresis" g2="s" k="12" />
+<hkern g1="Adieresis" g2="t" k="45" />
+<hkern g1="Adieresis" g2="u" k="43" />
+<hkern g1="Adieresis" g2="v" k="100" />
+<hkern g1="Adieresis" g2="w" k="66" />
+<hkern g1="Adieresis" g2="y" k="109" />
+<hkern g1="Adieresis" g2="z" k="-25" />
+<hkern g1="Adieresis" g2="braceright" k="49" />
+<hkern g1="Adieresis" g2="guillemotleft" k="41" />
+<hkern g1="Adieresis" g2="uni00AD" k="78" />
+<hkern g1="Adieresis" g2="registered" k="33" />
+<hkern g1="Adieresis" g2="guillemotright" k="-16" />
+<hkern g1="Adieresis" g2="Agrave" k="-49" />
+<hkern g1="Adieresis" g2="Aacute" k="-49" />
+<hkern g1="Adieresis" g2="Acircumflex" k="-49" />
+<hkern g1="Adieresis" g2="Atilde" k="-49" />
+<hkern g1="Adieresis" g2="Adieresis" k="-49" />
+<hkern g1="Adieresis" g2="Aring" k="-49" />
+<hkern g1="Adieresis" g2="AE" k="-49" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Ugrave" k="80" />
+<hkern g1="Adieresis" g2="Uacute" k="80" />
+<hkern g1="Adieresis" g2="Ucircumflex" k="80" />
+<hkern g1="Adieresis" g2="Udieresis" k="80" />
+<hkern g1="Adieresis" g2="Yacute" k="139" />
+<hkern g1="Adieresis" g2="germandbls" k="12" />
+<hkern g1="Adieresis" g2="ccedilla" k="27" />
+<hkern g1="Adieresis" g2="egrave" k="27" />
+<hkern g1="Adieresis" g2="eacute" k="27" />
+<hkern g1="Adieresis" g2="ecircumflex" k="27" />
+<hkern g1="Adieresis" g2="edieresis" k="27" />
+<hkern g1="Adieresis" g2="igrave" k="10" />
+<hkern g1="Adieresis" g2="iacute" k="10" />
+<hkern g1="Adieresis" g2="icircumflex" k="10" />
+<hkern g1="Adieresis" g2="idieresis" k="10" />
+<hkern g1="Adieresis" g2="eth" k="23" />
+<hkern g1="Adieresis" g2="ntilde" k="10" />
+<hkern g1="Adieresis" g2="ograve" k="27" />
+<hkern g1="Adieresis" g2="oacute" k="27" />
+<hkern g1="Adieresis" g2="ocircumflex" k="27" />
+<hkern g1="Adieresis" g2="otilde" k="27" />
+<hkern g1="Adieresis" g2="odieresis" k="27" />
+<hkern g1="Adieresis" g2="oslash" k="27" />
+<hkern g1="Adieresis" g2="ugrave" k="43" />
+<hkern g1="Adieresis" g2="uacute" k="43" />
+<hkern g1="Adieresis" g2="ucircumflex" k="43" />
+<hkern g1="Adieresis" g2="udieresis" k="43" />
+<hkern g1="Adieresis" g2="yacute" k="109" />
+<hkern g1="Adieresis" g2="thorn" k="16" />
+<hkern g1="Adieresis" g2="ydieresis" k="109" />
+<hkern g1="Adieresis" g2="dotlessi" k="10" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="oe" k="27" />
+<hkern g1="Adieresis" g2="endash" k="78" />
+<hkern g1="Adieresis" g2="emdash" k="78" />
+<hkern g1="Adieresis" g2="quoteleft" k="135" />
+<hkern g1="Adieresis" g2="quoteright" k="141" />
+<hkern g1="Adieresis" g2="quotedblleft" k="135" />
+<hkern g1="Adieresis" g2="quotedblright" k="141" />
+<hkern g1="Adieresis" g2="guilsinglleft" k="41" />
+<hkern g1="Adieresis" g2="guilsinglright" k="-16" />
+<hkern g1="Aring" g2="quotedbl" k="147" />
+<hkern g1="Aring" g2="quotesingle" k="147" />
+<hkern g1="Aring" g2="parenright" k="43" />
+<hkern g1="Aring" g2="asterisk" k="104" />
+<hkern g1="Aring" g2="hyphen" k="78" />
+<hkern g1="Aring" g2="slash" k="31" />
+<hkern g1="Aring" g2="zero" k="31" />
+<hkern g1="Aring" g2="two" k="-18" />
+<hkern g1="Aring" g2="four" k="20" />
+<hkern g1="Aring" g2="six" k="23" />
+<hkern g1="Aring" g2="seven" k="59" />
+<hkern g1="Aring" g2="question" k="61" />
+<hkern g1="Aring" g2="A" k="-49" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-35" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="109" />
+<hkern g1="Aring" g2="U" k="80" />
+<hkern g1="Aring" g2="V" k="160" />
+<hkern g1="Aring" g2="W" k="143" />
+<hkern g1="Aring" g2="Y" k="139" />
+<hkern g1="Aring" g2="backslash" k="145" />
+<hkern g1="Aring" g2="bracketright" k="109" />
+<hkern g1="Aring" g2="b" k="16" />
+<hkern g1="Aring" g2="c" k="27" />
+<hkern g1="Aring" g2="d" k="23" />
+<hkern g1="Aring" g2="e" k="27" />
+<hkern g1="Aring" g2="f" k="12" />
+<hkern g1="Aring" g2="g" k="12" />
+<hkern g1="Aring" g2="i" k="10" />
+<hkern g1="Aring" g2="j" k="33" />
+<hkern g1="Aring" g2="m" k="10" />
+<hkern g1="Aring" g2="n" k="10" />
+<hkern g1="Aring" g2="o" k="27" />
+<hkern g1="Aring" g2="p" k="31" />
+<hkern g1="Aring" g2="q" k="23" />
+<hkern g1="Aring" g2="r" k="10" />
+<hkern g1="Aring" g2="s" k="12" />
+<hkern g1="Aring" g2="t" k="45" />
+<hkern g1="Aring" g2="u" k="43" />
+<hkern g1="Aring" g2="v" k="100" />
+<hkern g1="Aring" g2="w" k="66" />
+<hkern g1="Aring" g2="y" k="109" />
+<hkern g1="Aring" g2="z" k="-25" />
+<hkern g1="Aring" g2="braceright" k="49" />
+<hkern g1="Aring" g2="guillemotleft" k="41" />
+<hkern g1="Aring" g2="uni00AD" k="78" />
+<hkern g1="Aring" g2="registered" k="33" />
+<hkern g1="Aring" g2="guillemotright" k="-16" />
+<hkern g1="Aring" g2="Agrave" k="-49" />
+<hkern g1="Aring" g2="Aacute" k="-49" />
+<hkern g1="Aring" g2="Acircumflex" k="-49" />
+<hkern g1="Aring" g2="Atilde" k="-49" />
+<hkern g1="Aring" g2="Adieresis" k="-49" />
+<hkern g1="Aring" g2="Aring" k="-49" />
+<hkern g1="Aring" g2="AE" k="-49" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Ugrave" k="80" />
+<hkern g1="Aring" g2="Uacute" k="80" />
+<hkern g1="Aring" g2="Ucircumflex" k="80" />
+<hkern g1="Aring" g2="Udieresis" k="80" />
+<hkern g1="Aring" g2="Yacute" k="139" />
+<hkern g1="Aring" g2="germandbls" k="12" />
+<hkern g1="Aring" g2="ccedilla" k="27" />
+<hkern g1="Aring" g2="egrave" k="27" />
+<hkern g1="Aring" g2="eacute" k="27" />
+<hkern g1="Aring" g2="ecircumflex" k="27" />
+<hkern g1="Aring" g2="edieresis" k="27" />
+<hkern g1="Aring" g2="igrave" k="10" />
+<hkern g1="Aring" g2="iacute" k="10" />
+<hkern g1="Aring" g2="icircumflex" k="10" />
+<hkern g1="Aring" g2="idieresis" k="10" />
+<hkern g1="Aring" g2="eth" k="23" />
+<hkern g1="Aring" g2="ntilde" k="10" />
+<hkern g1="Aring" g2="ograve" k="27" />
+<hkern g1="Aring" g2="oacute" k="27" />
+<hkern g1="Aring" g2="ocircumflex" k="27" />
+<hkern g1="Aring" g2="otilde" k="27" />
+<hkern g1="Aring" g2="odieresis" k="27" />
+<hkern g1="Aring" g2="oslash" k="27" />
+<hkern g1="Aring" g2="ugrave" k="43" />
+<hkern g1="Aring" g2="uacute" k="43" />
+<hkern g1="Aring" g2="ucircumflex" k="43" />
+<hkern g1="Aring" g2="udieresis" k="43" />
+<hkern g1="Aring" g2="yacute" k="109" />
+<hkern g1="Aring" g2="thorn" k="16" />
+<hkern g1="Aring" g2="ydieresis" k="109" />
+<hkern g1="Aring" g2="dotlessi" k="10" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="oe" k="27" />
+<hkern g1="Aring" g2="endash" k="78" />
+<hkern g1="Aring" g2="emdash" k="78" />
+<hkern g1="Aring" g2="quoteleft" k="135" />
+<hkern g1="Aring" g2="quoteright" k="141" />
+<hkern g1="Aring" g2="quotedblleft" k="135" />
+<hkern g1="Aring" g2="quotedblright" k="141" />
+<hkern g1="Aring" g2="guilsinglleft" k="41" />
+<hkern g1="Aring" g2="guilsinglright" k="-16" />
+<hkern g1="AE" g2="hyphen" k="29" />
+<hkern g1="AE" g2="slash" k="57" />
+<hkern g1="AE" g2="V" k="14" />
+<hkern g1="AE" g2="W" k="14" />
+<hkern g1="AE" g2="Y" k="14" />
+<hkern g1="AE" g2="c" k="10" />
+<hkern g1="AE" g2="e" k="10" />
+<hkern g1="AE" g2="f" k="10" />
+<hkern g1="AE" g2="g" k="16" />
+<hkern g1="AE" g2="i" k="10" />
+<hkern g1="AE" g2="j" k="23" />
+<hkern g1="AE" g2="m" k="10" />
+<hkern g1="AE" g2="n" k="10" />
+<hkern g1="AE" g2="o" k="10" />
+<hkern g1="AE" g2="p" k="23" />
+<hkern g1="AE" g2="r" k="10" />
+<hkern g1="AE" g2="s" k="10" />
+<hkern g1="AE" g2="t" k="14" />
+<hkern g1="AE" g2="u" k="18" />
+<hkern g1="AE" g2="v" k="31" />
+<hkern g1="AE" g2="w" k="25" />
+<hkern g1="AE" g2="y" k="33" />
+<hkern g1="AE" g2="z" k="10" />
+<hkern g1="AE" g2="uni00AD" k="29" />
+<hkern g1="AE" g2="Yacute" k="14" />
+<hkern g1="AE" g2="germandbls" k="10" />
+<hkern g1="AE" g2="ccedilla" k="10" />
+<hkern g1="AE" g2="egrave" k="10" />
+<hkern g1="AE" g2="eacute" k="10" />
+<hkern g1="AE" g2="ecircumflex" k="10" />
+<hkern g1="AE" g2="edieresis" k="10" />
+<hkern g1="AE" g2="igrave" k="10" />
+<hkern g1="AE" g2="iacute" k="10" />
+<hkern g1="AE" g2="icircumflex" k="10" />
+<hkern g1="AE" g2="idieresis" k="10" />
+<hkern g1="AE" g2="ntilde" k="10" />
+<hkern g1="AE" g2="ograve" k="10" />
+<hkern g1="AE" g2="oacute" k="10" />
+<hkern g1="AE" g2="ocircumflex" k="10" />
+<hkern g1="AE" g2="otilde" k="10" />
+<hkern g1="AE" g2="odieresis" k="10" />
+<hkern g1="AE" g2="oslash" k="10" />
+<hkern g1="AE" g2="ugrave" k="18" />
+<hkern g1="AE" g2="uacute" k="18" />
+<hkern g1="AE" g2="ucircumflex" k="18" />
+<hkern g1="AE" g2="udieresis" k="18" />
+<hkern g1="AE" g2="yacute" k="33" />
+<hkern g1="AE" g2="ydieresis" k="33" />
+<hkern g1="AE" g2="dotlessi" k="10" />
+<hkern g1="AE" g2="oe" k="10" />
+<hkern g1="AE" g2="endash" k="29" />
+<hkern g1="AE" g2="emdash" k="29" />
+<hkern g1="Ccedilla" g2="ampersand" k="-25" />
+<hkern g1="Ccedilla" g2="hyphen" k="55" />
+<hkern g1="Ccedilla" g2="slash" k="78" />
+<hkern g1="Ccedilla" g2="three" k="-16" />
+<hkern g1="Ccedilla" g2="A" k="14" />
+<hkern g1="Ccedilla" g2="g" k="16" />
+<hkern g1="Ccedilla" g2="uni00AD" k="55" />
+<hkern g1="Ccedilla" g2="Agrave" k="14" />
+<hkern g1="Ccedilla" g2="Aacute" k="14" />
+<hkern g1="Ccedilla" g2="Acircumflex" k="14" />
+<hkern g1="Ccedilla" g2="Atilde" k="14" />
+<hkern g1="Ccedilla" g2="Adieresis" k="14" />
+<hkern g1="Ccedilla" g2="Aring" k="14" />
+<hkern g1="Ccedilla" g2="AE" k="25" />
+<hkern g1="Ccedilla" g2="endash" k="55" />
+<hkern g1="Ccedilla" g2="emdash" k="55" />
+<hkern g1="Egrave" g2="hyphen" k="29" />
+<hkern g1="Egrave" g2="slash" k="57" />
+<hkern g1="Egrave" g2="V" k="14" />
+<hkern g1="Egrave" g2="W" k="14" />
+<hkern g1="Egrave" g2="Y" k="14" />
+<hkern g1="Egrave" g2="c" k="10" />
+<hkern g1="Egrave" g2="e" k="10" />
+<hkern g1="Egrave" g2="f" k="10" />
+<hkern g1="Egrave" g2="g" k="16" />
+<hkern g1="Egrave" g2="i" k="10" />
+<hkern g1="Egrave" g2="j" k="23" />
+<hkern g1="Egrave" g2="m" k="10" />
+<hkern g1="Egrave" g2="n" k="10" />
+<hkern g1="Egrave" g2="o" k="10" />
+<hkern g1="Egrave" g2="p" k="23" />
+<hkern g1="Egrave" g2="r" k="10" />
+<hkern g1="Egrave" g2="s" k="10" />
+<hkern g1="Egrave" g2="t" k="14" />
+<hkern g1="Egrave" g2="u" k="18" />
+<hkern g1="Egrave" g2="v" k="31" />
+<hkern g1="Egrave" g2="w" k="25" />
+<hkern g1="Egrave" g2="y" k="33" />
+<hkern g1="Egrave" g2="z" k="10" />
+<hkern g1="Egrave" g2="uni00AD" k="29" />
+<hkern g1="Egrave" g2="Yacute" k="14" />
+<hkern g1="Egrave" g2="germandbls" k="10" />
+<hkern g1="Egrave" g2="ccedilla" k="10" />
+<hkern g1="Egrave" g2="egrave" k="10" />
+<hkern g1="Egrave" g2="eacute" k="10" />
+<hkern g1="Egrave" g2="ecircumflex" k="10" />
+<hkern g1="Egrave" g2="edieresis" k="10" />
+<hkern g1="Egrave" g2="igrave" k="10" />
+<hkern g1="Egrave" g2="iacute" k="10" />
+<hkern g1="Egrave" g2="icircumflex" k="10" />
+<hkern g1="Egrave" g2="idieresis" k="10" />
+<hkern g1="Egrave" g2="ntilde" k="10" />
+<hkern g1="Egrave" g2="ograve" k="10" />
+<hkern g1="Egrave" g2="oacute" k="10" />
+<hkern g1="Egrave" g2="ocircumflex" k="10" />
+<hkern g1="Egrave" g2="otilde" k="10" />
+<hkern g1="Egrave" g2="odieresis" k="10" />
+<hkern g1="Egrave" g2="oslash" k="10" />
+<hkern g1="Egrave" g2="ugrave" k="18" />
+<hkern g1="Egrave" g2="uacute" k="18" />
+<hkern g1="Egrave" g2="ucircumflex" k="18" />
+<hkern g1="Egrave" g2="udieresis" k="18" />
+<hkern g1="Egrave" g2="yacute" k="33" />
+<hkern g1="Egrave" g2="ydieresis" k="33" />
+<hkern g1="Egrave" g2="dotlessi" k="10" />
+<hkern g1="Egrave" g2="oe" k="10" />
+<hkern g1="Egrave" g2="endash" k="29" />
+<hkern g1="Egrave" g2="emdash" k="29" />
+<hkern g1="Eacute" g2="hyphen" k="29" />
+<hkern g1="Eacute" g2="slash" k="57" />
+<hkern g1="Eacute" g2="V" k="14" />
+<hkern g1="Eacute" g2="W" k="14" />
+<hkern g1="Eacute" g2="Y" k="14" />
+<hkern g1="Eacute" g2="c" k="10" />
+<hkern g1="Eacute" g2="e" k="10" />
+<hkern g1="Eacute" g2="f" k="10" />
+<hkern g1="Eacute" g2="g" k="16" />
+<hkern g1="Eacute" g2="i" k="10" />
+<hkern g1="Eacute" g2="j" k="23" />
+<hkern g1="Eacute" g2="m" k="10" />
+<hkern g1="Eacute" g2="n" k="10" />
+<hkern g1="Eacute" g2="o" k="10" />
+<hkern g1="Eacute" g2="p" k="23" />
+<hkern g1="Eacute" g2="r" k="10" />
+<hkern g1="Eacute" g2="s" k="10" />
+<hkern g1="Eacute" g2="t" k="14" />
+<hkern g1="Eacute" g2="u" k="18" />
+<hkern g1="Eacute" g2="v" k="31" />
+<hkern g1="Eacute" g2="w" k="25" />
+<hkern g1="Eacute" g2="y" k="33" />
+<hkern g1="Eacute" g2="z" k="10" />
+<hkern g1="Eacute" g2="uni00AD" k="29" />
+<hkern g1="Eacute" g2="Yacute" k="14" />
+<hkern g1="Eacute" g2="germandbls" k="10" />
+<hkern g1="Eacute" g2="ccedilla" k="10" />
+<hkern g1="Eacute" g2="egrave" k="10" />
+<hkern g1="Eacute" g2="eacute" k="10" />
+<hkern g1="Eacute" g2="ecircumflex" k="10" />
+<hkern g1="Eacute" g2="edieresis" k="10" />
+<hkern g1="Eacute" g2="igrave" k="10" />
+<hkern g1="Eacute" g2="iacute" k="10" />
+<hkern g1="Eacute" g2="icircumflex" k="10" />
+<hkern g1="Eacute" g2="idieresis" k="10" />
+<hkern g1="Eacute" g2="ntilde" k="10" />
+<hkern g1="Eacute" g2="ograve" k="10" />
+<hkern g1="Eacute" g2="oacute" k="10" />
+<hkern g1="Eacute" g2="ocircumflex" k="10" />
+<hkern g1="Eacute" g2="otilde" k="10" />
+<hkern g1="Eacute" g2="odieresis" k="10" />
+<hkern g1="Eacute" g2="oslash" k="10" />
+<hkern g1="Eacute" g2="ugrave" k="18" />
+<hkern g1="Eacute" g2="uacute" k="18" />
+<hkern g1="Eacute" g2="ucircumflex" k="18" />
+<hkern g1="Eacute" g2="udieresis" k="18" />
+<hkern g1="Eacute" g2="yacute" k="33" />
+<hkern g1="Eacute" g2="ydieresis" k="33" />
+<hkern g1="Eacute" g2="dotlessi" k="10" />
+<hkern g1="Eacute" g2="oe" k="10" />
+<hkern g1="Eacute" g2="endash" k="29" />
+<hkern g1="Eacute" g2="emdash" k="29" />
+<hkern g1="Ecircumflex" g2="hyphen" k="29" />
+<hkern g1="Ecircumflex" g2="slash" k="57" />
+<hkern g1="Ecircumflex" g2="V" k="14" />
+<hkern g1="Ecircumflex" g2="W" k="14" />
+<hkern g1="Ecircumflex" g2="Y" k="14" />
+<hkern g1="Ecircumflex" g2="c" k="10" />
+<hkern g1="Ecircumflex" g2="e" k="10" />
+<hkern g1="Ecircumflex" g2="f" k="10" />
+<hkern g1="Ecircumflex" g2="g" k="16" />
+<hkern g1="Ecircumflex" g2="i" k="10" />
+<hkern g1="Ecircumflex" g2="j" k="23" />
+<hkern g1="Ecircumflex" g2="m" k="10" />
+<hkern g1="Ecircumflex" g2="n" k="10" />
+<hkern g1="Ecircumflex" g2="o" k="10" />
+<hkern g1="Ecircumflex" g2="p" k="23" />
+<hkern g1="Ecircumflex" g2="r" k="10" />
+<hkern g1="Ecircumflex" g2="s" k="10" />
+<hkern g1="Ecircumflex" g2="t" k="14" />
+<hkern g1="Ecircumflex" g2="u" k="18" />
+<hkern g1="Ecircumflex" g2="v" k="31" />
+<hkern g1="Ecircumflex" g2="w" k="25" />
+<hkern g1="Ecircumflex" g2="y" k="33" />
+<hkern g1="Ecircumflex" g2="z" k="10" />
+<hkern g1="Ecircumflex" g2="uni00AD" k="29" />
+<hkern g1="Ecircumflex" g2="Yacute" k="14" />
+<hkern g1="Ecircumflex" g2="germandbls" k="10" />
+<hkern g1="Ecircumflex" g2="ccedilla" k="10" />
+<hkern g1="Ecircumflex" g2="egrave" k="10" />
+<hkern g1="Ecircumflex" g2="eacute" k="10" />
+<hkern g1="Ecircumflex" g2="ecircumflex" k="10" />
+<hkern g1="Ecircumflex" g2="edieresis" k="10" />
+<hkern g1="Ecircumflex" g2="igrave" k="10" />
+<hkern g1="Ecircumflex" g2="iacute" k="10" />
+<hkern g1="Ecircumflex" g2="icircumflex" k="10" />
+<hkern g1="Ecircumflex" g2="idieresis" k="10" />
+<hkern g1="Ecircumflex" g2="ntilde" k="10" />
+<hkern g1="Ecircumflex" g2="ograve" k="10" />
+<hkern g1="Ecircumflex" g2="oacute" k="10" />
+<hkern g1="Ecircumflex" g2="ocircumflex" k="10" />
+<hkern g1="Ecircumflex" g2="otilde" k="10" />
+<hkern g1="Ecircumflex" g2="odieresis" k="10" />
+<hkern g1="Ecircumflex" g2="oslash" k="10" />
+<hkern g1="Ecircumflex" g2="ugrave" k="18" />
+<hkern g1="Ecircumflex" g2="uacute" k="18" />
+<hkern g1="Ecircumflex" g2="ucircumflex" k="18" />
+<hkern g1="Ecircumflex" g2="udieresis" k="18" />
+<hkern g1="Ecircumflex" g2="yacute" k="33" />
+<hkern g1="Ecircumflex" g2="ydieresis" k="33" />
+<hkern g1="Ecircumflex" g2="dotlessi" k="10" />
+<hkern g1="Ecircumflex" g2="oe" k="10" />
+<hkern g1="Ecircumflex" g2="endash" k="29" />
+<hkern g1="Ecircumflex" g2="emdash" k="29" />
+<hkern g1="Edieresis" g2="hyphen" k="29" />
+<hkern g1="Edieresis" g2="slash" k="57" />
+<hkern g1="Edieresis" g2="V" k="14" />
+<hkern g1="Edieresis" g2="W" k="14" />
+<hkern g1="Edieresis" g2="Y" k="14" />
+<hkern g1="Edieresis" g2="c" k="10" />
+<hkern g1="Edieresis" g2="e" k="10" />
+<hkern g1="Edieresis" g2="f" k="10" />
+<hkern g1="Edieresis" g2="g" k="16" />
+<hkern g1="Edieresis" g2="i" k="10" />
+<hkern g1="Edieresis" g2="j" k="23" />
+<hkern g1="Edieresis" g2="m" k="10" />
+<hkern g1="Edieresis" g2="n" k="10" />
+<hkern g1="Edieresis" g2="o" k="10" />
+<hkern g1="Edieresis" g2="p" k="23" />
+<hkern g1="Edieresis" g2="r" k="10" />
+<hkern g1="Edieresis" g2="s" k="10" />
+<hkern g1="Edieresis" g2="t" k="14" />
+<hkern g1="Edieresis" g2="u" k="18" />
+<hkern g1="Edieresis" g2="v" k="31" />
+<hkern g1="Edieresis" g2="w" k="25" />
+<hkern g1="Edieresis" g2="y" k="33" />
+<hkern g1="Edieresis" g2="z" k="10" />
+<hkern g1="Edieresis" g2="uni00AD" k="29" />
+<hkern g1="Edieresis" g2="Yacute" k="14" />
+<hkern g1="Edieresis" g2="germandbls" k="10" />
+<hkern g1="Edieresis" g2="ccedilla" k="10" />
+<hkern g1="Edieresis" g2="egrave" k="10" />
+<hkern g1="Edieresis" g2="eacute" k="10" />
+<hkern g1="Edieresis" g2="ecircumflex" k="10" />
+<hkern g1="Edieresis" g2="edieresis" k="10" />
+<hkern g1="Edieresis" g2="igrave" k="10" />
+<hkern g1="Edieresis" g2="iacute" k="10" />
+<hkern g1="Edieresis" g2="icircumflex" k="10" />
+<hkern g1="Edieresis" g2="idieresis" k="10" />
+<hkern g1="Edieresis" g2="ntilde" k="10" />
+<hkern g1="Edieresis" g2="ograve" k="10" />
+<hkern g1="Edieresis" g2="oacute" k="10" />
+<hkern g1="Edieresis" g2="ocircumflex" k="10" />
+<hkern g1="Edieresis" g2="otilde" k="10" />
+<hkern g1="Edieresis" g2="odieresis" k="10" />
+<hkern g1="Edieresis" g2="oslash" k="10" />
+<hkern g1="Edieresis" g2="ugrave" k="18" />
+<hkern g1="Edieresis" g2="uacute" k="18" />
+<hkern g1="Edieresis" g2="ucircumflex" k="18" />
+<hkern g1="Edieresis" g2="udieresis" k="18" />
+<hkern g1="Edieresis" g2="yacute" k="33" />
+<hkern g1="Edieresis" g2="ydieresis" k="33" />
+<hkern g1="Edieresis" g2="dotlessi" k="10" />
+<hkern g1="Edieresis" g2="oe" k="10" />
+<hkern g1="Edieresis" g2="endash" k="29" />
+<hkern g1="Edieresis" g2="emdash" k="29" />
+<hkern g1="Igrave" g2="asterisk" k="18" />
+<hkern g1="Igrave" g2="hyphen" k="47" />
+<hkern g1="Igrave" g2="slash" k="61" />
+<hkern g1="Igrave" g2="C" k="25" />
+<hkern g1="Igrave" g2="G" k="25" />
+<hkern g1="Igrave" g2="O" k="25" />
+<hkern g1="Igrave" g2="Q" k="25" />
+<hkern g1="Igrave" g2="a" k="25" />
+<hkern g1="Igrave" g2="c" k="53" />
+<hkern g1="Igrave" g2="d" k="49" />
+<hkern g1="Igrave" g2="e" k="53" />
+<hkern g1="Igrave" g2="f" k="27" />
+<hkern g1="Igrave" g2="g" k="35" />
+<hkern g1="Igrave" g2="i" k="25" />
+<hkern g1="Igrave" g2="j" k="43" />
+<hkern g1="Igrave" g2="m" k="23" />
+<hkern g1="Igrave" g2="n" k="23" />
+<hkern g1="Igrave" g2="o" k="53" />
+<hkern g1="Igrave" g2="p" k="49" />
+<hkern g1="Igrave" g2="q" k="49" />
+<hkern g1="Igrave" g2="r" k="23" />
+<hkern g1="Igrave" g2="s" k="25" />
+<hkern g1="Igrave" g2="t" k="51" />
+<hkern g1="Igrave" g2="u" k="51" />
+<hkern g1="Igrave" g2="v" k="66" />
+<hkern g1="Igrave" g2="w" k="63" />
+<hkern g1="Igrave" g2="x" k="20" />
+<hkern g1="Igrave" g2="y" k="66" />
+<hkern g1="Igrave" g2="z" k="18" />
+<hkern g1="Igrave" g2="guillemotleft" k="33" />
+<hkern g1="Igrave" g2="uni00AD" k="47" />
+<hkern g1="Igrave" g2="Ccedilla" k="25" />
+<hkern g1="Igrave" g2="Ograve" k="25" />
+<hkern g1="Igrave" g2="Oacute" k="25" />
+<hkern g1="Igrave" g2="Ocircumflex" k="25" />
+<hkern g1="Igrave" g2="Otilde" k="25" />
+<hkern g1="Igrave" g2="Odieresis" k="25" />
+<hkern g1="Igrave" g2="Oslash" k="25" />
+<hkern g1="Igrave" g2="germandbls" k="27" />
+<hkern g1="Igrave" g2="agrave" k="25" />
+<hkern g1="Igrave" g2="aacute" k="25" />
+<hkern g1="Igrave" g2="acircumflex" k="25" />
+<hkern g1="Igrave" g2="atilde" k="25" />
+<hkern g1="Igrave" g2="adieresis" k="25" />
+<hkern g1="Igrave" g2="aring" k="25" />
+<hkern g1="Igrave" g2="ae" k="25" />
+<hkern g1="Igrave" g2="ccedilla" k="53" />
+<hkern g1="Igrave" g2="egrave" k="53" />
+<hkern g1="Igrave" g2="eacute" k="53" />
+<hkern g1="Igrave" g2="ecircumflex" k="53" />
+<hkern g1="Igrave" g2="edieresis" k="53" />
+<hkern g1="Igrave" g2="igrave" k="25" />
+<hkern g1="Igrave" g2="iacute" k="25" />
+<hkern g1="Igrave" g2="icircumflex" k="25" />
+<hkern g1="Igrave" g2="idieresis" k="25" />
+<hkern g1="Igrave" g2="eth" k="43" />
+<hkern g1="Igrave" g2="ntilde" k="23" />
+<hkern g1="Igrave" g2="ograve" k="53" />
+<hkern g1="Igrave" g2="oacute" k="53" />
+<hkern g1="Igrave" g2="ocircumflex" k="53" />
+<hkern g1="Igrave" g2="otilde" k="53" />
+<hkern g1="Igrave" g2="odieresis" k="53" />
+<hkern g1="Igrave" g2="oslash" k="53" />
+<hkern g1="Igrave" g2="ugrave" k="51" />
+<hkern g1="Igrave" g2="uacute" k="51" />
+<hkern g1="Igrave" g2="ucircumflex" k="51" />
+<hkern g1="Igrave" g2="udieresis" k="51" />
+<hkern g1="Igrave" g2="yacute" k="66" />
+<hkern g1="Igrave" g2="ydieresis" k="66" />
+<hkern g1="Igrave" g2="dotlessi" k="25" />
+<hkern g1="Igrave" g2="OE" k="25" />
+<hkern g1="Igrave" g2="oe" k="53" />
+<hkern g1="Igrave" g2="endash" k="47" />
+<hkern g1="Igrave" g2="emdash" k="47" />
+<hkern g1="Igrave" g2="guilsinglleft" k="33" />
+<hkern g1="Iacute" g2="asterisk" k="18" />
+<hkern g1="Iacute" g2="hyphen" k="47" />
+<hkern g1="Iacute" g2="slash" k="61" />
+<hkern g1="Iacute" g2="C" k="25" />
+<hkern g1="Iacute" g2="G" k="25" />
+<hkern g1="Iacute" g2="O" k="25" />
+<hkern g1="Iacute" g2="Q" k="25" />
+<hkern g1="Iacute" g2="a" k="25" />
+<hkern g1="Iacute" g2="c" k="53" />
+<hkern g1="Iacute" g2="d" k="49" />
+<hkern g1="Iacute" g2="e" k="53" />
+<hkern g1="Iacute" g2="f" k="27" />
+<hkern g1="Iacute" g2="g" k="35" />
+<hkern g1="Iacute" g2="i" k="25" />
+<hkern g1="Iacute" g2="j" k="43" />
+<hkern g1="Iacute" g2="m" k="23" />
+<hkern g1="Iacute" g2="n" k="23" />
+<hkern g1="Iacute" g2="o" k="53" />
+<hkern g1="Iacute" g2="p" k="49" />
+<hkern g1="Iacute" g2="q" k="49" />
+<hkern g1="Iacute" g2="r" k="23" />
+<hkern g1="Iacute" g2="s" k="25" />
+<hkern g1="Iacute" g2="t" k="51" />
+<hkern g1="Iacute" g2="u" k="51" />
+<hkern g1="Iacute" g2="v" k="66" />
+<hkern g1="Iacute" g2="w" k="63" />
+<hkern g1="Iacute" g2="x" k="20" />
+<hkern g1="Iacute" g2="y" k="66" />
+<hkern g1="Iacute" g2="z" k="18" />
+<hkern g1="Iacute" g2="guillemotleft" k="33" />
+<hkern g1="Iacute" g2="uni00AD" k="47" />
+<hkern g1="Iacute" g2="Ccedilla" k="25" />
+<hkern g1="Iacute" g2="Ograve" k="25" />
+<hkern g1="Iacute" g2="Oacute" k="25" />
+<hkern g1="Iacute" g2="Ocircumflex" k="25" />
+<hkern g1="Iacute" g2="Otilde" k="25" />
+<hkern g1="Iacute" g2="Odieresis" k="25" />
+<hkern g1="Iacute" g2="Oslash" k="25" />
+<hkern g1="Iacute" g2="germandbls" k="27" />
+<hkern g1="Iacute" g2="agrave" k="25" />
+<hkern g1="Iacute" g2="aacute" k="25" />
+<hkern g1="Iacute" g2="acircumflex" k="25" />
+<hkern g1="Iacute" g2="atilde" k="25" />
+<hkern g1="Iacute" g2="adieresis" k="25" />
+<hkern g1="Iacute" g2="aring" k="25" />
+<hkern g1="Iacute" g2="ae" k="25" />
+<hkern g1="Iacute" g2="ccedilla" k="53" />
+<hkern g1="Iacute" g2="egrave" k="53" />
+<hkern g1="Iacute" g2="eacute" k="53" />
+<hkern g1="Iacute" g2="ecircumflex" k="53" />
+<hkern g1="Iacute" g2="edieresis" k="53" />
+<hkern g1="Iacute" g2="igrave" k="25" />
+<hkern g1="Iacute" g2="iacute" k="25" />
+<hkern g1="Iacute" g2="icircumflex" k="25" />
+<hkern g1="Iacute" g2="idieresis" k="25" />
+<hkern g1="Iacute" g2="eth" k="43" />
+<hkern g1="Iacute" g2="ntilde" k="23" />
+<hkern g1="Iacute" g2="ograve" k="53" />
+<hkern g1="Iacute" g2="oacute" k="53" />
+<hkern g1="Iacute" g2="ocircumflex" k="53" />
+<hkern g1="Iacute" g2="otilde" k="53" />
+<hkern g1="Iacute" g2="odieresis" k="53" />
+<hkern g1="Iacute" g2="oslash" k="53" />
+<hkern g1="Iacute" g2="ugrave" k="51" />
+<hkern g1="Iacute" g2="uacute" k="51" />
+<hkern g1="Iacute" g2="ucircumflex" k="51" />
+<hkern g1="Iacute" g2="udieresis" k="51" />
+<hkern g1="Iacute" g2="yacute" k="66" />
+<hkern g1="Iacute" g2="ydieresis" k="66" />
+<hkern g1="Iacute" g2="dotlessi" k="25" />
+<hkern g1="Iacute" g2="OE" k="25" />
+<hkern g1="Iacute" g2="oe" k="53" />
+<hkern g1="Iacute" g2="endash" k="47" />
+<hkern g1="Iacute" g2="emdash" k="47" />
+<hkern g1="Iacute" g2="guilsinglleft" k="33" />
+<hkern g1="Icircumflex" g2="asterisk" k="18" />
+<hkern g1="Icircumflex" g2="hyphen" k="47" />
+<hkern g1="Icircumflex" g2="slash" k="61" />
+<hkern g1="Icircumflex" g2="C" k="25" />
+<hkern g1="Icircumflex" g2="G" k="25" />
+<hkern g1="Icircumflex" g2="O" k="25" />
+<hkern g1="Icircumflex" g2="Q" k="25" />
+<hkern g1="Icircumflex" g2="a" k="25" />
+<hkern g1="Icircumflex" g2="c" k="53" />
+<hkern g1="Icircumflex" g2="d" k="49" />
+<hkern g1="Icircumflex" g2="e" k="53" />
+<hkern g1="Icircumflex" g2="f" k="27" />
+<hkern g1="Icircumflex" g2="g" k="35" />
+<hkern g1="Icircumflex" g2="i" k="25" />
+<hkern g1="Icircumflex" g2="j" k="43" />
+<hkern g1="Icircumflex" g2="m" k="23" />
+<hkern g1="Icircumflex" g2="n" k="23" />
+<hkern g1="Icircumflex" g2="o" k="53" />
+<hkern g1="Icircumflex" g2="p" k="49" />
+<hkern g1="Icircumflex" g2="q" k="49" />
+<hkern g1="Icircumflex" g2="r" k="23" />
+<hkern g1="Icircumflex" g2="s" k="25" />
+<hkern g1="Icircumflex" g2="t" k="51" />
+<hkern g1="Icircumflex" g2="u" k="51" />
+<hkern g1="Icircumflex" g2="v" k="66" />
+<hkern g1="Icircumflex" g2="w" k="63" />
+<hkern g1="Icircumflex" g2="x" k="20" />
+<hkern g1="Icircumflex" g2="y" k="66" />
+<hkern g1="Icircumflex" g2="z" k="18" />
+<hkern g1="Icircumflex" g2="guillemotleft" k="33" />
+<hkern g1="Icircumflex" g2="uni00AD" k="47" />
+<hkern g1="Icircumflex" g2="Ccedilla" k="25" />
+<hkern g1="Icircumflex" g2="Ograve" k="25" />
+<hkern g1="Icircumflex" g2="Oacute" k="25" />
+<hkern g1="Icircumflex" g2="Ocircumflex" k="25" />
+<hkern g1="Icircumflex" g2="Otilde" k="25" />
+<hkern g1="Icircumflex" g2="Odieresis" k="25" />
+<hkern g1="Icircumflex" g2="Oslash" k="25" />
+<hkern g1="Icircumflex" g2="germandbls" k="27" />
+<hkern g1="Icircumflex" g2="agrave" k="25" />
+<hkern g1="Icircumflex" g2="aacute" k="25" />
+<hkern g1="Icircumflex" g2="acircumflex" k="25" />
+<hkern g1="Icircumflex" g2="atilde" k="25" />
+<hkern g1="Icircumflex" g2="adieresis" k="25" />
+<hkern g1="Icircumflex" g2="aring" k="25" />
+<hkern g1="Icircumflex" g2="ae" k="25" />
+<hkern g1="Icircumflex" g2="ccedilla" k="53" />
+<hkern g1="Icircumflex" g2="egrave" k="53" />
+<hkern g1="Icircumflex" g2="eacute" k="53" />
+<hkern g1="Icircumflex" g2="ecircumflex" k="53" />
+<hkern g1="Icircumflex" g2="edieresis" k="53" />
+<hkern g1="Icircumflex" g2="igrave" k="25" />
+<hkern g1="Icircumflex" g2="iacute" k="25" />
+<hkern g1="Icircumflex" g2="icircumflex" k="25" />
+<hkern g1="Icircumflex" g2="idieresis" k="25" />
+<hkern g1="Icircumflex" g2="eth" k="43" />
+<hkern g1="Icircumflex" g2="ntilde" k="23" />
+<hkern g1="Icircumflex" g2="ograve" k="53" />
+<hkern g1="Icircumflex" g2="oacute" k="53" />
+<hkern g1="Icircumflex" g2="ocircumflex" k="53" />
+<hkern g1="Icircumflex" g2="otilde" k="53" />
+<hkern g1="Icircumflex" g2="odieresis" k="53" />
+<hkern g1="Icircumflex" g2="oslash" k="53" />
+<hkern g1="Icircumflex" g2="ugrave" k="51" />
+<hkern g1="Icircumflex" g2="uacute" k="51" />
+<hkern g1="Icircumflex" g2="ucircumflex" k="51" />
+<hkern g1="Icircumflex" g2="udieresis" k="51" />
+<hkern g1="Icircumflex" g2="yacute" k="66" />
+<hkern g1="Icircumflex" g2="ydieresis" k="66" />
+<hkern g1="Icircumflex" g2="dotlessi" k="25" />
+<hkern g1="Icircumflex" g2="OE" k="25" />
+<hkern g1="Icircumflex" g2="oe" k="53" />
+<hkern g1="Icircumflex" g2="endash" k="47" />
+<hkern g1="Icircumflex" g2="emdash" k="47" />
+<hkern g1="Icircumflex" g2="guilsinglleft" k="33" />
+<hkern g1="Idieresis" g2="asterisk" k="18" />
+<hkern g1="Idieresis" g2="hyphen" k="47" />
+<hkern g1="Idieresis" g2="slash" k="61" />
+<hkern g1="Idieresis" g2="C" k="25" />
+<hkern g1="Idieresis" g2="G" k="25" />
+<hkern g1="Idieresis" g2="O" k="25" />
+<hkern g1="Idieresis" g2="Q" k="25" />
+<hkern g1="Idieresis" g2="a" k="25" />
+<hkern g1="Idieresis" g2="c" k="53" />
+<hkern g1="Idieresis" g2="d" k="49" />
+<hkern g1="Idieresis" g2="e" k="53" />
+<hkern g1="Idieresis" g2="f" k="27" />
+<hkern g1="Idieresis" g2="g" k="35" />
+<hkern g1="Idieresis" g2="i" k="25" />
+<hkern g1="Idieresis" g2="j" k="43" />
+<hkern g1="Idieresis" g2="m" k="23" />
+<hkern g1="Idieresis" g2="n" k="23" />
+<hkern g1="Idieresis" g2="o" k="53" />
+<hkern g1="Idieresis" g2="p" k="49" />
+<hkern g1="Idieresis" g2="q" k="49" />
+<hkern g1="Idieresis" g2="r" k="23" />
+<hkern g1="Idieresis" g2="s" k="25" />
+<hkern g1="Idieresis" g2="t" k="51" />
+<hkern g1="Idieresis" g2="u" k="51" />
+<hkern g1="Idieresis" g2="v" k="66" />
+<hkern g1="Idieresis" g2="w" k="63" />
+<hkern g1="Idieresis" g2="x" k="20" />
+<hkern g1="Idieresis" g2="y" k="66" />
+<hkern g1="Idieresis" g2="z" k="18" />
+<hkern g1="Idieresis" g2="guillemotleft" k="33" />
+<hkern g1="Idieresis" g2="uni00AD" k="47" />
+<hkern g1="Idieresis" g2="Ccedilla" k="25" />
+<hkern g1="Idieresis" g2="Ograve" k="25" />
+<hkern g1="Idieresis" g2="Oacute" k="25" />
+<hkern g1="Idieresis" g2="Ocircumflex" k="25" />
+<hkern g1="Idieresis" g2="Otilde" k="25" />
+<hkern g1="Idieresis" g2="Odieresis" k="25" />
+<hkern g1="Idieresis" g2="Oslash" k="25" />
+<hkern g1="Idieresis" g2="germandbls" k="27" />
+<hkern g1="Idieresis" g2="agrave" k="25" />
+<hkern g1="Idieresis" g2="aacute" k="25" />
+<hkern g1="Idieresis" g2="acircumflex" k="25" />
+<hkern g1="Idieresis" g2="atilde" k="25" />
+<hkern g1="Idieresis" g2="adieresis" k="25" />
+<hkern g1="Idieresis" g2="aring" k="25" />
+<hkern g1="Idieresis" g2="ae" k="25" />
+<hkern g1="Idieresis" g2="ccedilla" k="53" />
+<hkern g1="Idieresis" g2="egrave" k="53" />
+<hkern g1="Idieresis" g2="eacute" k="53" />
+<hkern g1="Idieresis" g2="ecircumflex" k="53" />
+<hkern g1="Idieresis" g2="edieresis" k="53" />
+<hkern g1="Idieresis" g2="igrave" k="25" />
+<hkern g1="Idieresis" g2="iacute" k="25" />
+<hkern g1="Idieresis" g2="icircumflex" k="25" />
+<hkern g1="Idieresis" g2="idieresis" k="25" />
+<hkern g1="Idieresis" g2="eth" k="43" />
+<hkern g1="Idieresis" g2="ntilde" k="23" />
+<hkern g1="Idieresis" g2="ograve" k="53" />
+<hkern g1="Idieresis" g2="oacute" k="53" />
+<hkern g1="Idieresis" g2="ocircumflex" k="53" />
+<hkern g1="Idieresis" g2="otilde" k="53" />
+<hkern g1="Idieresis" g2="odieresis" k="53" />
+<hkern g1="Idieresis" g2="oslash" k="53" />
+<hkern g1="Idieresis" g2="ugrave" k="51" />
+<hkern g1="Idieresis" g2="uacute" k="51" />
+<hkern g1="Idieresis" g2="ucircumflex" k="51" />
+<hkern g1="Idieresis" g2="udieresis" k="51" />
+<hkern g1="Idieresis" g2="yacute" k="66" />
+<hkern g1="Idieresis" g2="ydieresis" k="66" />
+<hkern g1="Idieresis" g2="dotlessi" k="25" />
+<hkern g1="Idieresis" g2="OE" k="25" />
+<hkern g1="Idieresis" g2="oe" k="53" />
+<hkern g1="Idieresis" g2="endash" k="47" />
+<hkern g1="Idieresis" g2="emdash" k="47" />
+<hkern g1="Idieresis" g2="guilsinglleft" k="33" />
+<hkern g1="Eth" g2="parenright" k="51" />
+<hkern g1="Eth" g2="comma" k="55" />
+<hkern g1="Eth" g2="period" k="55" />
+<hkern g1="Eth" g2="slash" k="147" />
+<hkern g1="Eth" g2="A" k="57" />
+<hkern g1="Eth" g2="B" k="29" />
+<hkern g1="Eth" g2="D" k="29" />
+<hkern g1="Eth" g2="E" k="29" />
+<hkern g1="Eth" g2="F" k="29" />
+<hkern g1="Eth" g2="H" k="29" />
+<hkern g1="Eth" g2="I" k="29" />
+<hkern g1="Eth" g2="J" k="23" />
+<hkern g1="Eth" g2="K" k="29" />
+<hkern g1="Eth" g2="L" k="29" />
+<hkern g1="Eth" g2="M" k="31" />
+<hkern g1="Eth" g2="N" k="29" />
+<hkern g1="Eth" g2="P" k="29" />
+<hkern g1="Eth" g2="R" k="29" />
+<hkern g1="Eth" g2="U" k="16" />
+<hkern g1="Eth" g2="V" k="53" />
+<hkern g1="Eth" g2="W" k="51" />
+<hkern g1="Eth" g2="X" k="74" />
+<hkern g1="Eth" g2="Y" k="57" />
+<hkern g1="Eth" g2="Z" k="10" />
+<hkern g1="Eth" g2="backslash" k="41" />
+<hkern g1="Eth" g2="bracketright" k="102" />
+<hkern g1="Eth" g2="a" k="12" />
+<hkern g1="Eth" g2="b" k="12" />
+<hkern g1="Eth" g2="g" k="12" />
+<hkern g1="Eth" g2="h" k="29" />
+<hkern g1="Eth" g2="k" k="29" />
+<hkern g1="Eth" g2="l" k="29" />
+<hkern g1="Eth" g2="x" k="12" />
+<hkern g1="Eth" g2="braceright" k="57" />
+<hkern g1="Eth" g2="Agrave" k="57" />
+<hkern g1="Eth" g2="Aacute" k="57" />
+<hkern g1="Eth" g2="Acircumflex" k="57" />
+<hkern g1="Eth" g2="Atilde" k="57" />
+<hkern g1="Eth" g2="Adieresis" k="57" />
+<hkern g1="Eth" g2="Aring" k="57" />
+<hkern g1="Eth" g2="AE" k="82" />
+<hkern g1="Eth" g2="Egrave" k="29" />
+<hkern g1="Eth" g2="Eacute" k="29" />
+<hkern g1="Eth" g2="Ecircumflex" k="29" />
+<hkern g1="Eth" g2="Edieresis" k="29" />
+<hkern g1="Eth" g2="Igrave" k="29" />
+<hkern g1="Eth" g2="Iacute" k="29" />
+<hkern g1="Eth" g2="Icircumflex" k="29" />
+<hkern g1="Eth" g2="Idieresis" k="29" />
+<hkern g1="Eth" g2="Eth" k="29" />
+<hkern g1="Eth" g2="Ntilde" k="29" />
+<hkern g1="Eth" g2="Ugrave" k="16" />
+<hkern g1="Eth" g2="Uacute" k="16" />
+<hkern g1="Eth" g2="Ucircumflex" k="16" />
+<hkern g1="Eth" g2="Udieresis" k="16" />
+<hkern g1="Eth" g2="Yacute" k="57" />
+<hkern g1="Eth" g2="Thorn" k="29" />
+<hkern g1="Eth" g2="agrave" k="12" />
+<hkern g1="Eth" g2="aacute" k="12" />
+<hkern g1="Eth" g2="acircumflex" k="12" />
+<hkern g1="Eth" g2="atilde" k="12" />
+<hkern g1="Eth" g2="adieresis" k="12" />
+<hkern g1="Eth" g2="aring" k="12" />
+<hkern g1="Eth" g2="ae" k="12" />
+<hkern g1="Eth" g2="thorn" k="12" />
+<hkern g1="Eth" g2="quotesinglbase" k="55" />
+<hkern g1="Eth" g2="quotedblbase" k="55" />
+<hkern g1="Ntilde" g2="comma" k="37" />
+<hkern g1="Ntilde" g2="hyphen" k="37" />
+<hkern g1="Ntilde" g2="period" k="37" />
+<hkern g1="Ntilde" g2="slash" k="102" />
+<hkern g1="Ntilde" g2="colon" k="18" />
+<hkern g1="Ntilde" g2="semicolon" k="27" />
+<hkern g1="Ntilde" g2="at" k="20" />
+<hkern g1="Ntilde" g2="A" k="33" />
+<hkern g1="Ntilde" g2="C" k="20" />
+<hkern g1="Ntilde" g2="G" k="20" />
+<hkern g1="Ntilde" g2="J" k="12" />
+<hkern g1="Ntilde" g2="O" k="20" />
+<hkern g1="Ntilde" g2="Q" k="20" />
+<hkern g1="Ntilde" g2="bracketright" k="-23" />
+<hkern g1="Ntilde" g2="a" k="55" />
+<hkern g1="Ntilde" g2="b" k="-23" />
+<hkern g1="Ntilde" g2="c" k="53" />
+<hkern g1="Ntilde" g2="d" k="49" />
+<hkern g1="Ntilde" g2="e" k="53" />
+<hkern g1="Ntilde" g2="f" k="43" />
+<hkern g1="Ntilde" g2="g" k="53" />
+<hkern g1="Ntilde" g2="i" k="43" />
+<hkern g1="Ntilde" g2="j" k="39" />
+<hkern g1="Ntilde" g2="m" k="47" />
+<hkern g1="Ntilde" g2="n" k="47" />
+<hkern g1="Ntilde" g2="o" k="53" />
+<hkern g1="Ntilde" g2="p" k="47" />
+<hkern g1="Ntilde" g2="q" k="49" />
+<hkern g1="Ntilde" g2="r" k="47" />
+<hkern g1="Ntilde" g2="s" k="49" />
+<hkern g1="Ntilde" g2="t" k="49" />
+<hkern g1="Ntilde" g2="u" k="47" />
+<hkern g1="Ntilde" g2="v" k="47" />
+<hkern g1="Ntilde" g2="w" k="47" />
+<hkern g1="Ntilde" g2="x" k="43" />
+<hkern g1="Ntilde" g2="y" k="47" />
+<hkern g1="Ntilde" g2="z" k="51" />
+<hkern g1="Ntilde" g2="braceright" k="-10" />
+<hkern g1="Ntilde" g2="guillemotleft" k="25" />
+<hkern g1="Ntilde" g2="uni00AD" k="37" />
+<hkern g1="Ntilde" g2="Agrave" k="33" />
+<hkern g1="Ntilde" g2="Aacute" k="33" />
+<hkern g1="Ntilde" g2="Acircumflex" k="33" />
+<hkern g1="Ntilde" g2="Atilde" k="33" />
+<hkern g1="Ntilde" g2="Adieresis" k="33" />
+<hkern g1="Ntilde" g2="Aring" k="33" />
+<hkern g1="Ntilde" g2="AE" k="29" />
+<hkern g1="Ntilde" g2="Ccedilla" k="20" />
+<hkern g1="Ntilde" g2="Ograve" k="20" />
+<hkern g1="Ntilde" g2="Oacute" k="20" />
+<hkern g1="Ntilde" g2="Ocircumflex" k="20" />
+<hkern g1="Ntilde" g2="Otilde" k="20" />
+<hkern g1="Ntilde" g2="Odieresis" k="20" />
+<hkern g1="Ntilde" g2="Oslash" k="20" />
+<hkern g1="Ntilde" g2="germandbls" k="43" />
+<hkern g1="Ntilde" g2="agrave" k="55" />
+<hkern g1="Ntilde" g2="aacute" k="55" />
+<hkern g1="Ntilde" g2="acircumflex" k="55" />
+<hkern g1="Ntilde" g2="atilde" k="55" />
+<hkern g1="Ntilde" g2="adieresis" k="55" />
+<hkern g1="Ntilde" g2="aring" k="55" />
+<hkern g1="Ntilde" g2="ae" k="55" />
+<hkern g1="Ntilde" g2="ccedilla" k="53" />
+<hkern g1="Ntilde" g2="egrave" k="53" />
+<hkern g1="Ntilde" g2="eacute" k="53" />
+<hkern g1="Ntilde" g2="ecircumflex" k="53" />
+<hkern g1="Ntilde" g2="edieresis" k="53" />
+<hkern g1="Ntilde" g2="igrave" k="29" />
+<hkern g1="Ntilde" g2="iacute" k="43" />
+<hkern g1="Ntilde" g2="icircumflex" k="43" />
+<hkern g1="Ntilde" g2="idieresis" k="29" />
+<hkern g1="Ntilde" g2="eth" k="45" />
+<hkern g1="Ntilde" g2="ntilde" k="47" />
+<hkern g1="Ntilde" g2="ograve" k="53" />
+<hkern g1="Ntilde" g2="oacute" k="53" />
+<hkern g1="Ntilde" g2="ocircumflex" k="53" />
+<hkern g1="Ntilde" g2="otilde" k="53" />
+<hkern g1="Ntilde" g2="odieresis" k="53" />
+<hkern g1="Ntilde" g2="oslash" k="53" />
+<hkern g1="Ntilde" g2="ugrave" k="47" />
+<hkern g1="Ntilde" g2="uacute" k="47" />
+<hkern g1="Ntilde" g2="ucircumflex" k="47" />
+<hkern g1="Ntilde" g2="udieresis" k="47" />
+<hkern g1="Ntilde" g2="yacute" k="47" />
+<hkern g1="Ntilde" g2="thorn" k="-23" />
+<hkern g1="Ntilde" g2="ydieresis" k="47" />
+<hkern g1="Ntilde" g2="dotlessi" k="43" />
+<hkern g1="Ntilde" g2="OE" k="20" />
+<hkern g1="Ntilde" g2="oe" k="53" />
+<hkern g1="Ntilde" g2="endash" k="37" />
+<hkern g1="Ntilde" g2="emdash" k="37" />
+<hkern g1="Ntilde" g2="quotesinglbase" k="37" />
+<hkern g1="Ntilde" g2="quotedblbase" k="37" />
+<hkern g1="Ntilde" g2="guilsinglleft" k="25" />
+<hkern g1="Ograve" g2="parenright" k="47" />
+<hkern g1="Ograve" g2="comma" k="49" />
+<hkern g1="Ograve" g2="period" k="49" />
+<hkern g1="Ograve" g2="slash" k="141" />
+<hkern g1="Ograve" g2="A" k="49" />
+<hkern g1="Ograve" g2="B" k="25" />
+<hkern g1="Ograve" g2="D" k="25" />
+<hkern g1="Ograve" g2="E" k="25" />
+<hkern g1="Ograve" g2="F" k="25" />
+<hkern g1="Ograve" g2="H" k="25" />
+<hkern g1="Ograve" g2="I" k="25" />
+<hkern g1="Ograve" g2="J" k="18" />
+<hkern g1="Ograve" g2="K" k="25" />
+<hkern g1="Ograve" g2="L" k="25" />
+<hkern g1="Ograve" g2="M" k="25" />
+<hkern g1="Ograve" g2="N" k="25" />
+<hkern g1="Ograve" g2="P" k="25" />
+<hkern g1="Ograve" g2="R" k="25" />
+<hkern g1="Ograve" g2="U" k="12" />
+<hkern g1="Ograve" g2="V" k="45" />
+<hkern g1="Ograve" g2="W" k="45" />
+<hkern g1="Ograve" g2="X" k="66" />
+<hkern g1="Ograve" g2="Y" k="47" />
+<hkern g1="Ograve" g2="backslash" k="33" />
+<hkern g1="Ograve" g2="bracketright" k="94" />
+<hkern g1="Ograve" g2="a" k="12" />
+<hkern g1="Ograve" g2="g" k="12" />
+<hkern g1="Ograve" g2="h" k="27" />
+<hkern g1="Ograve" g2="k" k="27" />
+<hkern g1="Ograve" g2="l" k="27" />
+<hkern g1="Ograve" g2="x" k="12" />
+<hkern g1="Ograve" g2="braceright" k="53" />
+<hkern g1="Ograve" g2="Agrave" k="49" />
+<hkern g1="Ograve" g2="Aacute" k="49" />
+<hkern g1="Ograve" g2="Acircumflex" k="49" />
+<hkern g1="Ograve" g2="Atilde" k="49" />
+<hkern g1="Ograve" g2="Adieresis" k="49" />
+<hkern g1="Ograve" g2="Aring" k="49" />
+<hkern g1="Ograve" g2="AE" k="63" />
+<hkern g1="Ograve" g2="Egrave" k="25" />
+<hkern g1="Ograve" g2="Eacute" k="25" />
+<hkern g1="Ograve" g2="Ecircumflex" k="25" />
+<hkern g1="Ograve" g2="Edieresis" k="25" />
+<hkern g1="Ograve" g2="Igrave" k="25" />
+<hkern g1="Ograve" g2="Iacute" k="25" />
+<hkern g1="Ograve" g2="Icircumflex" k="25" />
+<hkern g1="Ograve" g2="Idieresis" k="25" />
+<hkern g1="Ograve" g2="Eth" k="25" />
+<hkern g1="Ograve" g2="Ntilde" k="25" />
+<hkern g1="Ograve" g2="Ugrave" k="12" />
+<hkern g1="Ograve" g2="Uacute" k="12" />
+<hkern g1="Ograve" g2="Ucircumflex" k="12" />
+<hkern g1="Ograve" g2="Udieresis" k="12" />
+<hkern g1="Ograve" g2="Yacute" k="47" />
+<hkern g1="Ograve" g2="Thorn" k="25" />
+<hkern g1="Ograve" g2="agrave" k="12" />
+<hkern g1="Ograve" g2="aacute" k="12" />
+<hkern g1="Ograve" g2="acircumflex" k="12" />
+<hkern g1="Ograve" g2="atilde" k="12" />
+<hkern g1="Ograve" g2="adieresis" k="12" />
+<hkern g1="Ograve" g2="aring" k="12" />
+<hkern g1="Ograve" g2="ae" k="12" />
+<hkern g1="Ograve" g2="quotesinglbase" k="49" />
+<hkern g1="Ograve" g2="quotedblbase" k="49" />
+<hkern g1="Oacute" g2="parenright" k="47" />
+<hkern g1="Oacute" g2="comma" k="49" />
+<hkern g1="Oacute" g2="period" k="49" />
+<hkern g1="Oacute" g2="slash" k="141" />
+<hkern g1="Oacute" g2="A" k="49" />
+<hkern g1="Oacute" g2="B" k="25" />
+<hkern g1="Oacute" g2="D" k="25" />
+<hkern g1="Oacute" g2="E" k="25" />
+<hkern g1="Oacute" g2="F" k="25" />
+<hkern g1="Oacute" g2="H" k="25" />
+<hkern g1="Oacute" g2="I" k="25" />
+<hkern g1="Oacute" g2="J" k="18" />
+<hkern g1="Oacute" g2="K" k="25" />
+<hkern g1="Oacute" g2="L" k="25" />
+<hkern g1="Oacute" g2="M" k="25" />
+<hkern g1="Oacute" g2="N" k="25" />
+<hkern g1="Oacute" g2="P" k="25" />
+<hkern g1="Oacute" g2="R" k="25" />
+<hkern g1="Oacute" g2="U" k="12" />
+<hkern g1="Oacute" g2="V" k="45" />
+<hkern g1="Oacute" g2="W" k="45" />
+<hkern g1="Oacute" g2="X" k="66" />
+<hkern g1="Oacute" g2="Y" k="47" />
+<hkern g1="Oacute" g2="backslash" k="33" />
+<hkern g1="Oacute" g2="bracketright" k="94" />
+<hkern g1="Oacute" g2="a" k="12" />
+<hkern g1="Oacute" g2="g" k="12" />
+<hkern g1="Oacute" g2="h" k="27" />
+<hkern g1="Oacute" g2="k" k="27" />
+<hkern g1="Oacute" g2="l" k="27" />
+<hkern g1="Oacute" g2="x" k="12" />
+<hkern g1="Oacute" g2="braceright" k="53" />
+<hkern g1="Oacute" g2="Agrave" k="49" />
+<hkern g1="Oacute" g2="Aacute" k="49" />
+<hkern g1="Oacute" g2="Acircumflex" k="49" />
+<hkern g1="Oacute" g2="Atilde" k="49" />
+<hkern g1="Oacute" g2="Adieresis" k="49" />
+<hkern g1="Oacute" g2="Aring" k="49" />
+<hkern g1="Oacute" g2="AE" k="63" />
+<hkern g1="Oacute" g2="Egrave" k="25" />
+<hkern g1="Oacute" g2="Eacute" k="25" />
+<hkern g1="Oacute" g2="Ecircumflex" k="25" />
+<hkern g1="Oacute" g2="Edieresis" k="25" />
+<hkern g1="Oacute" g2="Igrave" k="25" />
+<hkern g1="Oacute" g2="Iacute" k="25" />
+<hkern g1="Oacute" g2="Icircumflex" k="25" />
+<hkern g1="Oacute" g2="Idieresis" k="25" />
+<hkern g1="Oacute" g2="Eth" k="25" />
+<hkern g1="Oacute" g2="Ntilde" k="25" />
+<hkern g1="Oacute" g2="Ugrave" k="12" />
+<hkern g1="Oacute" g2="Uacute" k="12" />
+<hkern g1="Oacute" g2="Ucircumflex" k="12" />
+<hkern g1="Oacute" g2="Udieresis" k="12" />
+<hkern g1="Oacute" g2="Yacute" k="47" />
+<hkern g1="Oacute" g2="Thorn" k="25" />
+<hkern g1="Oacute" g2="agrave" k="12" />
+<hkern g1="Oacute" g2="aacute" k="12" />
+<hkern g1="Oacute" g2="acircumflex" k="12" />
+<hkern g1="Oacute" g2="atilde" k="12" />
+<hkern g1="Oacute" g2="adieresis" k="12" />
+<hkern g1="Oacute" g2="aring" k="12" />
+<hkern g1="Oacute" g2="ae" k="12" />
+<hkern g1="Oacute" g2="quotesinglbase" k="49" />
+<hkern g1="Oacute" g2="quotedblbase" k="49" />
+<hkern g1="Ocircumflex" g2="parenright" k="47" />
+<hkern g1="Ocircumflex" g2="comma" k="49" />
+<hkern g1="Ocircumflex" g2="period" k="49" />
+<hkern g1="Ocircumflex" g2="slash" k="141" />
+<hkern g1="Ocircumflex" g2="A" k="49" />
+<hkern g1="Ocircumflex" g2="B" k="25" />
+<hkern g1="Ocircumflex" g2="D" k="25" />
+<hkern g1="Ocircumflex" g2="E" k="25" />
+<hkern g1="Ocircumflex" g2="F" k="25" />
+<hkern g1="Ocircumflex" g2="H" k="25" />
+<hkern g1="Ocircumflex" g2="I" k="25" />
+<hkern g1="Ocircumflex" g2="J" k="18" />
+<hkern g1="Ocircumflex" g2="K" k="25" />
+<hkern g1="Ocircumflex" g2="L" k="25" />
+<hkern g1="Ocircumflex" g2="M" k="25" />
+<hkern g1="Ocircumflex" g2="N" k="25" />
+<hkern g1="Ocircumflex" g2="P" k="25" />
+<hkern g1="Ocircumflex" g2="R" k="25" />
+<hkern g1="Ocircumflex" g2="U" k="12" />
+<hkern g1="Ocircumflex" g2="V" k="45" />
+<hkern g1="Ocircumflex" g2="W" k="45" />
+<hkern g1="Ocircumflex" g2="X" k="66" />
+<hkern g1="Ocircumflex" g2="Y" k="47" />
+<hkern g1="Ocircumflex" g2="backslash" k="33" />
+<hkern g1="Ocircumflex" g2="bracketright" k="94" />
+<hkern g1="Ocircumflex" g2="a" k="12" />
+<hkern g1="Ocircumflex" g2="g" k="12" />
+<hkern g1="Ocircumflex" g2="h" k="27" />
+<hkern g1="Ocircumflex" g2="k" k="27" />
+<hkern g1="Ocircumflex" g2="l" k="27" />
+<hkern g1="Ocircumflex" g2="x" k="12" />
+<hkern g1="Ocircumflex" g2="braceright" k="53" />
+<hkern g1="Ocircumflex" g2="Agrave" k="49" />
+<hkern g1="Ocircumflex" g2="Aacute" k="49" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="49" />
+<hkern g1="Ocircumflex" g2="Atilde" k="49" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="49" />
+<hkern g1="Ocircumflex" g2="Aring" k="49" />
+<hkern g1="Ocircumflex" g2="AE" k="63" />
+<hkern g1="Ocircumflex" g2="Egrave" k="25" />
+<hkern g1="Ocircumflex" g2="Eacute" k="25" />
+<hkern g1="Ocircumflex" g2="Ecircumflex" k="25" />
+<hkern g1="Ocircumflex" g2="Edieresis" k="25" />
+<hkern g1="Ocircumflex" g2="Igrave" k="25" />
+<hkern g1="Ocircumflex" g2="Iacute" k="25" />
+<hkern g1="Ocircumflex" g2="Icircumflex" k="25" />
+<hkern g1="Ocircumflex" g2="Idieresis" k="25" />
+<hkern g1="Ocircumflex" g2="Eth" k="25" />
+<hkern g1="Ocircumflex" g2="Ntilde" k="25" />
+<hkern g1="Ocircumflex" g2="Ugrave" k="12" />
+<hkern g1="Ocircumflex" g2="Uacute" k="12" />
+<hkern g1="Ocircumflex" g2="Ucircumflex" k="12" />
+<hkern g1="Ocircumflex" g2="Udieresis" k="12" />
+<hkern g1="Ocircumflex" g2="Yacute" k="47" />
+<hkern g1="Ocircumflex" g2="Thorn" k="25" />
+<hkern g1="Ocircumflex" g2="agrave" k="12" />
+<hkern g1="Ocircumflex" g2="aacute" k="12" />
+<hkern g1="Ocircumflex" g2="acircumflex" k="12" />
+<hkern g1="Ocircumflex" g2="atilde" k="12" />
+<hkern g1="Ocircumflex" g2="adieresis" k="12" />
+<hkern g1="Ocircumflex" g2="aring" k="12" />
+<hkern g1="Ocircumflex" g2="ae" k="12" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="49" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="49" />
+<hkern g1="Otilde" g2="parenright" k="47" />
+<hkern g1="Otilde" g2="comma" k="49" />
+<hkern g1="Otilde" g2="period" k="49" />
+<hkern g1="Otilde" g2="slash" k="141" />
+<hkern g1="Otilde" g2="A" k="49" />
+<hkern g1="Otilde" g2="B" k="25" />
+<hkern g1="Otilde" g2="D" k="25" />
+<hkern g1="Otilde" g2="E" k="25" />
+<hkern g1="Otilde" g2="F" k="25" />
+<hkern g1="Otilde" g2="H" k="25" />
+<hkern g1="Otilde" g2="I" k="25" />
+<hkern g1="Otilde" g2="J" k="18" />
+<hkern g1="Otilde" g2="K" k="25" />
+<hkern g1="Otilde" g2="L" k="25" />
+<hkern g1="Otilde" g2="M" k="25" />
+<hkern g1="Otilde" g2="N" k="25" />
+<hkern g1="Otilde" g2="P" k="25" />
+<hkern g1="Otilde" g2="R" k="25" />
+<hkern g1="Otilde" g2="U" k="12" />
+<hkern g1="Otilde" g2="V" k="45" />
+<hkern g1="Otilde" g2="W" k="45" />
+<hkern g1="Otilde" g2="X" k="66" />
+<hkern g1="Otilde" g2="Y" k="47" />
+<hkern g1="Otilde" g2="backslash" k="33" />
+<hkern g1="Otilde" g2="bracketright" k="94" />
+<hkern g1="Otilde" g2="a" k="12" />
+<hkern g1="Otilde" g2="g" k="12" />
+<hkern g1="Otilde" g2="h" k="27" />
+<hkern g1="Otilde" g2="k" k="27" />
+<hkern g1="Otilde" g2="l" k="27" />
+<hkern g1="Otilde" g2="x" k="12" />
+<hkern g1="Otilde" g2="braceright" k="53" />
+<hkern g1="Otilde" g2="Agrave" k="49" />
+<hkern g1="Otilde" g2="Aacute" k="49" />
+<hkern g1="Otilde" g2="Acircumflex" k="49" />
+<hkern g1="Otilde" g2="Atilde" k="49" />
+<hkern g1="Otilde" g2="Adieresis" k="49" />
+<hkern g1="Otilde" g2="Aring" k="49" />
+<hkern g1="Otilde" g2="AE" k="63" />
+<hkern g1="Otilde" g2="Egrave" k="25" />
+<hkern g1="Otilde" g2="Eacute" k="25" />
+<hkern g1="Otilde" g2="Ecircumflex" k="25" />
+<hkern g1="Otilde" g2="Edieresis" k="25" />
+<hkern g1="Otilde" g2="Igrave" k="25" />
+<hkern g1="Otilde" g2="Iacute" k="25" />
+<hkern g1="Otilde" g2="Icircumflex" k="25" />
+<hkern g1="Otilde" g2="Idieresis" k="25" />
+<hkern g1="Otilde" g2="Eth" k="25" />
+<hkern g1="Otilde" g2="Ntilde" k="25" />
+<hkern g1="Otilde" g2="Ugrave" k="12" />
+<hkern g1="Otilde" g2="Uacute" k="12" />
+<hkern g1="Otilde" g2="Ucircumflex" k="12" />
+<hkern g1="Otilde" g2="Udieresis" k="12" />
+<hkern g1="Otilde" g2="Yacute" k="47" />
+<hkern g1="Otilde" g2="Thorn" k="25" />
+<hkern g1="Otilde" g2="agrave" k="12" />
+<hkern g1="Otilde" g2="aacute" k="12" />
+<hkern g1="Otilde" g2="acircumflex" k="12" />
+<hkern g1="Otilde" g2="atilde" k="12" />
+<hkern g1="Otilde" g2="adieresis" k="12" />
+<hkern g1="Otilde" g2="aring" k="12" />
+<hkern g1="Otilde" g2="ae" k="12" />
+<hkern g1="Otilde" g2="quotesinglbase" k="49" />
+<hkern g1="Otilde" g2="quotedblbase" k="49" />
+<hkern g1="Odieresis" g2="parenright" k="47" />
+<hkern g1="Odieresis" g2="comma" k="49" />
+<hkern g1="Odieresis" g2="period" k="49" />
+<hkern g1="Odieresis" g2="slash" k="141" />
+<hkern g1="Odieresis" g2="A" k="49" />
+<hkern g1="Odieresis" g2="B" k="25" />
+<hkern g1="Odieresis" g2="D" k="25" />
+<hkern g1="Odieresis" g2="E" k="25" />
+<hkern g1="Odieresis" g2="F" k="25" />
+<hkern g1="Odieresis" g2="H" k="25" />
+<hkern g1="Odieresis" g2="I" k="25" />
+<hkern g1="Odieresis" g2="J" k="18" />
+<hkern g1="Odieresis" g2="K" k="25" />
+<hkern g1="Odieresis" g2="L" k="25" />
+<hkern g1="Odieresis" g2="M" k="25" />
+<hkern g1="Odieresis" g2="N" k="25" />
+<hkern g1="Odieresis" g2="P" k="25" />
+<hkern g1="Odieresis" g2="R" k="25" />
+<hkern g1="Odieresis" g2="U" k="12" />
+<hkern g1="Odieresis" g2="V" k="45" />
+<hkern g1="Odieresis" g2="W" k="45" />
+<hkern g1="Odieresis" g2="X" k="66" />
+<hkern g1="Odieresis" g2="Y" k="47" />
+<hkern g1="Odieresis" g2="backslash" k="33" />
+<hkern g1="Odieresis" g2="bracketright" k="94" />
+<hkern g1="Odieresis" g2="a" k="12" />
+<hkern g1="Odieresis" g2="g" k="12" />
+<hkern g1="Odieresis" g2="h" k="27" />
+<hkern g1="Odieresis" g2="k" k="27" />
+<hkern g1="Odieresis" g2="l" k="27" />
+<hkern g1="Odieresis" g2="x" k="12" />
+<hkern g1="Odieresis" g2="braceright" k="53" />
+<hkern g1="Odieresis" g2="Agrave" k="49" />
+<hkern g1="Odieresis" g2="Aacute" k="49" />
+<hkern g1="Odieresis" g2="Acircumflex" k="49" />
+<hkern g1="Odieresis" g2="Atilde" k="49" />
+<hkern g1="Odieresis" g2="Adieresis" k="49" />
+<hkern g1="Odieresis" g2="Aring" k="49" />
+<hkern g1="Odieresis" g2="AE" k="63" />
+<hkern g1="Odieresis" g2="Egrave" k="25" />
+<hkern g1="Odieresis" g2="Eacute" k="25" />
+<hkern g1="Odieresis" g2="Ecircumflex" k="25" />
+<hkern g1="Odieresis" g2="Edieresis" k="25" />
+<hkern g1="Odieresis" g2="Igrave" k="25" />
+<hkern g1="Odieresis" g2="Iacute" k="25" />
+<hkern g1="Odieresis" g2="Icircumflex" k="25" />
+<hkern g1="Odieresis" g2="Idieresis" k="25" />
+<hkern g1="Odieresis" g2="Eth" k="25" />
+<hkern g1="Odieresis" g2="Ntilde" k="25" />
+<hkern g1="Odieresis" g2="Ugrave" k="12" />
+<hkern g1="Odieresis" g2="Uacute" k="12" />
+<hkern g1="Odieresis" g2="Ucircumflex" k="12" />
+<hkern g1="Odieresis" g2="Udieresis" k="12" />
+<hkern g1="Odieresis" g2="Yacute" k="47" />
+<hkern g1="Odieresis" g2="Thorn" k="25" />
+<hkern g1="Odieresis" g2="agrave" k="12" />
+<hkern g1="Odieresis" g2="aacute" k="12" />
+<hkern g1="Odieresis" g2="acircumflex" k="12" />
+<hkern g1="Odieresis" g2="atilde" k="12" />
+<hkern g1="Odieresis" g2="adieresis" k="12" />
+<hkern g1="Odieresis" g2="aring" k="12" />
+<hkern g1="Odieresis" g2="ae" k="12" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="49" />
+<hkern g1="Odieresis" g2="quotedblbase" k="49" />
+<hkern g1="Oslash" g2="parenright" k="47" />
+<hkern g1="Oslash" g2="comma" k="49" />
+<hkern g1="Oslash" g2="period" k="49" />
+<hkern g1="Oslash" g2="slash" k="141" />
+<hkern g1="Oslash" g2="A" k="49" />
+<hkern g1="Oslash" g2="B" k="25" />
+<hkern g1="Oslash" g2="D" k="25" />
+<hkern g1="Oslash" g2="E" k="25" />
+<hkern g1="Oslash" g2="F" k="25" />
+<hkern g1="Oslash" g2="H" k="25" />
+<hkern g1="Oslash" g2="I" k="25" />
+<hkern g1="Oslash" g2="J" k="18" />
+<hkern g1="Oslash" g2="K" k="25" />
+<hkern g1="Oslash" g2="L" k="25" />
+<hkern g1="Oslash" g2="M" k="25" />
+<hkern g1="Oslash" g2="N" k="25" />
+<hkern g1="Oslash" g2="P" k="25" />
+<hkern g1="Oslash" g2="R" k="25" />
+<hkern g1="Oslash" g2="U" k="12" />
+<hkern g1="Oslash" g2="V" k="45" />
+<hkern g1="Oslash" g2="W" k="45" />
+<hkern g1="Oslash" g2="X" k="66" />
+<hkern g1="Oslash" g2="Y" k="47" />
+<hkern g1="Oslash" g2="backslash" k="33" />
+<hkern g1="Oslash" g2="bracketright" k="94" />
+<hkern g1="Oslash" g2="a" k="12" />
+<hkern g1="Oslash" g2="g" k="12" />
+<hkern g1="Oslash" g2="h" k="27" />
+<hkern g1="Oslash" g2="k" k="27" />
+<hkern g1="Oslash" g2="l" k="27" />
+<hkern g1="Oslash" g2="x" k="12" />
+<hkern g1="Oslash" g2="braceright" k="53" />
+<hkern g1="Oslash" g2="Agrave" k="49" />
+<hkern g1="Oslash" g2="Aacute" k="49" />
+<hkern g1="Oslash" g2="Acircumflex" k="49" />
+<hkern g1="Oslash" g2="Atilde" k="49" />
+<hkern g1="Oslash" g2="Adieresis" k="49" />
+<hkern g1="Oslash" g2="Aring" k="49" />
+<hkern g1="Oslash" g2="AE" k="63" />
+<hkern g1="Oslash" g2="Egrave" k="25" />
+<hkern g1="Oslash" g2="Eacute" k="25" />
+<hkern g1="Oslash" g2="Ecircumflex" k="25" />
+<hkern g1="Oslash" g2="Edieresis" k="25" />
+<hkern g1="Oslash" g2="Igrave" k="25" />
+<hkern g1="Oslash" g2="Iacute" k="25" />
+<hkern g1="Oslash" g2="Icircumflex" k="25" />
+<hkern g1="Oslash" g2="Idieresis" k="25" />
+<hkern g1="Oslash" g2="Eth" k="25" />
+<hkern g1="Oslash" g2="Ntilde" k="25" />
+<hkern g1="Oslash" g2="Ugrave" k="12" />
+<hkern g1="Oslash" g2="Uacute" k="12" />
+<hkern g1="Oslash" g2="Ucircumflex" k="12" />
+<hkern g1="Oslash" g2="Udieresis" k="12" />
+<hkern g1="Oslash" g2="Yacute" k="47" />
+<hkern g1="Oslash" g2="Thorn" k="25" />
+<hkern g1="Oslash" g2="agrave" k="12" />
+<hkern g1="Oslash" g2="aacute" k="12" />
+<hkern g1="Oslash" g2="acircumflex" k="12" />
+<hkern g1="Oslash" g2="atilde" k="12" />
+<hkern g1="Oslash" g2="adieresis" k="12" />
+<hkern g1="Oslash" g2="aring" k="12" />
+<hkern g1="Oslash" g2="ae" k="12" />
+<hkern g1="Oslash" g2="quotesinglbase" k="49" />
+<hkern g1="Oslash" g2="quotedblbase" k="49" />
+<hkern g1="Ugrave" g2="comma" k="66" />
+<hkern g1="Ugrave" g2="hyphen" k="31" />
+<hkern g1="Ugrave" g2="period" k="66" />
+<hkern g1="Ugrave" g2="slash" k="156" />
+<hkern g1="Ugrave" g2="seven" k="-18" />
+<hkern g1="Ugrave" g2="colon" k="25" />
+<hkern g1="Ugrave" g2="semicolon" k="33" />
+<hkern g1="Ugrave" g2="A" k="86" />
+<hkern g1="Ugrave" g2="C" k="12" />
+<hkern g1="Ugrave" g2="G" k="12" />
+<hkern g1="Ugrave" g2="J" k="29" />
+<hkern g1="Ugrave" g2="O" k="12" />
+<hkern g1="Ugrave" g2="Q" k="12" />
+<hkern g1="Ugrave" g2="bracketright" k="-45" />
+<hkern g1="Ugrave" g2="a" k="68" />
+<hkern g1="Ugrave" g2="b" k="-43" />
+<hkern g1="Ugrave" g2="c" k="57" />
+<hkern g1="Ugrave" g2="d" k="57" />
+<hkern g1="Ugrave" g2="e" k="57" />
+<hkern g1="Ugrave" g2="f" k="39" />
+<hkern g1="Ugrave" g2="g" k="63" />
+<hkern g1="Ugrave" g2="i" k="41" />
+<hkern g1="Ugrave" g2="j" k="31" />
+<hkern g1="Ugrave" g2="m" k="57" />
+<hkern g1="Ugrave" g2="n" k="57" />
+<hkern g1="Ugrave" g2="o" k="57" />
+<hkern g1="Ugrave" g2="p" k="49" />
+<hkern g1="Ugrave" g2="q" k="57" />
+<hkern g1="Ugrave" g2="r" k="57" />
+<hkern g1="Ugrave" g2="s" k="57" />
+<hkern g1="Ugrave" g2="t" k="39" />
+<hkern g1="Ugrave" g2="u" k="39" />
+<hkern g1="Ugrave" g2="v" k="35" />
+<hkern g1="Ugrave" g2="w" k="37" />
+<hkern g1="Ugrave" g2="x" k="43" />
+<hkern g1="Ugrave" g2="y" k="35" />
+<hkern g1="Ugrave" g2="z" k="59" />
+<hkern g1="Ugrave" g2="braceright" k="-35" />
+<hkern g1="Ugrave" g2="uni00AD" k="31" />
+<hkern g1="Ugrave" g2="guillemotright" k="23" />
+<hkern g1="Ugrave" g2="Agrave" k="86" />
+<hkern g1="Ugrave" g2="Aacute" k="86" />
+<hkern g1="Ugrave" g2="Acircumflex" k="86" />
+<hkern g1="Ugrave" g2="Atilde" k="86" />
+<hkern g1="Ugrave" g2="Adieresis" k="86" />
+<hkern g1="Ugrave" g2="Aring" k="86" />
+<hkern g1="Ugrave" g2="AE" k="88" />
+<hkern g1="Ugrave" g2="Ccedilla" k="12" />
+<hkern g1="Ugrave" g2="Ograve" k="12" />
+<hkern g1="Ugrave" g2="Oacute" k="12" />
+<hkern g1="Ugrave" g2="Ocircumflex" k="12" />
+<hkern g1="Ugrave" g2="Otilde" k="12" />
+<hkern g1="Ugrave" g2="Odieresis" k="12" />
+<hkern g1="Ugrave" g2="Oslash" k="12" />
+<hkern g1="Ugrave" g2="germandbls" k="39" />
+<hkern g1="Ugrave" g2="agrave" k="68" />
+<hkern g1="Ugrave" g2="aacute" k="68" />
+<hkern g1="Ugrave" g2="acircumflex" k="68" />
+<hkern g1="Ugrave" g2="atilde" k="68" />
+<hkern g1="Ugrave" g2="adieresis" k="68" />
+<hkern g1="Ugrave" g2="aring" k="68" />
+<hkern g1="Ugrave" g2="ae" k="68" />
+<hkern g1="Ugrave" g2="ccedilla" k="57" />
+<hkern g1="Ugrave" g2="egrave" k="57" />
+<hkern g1="Ugrave" g2="eacute" k="57" />
+<hkern g1="Ugrave" g2="ecircumflex" k="57" />
+<hkern g1="Ugrave" g2="edieresis" k="57" />
+<hkern g1="Ugrave" g2="iacute" k="41" />
+<hkern g1="Ugrave" g2="icircumflex" k="18" />
+<hkern g1="Ugrave" g2="eth" k="39" />
+<hkern g1="Ugrave" g2="ntilde" k="57" />
+<hkern g1="Ugrave" g2="ograve" k="57" />
+<hkern g1="Ugrave" g2="oacute" k="57" />
+<hkern g1="Ugrave" g2="ocircumflex" k="57" />
+<hkern g1="Ugrave" g2="otilde" k="57" />
+<hkern g1="Ugrave" g2="odieresis" k="57" />
+<hkern g1="Ugrave" g2="oslash" k="57" />
+<hkern g1="Ugrave" g2="ugrave" k="39" />
+<hkern g1="Ugrave" g2="uacute" k="39" />
+<hkern g1="Ugrave" g2="ucircumflex" k="39" />
+<hkern g1="Ugrave" g2="udieresis" k="39" />
+<hkern g1="Ugrave" g2="yacute" k="35" />
+<hkern g1="Ugrave" g2="thorn" k="-43" />
+<hkern g1="Ugrave" g2="ydieresis" k="35" />
+<hkern g1="Ugrave" g2="dotlessi" k="41" />
+<hkern g1="Ugrave" g2="OE" k="12" />
+<hkern g1="Ugrave" g2="oe" k="57" />
+<hkern g1="Ugrave" g2="endash" k="31" />
+<hkern g1="Ugrave" g2="emdash" k="31" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="66" />
+<hkern g1="Ugrave" g2="quotedblbase" k="66" />
+<hkern g1="Ugrave" g2="guilsinglright" k="23" />
+<hkern g1="Uacute" g2="comma" k="66" />
+<hkern g1="Uacute" g2="hyphen" k="31" />
+<hkern g1="Uacute" g2="period" k="66" />
+<hkern g1="Uacute" g2="slash" k="156" />
+<hkern g1="Uacute" g2="seven" k="-18" />
+<hkern g1="Uacute" g2="colon" k="25" />
+<hkern g1="Uacute" g2="semicolon" k="33" />
+<hkern g1="Uacute" g2="A" k="86" />
+<hkern g1="Uacute" g2="C" k="12" />
+<hkern g1="Uacute" g2="G" k="12" />
+<hkern g1="Uacute" g2="J" k="29" />
+<hkern g1="Uacute" g2="O" k="12" />
+<hkern g1="Uacute" g2="Q" k="12" />
+<hkern g1="Uacute" g2="bracketright" k="-45" />
+<hkern g1="Uacute" g2="a" k="68" />
+<hkern g1="Uacute" g2="b" k="-43" />
+<hkern g1="Uacute" g2="c" k="57" />
+<hkern g1="Uacute" g2="d" k="57" />
+<hkern g1="Uacute" g2="e" k="57" />
+<hkern g1="Uacute" g2="f" k="39" />
+<hkern g1="Uacute" g2="g" k="63" />
+<hkern g1="Uacute" g2="i" k="41" />
+<hkern g1="Uacute" g2="j" k="31" />
+<hkern g1="Uacute" g2="m" k="57" />
+<hkern g1="Uacute" g2="n" k="57" />
+<hkern g1="Uacute" g2="o" k="57" />
+<hkern g1="Uacute" g2="p" k="49" />
+<hkern g1="Uacute" g2="q" k="57" />
+<hkern g1="Uacute" g2="r" k="57" />
+<hkern g1="Uacute" g2="s" k="57" />
+<hkern g1="Uacute" g2="t" k="39" />
+<hkern g1="Uacute" g2="u" k="39" />
+<hkern g1="Uacute" g2="v" k="35" />
+<hkern g1="Uacute" g2="w" k="37" />
+<hkern g1="Uacute" g2="x" k="43" />
+<hkern g1="Uacute" g2="y" k="35" />
+<hkern g1="Uacute" g2="z" k="59" />
+<hkern g1="Uacute" g2="braceright" k="-35" />
+<hkern g1="Uacute" g2="uni00AD" k="31" />
+<hkern g1="Uacute" g2="guillemotright" k="23" />
+<hkern g1="Uacute" g2="Agrave" k="86" />
+<hkern g1="Uacute" g2="Aacute" k="86" />
+<hkern g1="Uacute" g2="Acircumflex" k="86" />
+<hkern g1="Uacute" g2="Atilde" k="86" />
+<hkern g1="Uacute" g2="Adieresis" k="86" />
+<hkern g1="Uacute" g2="Aring" k="86" />
+<hkern g1="Uacute" g2="AE" k="88" />
+<hkern g1="Uacute" g2="Ccedilla" k="12" />
+<hkern g1="Uacute" g2="Ograve" k="12" />
+<hkern g1="Uacute" g2="Oacute" k="12" />
+<hkern g1="Uacute" g2="Ocircumflex" k="12" />
+<hkern g1="Uacute" g2="Otilde" k="12" />
+<hkern g1="Uacute" g2="Odieresis" k="12" />
+<hkern g1="Uacute" g2="Oslash" k="12" />
+<hkern g1="Uacute" g2="germandbls" k="39" />
+<hkern g1="Uacute" g2="agrave" k="68" />
+<hkern g1="Uacute" g2="aacute" k="68" />
+<hkern g1="Uacute" g2="acircumflex" k="68" />
+<hkern g1="Uacute" g2="atilde" k="68" />
+<hkern g1="Uacute" g2="adieresis" k="68" />
+<hkern g1="Uacute" g2="aring" k="68" />
+<hkern g1="Uacute" g2="ae" k="68" />
+<hkern g1="Uacute" g2="ccedilla" k="57" />
+<hkern g1="Uacute" g2="egrave" k="57" />
+<hkern g1="Uacute" g2="eacute" k="57" />
+<hkern g1="Uacute" g2="ecircumflex" k="57" />
+<hkern g1="Uacute" g2="edieresis" k="57" />
+<hkern g1="Uacute" g2="iacute" k="41" />
+<hkern g1="Uacute" g2="icircumflex" k="18" />
+<hkern g1="Uacute" g2="eth" k="39" />
+<hkern g1="Uacute" g2="ntilde" k="57" />
+<hkern g1="Uacute" g2="ograve" k="57" />
+<hkern g1="Uacute" g2="oacute" k="57" />
+<hkern g1="Uacute" g2="ocircumflex" k="57" />
+<hkern g1="Uacute" g2="otilde" k="57" />
+<hkern g1="Uacute" g2="odieresis" k="57" />
+<hkern g1="Uacute" g2="oslash" k="57" />
+<hkern g1="Uacute" g2="ugrave" k="39" />
+<hkern g1="Uacute" g2="uacute" k="39" />
+<hkern g1="Uacute" g2="ucircumflex" k="39" />
+<hkern g1="Uacute" g2="udieresis" k="39" />
+<hkern g1="Uacute" g2="yacute" k="35" />
+<hkern g1="Uacute" g2="thorn" k="-43" />
+<hkern g1="Uacute" g2="ydieresis" k="35" />
+<hkern g1="Uacute" g2="dotlessi" k="41" />
+<hkern g1="Uacute" g2="OE" k="12" />
+<hkern g1="Uacute" g2="oe" k="57" />
+<hkern g1="Uacute" g2="endash" k="31" />
+<hkern g1="Uacute" g2="emdash" k="31" />
+<hkern g1="Uacute" g2="quotesinglbase" k="66" />
+<hkern g1="Uacute" g2="quotedblbase" k="66" />
+<hkern g1="Uacute" g2="guilsinglright" k="23" />
+<hkern g1="Ucircumflex" g2="comma" k="66" />
+<hkern g1="Ucircumflex" g2="hyphen" k="31" />
+<hkern g1="Ucircumflex" g2="period" k="66" />
+<hkern g1="Ucircumflex" g2="slash" k="156" />
+<hkern g1="Ucircumflex" g2="seven" k="-18" />
+<hkern g1="Ucircumflex" g2="colon" k="25" />
+<hkern g1="Ucircumflex" g2="semicolon" k="33" />
+<hkern g1="Ucircumflex" g2="A" k="86" />
+<hkern g1="Ucircumflex" g2="C" k="12" />
+<hkern g1="Ucircumflex" g2="G" k="12" />
+<hkern g1="Ucircumflex" g2="J" k="29" />
+<hkern g1="Ucircumflex" g2="O" k="12" />
+<hkern g1="Ucircumflex" g2="Q" k="12" />
+<hkern g1="Ucircumflex" g2="bracketright" k="-45" />
+<hkern g1="Ucircumflex" g2="a" k="68" />
+<hkern g1="Ucircumflex" g2="b" k="-43" />
+<hkern g1="Ucircumflex" g2="c" k="57" />
+<hkern g1="Ucircumflex" g2="d" k="57" />
+<hkern g1="Ucircumflex" g2="e" k="57" />
+<hkern g1="Ucircumflex" g2="f" k="39" />
+<hkern g1="Ucircumflex" g2="g" k="63" />
+<hkern g1="Ucircumflex" g2="i" k="41" />
+<hkern g1="Ucircumflex" g2="j" k="31" />
+<hkern g1="Ucircumflex" g2="m" k="57" />
+<hkern g1="Ucircumflex" g2="n" k="57" />
+<hkern g1="Ucircumflex" g2="o" k="57" />
+<hkern g1="Ucircumflex" g2="p" k="49" />
+<hkern g1="Ucircumflex" g2="q" k="57" />
+<hkern g1="Ucircumflex" g2="r" k="57" />
+<hkern g1="Ucircumflex" g2="s" k="57" />
+<hkern g1="Ucircumflex" g2="t" k="39" />
+<hkern g1="Ucircumflex" g2="u" k="39" />
+<hkern g1="Ucircumflex" g2="v" k="35" />
+<hkern g1="Ucircumflex" g2="w" k="37" />
+<hkern g1="Ucircumflex" g2="x" k="43" />
+<hkern g1="Ucircumflex" g2="y" k="35" />
+<hkern g1="Ucircumflex" g2="z" k="59" />
+<hkern g1="Ucircumflex" g2="braceright" k="-35" />
+<hkern g1="Ucircumflex" g2="uni00AD" k="31" />
+<hkern g1="Ucircumflex" g2="guillemotright" k="23" />
+<hkern g1="Ucircumflex" g2="Agrave" k="86" />
+<hkern g1="Ucircumflex" g2="Aacute" k="86" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="86" />
+<hkern g1="Ucircumflex" g2="Atilde" k="86" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="86" />
+<hkern g1="Ucircumflex" g2="Aring" k="86" />
+<hkern g1="Ucircumflex" g2="AE" k="88" />
+<hkern g1="Ucircumflex" g2="Ccedilla" k="12" />
+<hkern g1="Ucircumflex" g2="Ograve" k="12" />
+<hkern g1="Ucircumflex" g2="Oacute" k="12" />
+<hkern g1="Ucircumflex" g2="Ocircumflex" k="12" />
+<hkern g1="Ucircumflex" g2="Otilde" k="12" />
+<hkern g1="Ucircumflex" g2="Odieresis" k="12" />
+<hkern g1="Ucircumflex" g2="Oslash" k="12" />
+<hkern g1="Ucircumflex" g2="germandbls" k="39" />
+<hkern g1="Ucircumflex" g2="agrave" k="68" />
+<hkern g1="Ucircumflex" g2="aacute" k="68" />
+<hkern g1="Ucircumflex" g2="acircumflex" k="68" />
+<hkern g1="Ucircumflex" g2="atilde" k="68" />
+<hkern g1="Ucircumflex" g2="adieresis" k="68" />
+<hkern g1="Ucircumflex" g2="aring" k="68" />
+<hkern g1="Ucircumflex" g2="ae" k="68" />
+<hkern g1="Ucircumflex" g2="ccedilla" k="57" />
+<hkern g1="Ucircumflex" g2="egrave" k="57" />
+<hkern g1="Ucircumflex" g2="eacute" k="57" />
+<hkern g1="Ucircumflex" g2="ecircumflex" k="57" />
+<hkern g1="Ucircumflex" g2="edieresis" k="57" />
+<hkern g1="Ucircumflex" g2="iacute" k="41" />
+<hkern g1="Ucircumflex" g2="icircumflex" k="18" />
+<hkern g1="Ucircumflex" g2="eth" k="39" />
+<hkern g1="Ucircumflex" g2="ntilde" k="57" />
+<hkern g1="Ucircumflex" g2="ograve" k="57" />
+<hkern g1="Ucircumflex" g2="oacute" k="57" />
+<hkern g1="Ucircumflex" g2="ocircumflex" k="57" />
+<hkern g1="Ucircumflex" g2="otilde" k="57" />
+<hkern g1="Ucircumflex" g2="odieresis" k="57" />
+<hkern g1="Ucircumflex" g2="oslash" k="57" />
+<hkern g1="Ucircumflex" g2="ugrave" k="39" />
+<hkern g1="Ucircumflex" g2="uacute" k="39" />
+<hkern g1="Ucircumflex" g2="ucircumflex" k="39" />
+<hkern g1="Ucircumflex" g2="udieresis" k="39" />
+<hkern g1="Ucircumflex" g2="yacute" k="35" />
+<hkern g1="Ucircumflex" g2="thorn" k="-43" />
+<hkern g1="Ucircumflex" g2="ydieresis" k="35" />
+<hkern g1="Ucircumflex" g2="dotlessi" k="41" />
+<hkern g1="Ucircumflex" g2="OE" k="12" />
+<hkern g1="Ucircumflex" g2="oe" k="57" />
+<hkern g1="Ucircumflex" g2="endash" k="31" />
+<hkern g1="Ucircumflex" g2="emdash" k="31" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="66" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="66" />
+<hkern g1="Ucircumflex" g2="guilsinglright" k="23" />
+<hkern g1="Udieresis" g2="comma" k="66" />
+<hkern g1="Udieresis" g2="hyphen" k="31" />
+<hkern g1="Udieresis" g2="period" k="66" />
+<hkern g1="Udieresis" g2="slash" k="156" />
+<hkern g1="Udieresis" g2="seven" k="-18" />
+<hkern g1="Udieresis" g2="colon" k="25" />
+<hkern g1="Udieresis" g2="semicolon" k="33" />
+<hkern g1="Udieresis" g2="A" k="86" />
+<hkern g1="Udieresis" g2="C" k="12" />
+<hkern g1="Udieresis" g2="G" k="12" />
+<hkern g1="Udieresis" g2="J" k="29" />
+<hkern g1="Udieresis" g2="O" k="12" />
+<hkern g1="Udieresis" g2="Q" k="12" />
+<hkern g1="Udieresis" g2="bracketright" k="-45" />
+<hkern g1="Udieresis" g2="a" k="68" />
+<hkern g1="Udieresis" g2="b" k="-43" />
+<hkern g1="Udieresis" g2="c" k="57" />
+<hkern g1="Udieresis" g2="d" k="57" />
+<hkern g1="Udieresis" g2="e" k="57" />
+<hkern g1="Udieresis" g2="f" k="39" />
+<hkern g1="Udieresis" g2="g" k="63" />
+<hkern g1="Udieresis" g2="i" k="41" />
+<hkern g1="Udieresis" g2="j" k="31" />
+<hkern g1="Udieresis" g2="m" k="57" />
+<hkern g1="Udieresis" g2="n" k="57" />
+<hkern g1="Udieresis" g2="o" k="57" />
+<hkern g1="Udieresis" g2="p" k="49" />
+<hkern g1="Udieresis" g2="q" k="57" />
+<hkern g1="Udieresis" g2="r" k="57" />
+<hkern g1="Udieresis" g2="s" k="57" />
+<hkern g1="Udieresis" g2="t" k="39" />
+<hkern g1="Udieresis" g2="u" k="39" />
+<hkern g1="Udieresis" g2="v" k="35" />
+<hkern g1="Udieresis" g2="w" k="37" />
+<hkern g1="Udieresis" g2="x" k="43" />
+<hkern g1="Udieresis" g2="y" k="35" />
+<hkern g1="Udieresis" g2="z" k="59" />
+<hkern g1="Udieresis" g2="braceright" k="-35" />
+<hkern g1="Udieresis" g2="uni00AD" k="31" />
+<hkern g1="Udieresis" g2="guillemotright" k="23" />
+<hkern g1="Udieresis" g2="Agrave" k="86" />
+<hkern g1="Udieresis" g2="Aacute" k="86" />
+<hkern g1="Udieresis" g2="Acircumflex" k="86" />
+<hkern g1="Udieresis" g2="Atilde" k="86" />
+<hkern g1="Udieresis" g2="Adieresis" k="86" />
+<hkern g1="Udieresis" g2="Aring" k="86" />
+<hkern g1="Udieresis" g2="AE" k="88" />
+<hkern g1="Udieresis" g2="Ccedilla" k="12" />
+<hkern g1="Udieresis" g2="Ograve" k="12" />
+<hkern g1="Udieresis" g2="Oacute" k="12" />
+<hkern g1="Udieresis" g2="Ocircumflex" k="12" />
+<hkern g1="Udieresis" g2="Otilde" k="12" />
+<hkern g1="Udieresis" g2="Odieresis" k="12" />
+<hkern g1="Udieresis" g2="Oslash" k="12" />
+<hkern g1="Udieresis" g2="germandbls" k="39" />
+<hkern g1="Udieresis" g2="agrave" k="68" />
+<hkern g1="Udieresis" g2="aacute" k="68" />
+<hkern g1="Udieresis" g2="acircumflex" k="68" />
+<hkern g1="Udieresis" g2="atilde" k="68" />
+<hkern g1="Udieresis" g2="adieresis" k="68" />
+<hkern g1="Udieresis" g2="aring" k="68" />
+<hkern g1="Udieresis" g2="ae" k="68" />
+<hkern g1="Udieresis" g2="ccedilla" k="57" />
+<hkern g1="Udieresis" g2="egrave" k="57" />
+<hkern g1="Udieresis" g2="eacute" k="57" />
+<hkern g1="Udieresis" g2="ecircumflex" k="57" />
+<hkern g1="Udieresis" g2="edieresis" k="57" />
+<hkern g1="Udieresis" g2="iacute" k="41" />
+<hkern g1="Udieresis" g2="icircumflex" k="18" />
+<hkern g1="Udieresis" g2="eth" k="39" />
+<hkern g1="Udieresis" g2="ntilde" k="57" />
+<hkern g1="Udieresis" g2="ograve" k="57" />
+<hkern g1="Udieresis" g2="oacute" k="57" />
+<hkern g1="Udieresis" g2="ocircumflex" k="57" />
+<hkern g1="Udieresis" g2="otilde" k="57" />
+<hkern g1="Udieresis" g2="odieresis" k="57" />
+<hkern g1="Udieresis" g2="oslash" k="57" />
+<hkern g1="Udieresis" g2="ugrave" k="39" />
+<hkern g1="Udieresis" g2="uacute" k="39" />
+<hkern g1="Udieresis" g2="ucircumflex" k="39" />
+<hkern g1="Udieresis" g2="udieresis" k="39" />
+<hkern g1="Udieresis" g2="yacute" k="35" />
+<hkern g1="Udieresis" g2="thorn" k="-43" />
+<hkern g1="Udieresis" g2="ydieresis" k="35" />
+<hkern g1="Udieresis" g2="dotlessi" k="41" />
+<hkern g1="Udieresis" g2="OE" k="12" />
+<hkern g1="Udieresis" g2="oe" k="57" />
+<hkern g1="Udieresis" g2="endash" k="31" />
+<hkern g1="Udieresis" g2="emdash" k="31" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="66" />
+<hkern g1="Udieresis" g2="quotedblbase" k="66" />
+<hkern g1="Udieresis" g2="guilsinglright" k="23" />
+<hkern g1="Yacute" g2="ampersand" k="47" />
+<hkern g1="Yacute" g2="parenright" k="-33" />
+<hkern g1="Yacute" g2="asterisk" k="16" />
+<hkern g1="Yacute" g2="comma" k="115" />
+<hkern g1="Yacute" g2="hyphen" k="139" />
+<hkern g1="Yacute" g2="period" k="115" />
+<hkern g1="Yacute" g2="slash" k="176" />
+<hkern g1="Yacute" g2="zero" k="45" />
+<hkern g1="Yacute" g2="four" k="104" />
+<hkern g1="Yacute" g2="six" k="45" />
+<hkern g1="Yacute" g2="seven" k="-59" />
+<hkern g1="Yacute" g2="eight" k="27" />
+<hkern g1="Yacute" g2="colon" k="68" />
+<hkern g1="Yacute" g2="semicolon" k="76" />
+<hkern g1="Yacute" g2="at" k="90" />
+<hkern g1="Yacute" g2="A" k="133" />
+<hkern g1="Yacute" g2="C" k="61" />
+<hkern g1="Yacute" g2="G" k="61" />
+<hkern g1="Yacute" g2="J" k="57" />
+<hkern g1="Yacute" g2="O" k="61" />
+<hkern g1="Yacute" g2="Q" k="61" />
+<hkern g1="Yacute" g2="S" k="14" />
+<hkern g1="Yacute" g2="V" k="-25" />
+<hkern g1="Yacute" g2="W" k="-25" />
+<hkern g1="Yacute" g2="Y" k="-25" />
+<hkern g1="Yacute" g2="backslash" k="-57" />
+<hkern g1="Yacute" g2="bracketright" k="-86" />
+<hkern g1="Yacute" g2="a" k="166" />
+<hkern g1="Yacute" g2="b" k="-86" />
+<hkern g1="Yacute" g2="c" k="170" />
+<hkern g1="Yacute" g2="d" k="166" />
+<hkern g1="Yacute" g2="e" k="170" />
+<hkern g1="Yacute" g2="f" k="59" />
+<hkern g1="Yacute" g2="g" k="162" />
+<hkern g1="Yacute" g2="h" k="-41" />
+<hkern g1="Yacute" g2="i" k="55" />
+<hkern g1="Yacute" g2="j" k="43" />
+<hkern g1="Yacute" g2="k" k="-41" />
+<hkern g1="Yacute" g2="l" k="-41" />
+<hkern g1="Yacute" g2="m" k="127" />
+<hkern g1="Yacute" g2="n" k="127" />
+<hkern g1="Yacute" g2="o" k="170" />
+<hkern g1="Yacute" g2="p" k="125" />
+<hkern g1="Yacute" g2="q" k="166" />
+<hkern g1="Yacute" g2="r" k="127" />
+<hkern g1="Yacute" g2="s" k="158" />
+<hkern g1="Yacute" g2="t" k="92" />
+<hkern g1="Yacute" g2="u" k="121" />
+<hkern g1="Yacute" g2="v" k="106" />
+<hkern g1="Yacute" g2="w" k="109" />
+<hkern g1="Yacute" g2="x" k="119" />
+<hkern g1="Yacute" g2="y" k="104" />
+<hkern g1="Yacute" g2="z" k="135" />
+<hkern g1="Yacute" g2="braceright" k="-76" />
+<hkern g1="Yacute" g2="guillemotleft" k="135" />
+<hkern g1="Yacute" g2="uni00AD" k="139" />
+<hkern g1="Yacute" g2="registered" k="53" />
+<hkern g1="Yacute" g2="guillemotright" k="61" />
+<hkern g1="Yacute" g2="Agrave" k="133" />
+<hkern g1="Yacute" g2="Aacute" k="133" />
+<hkern g1="Yacute" g2="Acircumflex" k="133" />
+<hkern g1="Yacute" g2="Atilde" k="133" />
+<hkern g1="Yacute" g2="Adieresis" k="133" />
+<hkern g1="Yacute" g2="Aring" k="133" />
+<hkern g1="Yacute" g2="AE" k="137" />
+<hkern g1="Yacute" g2="Ccedilla" k="61" />
+<hkern g1="Yacute" g2="Ograve" k="61" />
+<hkern g1="Yacute" g2="Oacute" k="61" />
+<hkern g1="Yacute" g2="Ocircumflex" k="61" />
+<hkern g1="Yacute" g2="Otilde" k="61" />
+<hkern g1="Yacute" g2="Odieresis" k="61" />
+<hkern g1="Yacute" g2="Oslash" k="61" />
+<hkern g1="Yacute" g2="Yacute" k="-25" />
+<hkern g1="Yacute" g2="germandbls" k="59" />
+<hkern g1="Yacute" g2="agrave" k="166" />
+<hkern g1="Yacute" g2="aacute" k="166" />
+<hkern g1="Yacute" g2="acircumflex" k="127" />
+<hkern g1="Yacute" g2="atilde" k="68" />
+<hkern g1="Yacute" g2="adieresis" k="117" />
+<hkern g1="Yacute" g2="aring" k="166" />
+<hkern g1="Yacute" g2="ae" k="166" />
+<hkern g1="Yacute" g2="ccedilla" k="170" />
+<hkern g1="Yacute" g2="egrave" k="170" />
+<hkern g1="Yacute" g2="eacute" k="170" />
+<hkern g1="Yacute" g2="ecircumflex" k="170" />
+<hkern g1="Yacute" g2="edieresis" k="170" />
+<hkern g1="Yacute" g2="igrave" k="-35" />
+<hkern g1="Yacute" g2="iacute" k="55" />
+<hkern g1="Yacute" g2="icircumflex" k="-23" />
+<hkern g1="Yacute" g2="idieresis" k="-35" />
+<hkern g1="Yacute" g2="eth" k="43" />
+<hkern g1="Yacute" g2="ntilde" k="127" />
+<hkern g1="Yacute" g2="ograve" k="170" />
+<hkern g1="Yacute" g2="oacute" k="170" />
+<hkern g1="Yacute" g2="ocircumflex" k="170" />
+<hkern g1="Yacute" g2="otilde" k="129" />
+<hkern g1="Yacute" g2="odieresis" k="170" />
+<hkern g1="Yacute" g2="oslash" k="170" />
+<hkern g1="Yacute" g2="ugrave" k="121" />
+<hkern g1="Yacute" g2="uacute" k="121" />
+<hkern g1="Yacute" g2="ucircumflex" k="121" />
+<hkern g1="Yacute" g2="udieresis" k="121" />
+<hkern g1="Yacute" g2="yacute" k="104" />
+<hkern g1="Yacute" g2="thorn" k="-86" />
+<hkern g1="Yacute" g2="ydieresis" k="104" />
+<hkern g1="Yacute" g2="dotlessi" k="55" />
+<hkern g1="Yacute" g2="OE" k="61" />
+<hkern g1="Yacute" g2="oe" k="170" />
+<hkern g1="Yacute" g2="endash" k="139" />
+<hkern g1="Yacute" g2="emdash" k="139" />
+<hkern g1="Yacute" g2="quoteright" k="-47" />
+<hkern g1="Yacute" g2="quotesinglbase" k="115" />
+<hkern g1="Yacute" g2="quotedblright" k="-47" />
+<hkern g1="Yacute" g2="quotedblbase" k="115" />
+<hkern g1="Yacute" g2="guilsinglleft" k="135" />
+<hkern g1="Yacute" g2="guilsinglright" k="61" />
+<hkern g1="Thorn" g2="parenright" k="45" />
+<hkern g1="Thorn" g2="comma" k="123" />
+<hkern g1="Thorn" g2="period" k="123" />
+<hkern g1="Thorn" g2="slash" k="158" />
+<hkern g1="Thorn" g2="A" k="76" />
+<hkern g1="Thorn" g2="B" k="29" />
+<hkern g1="Thorn" g2="D" k="29" />
+<hkern g1="Thorn" g2="E" k="29" />
+<hkern g1="Thorn" g2="F" k="29" />
+<hkern g1="Thorn" g2="H" k="29" />
+<hkern g1="Thorn" g2="I" k="29" />
+<hkern g1="Thorn" g2="J" k="61" />
+<hkern g1="Thorn" g2="K" k="29" />
+<hkern g1="Thorn" g2="L" k="29" />
+<hkern g1="Thorn" g2="M" k="29" />
+<hkern g1="Thorn" g2="N" k="29" />
+<hkern g1="Thorn" g2="P" k="29" />
+<hkern g1="Thorn" g2="R" k="29" />
+<hkern g1="Thorn" g2="U" k="10" />
+<hkern g1="Thorn" g2="V" k="51" />
+<hkern g1="Thorn" g2="W" k="49" />
+<hkern g1="Thorn" g2="X" k="125" />
+<hkern g1="Thorn" g2="Y" k="61" />
+<hkern g1="Thorn" g2="backslash" k="35" />
+<hkern g1="Thorn" g2="bracketright" k="98" />
+<hkern g1="Thorn" g2="h" k="20" />
+<hkern g1="Thorn" g2="k" k="20" />
+<hkern g1="Thorn" g2="l" k="20" />
+<hkern g1="Thorn" g2="braceright" k="49" />
+<hkern g1="Thorn" g2="Agrave" k="76" />
+<hkern g1="Thorn" g2="Aacute" k="76" />
+<hkern g1="Thorn" g2="Acircumflex" k="76" />
+<hkern g1="Thorn" g2="Atilde" k="76" />
+<hkern g1="Thorn" g2="Adieresis" k="76" />
+<hkern g1="Thorn" g2="Aring" k="76" />
+<hkern g1="Thorn" g2="AE" k="102" />
+<hkern g1="Thorn" g2="Egrave" k="29" />
+<hkern g1="Thorn" g2="Eacute" k="29" />
+<hkern g1="Thorn" g2="Ecircumflex" k="29" />
+<hkern g1="Thorn" g2="Edieresis" k="29" />
+<hkern g1="Thorn" g2="Igrave" k="29" />
+<hkern g1="Thorn" g2="Iacute" k="29" />
+<hkern g1="Thorn" g2="Icircumflex" k="29" />
+<hkern g1="Thorn" g2="Idieresis" k="29" />
+<hkern g1="Thorn" g2="Eth" k="29" />
+<hkern g1="Thorn" g2="Ntilde" k="29" />
+<hkern g1="Thorn" g2="Ugrave" k="10" />
+<hkern g1="Thorn" g2="Uacute" k="10" />
+<hkern g1="Thorn" g2="Ucircumflex" k="10" />
+<hkern g1="Thorn" g2="Udieresis" k="10" />
+<hkern g1="Thorn" g2="Yacute" k="61" />
+<hkern g1="Thorn" g2="Thorn" k="29" />
+<hkern g1="Thorn" g2="quotesinglbase" k="123" />
+<hkern g1="Thorn" g2="quotedblbase" k="123" />
+<hkern g1="germandbls" g2="quotedbl" k="63" />
+<hkern g1="germandbls" g2="quotesingle" k="63" />
+<hkern g1="germandbls" g2="parenright" k="49" />
+<hkern g1="germandbls" g2="asterisk" k="43" />
+<hkern g1="germandbls" g2="hyphen" k="16" />
+<hkern g1="germandbls" g2="slash" k="70" />
+<hkern g1="germandbls" g2="question" k="37" />
+<hkern g1="germandbls" g2="backslash" k="76" />
+<hkern g1="germandbls" g2="bracketright" k="96" />
+<hkern g1="germandbls" g2="j" k="12" />
+<hkern g1="germandbls" g2="p" k="12" />
+<hkern g1="germandbls" g2="t" k="10" />
+<hkern g1="germandbls" g2="u" k="10" />
+<hkern g1="germandbls" g2="v" k="59" />
+<hkern g1="germandbls" g2="w" k="47" />
+<hkern g1="germandbls" g2="y" k="70" />
+<hkern g1="germandbls" g2="braceright" k="49" />
+<hkern g1="germandbls" g2="uni00AD" k="16" />
+<hkern g1="germandbls" g2="ugrave" k="10" />
+<hkern g1="germandbls" g2="uacute" k="10" />
+<hkern g1="germandbls" g2="ucircumflex" k="10" />
+<hkern g1="germandbls" g2="udieresis" k="10" />
+<hkern g1="germandbls" g2="yacute" k="70" />
+<hkern g1="germandbls" g2="ydieresis" k="70" />
+<hkern g1="germandbls" g2="endash" k="16" />
+<hkern g1="germandbls" g2="emdash" k="16" />
+<hkern g1="germandbls" g2="quoteleft" k="59" />
+<hkern g1="germandbls" g2="quoteright" k="68" />
+<hkern g1="germandbls" g2="quotedblleft" k="59" />
+<hkern g1="germandbls" g2="quotedblright" k="68" />
+<hkern g1="agrave" g2="quotedbl" k="47" />
+<hkern g1="agrave" g2="quotesingle" k="47" />
+<hkern g1="agrave" g2="parenright" k="45" />
+<hkern g1="agrave" g2="asterisk" k="33" />
+<hkern g1="agrave" g2="slash" k="43" />
+<hkern g1="agrave" g2="question" k="41" />
+<hkern g1="agrave" g2="B" k="10" />
+<hkern g1="agrave" g2="C" k="20" />
+<hkern g1="agrave" g2="D" k="10" />
+<hkern g1="agrave" g2="E" k="10" />
+<hkern g1="agrave" g2="F" k="10" />
+<hkern g1="agrave" g2="G" k="20" />
+<hkern g1="agrave" g2="H" k="10" />
+<hkern g1="agrave" g2="I" k="10" />
+<hkern g1="agrave" g2="K" k="10" />
+<hkern g1="agrave" g2="L" k="10" />
+<hkern g1="agrave" g2="N" k="10" />
+<hkern g1="agrave" g2="O" k="20" />
+<hkern g1="agrave" g2="P" k="10" />
+<hkern g1="agrave" g2="Q" k="20" />
+<hkern g1="agrave" g2="R" k="10" />
+<hkern g1="agrave" g2="T" k="86" />
+<hkern g1="agrave" g2="U" k="63" />
+<hkern g1="agrave" g2="V" k="137" />
+<hkern g1="agrave" g2="W" k="123" />
+<hkern g1="agrave" g2="Y" k="158" />
+<hkern g1="agrave" g2="backslash" k="119" />
+<hkern g1="agrave" g2="bracketright" k="117" />
+<hkern g1="agrave" g2="v" k="25" />
+<hkern g1="agrave" g2="w" k="25" />
+<hkern g1="agrave" g2="y" k="27" />
+<hkern g1="agrave" g2="braceright" k="51" />
+<hkern g1="agrave" g2="Ccedilla" k="20" />
+<hkern g1="agrave" g2="Egrave" k="10" />
+<hkern g1="agrave" g2="Eacute" k="10" />
+<hkern g1="agrave" g2="Ecircumflex" k="10" />
+<hkern g1="agrave" g2="Edieresis" k="10" />
+<hkern g1="agrave" g2="Igrave" k="10" />
+<hkern g1="agrave" g2="Iacute" k="10" />
+<hkern g1="agrave" g2="Icircumflex" k="10" />
+<hkern g1="agrave" g2="Idieresis" k="10" />
+<hkern g1="agrave" g2="Eth" k="10" />
+<hkern g1="agrave" g2="Ntilde" k="10" />
+<hkern g1="agrave" g2="Ograve" k="20" />
+<hkern g1="agrave" g2="Oacute" k="20" />
+<hkern g1="agrave" g2="Ocircumflex" k="20" />
+<hkern g1="agrave" g2="Otilde" k="20" />
+<hkern g1="agrave" g2="Odieresis" k="20" />
+<hkern g1="agrave" g2="Oslash" k="20" />
+<hkern g1="agrave" g2="Ugrave" k="63" />
+<hkern g1="agrave" g2="Uacute" k="63" />
+<hkern g1="agrave" g2="Ucircumflex" k="63" />
+<hkern g1="agrave" g2="Udieresis" k="63" />
+<hkern g1="agrave" g2="Yacute" k="158" />
+<hkern g1="agrave" g2="Thorn" k="10" />
+<hkern g1="agrave" g2="yacute" k="27" />
+<hkern g1="agrave" g2="ydieresis" k="27" />
+<hkern g1="agrave" g2="OE" k="20" />
+<hkern g1="agrave" g2="quoteleft" k="39" />
+<hkern g1="agrave" g2="quoteright" k="45" />
+<hkern g1="agrave" g2="quotedblleft" k="39" />
+<hkern g1="agrave" g2="quotedblright" k="45" />
+<hkern g1="aacute" g2="quotedbl" k="47" />
+<hkern g1="aacute" g2="quotesingle" k="47" />
+<hkern g1="aacute" g2="parenright" k="45" />
+<hkern g1="aacute" g2="asterisk" k="33" />
+<hkern g1="aacute" g2="slash" k="43" />
+<hkern g1="aacute" g2="question" k="41" />
+<hkern g1="aacute" g2="B" k="10" />
+<hkern g1="aacute" g2="C" k="20" />
+<hkern g1="aacute" g2="D" k="10" />
+<hkern g1="aacute" g2="E" k="10" />
+<hkern g1="aacute" g2="F" k="10" />
+<hkern g1="aacute" g2="G" k="20" />
+<hkern g1="aacute" g2="H" k="10" />
+<hkern g1="aacute" g2="I" k="10" />
+<hkern g1="aacute" g2="K" k="10" />
+<hkern g1="aacute" g2="L" k="10" />
+<hkern g1="aacute" g2="N" k="10" />
+<hkern g1="aacute" g2="O" k="20" />
+<hkern g1="aacute" g2="P" k="10" />
+<hkern g1="aacute" g2="Q" k="20" />
+<hkern g1="aacute" g2="R" k="10" />
+<hkern g1="aacute" g2="T" k="86" />
+<hkern g1="aacute" g2="U" k="63" />
+<hkern g1="aacute" g2="V" k="137" />
+<hkern g1="aacute" g2="W" k="123" />
+<hkern g1="aacute" g2="Y" k="158" />
+<hkern g1="aacute" g2="backslash" k="119" />
+<hkern g1="aacute" g2="bracketright" k="117" />
+<hkern g1="aacute" g2="v" k="25" />
+<hkern g1="aacute" g2="w" k="25" />
+<hkern g1="aacute" g2="y" k="27" />
+<hkern g1="aacute" g2="braceright" k="51" />
+<hkern g1="aacute" g2="Ccedilla" k="20" />
+<hkern g1="aacute" g2="Egrave" k="10" />
+<hkern g1="aacute" g2="Eacute" k="10" />
+<hkern g1="aacute" g2="Ecircumflex" k="10" />
+<hkern g1="aacute" g2="Edieresis" k="10" />
+<hkern g1="aacute" g2="Igrave" k="10" />
+<hkern g1="aacute" g2="Iacute" k="10" />
+<hkern g1="aacute" g2="Icircumflex" k="10" />
+<hkern g1="aacute" g2="Idieresis" k="10" />
+<hkern g1="aacute" g2="Eth" k="10" />
+<hkern g1="aacute" g2="Ntilde" k="10" />
+<hkern g1="aacute" g2="Ograve" k="20" />
+<hkern g1="aacute" g2="Oacute" k="20" />
+<hkern g1="aacute" g2="Ocircumflex" k="20" />
+<hkern g1="aacute" g2="Otilde" k="20" />
+<hkern g1="aacute" g2="Odieresis" k="20" />
+<hkern g1="aacute" g2="Oslash" k="20" />
+<hkern g1="aacute" g2="Ugrave" k="63" />
+<hkern g1="aacute" g2="Uacute" k="63" />
+<hkern g1="aacute" g2="Ucircumflex" k="63" />
+<hkern g1="aacute" g2="Udieresis" k="63" />
+<hkern g1="aacute" g2="Yacute" k="158" />
+<hkern g1="aacute" g2="Thorn" k="10" />
+<hkern g1="aacute" g2="yacute" k="27" />
+<hkern g1="aacute" g2="ydieresis" k="27" />
+<hkern g1="aacute" g2="OE" k="20" />
+<hkern g1="aacute" g2="quoteleft" k="39" />
+<hkern g1="aacute" g2="quoteright" k="45" />
+<hkern g1="aacute" g2="quotedblleft" k="39" />
+<hkern g1="aacute" g2="quotedblright" k="45" />
+<hkern g1="acircumflex" g2="quotedbl" k="47" />
+<hkern g1="acircumflex" g2="quotesingle" k="47" />
+<hkern g1="acircumflex" g2="parenright" k="45" />
+<hkern g1="acircumflex" g2="asterisk" k="33" />
+<hkern g1="acircumflex" g2="slash" k="43" />
+<hkern g1="acircumflex" g2="question" k="41" />
+<hkern g1="acircumflex" g2="B" k="10" />
+<hkern g1="acircumflex" g2="C" k="20" />
+<hkern g1="acircumflex" g2="D" k="10" />
+<hkern g1="acircumflex" g2="E" k="10" />
+<hkern g1="acircumflex" g2="F" k="10" />
+<hkern g1="acircumflex" g2="G" k="20" />
+<hkern g1="acircumflex" g2="H" k="10" />
+<hkern g1="acircumflex" g2="I" k="10" />
+<hkern g1="acircumflex" g2="K" k="10" />
+<hkern g1="acircumflex" g2="L" k="10" />
+<hkern g1="acircumflex" g2="N" k="10" />
+<hkern g1="acircumflex" g2="O" k="20" />
+<hkern g1="acircumflex" g2="P" k="10" />
+<hkern g1="acircumflex" g2="Q" k="20" />
+<hkern g1="acircumflex" g2="R" k="10" />
+<hkern g1="acircumflex" g2="T" k="86" />
+<hkern g1="acircumflex" g2="U" k="63" />
+<hkern g1="acircumflex" g2="V" k="137" />
+<hkern g1="acircumflex" g2="W" k="123" />
+<hkern g1="acircumflex" g2="Y" k="158" />
+<hkern g1="acircumflex" g2="backslash" k="119" />
+<hkern g1="acircumflex" g2="bracketright" k="117" />
+<hkern g1="acircumflex" g2="v" k="25" />
+<hkern g1="acircumflex" g2="w" k="25" />
+<hkern g1="acircumflex" g2="y" k="27" />
+<hkern g1="acircumflex" g2="braceright" k="51" />
+<hkern g1="acircumflex" g2="Ccedilla" k="20" />
+<hkern g1="acircumflex" g2="Egrave" k="10" />
+<hkern g1="acircumflex" g2="Eacute" k="10" />
+<hkern g1="acircumflex" g2="Ecircumflex" k="10" />
+<hkern g1="acircumflex" g2="Edieresis" k="10" />
+<hkern g1="acircumflex" g2="Igrave" k="10" />
+<hkern g1="acircumflex" g2="Iacute" k="10" />
+<hkern g1="acircumflex" g2="Icircumflex" k="10" />
+<hkern g1="acircumflex" g2="Idieresis" k="10" />
+<hkern g1="acircumflex" g2="Eth" k="10" />
+<hkern g1="acircumflex" g2="Ntilde" k="10" />
+<hkern g1="acircumflex" g2="Ograve" k="20" />
+<hkern g1="acircumflex" g2="Oacute" k="20" />
+<hkern g1="acircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="acircumflex" g2="Otilde" k="20" />
+<hkern g1="acircumflex" g2="Odieresis" k="20" />
+<hkern g1="acircumflex" g2="Oslash" k="20" />
+<hkern g1="acircumflex" g2="Ugrave" k="63" />
+<hkern g1="acircumflex" g2="Uacute" k="63" />
+<hkern g1="acircumflex" g2="Ucircumflex" k="63" />
+<hkern g1="acircumflex" g2="Udieresis" k="63" />
+<hkern g1="acircumflex" g2="Yacute" k="158" />
+<hkern g1="acircumflex" g2="Thorn" k="10" />
+<hkern g1="acircumflex" g2="yacute" k="27" />
+<hkern g1="acircumflex" g2="ydieresis" k="27" />
+<hkern g1="acircumflex" g2="OE" k="20" />
+<hkern g1="acircumflex" g2="quoteleft" k="39" />
+<hkern g1="acircumflex" g2="quoteright" k="45" />
+<hkern g1="acircumflex" g2="quotedblleft" k="39" />
+<hkern g1="acircumflex" g2="quotedblright" k="45" />
+<hkern g1="atilde" g2="quotedbl" k="47" />
+<hkern g1="atilde" g2="quotesingle" k="47" />
+<hkern g1="atilde" g2="parenright" k="45" />
+<hkern g1="atilde" g2="asterisk" k="33" />
+<hkern g1="atilde" g2="slash" k="43" />
+<hkern g1="atilde" g2="question" k="41" />
+<hkern g1="atilde" g2="B" k="10" />
+<hkern g1="atilde" g2="C" k="20" />
+<hkern g1="atilde" g2="D" k="10" />
+<hkern g1="atilde" g2="E" k="10" />
+<hkern g1="atilde" g2="F" k="10" />
+<hkern g1="atilde" g2="G" k="20" />
+<hkern g1="atilde" g2="H" k="10" />
+<hkern g1="atilde" g2="I" k="10" />
+<hkern g1="atilde" g2="K" k="10" />
+<hkern g1="atilde" g2="L" k="10" />
+<hkern g1="atilde" g2="N" k="10" />
+<hkern g1="atilde" g2="O" k="20" />
+<hkern g1="atilde" g2="P" k="10" />
+<hkern g1="atilde" g2="Q" k="20" />
+<hkern g1="atilde" g2="R" k="10" />
+<hkern g1="atilde" g2="T" k="86" />
+<hkern g1="atilde" g2="U" k="63" />
+<hkern g1="atilde" g2="V" k="137" />
+<hkern g1="atilde" g2="W" k="123" />
+<hkern g1="atilde" g2="Y" k="158" />
+<hkern g1="atilde" g2="backslash" k="119" />
+<hkern g1="atilde" g2="bracketright" k="117" />
+<hkern g1="atilde" g2="v" k="25" />
+<hkern g1="atilde" g2="w" k="25" />
+<hkern g1="atilde" g2="y" k="27" />
+<hkern g1="atilde" g2="braceright" k="51" />
+<hkern g1="atilde" g2="Ccedilla" k="20" />
+<hkern g1="atilde" g2="Egrave" k="10" />
+<hkern g1="atilde" g2="Eacute" k="10" />
+<hkern g1="atilde" g2="Ecircumflex" k="10" />
+<hkern g1="atilde" g2="Edieresis" k="10" />
+<hkern g1="atilde" g2="Igrave" k="10" />
+<hkern g1="atilde" g2="Iacute" k="10" />
+<hkern g1="atilde" g2="Icircumflex" k="10" />
+<hkern g1="atilde" g2="Idieresis" k="10" />
+<hkern g1="atilde" g2="Eth" k="10" />
+<hkern g1="atilde" g2="Ntilde" k="10" />
+<hkern g1="atilde" g2="Ograve" k="20" />
+<hkern g1="atilde" g2="Oacute" k="20" />
+<hkern g1="atilde" g2="Ocircumflex" k="20" />
+<hkern g1="atilde" g2="Otilde" k="20" />
+<hkern g1="atilde" g2="Odieresis" k="20" />
+<hkern g1="atilde" g2="Oslash" k="20" />
+<hkern g1="atilde" g2="Ugrave" k="63" />
+<hkern g1="atilde" g2="Uacute" k="63" />
+<hkern g1="atilde" g2="Ucircumflex" k="63" />
+<hkern g1="atilde" g2="Udieresis" k="63" />
+<hkern g1="atilde" g2="Yacute" k="158" />
+<hkern g1="atilde" g2="Thorn" k="10" />
+<hkern g1="atilde" g2="yacute" k="27" />
+<hkern g1="atilde" g2="ydieresis" k="27" />
+<hkern g1="atilde" g2="OE" k="20" />
+<hkern g1="atilde" g2="quoteleft" k="39" />
+<hkern g1="atilde" g2="quoteright" k="45" />
+<hkern g1="atilde" g2="quotedblleft" k="39" />
+<hkern g1="atilde" g2="quotedblright" k="45" />
+<hkern g1="adieresis" g2="quotedbl" k="47" />
+<hkern g1="adieresis" g2="quotesingle" k="47" />
+<hkern g1="adieresis" g2="parenright" k="45" />
+<hkern g1="adieresis" g2="asterisk" k="33" />
+<hkern g1="adieresis" g2="slash" k="43" />
+<hkern g1="adieresis" g2="question" k="41" />
+<hkern g1="adieresis" g2="B" k="10" />
+<hkern g1="adieresis" g2="C" k="20" />
+<hkern g1="adieresis" g2="D" k="10" />
+<hkern g1="adieresis" g2="E" k="10" />
+<hkern g1="adieresis" g2="F" k="10" />
+<hkern g1="adieresis" g2="G" k="20" />
+<hkern g1="adieresis" g2="H" k="10" />
+<hkern g1="adieresis" g2="I" k="10" />
+<hkern g1="adieresis" g2="K" k="10" />
+<hkern g1="adieresis" g2="L" k="10" />
+<hkern g1="adieresis" g2="N" k="10" />
+<hkern g1="adieresis" g2="O" k="20" />
+<hkern g1="adieresis" g2="P" k="10" />
+<hkern g1="adieresis" g2="Q" k="20" />
+<hkern g1="adieresis" g2="R" k="10" />
+<hkern g1="adieresis" g2="T" k="86" />
+<hkern g1="adieresis" g2="U" k="63" />
+<hkern g1="adieresis" g2="V" k="137" />
+<hkern g1="adieresis" g2="W" k="123" />
+<hkern g1="adieresis" g2="Y" k="158" />
+<hkern g1="adieresis" g2="backslash" k="119" />
+<hkern g1="adieresis" g2="bracketright" k="117" />
+<hkern g1="adieresis" g2="v" k="25" />
+<hkern g1="adieresis" g2="w" k="25" />
+<hkern g1="adieresis" g2="y" k="27" />
+<hkern g1="adieresis" g2="braceright" k="51" />
+<hkern g1="adieresis" g2="Ccedilla" k="20" />
+<hkern g1="adieresis" g2="Egrave" k="10" />
+<hkern g1="adieresis" g2="Eacute" k="10" />
+<hkern g1="adieresis" g2="Ecircumflex" k="10" />
+<hkern g1="adieresis" g2="Edieresis" k="10" />
+<hkern g1="adieresis" g2="Igrave" k="10" />
+<hkern g1="adieresis" g2="Iacute" k="10" />
+<hkern g1="adieresis" g2="Icircumflex" k="10" />
+<hkern g1="adieresis" g2="Idieresis" k="10" />
+<hkern g1="adieresis" g2="Eth" k="10" />
+<hkern g1="adieresis" g2="Ntilde" k="10" />
+<hkern g1="adieresis" g2="Ograve" k="20" />
+<hkern g1="adieresis" g2="Oacute" k="20" />
+<hkern g1="adieresis" g2="Ocircumflex" k="20" />
+<hkern g1="adieresis" g2="Otilde" k="20" />
+<hkern g1="adieresis" g2="Odieresis" k="20" />
+<hkern g1="adieresis" g2="Oslash" k="20" />
+<hkern g1="adieresis" g2="Ugrave" k="63" />
+<hkern g1="adieresis" g2="Uacute" k="63" />
+<hkern g1="adieresis" g2="Ucircumflex" k="63" />
+<hkern g1="adieresis" g2="Udieresis" k="63" />
+<hkern g1="adieresis" g2="Yacute" k="158" />
+<hkern g1="adieresis" g2="Thorn" k="10" />
+<hkern g1="adieresis" g2="yacute" k="27" />
+<hkern g1="adieresis" g2="ydieresis" k="27" />
+<hkern g1="adieresis" g2="OE" k="20" />
+<hkern g1="adieresis" g2="quoteleft" k="39" />
+<hkern g1="adieresis" g2="quoteright" k="45" />
+<hkern g1="adieresis" g2="quotedblleft" k="39" />
+<hkern g1="adieresis" g2="quotedblright" k="45" />
+<hkern g1="aring" g2="quotedbl" k="47" />
+<hkern g1="aring" g2="quotesingle" k="47" />
+<hkern g1="aring" g2="parenright" k="45" />
+<hkern g1="aring" g2="asterisk" k="33" />
+<hkern g1="aring" g2="slash" k="43" />
+<hkern g1="aring" g2="question" k="41" />
+<hkern g1="aring" g2="B" k="10" />
+<hkern g1="aring" g2="C" k="20" />
+<hkern g1="aring" g2="D" k="10" />
+<hkern g1="aring" g2="E" k="10" />
+<hkern g1="aring" g2="F" k="10" />
+<hkern g1="aring" g2="G" k="20" />
+<hkern g1="aring" g2="H" k="10" />
+<hkern g1="aring" g2="I" k="10" />
+<hkern g1="aring" g2="K" k="10" />
+<hkern g1="aring" g2="L" k="10" />
+<hkern g1="aring" g2="N" k="10" />
+<hkern g1="aring" g2="O" k="20" />
+<hkern g1="aring" g2="P" k="10" />
+<hkern g1="aring" g2="Q" k="20" />
+<hkern g1="aring" g2="R" k="10" />
+<hkern g1="aring" g2="T" k="86" />
+<hkern g1="aring" g2="U" k="63" />
+<hkern g1="aring" g2="V" k="137" />
+<hkern g1="aring" g2="W" k="123" />
+<hkern g1="aring" g2="Y" k="158" />
+<hkern g1="aring" g2="backslash" k="119" />
+<hkern g1="aring" g2="bracketright" k="117" />
+<hkern g1="aring" g2="v" k="25" />
+<hkern g1="aring" g2="w" k="25" />
+<hkern g1="aring" g2="y" k="27" />
+<hkern g1="aring" g2="braceright" k="51" />
+<hkern g1="aring" g2="Ccedilla" k="20" />
+<hkern g1="aring" g2="Egrave" k="10" />
+<hkern g1="aring" g2="Eacute" k="10" />
+<hkern g1="aring" g2="Ecircumflex" k="10" />
+<hkern g1="aring" g2="Edieresis" k="10" />
+<hkern g1="aring" g2="Igrave" k="10" />
+<hkern g1="aring" g2="Iacute" k="10" />
+<hkern g1="aring" g2="Icircumflex" k="10" />
+<hkern g1="aring" g2="Idieresis" k="10" />
+<hkern g1="aring" g2="Eth" k="10" />
+<hkern g1="aring" g2="Ntilde" k="10" />
+<hkern g1="aring" g2="Ograve" k="20" />
+<hkern g1="aring" g2="Oacute" k="20" />
+<hkern g1="aring" g2="Ocircumflex" k="20" />
+<hkern g1="aring" g2="Otilde" k="20" />
+<hkern g1="aring" g2="Odieresis" k="20" />
+<hkern g1="aring" g2="Oslash" k="20" />
+<hkern g1="aring" g2="Ugrave" k="63" />
+<hkern g1="aring" g2="Uacute" k="63" />
+<hkern g1="aring" g2="Ucircumflex" k="63" />
+<hkern g1="aring" g2="Udieresis" k="63" />
+<hkern g1="aring" g2="Yacute" k="158" />
+<hkern g1="aring" g2="Thorn" k="10" />
+<hkern g1="aring" g2="yacute" k="27" />
+<hkern g1="aring" g2="ydieresis" k="27" />
+<hkern g1="aring" g2="OE" k="20" />
+<hkern g1="aring" g2="quoteleft" k="39" />
+<hkern g1="aring" g2="quoteright" k="45" />
+<hkern g1="aring" g2="quotedblleft" k="39" />
+<hkern g1="aring" g2="quotedblright" k="45" />
+<hkern g1="ae" g2="quotedbl" k="39" />
+<hkern g1="ae" g2="quotesingle" k="39" />
+<hkern g1="ae" g2="parenright" k="59" />
+<hkern g1="ae" g2="asterisk" k="16" />
+<hkern g1="ae" g2="slash" k="94" />
+<hkern g1="ae" g2="question" k="33" />
+<hkern g1="ae" g2="A" k="12" />
+<hkern g1="ae" g2="B" k="33" />
+<hkern g1="ae" g2="D" k="33" />
+<hkern g1="ae" g2="E" k="33" />
+<hkern g1="ae" g2="F" k="33" />
+<hkern g1="ae" g2="H" k="33" />
+<hkern g1="ae" g2="I" k="33" />
+<hkern g1="ae" g2="K" k="33" />
+<hkern g1="ae" g2="L" k="33" />
+<hkern g1="ae" g2="M" k="31" />
+<hkern g1="ae" g2="N" k="33" />
+<hkern g1="ae" g2="P" k="33" />
+<hkern g1="ae" g2="R" k="33" />
+<hkern g1="ae" g2="S" k="12" />
+<hkern g1="ae" g2="T" k="82" />
+<hkern g1="ae" g2="U" k="55" />
+<hkern g1="ae" g2="V" k="168" />
+<hkern g1="ae" g2="W" k="145" />
+<hkern g1="ae" g2="X" k="49" />
+<hkern g1="ae" g2="Y" k="190" />
+<hkern g1="ae" g2="Z" k="16" />
+<hkern g1="ae" g2="backslash" k="94" />
+<hkern g1="ae" g2="bracketright" k="125" />
+<hkern g1="ae" g2="braceright" k="63" />
+<hkern g1="ae" g2="Agrave" k="12" />
+<hkern g1="ae" g2="Aacute" k="12" />
+<hkern g1="ae" g2="Acircumflex" k="12" />
+<hkern g1="ae" g2="Atilde" k="12" />
+<hkern g1="ae" g2="Adieresis" k="12" />
+<hkern g1="ae" g2="Aring" k="12" />
+<hkern g1="ae" g2="Egrave" k="33" />
+<hkern g1="ae" g2="Eacute" k="33" />
+<hkern g1="ae" g2="Ecircumflex" k="33" />
+<hkern g1="ae" g2="Edieresis" k="33" />
+<hkern g1="ae" g2="Igrave" k="33" />
+<hkern g1="ae" g2="Iacute" k="33" />
+<hkern g1="ae" g2="Icircumflex" k="33" />
+<hkern g1="ae" g2="Idieresis" k="33" />
+<hkern g1="ae" g2="Eth" k="33" />
+<hkern g1="ae" g2="Ntilde" k="33" />
+<hkern g1="ae" g2="Ugrave" k="55" />
+<hkern g1="ae" g2="Uacute" k="55" />
+<hkern g1="ae" g2="Ucircumflex" k="55" />
+<hkern g1="ae" g2="Udieresis" k="55" />
+<hkern g1="ae" g2="Yacute" k="190" />
+<hkern g1="ae" g2="Thorn" k="33" />
+<hkern g1="ae" g2="quoteleft" k="29" />
+<hkern g1="ae" g2="quoteright" k="33" />
+<hkern g1="ae" g2="quotedblleft" k="29" />
+<hkern g1="ae" g2="quotedblright" k="33" />
+<hkern g1="ccedilla" g2="parenright" k="45" />
+<hkern g1="ccedilla" g2="slash" k="76" />
+<hkern g1="ccedilla" g2="B" k="41" />
+<hkern g1="ccedilla" g2="C" k="14" />
+<hkern g1="ccedilla" g2="D" k="41" />
+<hkern g1="ccedilla" g2="E" k="41" />
+<hkern g1="ccedilla" g2="F" k="41" />
+<hkern g1="ccedilla" g2="G" k="14" />
+<hkern g1="ccedilla" g2="H" k="41" />
+<hkern g1="ccedilla" g2="I" k="41" />
+<hkern g1="ccedilla" g2="J" k="-14" />
+<hkern g1="ccedilla" g2="K" k="41" />
+<hkern g1="ccedilla" g2="L" k="41" />
+<hkern g1="ccedilla" g2="M" k="37" />
+<hkern g1="ccedilla" g2="N" k="41" />
+<hkern g1="ccedilla" g2="O" k="14" />
+<hkern g1="ccedilla" g2="P" k="41" />
+<hkern g1="ccedilla" g2="Q" k="14" />
+<hkern g1="ccedilla" g2="R" k="41" />
+<hkern g1="ccedilla" g2="T" k="35" />
+<hkern g1="ccedilla" g2="U" k="51" />
+<hkern g1="ccedilla" g2="V" k="135" />
+<hkern g1="ccedilla" g2="W" k="119" />
+<hkern g1="ccedilla" g2="X" k="51" />
+<hkern g1="ccedilla" g2="Y" k="154" />
+<hkern g1="ccedilla" g2="backslash" k="74" />
+<hkern g1="ccedilla" g2="bracketright" k="113" />
+<hkern g1="ccedilla" g2="braceright" k="47" />
+<hkern g1="ccedilla" g2="Ccedilla" k="14" />
+<hkern g1="ccedilla" g2="Egrave" k="41" />
+<hkern g1="ccedilla" g2="Eacute" k="41" />
+<hkern g1="ccedilla" g2="Ecircumflex" k="41" />
+<hkern g1="ccedilla" g2="Edieresis" k="41" />
+<hkern g1="ccedilla" g2="Igrave" k="41" />
+<hkern g1="ccedilla" g2="Iacute" k="41" />
+<hkern g1="ccedilla" g2="Icircumflex" k="41" />
+<hkern g1="ccedilla" g2="Idieresis" k="41" />
+<hkern g1="ccedilla" g2="Eth" k="41" />
+<hkern g1="ccedilla" g2="Ntilde" k="41" />
+<hkern g1="ccedilla" g2="Ograve" k="14" />
+<hkern g1="ccedilla" g2="Oacute" k="14" />
+<hkern g1="ccedilla" g2="Ocircumflex" k="14" />
+<hkern g1="ccedilla" g2="Otilde" k="14" />
+<hkern g1="ccedilla" g2="Odieresis" k="14" />
+<hkern g1="ccedilla" g2="Oslash" k="14" />
+<hkern g1="ccedilla" g2="Ugrave" k="51" />
+<hkern g1="ccedilla" g2="Uacute" k="51" />
+<hkern g1="ccedilla" g2="Ucircumflex" k="51" />
+<hkern g1="ccedilla" g2="Udieresis" k="51" />
+<hkern g1="ccedilla" g2="Yacute" k="154" />
+<hkern g1="ccedilla" g2="Thorn" k="41" />
+<hkern g1="ccedilla" g2="OE" k="14" />
+<hkern g1="egrave" g2="quotedbl" k="39" />
+<hkern g1="egrave" g2="quotesingle" k="39" />
+<hkern g1="egrave" g2="parenright" k="59" />
+<hkern g1="egrave" g2="asterisk" k="16" />
+<hkern g1="egrave" g2="slash" k="94" />
+<hkern g1="egrave" g2="question" k="33" />
+<hkern g1="egrave" g2="A" k="12" />
+<hkern g1="egrave" g2="B" k="33" />
+<hkern g1="egrave" g2="D" k="33" />
+<hkern g1="egrave" g2="E" k="33" />
+<hkern g1="egrave" g2="F" k="33" />
+<hkern g1="egrave" g2="H" k="33" />
+<hkern g1="egrave" g2="I" k="33" />
+<hkern g1="egrave" g2="K" k="33" />
+<hkern g1="egrave" g2="L" k="33" />
+<hkern g1="egrave" g2="M" k="31" />
+<hkern g1="egrave" g2="N" k="33" />
+<hkern g1="egrave" g2="P" k="33" />
+<hkern g1="egrave" g2="R" k="33" />
+<hkern g1="egrave" g2="S" k="12" />
+<hkern g1="egrave" g2="T" k="82" />
+<hkern g1="egrave" g2="U" k="55" />
+<hkern g1="egrave" g2="V" k="168" />
+<hkern g1="egrave" g2="W" k="145" />
+<hkern g1="egrave" g2="X" k="49" />
+<hkern g1="egrave" g2="Y" k="190" />
+<hkern g1="egrave" g2="Z" k="16" />
+<hkern g1="egrave" g2="backslash" k="94" />
+<hkern g1="egrave" g2="bracketright" k="125" />
+<hkern g1="egrave" g2="braceright" k="63" />
+<hkern g1="egrave" g2="Agrave" k="12" />
+<hkern g1="egrave" g2="Aacute" k="12" />
+<hkern g1="egrave" g2="Acircumflex" k="12" />
+<hkern g1="egrave" g2="Atilde" k="12" />
+<hkern g1="egrave" g2="Adieresis" k="12" />
+<hkern g1="egrave" g2="Aring" k="12" />
+<hkern g1="egrave" g2="Egrave" k="33" />
+<hkern g1="egrave" g2="Eacute" k="33" />
+<hkern g1="egrave" g2="Ecircumflex" k="33" />
+<hkern g1="egrave" g2="Edieresis" k="33" />
+<hkern g1="egrave" g2="Igrave" k="33" />
+<hkern g1="egrave" g2="Iacute" k="33" />
+<hkern g1="egrave" g2="Icircumflex" k="33" />
+<hkern g1="egrave" g2="Idieresis" k="33" />
+<hkern g1="egrave" g2="Eth" k="33" />
+<hkern g1="egrave" g2="Ntilde" k="33" />
+<hkern g1="egrave" g2="Ugrave" k="55" />
+<hkern g1="egrave" g2="Uacute" k="55" />
+<hkern g1="egrave" g2="Ucircumflex" k="55" />
+<hkern g1="egrave" g2="Udieresis" k="55" />
+<hkern g1="egrave" g2="Yacute" k="190" />
+<hkern g1="egrave" g2="Thorn" k="33" />
+<hkern g1="egrave" g2="quoteleft" k="29" />
+<hkern g1="egrave" g2="quoteright" k="33" />
+<hkern g1="egrave" g2="quotedblleft" k="29" />
+<hkern g1="egrave" g2="quotedblright" k="33" />
+<hkern g1="eacute" g2="quotedbl" k="39" />
+<hkern g1="eacute" g2="quotesingle" k="39" />
+<hkern g1="eacute" g2="parenright" k="59" />
+<hkern g1="eacute" g2="asterisk" k="16" />
+<hkern g1="eacute" g2="slash" k="94" />
+<hkern g1="eacute" g2="question" k="33" />
+<hkern g1="eacute" g2="A" k="12" />
+<hkern g1="eacute" g2="B" k="33" />
+<hkern g1="eacute" g2="D" k="33" />
+<hkern g1="eacute" g2="E" k="33" />
+<hkern g1="eacute" g2="F" k="33" />
+<hkern g1="eacute" g2="H" k="33" />
+<hkern g1="eacute" g2="I" k="33" />
+<hkern g1="eacute" g2="K" k="33" />
+<hkern g1="eacute" g2="L" k="33" />
+<hkern g1="eacute" g2="M" k="31" />
+<hkern g1="eacute" g2="N" k="33" />
+<hkern g1="eacute" g2="P" k="33" />
+<hkern g1="eacute" g2="R" k="33" />
+<hkern g1="eacute" g2="S" k="12" />
+<hkern g1="eacute" g2="T" k="82" />
+<hkern g1="eacute" g2="U" k="55" />
+<hkern g1="eacute" g2="V" k="168" />
+<hkern g1="eacute" g2="W" k="145" />
+<hkern g1="eacute" g2="X" k="49" />
+<hkern g1="eacute" g2="Y" k="190" />
+<hkern g1="eacute" g2="Z" k="16" />
+<hkern g1="eacute" g2="backslash" k="94" />
+<hkern g1="eacute" g2="bracketright" k="125" />
+<hkern g1="eacute" g2="braceright" k="63" />
+<hkern g1="eacute" g2="Agrave" k="12" />
+<hkern g1="eacute" g2="Aacute" k="12" />
+<hkern g1="eacute" g2="Acircumflex" k="12" />
+<hkern g1="eacute" g2="Atilde" k="12" />
+<hkern g1="eacute" g2="Adieresis" k="12" />
+<hkern g1="eacute" g2="Aring" k="12" />
+<hkern g1="eacute" g2="Egrave" k="33" />
+<hkern g1="eacute" g2="Eacute" k="33" />
+<hkern g1="eacute" g2="Ecircumflex" k="33" />
+<hkern g1="eacute" g2="Edieresis" k="33" />
+<hkern g1="eacute" g2="Igrave" k="33" />
+<hkern g1="eacute" g2="Iacute" k="33" />
+<hkern g1="eacute" g2="Icircumflex" k="33" />
+<hkern g1="eacute" g2="Idieresis" k="33" />
+<hkern g1="eacute" g2="Eth" k="33" />
+<hkern g1="eacute" g2="Ntilde" k="33" />
+<hkern g1="eacute" g2="Ugrave" k="55" />
+<hkern g1="eacute" g2="Uacute" k="55" />
+<hkern g1="eacute" g2="Ucircumflex" k="55" />
+<hkern g1="eacute" g2="Udieresis" k="55" />
+<hkern g1="eacute" g2="Yacute" k="190" />
+<hkern g1="eacute" g2="Thorn" k="33" />
+<hkern g1="eacute" g2="quoteleft" k="29" />
+<hkern g1="eacute" g2="quoteright" k="33" />
+<hkern g1="eacute" g2="quotedblleft" k="29" />
+<hkern g1="eacute" g2="quotedblright" k="33" />
+<hkern g1="ecircumflex" g2="quotedbl" k="39" />
+<hkern g1="ecircumflex" g2="quotesingle" k="39" />
+<hkern g1="ecircumflex" g2="parenright" k="59" />
+<hkern g1="ecircumflex" g2="asterisk" k="16" />
+<hkern g1="ecircumflex" g2="slash" k="94" />
+<hkern g1="ecircumflex" g2="question" k="33" />
+<hkern g1="ecircumflex" g2="A" k="12" />
+<hkern g1="ecircumflex" g2="B" k="33" />
+<hkern g1="ecircumflex" g2="D" k="33" />
+<hkern g1="ecircumflex" g2="E" k="33" />
+<hkern g1="ecircumflex" g2="F" k="33" />
+<hkern g1="ecircumflex" g2="H" k="33" />
+<hkern g1="ecircumflex" g2="I" k="33" />
+<hkern g1="ecircumflex" g2="K" k="33" />
+<hkern g1="ecircumflex" g2="L" k="33" />
+<hkern g1="ecircumflex" g2="M" k="31" />
+<hkern g1="ecircumflex" g2="N" k="33" />
+<hkern g1="ecircumflex" g2="P" k="33" />
+<hkern g1="ecircumflex" g2="R" k="33" />
+<hkern g1="ecircumflex" g2="S" k="12" />
+<hkern g1="ecircumflex" g2="T" k="82" />
+<hkern g1="ecircumflex" g2="U" k="55" />
+<hkern g1="ecircumflex" g2="V" k="168" />
+<hkern g1="ecircumflex" g2="W" k="145" />
+<hkern g1="ecircumflex" g2="X" k="49" />
+<hkern g1="ecircumflex" g2="Y" k="190" />
+<hkern g1="ecircumflex" g2="Z" k="16" />
+<hkern g1="ecircumflex" g2="backslash" k="94" />
+<hkern g1="ecircumflex" g2="bracketright" k="125" />
+<hkern g1="ecircumflex" g2="braceright" k="63" />
+<hkern g1="ecircumflex" g2="Agrave" k="12" />
+<hkern g1="ecircumflex" g2="Aacute" k="12" />
+<hkern g1="ecircumflex" g2="Acircumflex" k="12" />
+<hkern g1="ecircumflex" g2="Atilde" k="12" />
+<hkern g1="ecircumflex" g2="Adieresis" k="12" />
+<hkern g1="ecircumflex" g2="Aring" k="12" />
+<hkern g1="ecircumflex" g2="Egrave" k="33" />
+<hkern g1="ecircumflex" g2="Eacute" k="33" />
+<hkern g1="ecircumflex" g2="Ecircumflex" k="33" />
+<hkern g1="ecircumflex" g2="Edieresis" k="33" />
+<hkern g1="ecircumflex" g2="Igrave" k="33" />
+<hkern g1="ecircumflex" g2="Iacute" k="33" />
+<hkern g1="ecircumflex" g2="Icircumflex" k="33" />
+<hkern g1="ecircumflex" g2="Idieresis" k="33" />
+<hkern g1="ecircumflex" g2="Eth" k="33" />
+<hkern g1="ecircumflex" g2="Ntilde" k="33" />
+<hkern g1="ecircumflex" g2="Ugrave" k="55" />
+<hkern g1="ecircumflex" g2="Uacute" k="55" />
+<hkern g1="ecircumflex" g2="Ucircumflex" k="55" />
+<hkern g1="ecircumflex" g2="Udieresis" k="55" />
+<hkern g1="ecircumflex" g2="Yacute" k="190" />
+<hkern g1="ecircumflex" g2="Thorn" k="33" />
+<hkern g1="ecircumflex" g2="quoteleft" k="29" />
+<hkern g1="ecircumflex" g2="quoteright" k="33" />
+<hkern g1="ecircumflex" g2="quotedblleft" k="29" />
+<hkern g1="ecircumflex" g2="quotedblright" k="33" />
+<hkern g1="edieresis" g2="quotedbl" k="39" />
+<hkern g1="edieresis" g2="quotesingle" k="39" />
+<hkern g1="edieresis" g2="parenright" k="59" />
+<hkern g1="edieresis" g2="asterisk" k="16" />
+<hkern g1="edieresis" g2="slash" k="94" />
+<hkern g1="edieresis" g2="question" k="33" />
+<hkern g1="edieresis" g2="A" k="12" />
+<hkern g1="edieresis" g2="B" k="33" />
+<hkern g1="edieresis" g2="D" k="33" />
+<hkern g1="edieresis" g2="E" k="33" />
+<hkern g1="edieresis" g2="F" k="33" />
+<hkern g1="edieresis" g2="H" k="33" />
+<hkern g1="edieresis" g2="I" k="33" />
+<hkern g1="edieresis" g2="K" k="33" />
+<hkern g1="edieresis" g2="L" k="33" />
+<hkern g1="edieresis" g2="M" k="31" />
+<hkern g1="edieresis" g2="N" k="33" />
+<hkern g1="edieresis" g2="P" k="33" />
+<hkern g1="edieresis" g2="R" k="33" />
+<hkern g1="edieresis" g2="S" k="12" />
+<hkern g1="edieresis" g2="T" k="82" />
+<hkern g1="edieresis" g2="U" k="55" />
+<hkern g1="edieresis" g2="V" k="168" />
+<hkern g1="edieresis" g2="W" k="145" />
+<hkern g1="edieresis" g2="X" k="49" />
+<hkern g1="edieresis" g2="Y" k="190" />
+<hkern g1="edieresis" g2="Z" k="16" />
+<hkern g1="edieresis" g2="backslash" k="94" />
+<hkern g1="edieresis" g2="bracketright" k="125" />
+<hkern g1="edieresis" g2="braceright" k="63" />
+<hkern g1="edieresis" g2="Agrave" k="12" />
+<hkern g1="edieresis" g2="Aacute" k="12" />
+<hkern g1="edieresis" g2="Acircumflex" k="12" />
+<hkern g1="edieresis" g2="Atilde" k="12" />
+<hkern g1="edieresis" g2="Adieresis" k="12" />
+<hkern g1="edieresis" g2="Aring" k="12" />
+<hkern g1="edieresis" g2="Egrave" k="33" />
+<hkern g1="edieresis" g2="Eacute" k="33" />
+<hkern g1="edieresis" g2="Ecircumflex" k="33" />
+<hkern g1="edieresis" g2="Edieresis" k="33" />
+<hkern g1="edieresis" g2="Igrave" k="33" />
+<hkern g1="edieresis" g2="Iacute" k="33" />
+<hkern g1="edieresis" g2="Icircumflex" k="33" />
+<hkern g1="edieresis" g2="Idieresis" k="33" />
+<hkern g1="edieresis" g2="Eth" k="33" />
+<hkern g1="edieresis" g2="Ntilde" k="33" />
+<hkern g1="edieresis" g2="Ugrave" k="55" />
+<hkern g1="edieresis" g2="Uacute" k="55" />
+<hkern g1="edieresis" g2="Ucircumflex" k="55" />
+<hkern g1="edieresis" g2="Udieresis" k="55" />
+<hkern g1="edieresis" g2="Yacute" k="190" />
+<hkern g1="edieresis" g2="Thorn" k="33" />
+<hkern g1="edieresis" g2="quoteleft" k="29" />
+<hkern g1="edieresis" g2="quoteright" k="33" />
+<hkern g1="edieresis" g2="quotedblleft" k="29" />
+<hkern g1="edieresis" g2="quotedblright" k="33" />
+<hkern g1="igrave" g2="asterisk" k="16" />
+<hkern g1="igrave" g2="hyphen" k="18" />
+<hkern g1="igrave" g2="slash" k="49" />
+<hkern g1="igrave" g2="B" k="16" />
+<hkern g1="igrave" g2="C" k="25" />
+<hkern g1="igrave" g2="D" k="16" />
+<hkern g1="igrave" g2="E" k="16" />
+<hkern g1="igrave" g2="F" k="16" />
+<hkern g1="igrave" g2="G" k="25" />
+<hkern g1="igrave" g2="H" k="16" />
+<hkern g1="igrave" g2="I" k="16" />
+<hkern g1="igrave" g2="K" k="16" />
+<hkern g1="igrave" g2="L" k="16" />
+<hkern g1="igrave" g2="M" k="14" />
+<hkern g1="igrave" g2="N" k="16" />
+<hkern g1="igrave" g2="O" k="25" />
+<hkern g1="igrave" g2="P" k="16" />
+<hkern g1="igrave" g2="Q" k="25" />
+<hkern g1="igrave" g2="R" k="16" />
+<hkern g1="igrave" g2="S" k="10" />
+<hkern g1="igrave" g2="T" k="18" />
+<hkern g1="igrave" g2="U" k="37" />
+<hkern g1="igrave" g2="V" k="33" />
+<hkern g1="igrave" g2="W" k="35" />
+<hkern g1="igrave" g2="Y" k="29" />
+<hkern g1="igrave" g2="v" k="14" />
+<hkern g1="igrave" g2="w" k="14" />
+<hkern g1="igrave" g2="y" k="16" />
+<hkern g1="igrave" g2="uni00AD" k="18" />
+<hkern g1="igrave" g2="Ccedilla" k="25" />
+<hkern g1="igrave" g2="Egrave" k="16" />
+<hkern g1="igrave" g2="Eacute" k="16" />
+<hkern g1="igrave" g2="Ecircumflex" k="16" />
+<hkern g1="igrave" g2="Edieresis" k="16" />
+<hkern g1="igrave" g2="Igrave" k="16" />
+<hkern g1="igrave" g2="Iacute" k="16" />
+<hkern g1="igrave" g2="Icircumflex" k="16" />
+<hkern g1="igrave" g2="Idieresis" k="16" />
+<hkern g1="igrave" g2="Eth" k="16" />
+<hkern g1="igrave" g2="Ntilde" k="16" />
+<hkern g1="igrave" g2="Ograve" k="25" />
+<hkern g1="igrave" g2="Oacute" k="25" />
+<hkern g1="igrave" g2="Ocircumflex" k="25" />
+<hkern g1="igrave" g2="Otilde" k="25" />
+<hkern g1="igrave" g2="Odieresis" k="25" />
+<hkern g1="igrave" g2="Oslash" k="25" />
+<hkern g1="igrave" g2="Ugrave" k="37" />
+<hkern g1="igrave" g2="Uacute" k="37" />
+<hkern g1="igrave" g2="Ucircumflex" k="37" />
+<hkern g1="igrave" g2="Udieresis" k="37" />
+<hkern g1="igrave" g2="Yacute" k="29" />
+<hkern g1="igrave" g2="Thorn" k="16" />
+<hkern g1="igrave" g2="yacute" k="16" />
+<hkern g1="igrave" g2="ydieresis" k="16" />
+<hkern g1="igrave" g2="OE" k="25" />
+<hkern g1="igrave" g2="endash" k="18" />
+<hkern g1="igrave" g2="emdash" k="18" />
+<hkern g1="iacute" g2="asterisk" k="16" />
+<hkern g1="iacute" g2="hyphen" k="18" />
+<hkern g1="iacute" g2="slash" k="49" />
+<hkern g1="iacute" g2="B" k="16" />
+<hkern g1="iacute" g2="C" k="25" />
+<hkern g1="iacute" g2="D" k="16" />
+<hkern g1="iacute" g2="E" k="16" />
+<hkern g1="iacute" g2="F" k="16" />
+<hkern g1="iacute" g2="G" k="25" />
+<hkern g1="iacute" g2="H" k="16" />
+<hkern g1="iacute" g2="I" k="16" />
+<hkern g1="iacute" g2="K" k="16" />
+<hkern g1="iacute" g2="L" k="16" />
+<hkern g1="iacute" g2="M" k="14" />
+<hkern g1="iacute" g2="N" k="16" />
+<hkern g1="iacute" g2="O" k="25" />
+<hkern g1="iacute" g2="P" k="16" />
+<hkern g1="iacute" g2="Q" k="25" />
+<hkern g1="iacute" g2="R" k="16" />
+<hkern g1="iacute" g2="S" k="10" />
+<hkern g1="iacute" g2="T" k="18" />
+<hkern g1="iacute" g2="U" k="37" />
+<hkern g1="iacute" g2="V" k="33" />
+<hkern g1="iacute" g2="W" k="35" />
+<hkern g1="iacute" g2="Y" k="29" />
+<hkern g1="iacute" g2="bracketright" k="-31" />
+<hkern g1="iacute" g2="v" k="14" />
+<hkern g1="iacute" g2="w" k="14" />
+<hkern g1="iacute" g2="y" k="16" />
+<hkern g1="iacute" g2="braceright" k="-18" />
+<hkern g1="iacute" g2="uni00AD" k="18" />
+<hkern g1="iacute" g2="Ccedilla" k="25" />
+<hkern g1="iacute" g2="Egrave" k="16" />
+<hkern g1="iacute" g2="Eacute" k="16" />
+<hkern g1="iacute" g2="Ecircumflex" k="16" />
+<hkern g1="iacute" g2="Edieresis" k="16" />
+<hkern g1="iacute" g2="Igrave" k="16" />
+<hkern g1="iacute" g2="Iacute" k="16" />
+<hkern g1="iacute" g2="Icircumflex" k="16" />
+<hkern g1="iacute" g2="Idieresis" k="16" />
+<hkern g1="iacute" g2="Eth" k="16" />
+<hkern g1="iacute" g2="Ntilde" k="16" />
+<hkern g1="iacute" g2="Ograve" k="25" />
+<hkern g1="iacute" g2="Oacute" k="25" />
+<hkern g1="iacute" g2="Ocircumflex" k="25" />
+<hkern g1="iacute" g2="Otilde" k="25" />
+<hkern g1="iacute" g2="Odieresis" k="25" />
+<hkern g1="iacute" g2="Oslash" k="25" />
+<hkern g1="iacute" g2="Ugrave" k="37" />
+<hkern g1="iacute" g2="Uacute" k="37" />
+<hkern g1="iacute" g2="Ucircumflex" k="37" />
+<hkern g1="iacute" g2="Udieresis" k="37" />
+<hkern g1="iacute" g2="Yacute" k="29" />
+<hkern g1="iacute" g2="Thorn" k="16" />
+<hkern g1="iacute" g2="yacute" k="16" />
+<hkern g1="iacute" g2="ydieresis" k="16" />
+<hkern g1="iacute" g2="OE" k="25" />
+<hkern g1="iacute" g2="endash" k="18" />
+<hkern g1="iacute" g2="emdash" k="18" />
+<hkern g1="icircumflex" g2="asterisk" k="16" />
+<hkern g1="icircumflex" g2="hyphen" k="18" />
+<hkern g1="icircumflex" g2="slash" k="49" />
+<hkern g1="icircumflex" g2="B" k="16" />
+<hkern g1="icircumflex" g2="C" k="25" />
+<hkern g1="icircumflex" g2="D" k="16" />
+<hkern g1="icircumflex" g2="E" k="16" />
+<hkern g1="icircumflex" g2="F" k="16" />
+<hkern g1="icircumflex" g2="G" k="25" />
+<hkern g1="icircumflex" g2="H" k="16" />
+<hkern g1="icircumflex" g2="I" k="16" />
+<hkern g1="icircumflex" g2="K" k="16" />
+<hkern g1="icircumflex" g2="L" k="16" />
+<hkern g1="icircumflex" g2="M" k="14" />
+<hkern g1="icircumflex" g2="N" k="16" />
+<hkern g1="icircumflex" g2="O" k="25" />
+<hkern g1="icircumflex" g2="P" k="16" />
+<hkern g1="icircumflex" g2="Q" k="25" />
+<hkern g1="icircumflex" g2="R" k="16" />
+<hkern g1="icircumflex" g2="S" k="10" />
+<hkern g1="icircumflex" g2="T" k="18" />
+<hkern g1="icircumflex" g2="U" k="37" />
+<hkern g1="icircumflex" g2="V" k="33" />
+<hkern g1="icircumflex" g2="W" k="35" />
+<hkern g1="icircumflex" g2="Y" k="29" />
+<hkern g1="icircumflex" g2="v" k="14" />
+<hkern g1="icircumflex" g2="w" k="14" />
+<hkern g1="icircumflex" g2="y" k="16" />
+<hkern g1="icircumflex" g2="uni00AD" k="18" />
+<hkern g1="icircumflex" g2="Ccedilla" k="25" />
+<hkern g1="icircumflex" g2="Egrave" k="16" />
+<hkern g1="icircumflex" g2="Eacute" k="16" />
+<hkern g1="icircumflex" g2="Ecircumflex" k="16" />
+<hkern g1="icircumflex" g2="Edieresis" k="16" />
+<hkern g1="icircumflex" g2="Igrave" k="16" />
+<hkern g1="icircumflex" g2="Iacute" k="16" />
+<hkern g1="icircumflex" g2="Icircumflex" k="16" />
+<hkern g1="icircumflex" g2="Idieresis" k="16" />
+<hkern g1="icircumflex" g2="Eth" k="16" />
+<hkern g1="icircumflex" g2="Ntilde" k="16" />
+<hkern g1="icircumflex" g2="Ograve" k="25" />
+<hkern g1="icircumflex" g2="Oacute" k="25" />
+<hkern g1="icircumflex" g2="Ocircumflex" k="25" />
+<hkern g1="icircumflex" g2="Otilde" k="25" />
+<hkern g1="icircumflex" g2="Odieresis" k="25" />
+<hkern g1="icircumflex" g2="Oslash" k="25" />
+<hkern g1="icircumflex" g2="Ugrave" k="37" />
+<hkern g1="icircumflex" g2="Uacute" k="37" />
+<hkern g1="icircumflex" g2="Ucircumflex" k="37" />
+<hkern g1="icircumflex" g2="Udieresis" k="37" />
+<hkern g1="icircumflex" g2="Yacute" k="29" />
+<hkern g1="icircumflex" g2="Thorn" k="16" />
+<hkern g1="icircumflex" g2="yacute" k="16" />
+<hkern g1="icircumflex" g2="ydieresis" k="16" />
+<hkern g1="icircumflex" g2="OE" k="25" />
+<hkern g1="icircumflex" g2="endash" k="18" />
+<hkern g1="icircumflex" g2="emdash" k="18" />
+<hkern g1="idieresis" g2="asterisk" k="16" />
+<hkern g1="idieresis" g2="hyphen" k="18" />
+<hkern g1="idieresis" g2="slash" k="49" />
+<hkern g1="idieresis" g2="B" k="16" />
+<hkern g1="idieresis" g2="C" k="25" />
+<hkern g1="idieresis" g2="D" k="16" />
+<hkern g1="idieresis" g2="E" k="16" />
+<hkern g1="idieresis" g2="F" k="16" />
+<hkern g1="idieresis" g2="G" k="25" />
+<hkern g1="idieresis" g2="H" k="16" />
+<hkern g1="idieresis" g2="I" k="16" />
+<hkern g1="idieresis" g2="K" k="16" />
+<hkern g1="idieresis" g2="L" k="16" />
+<hkern g1="idieresis" g2="M" k="14" />
+<hkern g1="idieresis" g2="N" k="16" />
+<hkern g1="idieresis" g2="O" k="25" />
+<hkern g1="idieresis" g2="P" k="16" />
+<hkern g1="idieresis" g2="Q" k="25" />
+<hkern g1="idieresis" g2="R" k="16" />
+<hkern g1="idieresis" g2="S" k="10" />
+<hkern g1="idieresis" g2="T" k="18" />
+<hkern g1="idieresis" g2="U" k="37" />
+<hkern g1="idieresis" g2="V" k="33" />
+<hkern g1="idieresis" g2="W" k="35" />
+<hkern g1="idieresis" g2="Y" k="29" />
+<hkern g1="idieresis" g2="bracketright" k="-49" />
+<hkern g1="idieresis" g2="b" k="-31" />
+<hkern g1="idieresis" g2="v" k="14" />
+<hkern g1="idieresis" g2="w" k="14" />
+<hkern g1="idieresis" g2="y" k="16" />
+<hkern g1="idieresis" g2="braceright" k="-37" />
+<hkern g1="idieresis" g2="uni00AD" k="18" />
+<hkern g1="idieresis" g2="Ccedilla" k="25" />
+<hkern g1="idieresis" g2="Egrave" k="16" />
+<hkern g1="idieresis" g2="Eacute" k="16" />
+<hkern g1="idieresis" g2="Ecircumflex" k="16" />
+<hkern g1="idieresis" g2="Edieresis" k="16" />
+<hkern g1="idieresis" g2="Igrave" k="16" />
+<hkern g1="idieresis" g2="Iacute" k="16" />
+<hkern g1="idieresis" g2="Icircumflex" k="16" />
+<hkern g1="idieresis" g2="Idieresis" k="16" />
+<hkern g1="idieresis" g2="Eth" k="16" />
+<hkern g1="idieresis" g2="Ntilde" k="16" />
+<hkern g1="idieresis" g2="Ograve" k="25" />
+<hkern g1="idieresis" g2="Oacute" k="25" />
+<hkern g1="idieresis" g2="Ocircumflex" k="25" />
+<hkern g1="idieresis" g2="Otilde" k="25" />
+<hkern g1="idieresis" g2="Odieresis" k="25" />
+<hkern g1="idieresis" g2="Oslash" k="25" />
+<hkern g1="idieresis" g2="Ugrave" k="37" />
+<hkern g1="idieresis" g2="Uacute" k="37" />
+<hkern g1="idieresis" g2="Ucircumflex" k="37" />
+<hkern g1="idieresis" g2="Udieresis" k="37" />
+<hkern g1="idieresis" g2="Yacute" k="29" />
+<hkern g1="idieresis" g2="Thorn" k="16" />
+<hkern g1="idieresis" g2="yacute" k="16" />
+<hkern g1="idieresis" g2="thorn" k="-31" />
+<hkern g1="idieresis" g2="ydieresis" k="16" />
+<hkern g1="idieresis" g2="OE" k="25" />
+<hkern g1="idieresis" g2="endash" k="18" />
+<hkern g1="idieresis" g2="emdash" k="18" />
+<hkern g1="idieresis" g2="quoteright" k="-10" />
+<hkern g1="idieresis" g2="quotedblright" k="-10" />
+<hkern g1="eth" g2="quotedbl" k="33" />
+<hkern g1="eth" g2="quotesingle" k="33" />
+<hkern g1="eth" g2="parenright" k="59" />
+<hkern g1="eth" g2="comma" k="16" />
+<hkern g1="eth" g2="period" k="16" />
+<hkern g1="eth" g2="slash" k="125" />
+<hkern g1="eth" g2="question" k="20" />
+<hkern g1="eth" g2="backslash" k="57" />
+<hkern g1="eth" g2="bracketright" k="106" />
+<hkern g1="eth" g2="h" k="14" />
+<hkern g1="eth" g2="k" k="14" />
+<hkern g1="eth" g2="l" k="14" />
+<hkern g1="eth" g2="x" k="12" />
+<hkern g1="eth" g2="braceright" k="63" />
+<hkern g1="eth" g2="quoteleft" k="25" />
+<hkern g1="eth" g2="quoteright" k="31" />
+<hkern g1="eth" g2="quotesinglbase" k="16" />
+<hkern g1="eth" g2="quotedblleft" k="25" />
+<hkern g1="eth" g2="quotedblright" k="31" />
+<hkern g1="eth" g2="quotedblbase" k="16" />
+<hkern g1="ntilde" g2="quotedbl" k="49" />
+<hkern g1="ntilde" g2="quotesingle" k="49" />
+<hkern g1="ntilde" g2="parenright" k="49" />
+<hkern g1="ntilde" g2="asterisk" k="37" />
+<hkern g1="ntilde" g2="hyphen" k="18" />
+<hkern g1="ntilde" g2="slash" k="47" />
+<hkern g1="ntilde" g2="question" k="43" />
+<hkern g1="ntilde" g2="B" k="12" />
+<hkern g1="ntilde" g2="C" k="27" />
+<hkern g1="ntilde" g2="D" k="12" />
+<hkern g1="ntilde" g2="E" k="12" />
+<hkern g1="ntilde" g2="F" k="12" />
+<hkern g1="ntilde" g2="G" k="27" />
+<hkern g1="ntilde" g2="H" k="12" />
+<hkern g1="ntilde" g2="I" k="12" />
+<hkern g1="ntilde" g2="K" k="12" />
+<hkern g1="ntilde" g2="L" k="12" />
+<hkern g1="ntilde" g2="M" k="12" />
+<hkern g1="ntilde" g2="N" k="12" />
+<hkern g1="ntilde" g2="O" k="27" />
+<hkern g1="ntilde" g2="P" k="12" />
+<hkern g1="ntilde" g2="Q" k="27" />
+<hkern g1="ntilde" g2="R" k="12" />
+<hkern g1="ntilde" g2="S" k="10" />
+<hkern g1="ntilde" g2="T" k="88" />
+<hkern g1="ntilde" g2="U" k="68" />
+<hkern g1="ntilde" g2="V" k="141" />
+<hkern g1="ntilde" g2="W" k="127" />
+<hkern g1="ntilde" g2="Y" k="162" />
+<hkern g1="ntilde" g2="backslash" k="123" />
+<hkern g1="ntilde" g2="bracketright" k="121" />
+<hkern g1="ntilde" g2="j" k="10" />
+<hkern g1="ntilde" g2="t" k="12" />
+<hkern g1="ntilde" g2="u" k="10" />
+<hkern g1="ntilde" g2="v" k="31" />
+<hkern g1="ntilde" g2="w" k="29" />
+<hkern g1="ntilde" g2="y" k="33" />
+<hkern g1="ntilde" g2="braceright" k="57" />
+<hkern g1="ntilde" g2="uni00AD" k="18" />
+<hkern g1="ntilde" g2="Ccedilla" k="27" />
+<hkern g1="ntilde" g2="Egrave" k="12" />
+<hkern g1="ntilde" g2="Eacute" k="12" />
+<hkern g1="ntilde" g2="Ecircumflex" k="12" />
+<hkern g1="ntilde" g2="Edieresis" k="12" />
+<hkern g1="ntilde" g2="Igrave" k="12" />
+<hkern g1="ntilde" g2="Iacute" k="12" />
+<hkern g1="ntilde" g2="Icircumflex" k="12" />
+<hkern g1="ntilde" g2="Idieresis" k="12" />
+<hkern g1="ntilde" g2="Eth" k="12" />
+<hkern g1="ntilde" g2="Ntilde" k="12" />
+<hkern g1="ntilde" g2="Ograve" k="27" />
+<hkern g1="ntilde" g2="Oacute" k="27" />
+<hkern g1="ntilde" g2="Ocircumflex" k="27" />
+<hkern g1="ntilde" g2="Otilde" k="27" />
+<hkern g1="ntilde" g2="Odieresis" k="27" />
+<hkern g1="ntilde" g2="Oslash" k="27" />
+<hkern g1="ntilde" g2="Ugrave" k="68" />
+<hkern g1="ntilde" g2="Uacute" k="68" />
+<hkern g1="ntilde" g2="Ucircumflex" k="68" />
+<hkern g1="ntilde" g2="Udieresis" k="68" />
+<hkern g1="ntilde" g2="Yacute" k="162" />
+<hkern g1="ntilde" g2="Thorn" k="12" />
+<hkern g1="ntilde" g2="ugrave" k="10" />
+<hkern g1="ntilde" g2="uacute" k="10" />
+<hkern g1="ntilde" g2="ucircumflex" k="10" />
+<hkern g1="ntilde" g2="udieresis" k="10" />
+<hkern g1="ntilde" g2="yacute" k="33" />
+<hkern g1="ntilde" g2="ydieresis" k="33" />
+<hkern g1="ntilde" g2="OE" k="27" />
+<hkern g1="ntilde" g2="endash" k="18" />
+<hkern g1="ntilde" g2="emdash" k="18" />
+<hkern g1="ntilde" g2="quoteleft" k="43" />
+<hkern g1="ntilde" g2="quoteright" k="49" />
+<hkern g1="ntilde" g2="quotedblleft" k="43" />
+<hkern g1="ntilde" g2="quotedblright" k="49" />
+<hkern g1="ograve" g2="quotedbl" k="51" />
+<hkern g1="ograve" g2="quotesingle" k="51" />
+<hkern g1="ograve" g2="parenright" k="68" />
+<hkern g1="ograve" g2="asterisk" k="16" />
+<hkern g1="ograve" g2="slash" k="117" />
+<hkern g1="ograve" g2="question" k="41" />
+<hkern g1="ograve" g2="A" k="31" />
+<hkern g1="ograve" g2="B" k="51" />
+<hkern g1="ograve" g2="D" k="51" />
+<hkern g1="ograve" g2="E" k="51" />
+<hkern g1="ograve" g2="F" k="51" />
+<hkern g1="ograve" g2="H" k="51" />
+<hkern g1="ograve" g2="I" k="51" />
+<hkern g1="ograve" g2="K" k="51" />
+<hkern g1="ograve" g2="L" k="51" />
+<hkern g1="ograve" g2="M" k="51" />
+<hkern g1="ograve" g2="N" k="51" />
+<hkern g1="ograve" g2="P" k="51" />
+<hkern g1="ograve" g2="R" k="51" />
+<hkern g1="ograve" g2="S" k="16" />
+<hkern g1="ograve" g2="T" k="94" />
+<hkern g1="ograve" g2="U" k="59" />
+<hkern g1="ograve" g2="V" k="162" />
+<hkern g1="ograve" g2="W" k="137" />
+<hkern g1="ograve" g2="X" k="92" />
+<hkern g1="ograve" g2="Y" k="168" />
+<hkern g1="ograve" g2="Z" k="37" />
+<hkern g1="ograve" g2="backslash" k="106" />
+<hkern g1="ograve" g2="bracketright" k="127" />
+<hkern g1="ograve" g2="v" k="12" />
+<hkern g1="ograve" g2="w" k="14" />
+<hkern g1="ograve" g2="x" k="16" />
+<hkern g1="ograve" g2="y" k="12" />
+<hkern g1="ograve" g2="braceright" k="74" />
+<hkern g1="ograve" g2="Agrave" k="31" />
+<hkern g1="ograve" g2="Aacute" k="31" />
+<hkern g1="ograve" g2="Acircumflex" k="31" />
+<hkern g1="ograve" g2="Atilde" k="31" />
+<hkern g1="ograve" g2="Adieresis" k="31" />
+<hkern g1="ograve" g2="Aring" k="31" />
+<hkern g1="ograve" g2="Egrave" k="51" />
+<hkern g1="ograve" g2="Eacute" k="51" />
+<hkern g1="ograve" g2="Ecircumflex" k="51" />
+<hkern g1="ograve" g2="Edieresis" k="51" />
+<hkern g1="ograve" g2="Igrave" k="51" />
+<hkern g1="ograve" g2="Iacute" k="51" />
+<hkern g1="ograve" g2="Icircumflex" k="51" />
+<hkern g1="ograve" g2="Idieresis" k="51" />
+<hkern g1="ograve" g2="Eth" k="51" />
+<hkern g1="ograve" g2="Ntilde" k="51" />
+<hkern g1="ograve" g2="Ugrave" k="59" />
+<hkern g1="ograve" g2="Uacute" k="59" />
+<hkern g1="ograve" g2="Ucircumflex" k="59" />
+<hkern g1="ograve" g2="Udieresis" k="59" />
+<hkern g1="ograve" g2="Yacute" k="168" />
+<hkern g1="ograve" g2="Thorn" k="51" />
+<hkern g1="ograve" g2="yacute" k="12" />
+<hkern g1="ograve" g2="ydieresis" k="12" />
+<hkern g1="ograve" g2="quoteleft" k="37" />
+<hkern g1="ograve" g2="quoteright" k="43" />
+<hkern g1="ograve" g2="quotedblleft" k="37" />
+<hkern g1="ograve" g2="quotedblright" k="43" />
+<hkern g1="oacute" g2="quotedbl" k="51" />
+<hkern g1="oacute" g2="quotesingle" k="51" />
+<hkern g1="oacute" g2="parenright" k="68" />
+<hkern g1="oacute" g2="asterisk" k="16" />
+<hkern g1="oacute" g2="slash" k="117" />
+<hkern g1="oacute" g2="question" k="41" />
+<hkern g1="oacute" g2="A" k="31" />
+<hkern g1="oacute" g2="B" k="51" />
+<hkern g1="oacute" g2="D" k="51" />
+<hkern g1="oacute" g2="E" k="51" />
+<hkern g1="oacute" g2="F" k="51" />
+<hkern g1="oacute" g2="H" k="51" />
+<hkern g1="oacute" g2="I" k="51" />
+<hkern g1="oacute" g2="K" k="51" />
+<hkern g1="oacute" g2="L" k="51" />
+<hkern g1="oacute" g2="M" k="51" />
+<hkern g1="oacute" g2="N" k="51" />
+<hkern g1="oacute" g2="P" k="51" />
+<hkern g1="oacute" g2="R" k="51" />
+<hkern g1="oacute" g2="S" k="16" />
+<hkern g1="oacute" g2="T" k="94" />
+<hkern g1="oacute" g2="U" k="59" />
+<hkern g1="oacute" g2="V" k="162" />
+<hkern g1="oacute" g2="W" k="137" />
+<hkern g1="oacute" g2="X" k="92" />
+<hkern g1="oacute" g2="Y" k="168" />
+<hkern g1="oacute" g2="Z" k="37" />
+<hkern g1="oacute" g2="backslash" k="106" />
+<hkern g1="oacute" g2="bracketright" k="127" />
+<hkern g1="oacute" g2="v" k="12" />
+<hkern g1="oacute" g2="w" k="14" />
+<hkern g1="oacute" g2="x" k="16" />
+<hkern g1="oacute" g2="y" k="12" />
+<hkern g1="oacute" g2="braceright" k="74" />
+<hkern g1="oacute" g2="Agrave" k="31" />
+<hkern g1="oacute" g2="Aacute" k="31" />
+<hkern g1="oacute" g2="Acircumflex" k="31" />
+<hkern g1="oacute" g2="Atilde" k="31" />
+<hkern g1="oacute" g2="Adieresis" k="31" />
+<hkern g1="oacute" g2="Aring" k="31" />
+<hkern g1="oacute" g2="Egrave" k="51" />
+<hkern g1="oacute" g2="Eacute" k="51" />
+<hkern g1="oacute" g2="Ecircumflex" k="51" />
+<hkern g1="oacute" g2="Edieresis" k="51" />
+<hkern g1="oacute" g2="Igrave" k="51" />
+<hkern g1="oacute" g2="Iacute" k="51" />
+<hkern g1="oacute" g2="Icircumflex" k="51" />
+<hkern g1="oacute" g2="Idieresis" k="51" />
+<hkern g1="oacute" g2="Eth" k="51" />
+<hkern g1="oacute" g2="Ntilde" k="51" />
+<hkern g1="oacute" g2="Ugrave" k="59" />
+<hkern g1="oacute" g2="Uacute" k="59" />
+<hkern g1="oacute" g2="Ucircumflex" k="59" />
+<hkern g1="oacute" g2="Udieresis" k="59" />
+<hkern g1="oacute" g2="Yacute" k="168" />
+<hkern g1="oacute" g2="Thorn" k="51" />
+<hkern g1="oacute" g2="yacute" k="12" />
+<hkern g1="oacute" g2="ydieresis" k="12" />
+<hkern g1="oacute" g2="quoteleft" k="37" />
+<hkern g1="oacute" g2="quoteright" k="43" />
+<hkern g1="oacute" g2="quotedblleft" k="37" />
+<hkern g1="oacute" g2="quotedblright" k="43" />
+<hkern g1="ocircumflex" g2="quotedbl" k="51" />
+<hkern g1="ocircumflex" g2="quotesingle" k="51" />
+<hkern g1="ocircumflex" g2="parenright" k="68" />
+<hkern g1="ocircumflex" g2="asterisk" k="16" />
+<hkern g1="ocircumflex" g2="slash" k="117" />
+<hkern g1="ocircumflex" g2="question" k="41" />
+<hkern g1="ocircumflex" g2="A" k="31" />
+<hkern g1="ocircumflex" g2="B" k="51" />
+<hkern g1="ocircumflex" g2="D" k="51" />
+<hkern g1="ocircumflex" g2="E" k="51" />
+<hkern g1="ocircumflex" g2="F" k="51" />
+<hkern g1="ocircumflex" g2="H" k="51" />
+<hkern g1="ocircumflex" g2="I" k="51" />
+<hkern g1="ocircumflex" g2="K" k="51" />
+<hkern g1="ocircumflex" g2="L" k="51" />
+<hkern g1="ocircumflex" g2="M" k="51" />
+<hkern g1="ocircumflex" g2="N" k="51" />
+<hkern g1="ocircumflex" g2="P" k="51" />
+<hkern g1="ocircumflex" g2="R" k="51" />
+<hkern g1="ocircumflex" g2="S" k="16" />
+<hkern g1="ocircumflex" g2="T" k="94" />
+<hkern g1="ocircumflex" g2="U" k="59" />
+<hkern g1="ocircumflex" g2="V" k="162" />
+<hkern g1="ocircumflex" g2="W" k="137" />
+<hkern g1="ocircumflex" g2="X" k="92" />
+<hkern g1="ocircumflex" g2="Y" k="168" />
+<hkern g1="ocircumflex" g2="Z" k="37" />
+<hkern g1="ocircumflex" g2="backslash" k="106" />
+<hkern g1="ocircumflex" g2="bracketright" k="127" />
+<hkern g1="ocircumflex" g2="v" k="12" />
+<hkern g1="ocircumflex" g2="w" k="14" />
+<hkern g1="ocircumflex" g2="x" k="16" />
+<hkern g1="ocircumflex" g2="y" k="12" />
+<hkern g1="ocircumflex" g2="braceright" k="74" />
+<hkern g1="ocircumflex" g2="Agrave" k="31" />
+<hkern g1="ocircumflex" g2="Aacute" k="31" />
+<hkern g1="ocircumflex" g2="Acircumflex" k="31" />
+<hkern g1="ocircumflex" g2="Atilde" k="31" />
+<hkern g1="ocircumflex" g2="Adieresis" k="31" />
+<hkern g1="ocircumflex" g2="Aring" k="31" />
+<hkern g1="ocircumflex" g2="Egrave" k="51" />
+<hkern g1="ocircumflex" g2="Eacute" k="51" />
+<hkern g1="ocircumflex" g2="Ecircumflex" k="51" />
+<hkern g1="ocircumflex" g2="Edieresis" k="51" />
+<hkern g1="ocircumflex" g2="Igrave" k="51" />
+<hkern g1="ocircumflex" g2="Iacute" k="51" />
+<hkern g1="ocircumflex" g2="Icircumflex" k="51" />
+<hkern g1="ocircumflex" g2="Idieresis" k="51" />
+<hkern g1="ocircumflex" g2="Eth" k="51" />
+<hkern g1="ocircumflex" g2="Ntilde" k="51" />
+<hkern g1="ocircumflex" g2="Ugrave" k="59" />
+<hkern g1="ocircumflex" g2="Uacute" k="59" />
+<hkern g1="ocircumflex" g2="Ucircumflex" k="59" />
+<hkern g1="ocircumflex" g2="Udieresis" k="59" />
+<hkern g1="ocircumflex" g2="Yacute" k="168" />
+<hkern g1="ocircumflex" g2="Thorn" k="51" />
+<hkern g1="ocircumflex" g2="yacute" k="12" />
+<hkern g1="ocircumflex" g2="ydieresis" k="12" />
+<hkern g1="ocircumflex" g2="quoteleft" k="37" />
+<hkern g1="ocircumflex" g2="quoteright" k="43" />
+<hkern g1="ocircumflex" g2="quotedblleft" k="37" />
+<hkern g1="ocircumflex" g2="quotedblright" k="43" />
+<hkern g1="otilde" g2="quotedbl" k="51" />
+<hkern g1="otilde" g2="quotesingle" k="51" />
+<hkern g1="otilde" g2="parenright" k="68" />
+<hkern g1="otilde" g2="asterisk" k="16" />
+<hkern g1="otilde" g2="slash" k="117" />
+<hkern g1="otilde" g2="question" k="41" />
+<hkern g1="otilde" g2="A" k="31" />
+<hkern g1="otilde" g2="B" k="51" />
+<hkern g1="otilde" g2="D" k="51" />
+<hkern g1="otilde" g2="E" k="51" />
+<hkern g1="otilde" g2="F" k="51" />
+<hkern g1="otilde" g2="H" k="51" />
+<hkern g1="otilde" g2="I" k="51" />
+<hkern g1="otilde" g2="K" k="51" />
+<hkern g1="otilde" g2="L" k="51" />
+<hkern g1="otilde" g2="M" k="51" />
+<hkern g1="otilde" g2="N" k="51" />
+<hkern g1="otilde" g2="P" k="51" />
+<hkern g1="otilde" g2="R" k="51" />
+<hkern g1="otilde" g2="S" k="16" />
+<hkern g1="otilde" g2="T" k="94" />
+<hkern g1="otilde" g2="U" k="59" />
+<hkern g1="otilde" g2="V" k="162" />
+<hkern g1="otilde" g2="W" k="137" />
+<hkern g1="otilde" g2="X" k="92" />
+<hkern g1="otilde" g2="Y" k="168" />
+<hkern g1="otilde" g2="Z" k="37" />
+<hkern g1="otilde" g2="backslash" k="106" />
+<hkern g1="otilde" g2="bracketright" k="127" />
+<hkern g1="otilde" g2="v" k="12" />
+<hkern g1="otilde" g2="w" k="14" />
+<hkern g1="otilde" g2="x" k="16" />
+<hkern g1="otilde" g2="y" k="12" />
+<hkern g1="otilde" g2="braceright" k="74" />
+<hkern g1="otilde" g2="Agrave" k="31" />
+<hkern g1="otilde" g2="Aacute" k="31" />
+<hkern g1="otilde" g2="Acircumflex" k="31" />
+<hkern g1="otilde" g2="Atilde" k="31" />
+<hkern g1="otilde" g2="Adieresis" k="31" />
+<hkern g1="otilde" g2="Aring" k="31" />
+<hkern g1="otilde" g2="Egrave" k="51" />
+<hkern g1="otilde" g2="Eacute" k="51" />
+<hkern g1="otilde" g2="Ecircumflex" k="51" />
+<hkern g1="otilde" g2="Edieresis" k="51" />
+<hkern g1="otilde" g2="Igrave" k="51" />
+<hkern g1="otilde" g2="Iacute" k="51" />
+<hkern g1="otilde" g2="Icircumflex" k="51" />
+<hkern g1="otilde" g2="Idieresis" k="51" />
+<hkern g1="otilde" g2="Eth" k="51" />
+<hkern g1="otilde" g2="Ntilde" k="51" />
+<hkern g1="otilde" g2="Ugrave" k="59" />
+<hkern g1="otilde" g2="Uacute" k="59" />
+<hkern g1="otilde" g2="Ucircumflex" k="59" />
+<hkern g1="otilde" g2="Udieresis" k="59" />
+<hkern g1="otilde" g2="Yacute" k="168" />
+<hkern g1="otilde" g2="Thorn" k="51" />
+<hkern g1="otilde" g2="yacute" k="12" />
+<hkern g1="otilde" g2="ydieresis" k="12" />
+<hkern g1="otilde" g2="quoteleft" k="37" />
+<hkern g1="otilde" g2="quoteright" k="43" />
+<hkern g1="otilde" g2="quotedblleft" k="37" />
+<hkern g1="otilde" g2="quotedblright" k="43" />
+<hkern g1="odieresis" g2="quotedbl" k="51" />
+<hkern g1="odieresis" g2="quotesingle" k="51" />
+<hkern g1="odieresis" g2="parenright" k="68" />
+<hkern g1="odieresis" g2="asterisk" k="16" />
+<hkern g1="odieresis" g2="slash" k="117" />
+<hkern g1="odieresis" g2="question" k="41" />
+<hkern g1="odieresis" g2="A" k="31" />
+<hkern g1="odieresis" g2="B" k="51" />
+<hkern g1="odieresis" g2="D" k="51" />
+<hkern g1="odieresis" g2="E" k="51" />
+<hkern g1="odieresis" g2="F" k="51" />
+<hkern g1="odieresis" g2="H" k="51" />
+<hkern g1="odieresis" g2="I" k="51" />
+<hkern g1="odieresis" g2="K" k="51" />
+<hkern g1="odieresis" g2="L" k="51" />
+<hkern g1="odieresis" g2="M" k="51" />
+<hkern g1="odieresis" g2="N" k="51" />
+<hkern g1="odieresis" g2="P" k="51" />
+<hkern g1="odieresis" g2="R" k="51" />
+<hkern g1="odieresis" g2="S" k="16" />
+<hkern g1="odieresis" g2="T" k="94" />
+<hkern g1="odieresis" g2="U" k="59" />
+<hkern g1="odieresis" g2="V" k="162" />
+<hkern g1="odieresis" g2="W" k="137" />
+<hkern g1="odieresis" g2="X" k="92" />
+<hkern g1="odieresis" g2="Y" k="168" />
+<hkern g1="odieresis" g2="Z" k="37" />
+<hkern g1="odieresis" g2="backslash" k="106" />
+<hkern g1="odieresis" g2="bracketright" k="127" />
+<hkern g1="odieresis" g2="v" k="12" />
+<hkern g1="odieresis" g2="w" k="14" />
+<hkern g1="odieresis" g2="x" k="16" />
+<hkern g1="odieresis" g2="y" k="12" />
+<hkern g1="odieresis" g2="braceright" k="74" />
+<hkern g1="odieresis" g2="Agrave" k="31" />
+<hkern g1="odieresis" g2="Aacute" k="31" />
+<hkern g1="odieresis" g2="Acircumflex" k="31" />
+<hkern g1="odieresis" g2="Atilde" k="31" />
+<hkern g1="odieresis" g2="Adieresis" k="31" />
+<hkern g1="odieresis" g2="Aring" k="31" />
+<hkern g1="odieresis" g2="Egrave" k="51" />
+<hkern g1="odieresis" g2="Eacute" k="51" />
+<hkern g1="odieresis" g2="Ecircumflex" k="51" />
+<hkern g1="odieresis" g2="Edieresis" k="51" />
+<hkern g1="odieresis" g2="Igrave" k="51" />
+<hkern g1="odieresis" g2="Iacute" k="51" />
+<hkern g1="odieresis" g2="Icircumflex" k="51" />
+<hkern g1="odieresis" g2="Idieresis" k="51" />
+<hkern g1="odieresis" g2="Eth" k="51" />
+<hkern g1="odieresis" g2="Ntilde" k="51" />
+<hkern g1="odieresis" g2="Ugrave" k="59" />
+<hkern g1="odieresis" g2="Uacute" k="59" />
+<hkern g1="odieresis" g2="Ucircumflex" k="59" />
+<hkern g1="odieresis" g2="Udieresis" k="59" />
+<hkern g1="odieresis" g2="Yacute" k="168" />
+<hkern g1="odieresis" g2="Thorn" k="51" />
+<hkern g1="odieresis" g2="yacute" k="12" />
+<hkern g1="odieresis" g2="ydieresis" k="12" />
+<hkern g1="odieresis" g2="quoteleft" k="37" />
+<hkern g1="odieresis" g2="quoteright" k="43" />
+<hkern g1="odieresis" g2="quotedblleft" k="37" />
+<hkern g1="odieresis" g2="quotedblright" k="43" />
+<hkern g1="oslash" g2="quotedbl" k="51" />
+<hkern g1="oslash" g2="quotesingle" k="51" />
+<hkern g1="oslash" g2="parenright" k="68" />
+<hkern g1="oslash" g2="asterisk" k="16" />
+<hkern g1="oslash" g2="slash" k="117" />
+<hkern g1="oslash" g2="question" k="41" />
+<hkern g1="oslash" g2="A" k="31" />
+<hkern g1="oslash" g2="B" k="51" />
+<hkern g1="oslash" g2="D" k="51" />
+<hkern g1="oslash" g2="E" k="51" />
+<hkern g1="oslash" g2="F" k="51" />
+<hkern g1="oslash" g2="H" k="51" />
+<hkern g1="oslash" g2="I" k="51" />
+<hkern g1="oslash" g2="K" k="51" />
+<hkern g1="oslash" g2="L" k="51" />
+<hkern g1="oslash" g2="M" k="51" />
+<hkern g1="oslash" g2="N" k="51" />
+<hkern g1="oslash" g2="P" k="51" />
+<hkern g1="oslash" g2="R" k="51" />
+<hkern g1="oslash" g2="S" k="16" />
+<hkern g1="oslash" g2="T" k="94" />
+<hkern g1="oslash" g2="U" k="59" />
+<hkern g1="oslash" g2="V" k="162" />
+<hkern g1="oslash" g2="W" k="137" />
+<hkern g1="oslash" g2="X" k="92" />
+<hkern g1="oslash" g2="Y" k="168" />
+<hkern g1="oslash" g2="Z" k="37" />
+<hkern g1="oslash" g2="backslash" k="106" />
+<hkern g1="oslash" g2="bracketright" k="127" />
+<hkern g1="oslash" g2="v" k="12" />
+<hkern g1="oslash" g2="w" k="14" />
+<hkern g1="oslash" g2="x" k="16" />
+<hkern g1="oslash" g2="y" k="12" />
+<hkern g1="oslash" g2="braceright" k="74" />
+<hkern g1="oslash" g2="Agrave" k="31" />
+<hkern g1="oslash" g2="Aacute" k="31" />
+<hkern g1="oslash" g2="Acircumflex" k="31" />
+<hkern g1="oslash" g2="Atilde" k="31" />
+<hkern g1="oslash" g2="Adieresis" k="31" />
+<hkern g1="oslash" g2="Aring" k="31" />
+<hkern g1="oslash" g2="Egrave" k="51" />
+<hkern g1="oslash" g2="Eacute" k="51" />
+<hkern g1="oslash" g2="Ecircumflex" k="51" />
+<hkern g1="oslash" g2="Edieresis" k="51" />
+<hkern g1="oslash" g2="Igrave" k="51" />
+<hkern g1="oslash" g2="Iacute" k="51" />
+<hkern g1="oslash" g2="Icircumflex" k="51" />
+<hkern g1="oslash" g2="Idieresis" k="51" />
+<hkern g1="oslash" g2="Eth" k="51" />
+<hkern g1="oslash" g2="Ntilde" k="51" />
+<hkern g1="oslash" g2="Ugrave" k="59" />
+<hkern g1="oslash" g2="Uacute" k="59" />
+<hkern g1="oslash" g2="Ucircumflex" k="59" />
+<hkern g1="oslash" g2="Udieresis" k="59" />
+<hkern g1="oslash" g2="Yacute" k="168" />
+<hkern g1="oslash" g2="Thorn" k="51" />
+<hkern g1="oslash" g2="yacute" k="12" />
+<hkern g1="oslash" g2="ydieresis" k="12" />
+<hkern g1="oslash" g2="quoteleft" k="37" />
+<hkern g1="oslash" g2="quoteright" k="43" />
+<hkern g1="oslash" g2="quotedblleft" k="37" />
+<hkern g1="oslash" g2="quotedblright" k="43" />
+<hkern g1="ugrave" g2="parenright" k="47" />
+<hkern g1="ugrave" g2="asterisk" k="16" />
+<hkern g1="ugrave" g2="hyphen" k="18" />
+<hkern g1="ugrave" g2="slash" k="51" />
+<hkern g1="ugrave" g2="question" k="20" />
+<hkern g1="ugrave" g2="B" k="16" />
+<hkern g1="ugrave" g2="C" k="25" />
+<hkern g1="ugrave" g2="D" k="16" />
+<hkern g1="ugrave" g2="E" k="16" />
+<hkern g1="ugrave" g2="F" k="16" />
+<hkern g1="ugrave" g2="G" k="25" />
+<hkern g1="ugrave" g2="H" k="16" />
+<hkern g1="ugrave" g2="I" k="16" />
+<hkern g1="ugrave" g2="K" k="16" />
+<hkern g1="ugrave" g2="L" k="16" />
+<hkern g1="ugrave" g2="M" k="14" />
+<hkern g1="ugrave" g2="N" k="16" />
+<hkern g1="ugrave" g2="O" k="25" />
+<hkern g1="ugrave" g2="P" k="16" />
+<hkern g1="ugrave" g2="Q" k="25" />
+<hkern g1="ugrave" g2="R" k="16" />
+<hkern g1="ugrave" g2="S" k="10" />
+<hkern g1="ugrave" g2="T" k="45" />
+<hkern g1="ugrave" g2="U" k="61" />
+<hkern g1="ugrave" g2="V" k="119" />
+<hkern g1="ugrave" g2="W" k="102" />
+<hkern g1="ugrave" g2="Y" k="125" />
+<hkern g1="ugrave" g2="backslash" k="86" />
+<hkern g1="ugrave" g2="bracketright" k="121" />
+<hkern g1="ugrave" g2="v" k="14" />
+<hkern g1="ugrave" g2="w" k="14" />
+<hkern g1="ugrave" g2="y" k="16" />
+<hkern g1="ugrave" g2="braceright" k="55" />
+<hkern g1="ugrave" g2="uni00AD" k="18" />
+<hkern g1="ugrave" g2="Ccedilla" k="25" />
+<hkern g1="ugrave" g2="Egrave" k="16" />
+<hkern g1="ugrave" g2="Eacute" k="16" />
+<hkern g1="ugrave" g2="Ecircumflex" k="16" />
+<hkern g1="ugrave" g2="Edieresis" k="16" />
+<hkern g1="ugrave" g2="Igrave" k="16" />
+<hkern g1="ugrave" g2="Iacute" k="16" />
+<hkern g1="ugrave" g2="Icircumflex" k="16" />
+<hkern g1="ugrave" g2="Idieresis" k="16" />
+<hkern g1="ugrave" g2="Eth" k="16" />
+<hkern g1="ugrave" g2="Ntilde" k="16" />
+<hkern g1="ugrave" g2="Ograve" k="25" />
+<hkern g1="ugrave" g2="Oacute" k="25" />
+<hkern g1="ugrave" g2="Ocircumflex" k="25" />
+<hkern g1="ugrave" g2="Otilde" k="25" />
+<hkern g1="ugrave" g2="Odieresis" k="25" />
+<hkern g1="ugrave" g2="Oslash" k="25" />
+<hkern g1="ugrave" g2="Ugrave" k="61" />
+<hkern g1="ugrave" g2="Uacute" k="61" />
+<hkern g1="ugrave" g2="Ucircumflex" k="61" />
+<hkern g1="ugrave" g2="Udieresis" k="61" />
+<hkern g1="ugrave" g2="Yacute" k="125" />
+<hkern g1="ugrave" g2="Thorn" k="16" />
+<hkern g1="ugrave" g2="yacute" k="16" />
+<hkern g1="ugrave" g2="ydieresis" k="16" />
+<hkern g1="ugrave" g2="OE" k="25" />
+<hkern g1="ugrave" g2="endash" k="18" />
+<hkern g1="ugrave" g2="emdash" k="18" />
+<hkern g1="ugrave" g2="quoteright" k="27" />
+<hkern g1="ugrave" g2="quotedblright" k="27" />
+<hkern g1="uacute" g2="parenright" k="47" />
+<hkern g1="uacute" g2="asterisk" k="16" />
+<hkern g1="uacute" g2="hyphen" k="18" />
+<hkern g1="uacute" g2="slash" k="51" />
+<hkern g1="uacute" g2="question" k="20" />
+<hkern g1="uacute" g2="B" k="16" />
+<hkern g1="uacute" g2="C" k="25" />
+<hkern g1="uacute" g2="D" k="16" />
+<hkern g1="uacute" g2="E" k="16" />
+<hkern g1="uacute" g2="F" k="16" />
+<hkern g1="uacute" g2="G" k="25" />
+<hkern g1="uacute" g2="H" k="16" />
+<hkern g1="uacute" g2="I" k="16" />
+<hkern g1="uacute" g2="K" k="16" />
+<hkern g1="uacute" g2="L" k="16" />
+<hkern g1="uacute" g2="M" k="14" />
+<hkern g1="uacute" g2="N" k="16" />
+<hkern g1="uacute" g2="O" k="25" />
+<hkern g1="uacute" g2="P" k="16" />
+<hkern g1="uacute" g2="Q" k="25" />
+<hkern g1="uacute" g2="R" k="16" />
+<hkern g1="uacute" g2="S" k="10" />
+<hkern g1="uacute" g2="T" k="45" />
+<hkern g1="uacute" g2="U" k="61" />
+<hkern g1="uacute" g2="V" k="119" />
+<hkern g1="uacute" g2="W" k="102" />
+<hkern g1="uacute" g2="Y" k="125" />
+<hkern g1="uacute" g2="backslash" k="86" />
+<hkern g1="uacute" g2="bracketright" k="121" />
+<hkern g1="uacute" g2="v" k="14" />
+<hkern g1="uacute" g2="w" k="14" />
+<hkern g1="uacute" g2="y" k="16" />
+<hkern g1="uacute" g2="braceright" k="55" />
+<hkern g1="uacute" g2="uni00AD" k="18" />
+<hkern g1="uacute" g2="Ccedilla" k="25" />
+<hkern g1="uacute" g2="Egrave" k="16" />
+<hkern g1="uacute" g2="Eacute" k="16" />
+<hkern g1="uacute" g2="Ecircumflex" k="16" />
+<hkern g1="uacute" g2="Edieresis" k="16" />
+<hkern g1="uacute" g2="Igrave" k="16" />
+<hkern g1="uacute" g2="Iacute" k="16" />
+<hkern g1="uacute" g2="Icircumflex" k="16" />
+<hkern g1="uacute" g2="Idieresis" k="16" />
+<hkern g1="uacute" g2="Eth" k="16" />
+<hkern g1="uacute" g2="Ntilde" k="16" />
+<hkern g1="uacute" g2="Ograve" k="25" />
+<hkern g1="uacute" g2="Oacute" k="25" />
+<hkern g1="uacute" g2="Ocircumflex" k="25" />
+<hkern g1="uacute" g2="Otilde" k="25" />
+<hkern g1="uacute" g2="Odieresis" k="25" />
+<hkern g1="uacute" g2="Oslash" k="25" />
+<hkern g1="uacute" g2="Ugrave" k="61" />
+<hkern g1="uacute" g2="Uacute" k="61" />
+<hkern g1="uacute" g2="Ucircumflex" k="61" />
+<hkern g1="uacute" g2="Udieresis" k="61" />
+<hkern g1="uacute" g2="Yacute" k="125" />
+<hkern g1="uacute" g2="Thorn" k="16" />
+<hkern g1="uacute" g2="yacute" k="16" />
+<hkern g1="uacute" g2="ydieresis" k="16" />
+<hkern g1="uacute" g2="OE" k="25" />
+<hkern g1="uacute" g2="endash" k="18" />
+<hkern g1="uacute" g2="emdash" k="18" />
+<hkern g1="uacute" g2="quoteright" k="27" />
+<hkern g1="uacute" g2="quotedblright" k="27" />
+<hkern g1="ucircumflex" g2="parenright" k="47" />
+<hkern g1="ucircumflex" g2="asterisk" k="16" />
+<hkern g1="ucircumflex" g2="hyphen" k="18" />
+<hkern g1="ucircumflex" g2="slash" k="51" />
+<hkern g1="ucircumflex" g2="question" k="20" />
+<hkern g1="ucircumflex" g2="B" k="16" />
+<hkern g1="ucircumflex" g2="C" k="25" />
+<hkern g1="ucircumflex" g2="D" k="16" />
+<hkern g1="ucircumflex" g2="E" k="16" />
+<hkern g1="ucircumflex" g2="F" k="16" />
+<hkern g1="ucircumflex" g2="G" k="25" />
+<hkern g1="ucircumflex" g2="H" k="16" />
+<hkern g1="ucircumflex" g2="I" k="16" />
+<hkern g1="ucircumflex" g2="K" k="16" />
+<hkern g1="ucircumflex" g2="L" k="16" />
+<hkern g1="ucircumflex" g2="M" k="14" />
+<hkern g1="ucircumflex" g2="N" k="16" />
+<hkern g1="ucircumflex" g2="O" k="25" />
+<hkern g1="ucircumflex" g2="P" k="16" />
+<hkern g1="ucircumflex" g2="Q" k="25" />
+<hkern g1="ucircumflex" g2="R" k="16" />
+<hkern g1="ucircumflex" g2="S" k="10" />
+<hkern g1="ucircumflex" g2="T" k="45" />
+<hkern g1="ucircumflex" g2="U" k="61" />
+<hkern g1="ucircumflex" g2="V" k="119" />
+<hkern g1="ucircumflex" g2="W" k="102" />
+<hkern g1="ucircumflex" g2="Y" k="125" />
+<hkern g1="ucircumflex" g2="backslash" k="86" />
+<hkern g1="ucircumflex" g2="bracketright" k="121" />
+<hkern g1="ucircumflex" g2="v" k="14" />
+<hkern g1="ucircumflex" g2="w" k="14" />
+<hkern g1="ucircumflex" g2="y" k="16" />
+<hkern g1="ucircumflex" g2="braceright" k="55" />
+<hkern g1="ucircumflex" g2="uni00AD" k="18" />
+<hkern g1="ucircumflex" g2="Ccedilla" k="25" />
+<hkern g1="ucircumflex" g2="Egrave" k="16" />
+<hkern g1="ucircumflex" g2="Eacute" k="16" />
+<hkern g1="ucircumflex" g2="Ecircumflex" k="16" />
+<hkern g1="ucircumflex" g2="Edieresis" k="16" />
+<hkern g1="ucircumflex" g2="Igrave" k="16" />
+<hkern g1="ucircumflex" g2="Iacute" k="16" />
+<hkern g1="ucircumflex" g2="Icircumflex" k="16" />
+<hkern g1="ucircumflex" g2="Idieresis" k="16" />
+<hkern g1="ucircumflex" g2="Eth" k="16" />
+<hkern g1="ucircumflex" g2="Ntilde" k="16" />
+<hkern g1="ucircumflex" g2="Ograve" k="25" />
+<hkern g1="ucircumflex" g2="Oacute" k="25" />
+<hkern g1="ucircumflex" g2="Ocircumflex" k="25" />
+<hkern g1="ucircumflex" g2="Otilde" k="25" />
+<hkern g1="ucircumflex" g2="Odieresis" k="25" />
+<hkern g1="ucircumflex" g2="Oslash" k="25" />
+<hkern g1="ucircumflex" g2="Ugrave" k="61" />
+<hkern g1="ucircumflex" g2="Uacute" k="61" />
+<hkern g1="ucircumflex" g2="Ucircumflex" k="61" />
+<hkern g1="ucircumflex" g2="Udieresis" k="61" />
+<hkern g1="ucircumflex" g2="Yacute" k="125" />
+<hkern g1="ucircumflex" g2="Thorn" k="16" />
+<hkern g1="ucircumflex" g2="yacute" k="16" />
+<hkern g1="ucircumflex" g2="ydieresis" k="16" />
+<hkern g1="ucircumflex" g2="OE" k="25" />
+<hkern g1="ucircumflex" g2="endash" k="18" />
+<hkern g1="ucircumflex" g2="emdash" k="18" />
+<hkern g1="ucircumflex" g2="quoteright" k="27" />
+<hkern g1="ucircumflex" g2="quotedblright" k="27" />
+<hkern g1="udieresis" g2="parenright" k="47" />
+<hkern g1="udieresis" g2="asterisk" k="16" />
+<hkern g1="udieresis" g2="hyphen" k="18" />
+<hkern g1="udieresis" g2="slash" k="51" />
+<hkern g1="udieresis" g2="question" k="20" />
+<hkern g1="udieresis" g2="B" k="16" />
+<hkern g1="udieresis" g2="C" k="25" />
+<hkern g1="udieresis" g2="D" k="16" />
+<hkern g1="udieresis" g2="E" k="16" />
+<hkern g1="udieresis" g2="F" k="16" />
+<hkern g1="udieresis" g2="G" k="25" />
+<hkern g1="udieresis" g2="H" k="16" />
+<hkern g1="udieresis" g2="I" k="16" />
+<hkern g1="udieresis" g2="K" k="16" />
+<hkern g1="udieresis" g2="L" k="16" />
+<hkern g1="udieresis" g2="M" k="14" />
+<hkern g1="udieresis" g2="N" k="16" />
+<hkern g1="udieresis" g2="O" k="25" />
+<hkern g1="udieresis" g2="P" k="16" />
+<hkern g1="udieresis" g2="Q" k="25" />
+<hkern g1="udieresis" g2="R" k="16" />
+<hkern g1="udieresis" g2="S" k="10" />
+<hkern g1="udieresis" g2="T" k="45" />
+<hkern g1="udieresis" g2="U" k="61" />
+<hkern g1="udieresis" g2="V" k="119" />
+<hkern g1="udieresis" g2="W" k="102" />
+<hkern g1="udieresis" g2="Y" k="125" />
+<hkern g1="udieresis" g2="backslash" k="86" />
+<hkern g1="udieresis" g2="bracketright" k="121" />
+<hkern g1="udieresis" g2="v" k="14" />
+<hkern g1="udieresis" g2="w" k="14" />
+<hkern g1="udieresis" g2="y" k="16" />
+<hkern g1="udieresis" g2="braceright" k="55" />
+<hkern g1="udieresis" g2="uni00AD" k="18" />
+<hkern g1="udieresis" g2="Ccedilla" k="25" />
+<hkern g1="udieresis" g2="Egrave" k="16" />
+<hkern g1="udieresis" g2="Eacute" k="16" />
+<hkern g1="udieresis" g2="Ecircumflex" k="16" />
+<hkern g1="udieresis" g2="Edieresis" k="16" />
+<hkern g1="udieresis" g2="Igrave" k="16" />
+<hkern g1="udieresis" g2="Iacute" k="16" />
+<hkern g1="udieresis" g2="Icircumflex" k="16" />
+<hkern g1="udieresis" g2="Idieresis" k="16" />
+<hkern g1="udieresis" g2="Eth" k="16" />
+<hkern g1="udieresis" g2="Ntilde" k="16" />
+<hkern g1="udieresis" g2="Ograve" k="25" />
+<hkern g1="udieresis" g2="Oacute" k="25" />
+<hkern g1="udieresis" g2="Ocircumflex" k="25" />
+<hkern g1="udieresis" g2="Otilde" k="25" />
+<hkern g1="udieresis" g2="Odieresis" k="25" />
+<hkern g1="udieresis" g2="Oslash" k="25" />
+<hkern g1="udieresis" g2="Ugrave" k="61" />
+<hkern g1="udieresis" g2="Uacute" k="61" />
+<hkern g1="udieresis" g2="Ucircumflex" k="61" />
+<hkern g1="udieresis" g2="Udieresis" k="61" />
+<hkern g1="udieresis" g2="Yacute" k="125" />
+<hkern g1="udieresis" g2="Thorn" k="16" />
+<hkern g1="udieresis" g2="yacute" k="16" />
+<hkern g1="udieresis" g2="ydieresis" k="16" />
+<hkern g1="udieresis" g2="OE" k="25" />
+<hkern g1="udieresis" g2="endash" k="18" />
+<hkern g1="udieresis" g2="emdash" k="18" />
+<hkern g1="udieresis" g2="quoteright" k="27" />
+<hkern g1="udieresis" g2="quotedblright" k="27" />
+<hkern g1="yacute" g2="ampersand" k="20" />
+<hkern g1="yacute" g2="parenright" k="49" />
+<hkern g1="yacute" g2="asterisk" k="-23" />
+<hkern g1="yacute" g2="comma" k="80" />
+<hkern g1="yacute" g2="hyphen" k="20" />
+<hkern g1="yacute" g2="period" k="80" />
+<hkern g1="yacute" g2="slash" k="143" />
+<hkern g1="yacute" g2="A" k="100" />
+<hkern g1="yacute" g2="B" k="63" />
+<hkern g1="yacute" g2="D" k="63" />
+<hkern g1="yacute" g2="E" k="63" />
+<hkern g1="yacute" g2="F" k="63" />
+<hkern g1="yacute" g2="H" k="63" />
+<hkern g1="yacute" g2="I" k="63" />
+<hkern g1="yacute" g2="J" k="88" />
+<hkern g1="yacute" g2="K" k="63" />
+<hkern g1="yacute" g2="L" k="63" />
+<hkern g1="yacute" g2="M" k="66" />
+<hkern g1="yacute" g2="N" k="63" />
+<hkern g1="yacute" g2="P" k="63" />
+<hkern g1="yacute" g2="R" k="63" />
+<hkern g1="yacute" g2="U" k="37" />
+<hkern g1="yacute" g2="V" k="59" />
+<hkern g1="yacute" g2="W" k="61" />
+<hkern g1="yacute" g2="X" k="78" />
+<hkern g1="yacute" g2="Y" k="66" />
+<hkern g1="yacute" g2="backslash" k="35" />
+<hkern g1="yacute" g2="bracketright" k="119" />
+<hkern g1="yacute" g2="c" k="18" />
+<hkern g1="yacute" g2="d" k="18" />
+<hkern g1="yacute" g2="e" k="18" />
+<hkern g1="yacute" g2="g" k="18" />
+<hkern g1="yacute" g2="h" k="16" />
+<hkern g1="yacute" g2="k" k="16" />
+<hkern g1="yacute" g2="l" k="16" />
+<hkern g1="yacute" g2="o" k="18" />
+<hkern g1="yacute" g2="q" k="18" />
+<hkern g1="yacute" g2="braceright" k="55" />
+<hkern g1="yacute" g2="guillemotleft" k="20" />
+<hkern g1="yacute" g2="uni00AD" k="20" />
+<hkern g1="yacute" g2="Agrave" k="100" />
+<hkern g1="yacute" g2="Aacute" k="100" />
+<hkern g1="yacute" g2="Acircumflex" k="100" />
+<hkern g1="yacute" g2="Atilde" k="100" />
+<hkern g1="yacute" g2="Adieresis" k="100" />
+<hkern g1="yacute" g2="Aring" k="100" />
+<hkern g1="yacute" g2="Egrave" k="63" />
+<hkern g1="yacute" g2="Eacute" k="63" />
+<hkern g1="yacute" g2="Ecircumflex" k="63" />
+<hkern g1="yacute" g2="Edieresis" k="63" />
+<hkern g1="yacute" g2="Igrave" k="63" />
+<hkern g1="yacute" g2="Iacute" k="63" />
+<hkern g1="yacute" g2="Icircumflex" k="63" />
+<hkern g1="yacute" g2="Idieresis" k="63" />
+<hkern g1="yacute" g2="Eth" k="63" />
+<hkern g1="yacute" g2="Ntilde" k="63" />
+<hkern g1="yacute" g2="Ugrave" k="37" />
+<hkern g1="yacute" g2="Uacute" k="37" />
+<hkern g1="yacute" g2="Ucircumflex" k="37" />
+<hkern g1="yacute" g2="Udieresis" k="37" />
+<hkern g1="yacute" g2="Yacute" k="66" />
+<hkern g1="yacute" g2="Thorn" k="63" />
+<hkern g1="yacute" g2="ccedilla" k="18" />
+<hkern g1="yacute" g2="egrave" k="18" />
+<hkern g1="yacute" g2="eacute" k="18" />
+<hkern g1="yacute" g2="ecircumflex" k="18" />
+<hkern g1="yacute" g2="edieresis" k="18" />
+<hkern g1="yacute" g2="eth" k="23" />
+<hkern g1="yacute" g2="ograve" k="18" />
+<hkern g1="yacute" g2="oacute" k="18" />
+<hkern g1="yacute" g2="ocircumflex" k="18" />
+<hkern g1="yacute" g2="otilde" k="18" />
+<hkern g1="yacute" g2="odieresis" k="18" />
+<hkern g1="yacute" g2="oslash" k="18" />
+<hkern g1="yacute" g2="oe" k="18" />
+<hkern g1="yacute" g2="endash" k="20" />
+<hkern g1="yacute" g2="emdash" k="20" />
+<hkern g1="yacute" g2="quotesinglbase" k="80" />
+<hkern g1="yacute" g2="quotedblbase" k="80" />
+<hkern g1="yacute" g2="guilsinglleft" k="20" />
+<hkern g1="thorn" g2="quotedbl" k="61" />
+<hkern g1="thorn" g2="quotesingle" k="61" />
+<hkern g1="thorn" g2="parenright" k="66" />
+<hkern g1="thorn" g2="asterisk" k="23" />
+<hkern g1="thorn" g2="slash" k="115" />
+<hkern g1="thorn" g2="question" k="39" />
+<hkern g1="thorn" g2="backslash" k="98" />
+<hkern g1="thorn" g2="bracketright" k="123" />
+<hkern g1="thorn" g2="x" k="12" />
+<hkern g1="thorn" g2="braceright" k="72" />
+<hkern g1="thorn" g2="quoteleft" k="43" />
+<hkern g1="thorn" g2="quoteright" k="47" />
+<hkern g1="thorn" g2="quotedblleft" k="43" />
+<hkern g1="thorn" g2="quotedblright" k="47" />
+<hkern g1="ydieresis" g2="ampersand" k="20" />
+<hkern g1="ydieresis" g2="parenright" k="49" />
+<hkern g1="ydieresis" g2="asterisk" k="-23" />
+<hkern g1="ydieresis" g2="comma" k="80" />
+<hkern g1="ydieresis" g2="hyphen" k="20" />
+<hkern g1="ydieresis" g2="period" k="80" />
+<hkern g1="ydieresis" g2="slash" k="143" />
+<hkern g1="ydieresis" g2="A" k="100" />
+<hkern g1="ydieresis" g2="B" k="63" />
+<hkern g1="ydieresis" g2="D" k="63" />
+<hkern g1="ydieresis" g2="E" k="63" />
+<hkern g1="ydieresis" g2="F" k="63" />
+<hkern g1="ydieresis" g2="H" k="63" />
+<hkern g1="ydieresis" g2="I" k="63" />
+<hkern g1="ydieresis" g2="J" k="88" />
+<hkern g1="ydieresis" g2="K" k="63" />
+<hkern g1="ydieresis" g2="L" k="63" />
+<hkern g1="ydieresis" g2="M" k="66" />
+<hkern g1="ydieresis" g2="N" k="63" />
+<hkern g1="ydieresis" g2="P" k="63" />
+<hkern g1="ydieresis" g2="R" k="63" />
+<hkern g1="ydieresis" g2="U" k="37" />
+<hkern g1="ydieresis" g2="V" k="59" />
+<hkern g1="ydieresis" g2="W" k="61" />
+<hkern g1="ydieresis" g2="X" k="78" />
+<hkern g1="ydieresis" g2="Y" k="66" />
+<hkern g1="ydieresis" g2="backslash" k="35" />
+<hkern g1="ydieresis" g2="bracketright" k="119" />
+<hkern g1="ydieresis" g2="c" k="18" />
+<hkern g1="ydieresis" g2="d" k="18" />
+<hkern g1="ydieresis" g2="e" k="18" />
+<hkern g1="ydieresis" g2="g" k="18" />
+<hkern g1="ydieresis" g2="h" k="16" />
+<hkern g1="ydieresis" g2="k" k="16" />
+<hkern g1="ydieresis" g2="l" k="16" />
+<hkern g1="ydieresis" g2="o" k="18" />
+<hkern g1="ydieresis" g2="q" k="18" />
+<hkern g1="ydieresis" g2="braceright" k="55" />
+<hkern g1="ydieresis" g2="guillemotleft" k="20" />
+<hkern g1="ydieresis" g2="uni00AD" k="20" />
+<hkern g1="ydieresis" g2="Agrave" k="100" />
+<hkern g1="ydieresis" g2="Aacute" k="100" />
+<hkern g1="ydieresis" g2="Acircumflex" k="100" />
+<hkern g1="ydieresis" g2="Atilde" k="100" />
+<hkern g1="ydieresis" g2="Adieresis" k="100" />
+<hkern g1="ydieresis" g2="Aring" k="100" />
+<hkern g1="ydieresis" g2="Egrave" k="63" />
+<hkern g1="ydieresis" g2="Eacute" k="63" />
+<hkern g1="ydieresis" g2="Ecircumflex" k="63" />
+<hkern g1="ydieresis" g2="Edieresis" k="63" />
+<hkern g1="ydieresis" g2="Igrave" k="63" />
+<hkern g1="ydieresis" g2="Iacute" k="63" />
+<hkern g1="ydieresis" g2="Icircumflex" k="63" />
+<hkern g1="ydieresis" g2="Idieresis" k="63" />
+<hkern g1="ydieresis" g2="Eth" k="63" />
+<hkern g1="ydieresis" g2="Ntilde" k="63" />
+<hkern g1="ydieresis" g2="Ugrave" k="37" />
+<hkern g1="ydieresis" g2="Uacute" k="37" />
+<hkern g1="ydieresis" g2="Ucircumflex" k="37" />
+<hkern g1="ydieresis" g2="Udieresis" k="37" />
+<hkern g1="ydieresis" g2="Yacute" k="66" />
+<hkern g1="ydieresis" g2="Thorn" k="63" />
+<hkern g1="ydieresis" g2="ccedilla" k="18" />
+<hkern g1="ydieresis" g2="egrave" k="18" />
+<hkern g1="ydieresis" g2="eacute" k="18" />
+<hkern g1="ydieresis" g2="ecircumflex" k="18" />
+<hkern g1="ydieresis" g2="edieresis" k="18" />
+<hkern g1="ydieresis" g2="eth" k="23" />
+<hkern g1="ydieresis" g2="ograve" k="18" />
+<hkern g1="ydieresis" g2="oacute" k="18" />
+<hkern g1="ydieresis" g2="ocircumflex" k="18" />
+<hkern g1="ydieresis" g2="otilde" k="18" />
+<hkern g1="ydieresis" g2="odieresis" k="18" />
+<hkern g1="ydieresis" g2="oslash" k="18" />
+<hkern g1="ydieresis" g2="oe" k="18" />
+<hkern g1="ydieresis" g2="endash" k="20" />
+<hkern g1="ydieresis" g2="emdash" k="20" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="80" />
+<hkern g1="ydieresis" g2="quotedblbase" k="80" />
+<hkern g1="ydieresis" g2="guilsinglleft" k="20" />
+<hkern g1="dotlessi" g2="asterisk" k="16" />
+<hkern g1="dotlessi" g2="hyphen" k="18" />
+<hkern g1="dotlessi" g2="slash" k="49" />
+<hkern g1="dotlessi" g2="B" k="16" />
+<hkern g1="dotlessi" g2="C" k="25" />
+<hkern g1="dotlessi" g2="D" k="16" />
+<hkern g1="dotlessi" g2="E" k="16" />
+<hkern g1="dotlessi" g2="F" k="16" />
+<hkern g1="dotlessi" g2="G" k="25" />
+<hkern g1="dotlessi" g2="H" k="16" />
+<hkern g1="dotlessi" g2="I" k="16" />
+<hkern g1="dotlessi" g2="K" k="16" />
+<hkern g1="dotlessi" g2="L" k="16" />
+<hkern g1="dotlessi" g2="M" k="14" />
+<hkern g1="dotlessi" g2="N" k="16" />
+<hkern g1="dotlessi" g2="O" k="25" />
+<hkern g1="dotlessi" g2="P" k="16" />
+<hkern g1="dotlessi" g2="Q" k="25" />
+<hkern g1="dotlessi" g2="R" k="16" />
+<hkern g1="dotlessi" g2="S" k="10" />
+<hkern g1="dotlessi" g2="T" k="18" />
+<hkern g1="dotlessi" g2="U" k="37" />
+<hkern g1="dotlessi" g2="V" k="33" />
+<hkern g1="dotlessi" g2="W" k="35" />
+<hkern g1="dotlessi" g2="Y" k="29" />
+<hkern g1="dotlessi" g2="v" k="14" />
+<hkern g1="dotlessi" g2="w" k="14" />
+<hkern g1="dotlessi" g2="y" k="16" />
+<hkern g1="dotlessi" g2="uni00AD" k="18" />
+<hkern g1="dotlessi" g2="Ccedilla" k="25" />
+<hkern g1="dotlessi" g2="Egrave" k="16" />
+<hkern g1="dotlessi" g2="Eacute" k="16" />
+<hkern g1="dotlessi" g2="Ecircumflex" k="16" />
+<hkern g1="dotlessi" g2="Edieresis" k="16" />
+<hkern g1="dotlessi" g2="Igrave" k="16" />
+<hkern g1="dotlessi" g2="Iacute" k="16" />
+<hkern g1="dotlessi" g2="Icircumflex" k="16" />
+<hkern g1="dotlessi" g2="Idieresis" k="16" />
+<hkern g1="dotlessi" g2="Eth" k="16" />
+<hkern g1="dotlessi" g2="Ntilde" k="16" />
+<hkern g1="dotlessi" g2="Ograve" k="25" />
+<hkern g1="dotlessi" g2="Oacute" k="25" />
+<hkern g1="dotlessi" g2="Ocircumflex" k="25" />
+<hkern g1="dotlessi" g2="Otilde" k="25" />
+<hkern g1="dotlessi" g2="Odieresis" k="25" />
+<hkern g1="dotlessi" g2="Oslash" k="25" />
+<hkern g1="dotlessi" g2="Ugrave" k="37" />
+<hkern g1="dotlessi" g2="Uacute" k="37" />
+<hkern g1="dotlessi" g2="Ucircumflex" k="37" />
+<hkern g1="dotlessi" g2="Udieresis" k="37" />
+<hkern g1="dotlessi" g2="Yacute" k="29" />
+<hkern g1="dotlessi" g2="Thorn" k="16" />
+<hkern g1="dotlessi" g2="yacute" k="16" />
+<hkern g1="dotlessi" g2="ydieresis" k="16" />
+<hkern g1="dotlessi" g2="OE" k="25" />
+<hkern g1="dotlessi" g2="endash" k="18" />
+<hkern g1="dotlessi" g2="emdash" k="18" />
+<hkern g1="OE" g2="hyphen" k="29" />
+<hkern g1="OE" g2="slash" k="57" />
+<hkern g1="OE" g2="V" k="14" />
+<hkern g1="OE" g2="W" k="14" />
+<hkern g1="OE" g2="Y" k="14" />
+<hkern g1="OE" g2="c" k="10" />
+<hkern g1="OE" g2="e" k="10" />
+<hkern g1="OE" g2="f" k="10" />
+<hkern g1="OE" g2="g" k="16" />
+<hkern g1="OE" g2="i" k="10" />
+<hkern g1="OE" g2="j" k="23" />
+<hkern g1="OE" g2="m" k="10" />
+<hkern g1="OE" g2="n" k="10" />
+<hkern g1="OE" g2="o" k="10" />
+<hkern g1="OE" g2="p" k="23" />
+<hkern g1="OE" g2="r" k="10" />
+<hkern g1="OE" g2="s" k="10" />
+<hkern g1="OE" g2="t" k="14" />
+<hkern g1="OE" g2="u" k="18" />
+<hkern g1="OE" g2="v" k="31" />
+<hkern g1="OE" g2="w" k="25" />
+<hkern g1="OE" g2="y" k="33" />
+<hkern g1="OE" g2="z" k="10" />
+<hkern g1="OE" g2="uni00AD" k="29" />
+<hkern g1="OE" g2="Yacute" k="14" />
+<hkern g1="OE" g2="germandbls" k="10" />
+<hkern g1="OE" g2="ccedilla" k="10" />
+<hkern g1="OE" g2="egrave" k="10" />
+<hkern g1="OE" g2="eacute" k="10" />
+<hkern g1="OE" g2="ecircumflex" k="10" />
+<hkern g1="OE" g2="edieresis" k="10" />
+<hkern g1="OE" g2="igrave" k="10" />
+<hkern g1="OE" g2="iacute" k="10" />
+<hkern g1="OE" g2="icircumflex" k="10" />
+<hkern g1="OE" g2="idieresis" k="10" />
+<hkern g1="OE" g2="ntilde" k="10" />
+<hkern g1="OE" g2="ograve" k="10" />
+<hkern g1="OE" g2="oacute" k="10" />
+<hkern g1="OE" g2="ocircumflex" k="10" />
+<hkern g1="OE" g2="otilde" k="10" />
+<hkern g1="OE" g2="odieresis" k="10" />
+<hkern g1="OE" g2="oslash" k="10" />
+<hkern g1="OE" g2="ugrave" k="18" />
+<hkern g1="OE" g2="uacute" k="18" />
+<hkern g1="OE" g2="ucircumflex" k="18" />
+<hkern g1="OE" g2="udieresis" k="18" />
+<hkern g1="OE" g2="yacute" k="33" />
+<hkern g1="OE" g2="ydieresis" k="33" />
+<hkern g1="OE" g2="dotlessi" k="10" />
+<hkern g1="OE" g2="oe" k="10" />
+<hkern g1="OE" g2="endash" k="29" />
+<hkern g1="OE" g2="emdash" k="29" />
+<hkern g1="oe" g2="quotedbl" k="39" />
+<hkern g1="oe" g2="quotesingle" k="39" />
+<hkern g1="oe" g2="parenright" k="59" />
+<hkern g1="oe" g2="asterisk" k="16" />
+<hkern g1="oe" g2="slash" k="94" />
+<hkern g1="oe" g2="question" k="33" />
+<hkern g1="oe" g2="A" k="12" />
+<hkern g1="oe" g2="B" k="33" />
+<hkern g1="oe" g2="D" k="33" />
+<hkern g1="oe" g2="E" k="33" />
+<hkern g1="oe" g2="F" k="33" />
+<hkern g1="oe" g2="H" k="33" />
+<hkern g1="oe" g2="I" k="33" />
+<hkern g1="oe" g2="K" k="33" />
+<hkern g1="oe" g2="L" k="33" />
+<hkern g1="oe" g2="M" k="31" />
+<hkern g1="oe" g2="N" k="33" />
+<hkern g1="oe" g2="P" k="33" />
+<hkern g1="oe" g2="R" k="33" />
+<hkern g1="oe" g2="S" k="12" />
+<hkern g1="oe" g2="T" k="82" />
+<hkern g1="oe" g2="U" k="55" />
+<hkern g1="oe" g2="V" k="168" />
+<hkern g1="oe" g2="W" k="145" />
+<hkern g1="oe" g2="X" k="49" />
+<hkern g1="oe" g2="Y" k="190" />
+<hkern g1="oe" g2="Z" k="16" />
+<hkern g1="oe" g2="backslash" k="94" />
+<hkern g1="oe" g2="bracketright" k="125" />
+<hkern g1="oe" g2="braceright" k="63" />
+<hkern g1="oe" g2="Agrave" k="12" />
+<hkern g1="oe" g2="Aacute" k="12" />
+<hkern g1="oe" g2="Acircumflex" k="12" />
+<hkern g1="oe" g2="Atilde" k="12" />
+<hkern g1="oe" g2="Adieresis" k="12" />
+<hkern g1="oe" g2="Aring" k="12" />
+<hkern g1="oe" g2="Egrave" k="33" />
+<hkern g1="oe" g2="Eacute" k="33" />
+<hkern g1="oe" g2="Ecircumflex" k="33" />
+<hkern g1="oe" g2="Edieresis" k="33" />
+<hkern g1="oe" g2="Igrave" k="33" />
+<hkern g1="oe" g2="Iacute" k="33" />
+<hkern g1="oe" g2="Icircumflex" k="33" />
+<hkern g1="oe" g2="Idieresis" k="33" />
+<hkern g1="oe" g2="Eth" k="33" />
+<hkern g1="oe" g2="Ntilde" k="33" />
+<hkern g1="oe" g2="Ugrave" k="55" />
+<hkern g1="oe" g2="Uacute" k="55" />
+<hkern g1="oe" g2="Ucircumflex" k="55" />
+<hkern g1="oe" g2="Udieresis" k="55" />
+<hkern g1="oe" g2="Yacute" k="190" />
+<hkern g1="oe" g2="Thorn" k="33" />
+<hkern g1="oe" g2="quoteleft" k="29" />
+<hkern g1="oe" g2="quoteright" k="33" />
+<hkern g1="oe" g2="quotedblleft" k="29" />
+<hkern g1="oe" g2="quotedblright" k="33" />
+<hkern g1="endash" g2="one" k="57" />
+<hkern g1="endash" g2="two" k="59" />
+<hkern g1="endash" g2="three" k="41" />
+<hkern g1="endash" g2="seven" k="121" />
+<hkern g1="endash" g2="eight" k="23" />
+<hkern g1="endash" g2="A" k="80" />
+<hkern g1="endash" g2="B" k="47" />
+<hkern g1="endash" g2="D" k="47" />
+<hkern g1="endash" g2="E" k="47" />
+<hkern g1="endash" g2="F" k="47" />
+<hkern g1="endash" g2="H" k="47" />
+<hkern g1="endash" g2="I" k="47" />
+<hkern g1="endash" g2="J" k="119" />
+<hkern g1="endash" g2="K" k="47" />
+<hkern g1="endash" g2="L" k="47" />
+<hkern g1="endash" g2="M" k="47" />
+<hkern g1="endash" g2="N" k="47" />
+<hkern g1="endash" g2="P" k="47" />
+<hkern g1="endash" g2="R" k="47" />
+<hkern g1="endash" g2="S" k="20" />
+<hkern g1="endash" g2="T" k="129" />
+<hkern g1="endash" g2="U" k="33" />
+<hkern g1="endash" g2="V" k="106" />
+<hkern g1="endash" g2="W" k="94" />
+<hkern g1="endash" g2="X" k="125" />
+<hkern g1="endash" g2="Y" k="135" />
+<hkern g1="endash" g2="Z" k="74" />
+<hkern g1="endash" g2="f" k="18" />
+<hkern g1="endash" g2="h" k="16" />
+<hkern g1="endash" g2="k" k="16" />
+<hkern g1="endash" g2="l" k="16" />
+<hkern g1="endash" g2="x" k="25" />
+<hkern g1="endash" g2="y" k="16" />
+<hkern g1="endash" g2="Agrave" k="80" />
+<hkern g1="endash" g2="Aacute" k="80" />
+<hkern g1="endash" g2="Acircumflex" k="80" />
+<hkern g1="endash" g2="Atilde" k="80" />
+<hkern g1="endash" g2="Adieresis" k="80" />
+<hkern g1="endash" g2="Aring" k="80" />
+<hkern g1="endash" g2="AE" k="121" />
+<hkern g1="endash" g2="Egrave" k="47" />
+<hkern g1="endash" g2="Eacute" k="47" />
+<hkern g1="endash" g2="Ecircumflex" k="47" />
+<hkern g1="endash" g2="Edieresis" k="47" />
+<hkern g1="endash" g2="Igrave" k="47" />
+<hkern g1="endash" g2="Iacute" k="47" />
+<hkern g1="endash" g2="Icircumflex" k="47" />
+<hkern g1="endash" g2="Idieresis" k="47" />
+<hkern g1="endash" g2="Eth" k="47" />
+<hkern g1="endash" g2="Ntilde" k="47" />
+<hkern g1="endash" g2="Ugrave" k="33" />
+<hkern g1="endash" g2="Uacute" k="33" />
+<hkern g1="endash" g2="Ucircumflex" k="33" />
+<hkern g1="endash" g2="Udieresis" k="33" />
+<hkern g1="endash" g2="Yacute" k="135" />
+<hkern g1="endash" g2="Thorn" k="47" />
+<hkern g1="endash" g2="germandbls" k="18" />
+<hkern g1="endash" g2="yacute" k="16" />
+<hkern g1="endash" g2="ydieresis" k="16" />
+<hkern g1="emdash" g2="one" k="57" />
+<hkern g1="emdash" g2="two" k="59" />
+<hkern g1="emdash" g2="three" k="41" />
+<hkern g1="emdash" g2="seven" k="121" />
+<hkern g1="emdash" g2="eight" k="23" />
+<hkern g1="emdash" g2="A" k="80" />
+<hkern g1="emdash" g2="B" k="47" />
+<hkern g1="emdash" g2="D" k="47" />
+<hkern g1="emdash" g2="E" k="47" />
+<hkern g1="emdash" g2="F" k="47" />
+<hkern g1="emdash" g2="H" k="47" />
+<hkern g1="emdash" g2="I" k="47" />
+<hkern g1="emdash" g2="J" k="119" />
+<hkern g1="emdash" g2="K" k="47" />
+<hkern g1="emdash" g2="L" k="47" />
+<hkern g1="emdash" g2="M" k="47" />
+<hkern g1="emdash" g2="N" k="47" />
+<hkern g1="emdash" g2="P" k="47" />
+<hkern g1="emdash" g2="R" k="47" />
+<hkern g1="emdash" g2="S" k="20" />
+<hkern g1="emdash" g2="T" k="129" />
+<hkern g1="emdash" g2="U" k="33" />
+<hkern g1="emdash" g2="V" k="106" />
+<hkern g1="emdash" g2="W" k="94" />
+<hkern g1="emdash" g2="X" k="125" />
+<hkern g1="emdash" g2="Y" k="135" />
+<hkern g1="emdash" g2="Z" k="74" />
+<hkern g1="emdash" g2="f" k="18" />
+<hkern g1="emdash" g2="h" k="16" />
+<hkern g1="emdash" g2="k" k="16" />
+<hkern g1="emdash" g2="l" k="16" />
+<hkern g1="emdash" g2="x" k="25" />
+<hkern g1="emdash" g2="y" k="16" />
+<hkern g1="emdash" g2="Agrave" k="80" />
+<hkern g1="emdash" g2="Aacute" k="80" />
+<hkern g1="emdash" g2="Acircumflex" k="80" />
+<hkern g1="emdash" g2="Atilde" k="80" />
+<hkern g1="emdash" g2="Adieresis" k="80" />
+<hkern g1="emdash" g2="Aring" k="80" />
+<hkern g1="emdash" g2="AE" k="121" />
+<hkern g1="emdash" g2="Egrave" k="47" />
+<hkern g1="emdash" g2="Eacute" k="47" />
+<hkern g1="emdash" g2="Ecircumflex" k="47" />
+<hkern g1="emdash" g2="Edieresis" k="47" />
+<hkern g1="emdash" g2="Igrave" k="47" />
+<hkern g1="emdash" g2="Iacute" k="47" />
+<hkern g1="emdash" g2="Icircumflex" k="47" />
+<hkern g1="emdash" g2="Idieresis" k="47" />
+<hkern g1="emdash" g2="Eth" k="47" />
+<hkern g1="emdash" g2="Ntilde" k="47" />
+<hkern g1="emdash" g2="Ugrave" k="33" />
+<hkern g1="emdash" g2="Uacute" k="33" />
+<hkern g1="emdash" g2="Ucircumflex" k="33" />
+<hkern g1="emdash" g2="Udieresis" k="33" />
+<hkern g1="emdash" g2="Yacute" k="135" />
+<hkern g1="emdash" g2="Thorn" k="47" />
+<hkern g1="emdash" g2="germandbls" k="18" />
+<hkern g1="emdash" g2="yacute" k="16" />
+<hkern g1="emdash" g2="ydieresis" k="16" />
+<hkern g1="quoteleft" g2="comma" k="227" />
+<hkern g1="quoteleft" g2="period" k="227" />
+<hkern g1="quoteleft" g2="A" k="127" />
+<hkern g1="quoteleft" g2="J" k="86" />
+<hkern g1="quoteleft" g2="T" k="-49" />
+<hkern g1="quoteleft" g2="V" k="-49" />
+<hkern g1="quoteleft" g2="c" k="35" />
+<hkern g1="quoteleft" g2="d" k="47" />
+<hkern g1="quoteleft" g2="e" k="35" />
+<hkern g1="quoteleft" g2="g" k="35" />
+<hkern g1="quoteleft" g2="o" k="35" />
+<hkern g1="quoteleft" g2="q" k="47" />
+<hkern g1="quoteleft" g2="v" k="-45" />
+<hkern g1="quoteleft" g2="w" k="-76" />
+<hkern g1="quoteleft" g2="x" k="-49" />
+<hkern g1="quoteleft" g2="y" k="-33" />
+<hkern g1="quoteleft" g2="Agrave" k="127" />
+<hkern g1="quoteleft" g2="Aacute" k="127" />
+<hkern g1="quoteleft" g2="Acircumflex" k="127" />
+<hkern g1="quoteleft" g2="Atilde" k="127" />
+<hkern g1="quoteleft" g2="Adieresis" k="127" />
+<hkern g1="quoteleft" g2="Aring" k="127" />
+<hkern g1="quoteleft" g2="AE" k="199" />
+<hkern g1="quoteleft" g2="ccedilla" k="35" />
+<hkern g1="quoteleft" g2="egrave" k="35" />
+<hkern g1="quoteleft" g2="eacute" k="35" />
+<hkern g1="quoteleft" g2="ecircumflex" k="35" />
+<hkern g1="quoteleft" g2="edieresis" k="35" />
+<hkern g1="quoteleft" g2="eth" k="33" />
+<hkern g1="quoteleft" g2="ograve" k="35" />
+<hkern g1="quoteleft" g2="oacute" k="35" />
+<hkern g1="quoteleft" g2="ocircumflex" k="35" />
+<hkern g1="quoteleft" g2="otilde" k="35" />
+<hkern g1="quoteleft" g2="odieresis" k="35" />
+<hkern g1="quoteleft" g2="oslash" k="35" />
+<hkern g1="quoteleft" g2="yacute" k="-33" />
+<hkern g1="quoteleft" g2="ydieresis" k="-33" />
+<hkern g1="quoteleft" g2="oe" k="35" />
+<hkern g1="quoteleft" g2="quotesinglbase" k="227" />
+<hkern g1="quoteleft" g2="quotedblbase" k="227" />
+<hkern g1="quoteright" g2="ampersand" k="31" />
+<hkern g1="quoteright" g2="comma" k="215" />
+<hkern g1="quoteright" g2="period" k="215" />
+<hkern g1="quoteright" g2="slash" k="215" />
+<hkern g1="quoteright" g2="at" k="45" />
+<hkern g1="quoteright" g2="A" k="147" />
+<hkern g1="quoteright" g2="C" k="16" />
+<hkern g1="quoteright" g2="G" k="16" />
+<hkern g1="quoteright" g2="J" k="59" />
+<hkern g1="quoteright" g2="O" k="16" />
+<hkern g1="quoteright" g2="Q" k="16" />
+<hkern g1="quoteright" g2="V" k="-39" />
+<hkern g1="quoteright" g2="W" k="-27" />
+<hkern g1="quoteright" g2="X" k="-27" />
+<hkern g1="quoteright" g2="Y" k="-41" />
+<hkern g1="quoteright" g2="a" k="43" />
+<hkern g1="quoteright" g2="b" k="-43" />
+<hkern g1="quoteright" g2="c" k="61" />
+<hkern g1="quoteright" g2="d" k="76" />
+<hkern g1="quoteright" g2="e" k="61" />
+<hkern g1="quoteright" g2="g" k="63" />
+<hkern g1="quoteright" g2="o" k="61" />
+<hkern g1="quoteright" g2="q" k="76" />
+<hkern g1="quoteright" g2="s" k="37" />
+<hkern g1="quoteright" g2="guillemotleft" k="96" />
+<hkern g1="quoteright" g2="Agrave" k="147" />
+<hkern g1="quoteright" g2="Aacute" k="147" />
+<hkern g1="quoteright" g2="Acircumflex" k="147" />
+<hkern g1="quoteright" g2="Atilde" k="147" />
+<hkern g1="quoteright" g2="Adieresis" k="147" />
+<hkern g1="quoteright" g2="Aring" k="147" />
+<hkern g1="quoteright" g2="AE" k="211" />
+<hkern g1="quoteright" g2="Ccedilla" k="16" />
+<hkern g1="quoteright" g2="Ograve" k="16" />
+<hkern g1="quoteright" g2="Oacute" k="16" />
+<hkern g1="quoteright" g2="Ocircumflex" k="16" />
+<hkern g1="quoteright" g2="Otilde" k="16" />
+<hkern g1="quoteright" g2="Odieresis" k="16" />
+<hkern g1="quoteright" g2="Oslash" k="16" />
+<hkern g1="quoteright" g2="Yacute" k="-41" />
+<hkern g1="quoteright" g2="agrave" k="43" />
+<hkern g1="quoteright" g2="aacute" k="43" />
+<hkern g1="quoteright" g2="acircumflex" k="43" />
+<hkern g1="quoteright" g2="atilde" k="43" />
+<hkern g1="quoteright" g2="adieresis" k="43" />
+<hkern g1="quoteright" g2="aring" k="43" />
+<hkern g1="quoteright" g2="ae" k="43" />
+<hkern g1="quoteright" g2="ccedilla" k="61" />
+<hkern g1="quoteright" g2="egrave" k="61" />
+<hkern g1="quoteright" g2="eacute" k="61" />
+<hkern g1="quoteright" g2="ecircumflex" k="61" />
+<hkern g1="quoteright" g2="edieresis" k="61" />
+<hkern g1="quoteright" g2="eth" k="16" />
+<hkern g1="quoteright" g2="ograve" k="61" />
+<hkern g1="quoteright" g2="oacute" k="61" />
+<hkern g1="quoteright" g2="ocircumflex" k="61" />
+<hkern g1="quoteright" g2="otilde" k="61" />
+<hkern g1="quoteright" g2="odieresis" k="61" />
+<hkern g1="quoteright" g2="oslash" k="61" />
+<hkern g1="quoteright" g2="thorn" k="-43" />
+<hkern g1="quoteright" g2="OE" k="16" />
+<hkern g1="quoteright" g2="oe" k="61" />
+<hkern g1="quoteright" g2="quotesinglbase" k="215" />
+<hkern g1="quoteright" g2="quotedblbase" k="215" />
+<hkern g1="quoteright" g2="guilsinglleft" k="96" />
+<hkern g1="quotesinglbase" g2="quotedbl" k="256" />
+<hkern g1="quotesinglbase" g2="quotesingle" k="193" />
+<hkern g1="quotesinglbase" g2="zero" k="31" />
+<hkern g1="quotesinglbase" g2="seven" k="59" />
+<hkern g1="quotesinglbase" g2="C" k="43" />
+<hkern g1="quotesinglbase" g2="G" k="43" />
+<hkern g1="quotesinglbase" g2="O" k="43" />
+<hkern g1="quotesinglbase" g2="Q" k="43" />
+<hkern g1="quotesinglbase" g2="T" k="115" />
+<hkern g1="quotesinglbase" g2="U" k="66" />
+<hkern g1="quotesinglbase" g2="V" k="229" />
+<hkern g1="quotesinglbase" g2="W" k="160" />
+<hkern g1="quotesinglbase" g2="Y" k="143" />
+<hkern g1="quotesinglbase" g2="j" k="-23" />
+<hkern g1="quotesinglbase" g2="p" k="16" />
+<hkern g1="quotesinglbase" g2="t" k="27" />
+<hkern g1="quotesinglbase" g2="u" k="25" />
+<hkern g1="quotesinglbase" g2="v" k="86" />
+<hkern g1="quotesinglbase" g2="w" k="70" />
+<hkern g1="quotesinglbase" g2="y" k="96" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="43" />
+<hkern g1="quotesinglbase" g2="Ograve" k="43" />
+<hkern g1="quotesinglbase" g2="Oacute" k="43" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="43" />
+<hkern g1="quotesinglbase" g2="Otilde" k="43" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="43" />
+<hkern g1="quotesinglbase" g2="Oslash" k="43" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="66" />
+<hkern g1="quotesinglbase" g2="Uacute" k="66" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="66" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="66" />
+<hkern g1="quotesinglbase" g2="Yacute" k="143" />
+<hkern g1="quotesinglbase" g2="ugrave" k="25" />
+<hkern g1="quotesinglbase" g2="uacute" k="25" />
+<hkern g1="quotesinglbase" g2="ucircumflex" k="25" />
+<hkern g1="quotesinglbase" g2="udieresis" k="25" />
+<hkern g1="quotesinglbase" g2="yacute" k="96" />
+<hkern g1="quotesinglbase" g2="ydieresis" k="96" />
+<hkern g1="quotesinglbase" g2="OE" k="43" />
+<hkern g1="quotesinglbase" g2="quoteleft" k="227" />
+<hkern g1="quotesinglbase" g2="quoteright" k="215" />
+<hkern g1="quotesinglbase" g2="quotedblleft" k="240" />
+<hkern g1="quotesinglbase" g2="quotedblright" k="240" />
+<hkern g1="quotedblleft" g2="comma" k="246" />
+<hkern g1="quotedblleft" g2="period" k="240" />
+<hkern g1="quotedblleft" g2="A" k="127" />
+<hkern g1="quotedblleft" g2="J" k="86" />
+<hkern g1="quotedblleft" g2="T" k="-49" />
+<hkern g1="quotedblleft" g2="V" k="-49" />
+<hkern g1="quotedblleft" g2="c" k="35" />
+<hkern g1="quotedblleft" g2="d" k="47" />
+<hkern g1="quotedblleft" g2="e" k="35" />
+<hkern g1="quotedblleft" g2="g" k="35" />
+<hkern g1="quotedblleft" g2="o" k="35" />
+<hkern g1="quotedblleft" g2="q" k="47" />
+<hkern g1="quotedblleft" g2="v" k="-45" />
+<hkern g1="quotedblleft" g2="w" k="-76" />
+<hkern g1="quotedblleft" g2="x" k="-49" />
+<hkern g1="quotedblleft" g2="y" k="-33" />
+<hkern g1="quotedblleft" g2="Agrave" k="127" />
+<hkern g1="quotedblleft" g2="Aacute" k="127" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="127" />
+<hkern g1="quotedblleft" g2="Atilde" k="127" />
+<hkern g1="quotedblleft" g2="Adieresis" k="127" />
+<hkern g1="quotedblleft" g2="Aring" k="127" />
+<hkern g1="quotedblleft" g2="AE" k="199" />
+<hkern g1="quotedblleft" g2="ccedilla" k="35" />
+<hkern g1="quotedblleft" g2="egrave" k="35" />
+<hkern g1="quotedblleft" g2="eacute" k="35" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="35" />
+<hkern g1="quotedblleft" g2="edieresis" k="35" />
+<hkern g1="quotedblleft" g2="eth" k="33" />
+<hkern g1="quotedblleft" g2="ograve" k="35" />
+<hkern g1="quotedblleft" g2="oacute" k="35" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="35" />
+<hkern g1="quotedblleft" g2="otilde" k="35" />
+<hkern g1="quotedblleft" g2="odieresis" k="35" />
+<hkern g1="quotedblleft" g2="oslash" k="35" />
+<hkern g1="quotedblleft" g2="yacute" k="-33" />
+<hkern g1="quotedblleft" g2="ydieresis" k="-33" />
+<hkern g1="quotedblleft" g2="oe" k="35" />
+<hkern g1="quotedblleft" g2="quotesinglbase" k="240" />
+<hkern g1="quotedblleft" g2="quotedblbase" k="240" />
+<hkern g1="quotedblright" g2="ampersand" k="31" />
+<hkern g1="quotedblright" g2="comma" k="256" />
+<hkern g1="quotedblright" g2="period" k="240" />
+<hkern g1="quotedblright" g2="slash" k="215" />
+<hkern g1="quotedblright" g2="at" k="45" />
+<hkern g1="quotedblright" g2="A" k="147" />
+<hkern g1="quotedblright" g2="C" k="16" />
+<hkern g1="quotedblright" g2="G" k="16" />
+<hkern g1="quotedblright" g2="J" k="59" />
+<hkern g1="quotedblright" g2="O" k="16" />
+<hkern g1="quotedblright" g2="Q" k="16" />
+<hkern g1="quotedblright" g2="V" k="-39" />
+<hkern g1="quotedblright" g2="W" k="-27" />
+<hkern g1="quotedblright" g2="X" k="-27" />
+<hkern g1="quotedblright" g2="Y" k="-41" />
+<hkern g1="quotedblright" g2="a" k="43" />
+<hkern g1="quotedblright" g2="b" k="-43" />
+<hkern g1="quotedblright" g2="c" k="61" />
+<hkern g1="quotedblright" g2="d" k="76" />
+<hkern g1="quotedblright" g2="e" k="61" />
+<hkern g1="quotedblright" g2="g" k="63" />
+<hkern g1="quotedblright" g2="o" k="61" />
+<hkern g1="quotedblright" g2="q" k="76" />
+<hkern g1="quotedblright" g2="s" k="37" />
+<hkern g1="quotedblright" g2="guillemotleft" k="96" />
+<hkern g1="quotedblright" g2="Agrave" k="147" />
+<hkern g1="quotedblright" g2="Aacute" k="147" />
+<hkern g1="quotedblright" g2="Acircumflex" k="147" />
+<hkern g1="quotedblright" g2="Atilde" k="147" />
+<hkern g1="quotedblright" g2="Adieresis" k="147" />
+<hkern g1="quotedblright" g2="Aring" k="147" />
+<hkern g1="quotedblright" g2="AE" k="211" />
+<hkern g1="quotedblright" g2="Ccedilla" k="16" />
+<hkern g1="quotedblright" g2="Ograve" k="16" />
+<hkern g1="quotedblright" g2="Oacute" k="16" />
+<hkern g1="quotedblright" g2="Ocircumflex" k="16" />
+<hkern g1="quotedblright" g2="Otilde" k="16" />
+<hkern g1="quotedblright" g2="Odieresis" k="16" />
+<hkern g1="quotedblright" g2="Oslash" k="16" />
+<hkern g1="quotedblright" g2="Yacute" k="-41" />
+<hkern g1="quotedblright" g2="agrave" k="43" />
+<hkern g1="quotedblright" g2="aacute" k="43" />
+<hkern g1="quotedblright" g2="acircumflex" k="43" />
+<hkern g1="quotedblright" g2="atilde" k="43" />
+<hkern g1="quotedblright" g2="adieresis" k="43" />
+<hkern g1="quotedblright" g2="aring" k="43" />
+<hkern g1="quotedblright" g2="ae" k="43" />
+<hkern g1="quotedblright" g2="ccedilla" k="61" />
+<hkern g1="quotedblright" g2="egrave" k="61" />
+<hkern g1="quotedblright" g2="eacute" k="61" />
+<hkern g1="quotedblright" g2="ecircumflex" k="61" />
+<hkern g1="quotedblright" g2="edieresis" k="61" />
+<hkern g1="quotedblright" g2="eth" k="16" />
+<hkern g1="quotedblright" g2="ograve" k="61" />
+<hkern g1="quotedblright" g2="oacute" k="61" />
+<hkern g1="quotedblright" g2="ocircumflex" k="61" />
+<hkern g1="quotedblright" g2="otilde" k="61" />
+<hkern g1="quotedblright" g2="odieresis" k="61" />
+<hkern g1="quotedblright" g2="oslash" k="61" />
+<hkern g1="quotedblright" g2="thorn" k="-43" />
+<hkern g1="quotedblright" g2="OE" k="16" />
+<hkern g1="quotedblright" g2="oe" k="61" />
+<hkern g1="quotedblright" g2="quotesinglbase" k="240" />
+<hkern g1="quotedblright" g2="quotedblbase" k="240" />
+<hkern g1="quotedblright" g2="guilsinglleft" k="96" />
+<hkern g1="quotedblbase" g2="quotedbl" k="260" />
+<hkern g1="quotedblbase" g2="quotesingle" k="193" />
+<hkern g1="quotedblbase" g2="zero" k="31" />
+<hkern g1="quotedblbase" g2="seven" k="59" />
+<hkern g1="quotedblbase" g2="C" k="43" />
+<hkern g1="quotedblbase" g2="G" k="43" />
+<hkern g1="quotedblbase" g2="O" k="43" />
+<hkern g1="quotedblbase" g2="Q" k="43" />
+<hkern g1="quotedblbase" g2="T" k="115" />
+<hkern g1="quotedblbase" g2="U" k="66" />
+<hkern g1="quotedblbase" g2="V" k="229" />
+<hkern g1="quotedblbase" g2="W" k="160" />
+<hkern g1="quotedblbase" g2="Y" k="143" />
+<hkern g1="quotedblbase" g2="j" k="-23" />
+<hkern g1="quotedblbase" g2="p" k="16" />
+<hkern g1="quotedblbase" g2="t" k="27" />
+<hkern g1="quotedblbase" g2="u" k="25" />
+<hkern g1="quotedblbase" g2="v" k="86" />
+<hkern g1="quotedblbase" g2="w" k="70" />
+<hkern g1="quotedblbase" g2="y" k="96" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="43" />
+<hkern g1="quotedblbase" g2="Ograve" k="43" />
+<hkern g1="quotedblbase" g2="Oacute" k="43" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="43" />
+<hkern g1="quotedblbase" g2="Otilde" k="43" />
+<hkern g1="quotedblbase" g2="Odieresis" k="43" />
+<hkern g1="quotedblbase" g2="Oslash" k="43" />
+<hkern g1="quotedblbase" g2="Ugrave" k="66" />
+<hkern g1="quotedblbase" g2="Uacute" k="66" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="66" />
+<hkern g1="quotedblbase" g2="Udieresis" k="66" />
+<hkern g1="quotedblbase" g2="Yacute" k="143" />
+<hkern g1="quotedblbase" g2="ugrave" k="25" />
+<hkern g1="quotedblbase" g2="uacute" k="25" />
+<hkern g1="quotedblbase" g2="ucircumflex" k="25" />
+<hkern g1="quotedblbase" g2="udieresis" k="25" />
+<hkern g1="quotedblbase" g2="yacute" k="96" />
+<hkern g1="quotedblbase" g2="ydieresis" k="96" />
+<hkern g1="quotedblbase" g2="OE" k="43" />
+<hkern g1="quotedblbase" g2="quoteleft" k="227" />
+<hkern g1="quotedblbase" g2="quoteright" k="215" />
+<hkern g1="quotedblbase" g2="quotedblleft" k="240" />
+<hkern g1="quotedblbase" g2="quotedblright" k="240" />
+<hkern g1="guilsinglleft" g2="A" k="-16" />
+<hkern g1="guilsinglleft" g2="U" k="23" />
+<hkern g1="guilsinglleft" g2="V" k="51" />
+<hkern g1="guilsinglleft" g2="W" k="51" />
+<hkern g1="guilsinglleft" g2="Y" k="47" />
+<hkern g1="guilsinglleft" g2="Agrave" k="-16" />
+<hkern g1="guilsinglleft" g2="Aacute" k="-16" />
+<hkern g1="guilsinglleft" g2="Acircumflex" k="-16" />
+<hkern g1="guilsinglleft" g2="Atilde" k="-16" />
+<hkern g1="guilsinglleft" g2="Adieresis" k="-16" />
+<hkern g1="guilsinglleft" g2="Aring" k="-16" />
+<hkern g1="guilsinglleft" g2="AE" k="-31" />
+<hkern g1="guilsinglleft" g2="Ugrave" k="23" />
+<hkern g1="guilsinglleft" g2="Uacute" k="23" />
+<hkern g1="guilsinglleft" g2="Ucircumflex" k="23" />
+<hkern g1="guilsinglleft" g2="Udieresis" k="23" />
+<hkern g1="guilsinglleft" g2="Yacute" k="47" />
+<hkern g1="guilsinglright" g2="quotedbl" k="98" />
+<hkern g1="guilsinglright" g2="quotesingle" k="98" />
+<hkern g1="guilsinglright" g2="A" k="45" />
+<hkern g1="guilsinglright" g2="B" k="35" />
+<hkern g1="guilsinglright" g2="D" k="35" />
+<hkern g1="guilsinglright" g2="E" k="35" />
+<hkern g1="guilsinglright" g2="F" k="35" />
+<hkern g1="guilsinglright" g2="H" k="35" />
+<hkern g1="guilsinglright" g2="I" k="35" />
+<hkern g1="guilsinglright" g2="J" k="25" />
+<hkern g1="guilsinglright" g2="K" k="35" />
+<hkern g1="guilsinglright" g2="L" k="35" />
+<hkern g1="guilsinglright" g2="M" k="33" />
+<hkern g1="guilsinglright" g2="N" k="35" />
+<hkern g1="guilsinglright" g2="P" k="35" />
+<hkern g1="guilsinglright" g2="R" k="35" />
+<hkern g1="guilsinglright" g2="T" k="92" />
+<hkern g1="guilsinglright" g2="V" k="106" />
+<hkern g1="guilsinglright" g2="W" k="92" />
+<hkern g1="guilsinglright" g2="X" k="76" />
+<hkern g1="guilsinglright" g2="Y" k="135" />
+<hkern g1="guilsinglright" g2="Z" k="43" />
+<hkern g1="guilsinglright" g2="x" k="31" />
+<hkern g1="guilsinglright" g2="Agrave" k="45" />
+<hkern g1="guilsinglright" g2="Aacute" k="45" />
+<hkern g1="guilsinglright" g2="Acircumflex" k="45" />
+<hkern g1="guilsinglright" g2="Atilde" k="45" />
+<hkern g1="guilsinglright" g2="Adieresis" k="45" />
+<hkern g1="guilsinglright" g2="Aring" k="45" />
+<hkern g1="guilsinglright" g2="AE" k="59" />
+<hkern g1="guilsinglright" g2="Egrave" k="35" />
+<hkern g1="guilsinglright" g2="Eacute" k="35" />
+<hkern g1="guilsinglright" g2="Ecircumflex" k="35" />
+<hkern g1="guilsinglright" g2="Edieresis" k="35" />
+<hkern g1="guilsinglright" g2="Igrave" k="35" />
+<hkern g1="guilsinglright" g2="Iacute" k="35" />
+<hkern g1="guilsinglright" g2="Icircumflex" k="35" />
+<hkern g1="guilsinglright" g2="Idieresis" k="35" />
+<hkern g1="guilsinglright" g2="Eth" k="35" />
+<hkern g1="guilsinglright" g2="Ntilde" k="35" />
+<hkern g1="guilsinglright" g2="Yacute" k="135" />
+<hkern g1="guilsinglright" g2="Thorn" k="35" />
+<hkern g1="guilsinglright" g2="quoteright" k="82" />
+<hkern g1="guilsinglright" g2="quotedblright" k="82" />
+<hkern g1="fraction" g2="zero" k="27" />
+<hkern g1="fraction" g2="four" k="98" />
+<hkern g1="fraction" g2="six" k="29" />
+<hkern g1="fraction" g2="seven" k="-98" />
+<hkern g1="minus" g2="one" k="53" />
+<hkern g1="minus" g2="two" k="53" />
+<hkern g1="minus" g2="three" k="39" />
+<hkern g1="minus" g2="seven" k="115" />
+<hkern g1="minus" g2="eight" k="20" />
+</font>
+</defs>
+</svg>
diff --git a/static/fonts/lora-v9-latin-700.ttf b/static/fonts/lora-v9-latin-700.ttf
new file mode 100644
index 0000000..5782ec7
Binary files /dev/null and b/static/fonts/lora-v9-latin-700.ttf differ
diff --git a/static/fonts/lora-v9-latin-700.woff b/static/fonts/lora-v9-latin-700.woff
new file mode 100644
index 0000000..36903c9
Binary files /dev/null and b/static/fonts/lora-v9-latin-700.woff differ
diff --git a/static/fonts/lora-v9-latin-700.woff2 b/static/fonts/lora-v9-latin-700.woff2
new file mode 100644
index 0000000..2eacde2
Binary files /dev/null and b/static/fonts/lora-v9-latin-700.woff2 differ
diff --git a/static/fonts/lora-v9-latin-regular.eot b/static/fonts/lora-v9-latin-regular.eot
new file mode 100644
index 0000000..c209f9a
Binary files /dev/null and b/static/fonts/lora-v9-latin-regular.eot differ
diff --git a/static/fonts/lora-v9-latin-regular.svg b/static/fonts/lora-v9-latin-regular.svg
new file mode 100644
index 0000000..c3c9968
--- /dev/null
+++ b/static/fonts/lora-v9-latin-regular.svg
@@ -0,0 +1,9002 @@
+<?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">
+<defs >
+<font id="Lora" horiz-adv-x="1164" ><font-face
+ font-family="Lora"
+ units-per-em="2048"
+ panose-1="2 0 5 3 0 0 0 2 0 4"
+ ascent="1934"
+ descent="-551"
+ alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="539" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="545" d="M391 98Q391 71 381 47T354 5T316 -23T270 -33Q246 -33 225 -23T187 5T161 47T151 98Q151 126 161 150T187 193T226 221T272 232Q297 232 319 222T357 193T382 151T391 98ZM309 471H233L153 1316Q151
+1343 157 1370T179 1418T217 1453T272 1467Q305 1467 328 1454T365 1419T385 1370T389 1316L309 471Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="709" d="M144 1006L127 1467H287L270 1006H144ZM437 1006L420 1467H580L563 1006H437Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1700" d="M315 -33L408 365H68L101 487H436L548 961H203L236 1083H577L668 1467H803L715 1083H1150L1241 1467H1376L1288 1083H1631V1081L1600 961H1260L1153 487H1495L1463 365H1126L1036 -33H888L981
+365H552L462 -33H315ZM579 487H1009L1121 961H687L579 487Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1083" d="M227 -27H117V406H188Q194 311 222 244T299 133T415 69T563 48Q623 48 673 67T759 119T815 200T835 303Q835 374 804 427T721 522T603 600T469 672T334 748T217 839T134 956T102 1110Q102 1142 111
+1180T139 1258T188 1334T262 1400T361 1447T489 1467V1706H600L598 1466Q656 1460 713 1441T825 1380L817 1467H919V1019H844Q839 1093 822 1160T767 1277T669 1358T518 1388Q453 1388 406 1367T329 1313T283 1236T268 1147Q268 1080 300 1029T384 937T502 859T638
+787T773 710T892 618T976 500T1008 348Q1008 276 984 211T909 93T784 8T609 -33L608 -313H502L500 -33Q464 -32 426 -25T351 -5T280 22T217 56L227 -27Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1782" d="M250 1103Q250 1054 258 996T289 886T351 801T451 767Q507 767 544 794T603 864T635 957T645 1056Q645 1107 636 1166T604 1276T543 1360T447 1394Q389 1394 351 1363T291 1288T259 1193T250 1103ZM1500
+1385L338 -35L251 37L1407 1467L1500 1385ZM74 1070Q74 1142 98 1212T169 1338T286 1430T445 1467Q540 1469 611 1437T728 1351T798 1228T821 1089Q821 1010 792 937T711 809T592 720T445 687Q353 687 284 719T168 804T98 927T74 1070ZM1534 331Q1534 364 1531
+401T1518 476T1494 548T1457 609T1404 651T1333 667Q1277 667 1240 640T1181 571T1149 478T1139 379Q1139 327 1149 268T1183 159T1246 75T1342 41Q1400 41 1437 71T1495 147T1525 242T1534 331ZM1710 364Q1710 293 1686 223T1615 96T1499 4T1340 -33Q1245 -35
+1174 -3T1055 84T985 206T961 346Q961 425 991 497T1072 625T1193 714T1340 747Q1431 747 1500 715T1616 630T1686 507T1710 364Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1423" d="M1121 547Q1123 506 1114 447T1079 322Q1102 301 1127 278T1182 229Q1275 146 1341 107T1440 68V0H1250Q1230 0 1166 38T995 169Q962 127 920 90T823 26T702 -17T554 -33Q465 -33 379 -11T225
+59T116 183T74 369Q74 435 96 493T161 603T262 696T396 771Q355 822 325 868T276 960T249 1051T240 1145Q241 1218 269 1277T348 1379T467 1444T619 1467Q697 1467 760 1445T867 1384T936 1293T961 1180Q961 1123 943 1070T885 967T781 868T624 772Q663 730 705
+687T789 600Q810 577 831 556T878 510T933 456T1004 390Q1014 426 1018 459T1023 520Q1023 555 1016 590T992 655T944 704T869 725V793H1227V709L1057 716Q1089 688 1104 646T1121 547ZM871 283Q732 418 627 521T448 710Q399 681 367 641T315 557T287 473T279 400Q279
+316 305 255T373 153T469 93T580 70Q644 67 697 78T793 111T869 163T929 228Q900 253 871 283ZM412 1161Q412 1117 424 1074T459 988T512 903T579 822Q694 897 749 990T804 1173Q804 1222 791 1264T754 1336T693 1383T609 1400Q567 1400 531 1385T468 1339T427
+1264T412 1161Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="426" d="M146 1006L127 1467H299L281 1006H146Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="625" d="M280 489Q280 200 355 -49T589 -508L538 -555Q487 -508 433 -445T328 -303T230 -134T149 57T94 266T73 489Q73 603 93 713T148 926T229 1123T327 1297T433 1444T538 1556L589 1509Q430 1297 355
+1039T280 489Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="625" d="M346 512Q346 801 271 1050T37 1509L88 1556Q139 1509 193 1446T298 1304T396 1135T477 944T532 735T553 512Q553 398 533 288T478 75T397 -122T299 -296T193 -443T88 -555L37 -508Q196 -296
+271 -38T346 512Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1065" d="M559 1041Q613 1075 678 1107T806 1170Q828 1181 854 1188T904 1194T947 1182T974 1144Q979 1129 979 1116Q979 1104 974 1091T951 1064T908 1040T858 1025Q825 1019 789 1012T717 1000T646 990T579
+984Q629 944 680 893T780 791Q799 771 812 749T831 709T837 678Q837 663 831 648T806 619Q784 603 763 604T724 618T689 651T659 693Q643 723 625 756T590 822T558 887T532 949Q520 920 505 888T473 822T439 756T405 693Q393 672 377 652T342 619T302 605T257 619Q239
+634 234 647T228 678Q228 690 233 708T252 750T282 791Q330 842 381 894T483 984Q451 985 416 989T344 999T271 1012T202 1025Q178 1030 153 1039T110 1062T86 1091T80 1117Q80 1130 85 1144Q94 1171 113 1182T155 1194T204 1188T253 1170Q316 1141 382 1109T501
+1041Q483 1101 473 1175T454 1318Q451 1342 452 1368T461 1417T486 1453T532 1467Q560 1467 576 1453T600 1417T608 1369T606 1318Q598 1249 588 1175T559 1041Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1055" d="M72 711L461 709V1112H593V709L984 707V592L593 590V168H461V589L72 588V711Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="518" d="M186 -325Q203 -304 222 -268T255 -188T278 -96T280 0Q251 -13 225 -11T178 4T147 39T135 88Q135 145 168 176T248 207Q283 207 310 193T355 153T383 94T393 21Q393 -18 382 -70T351 -177T303 -281T241
+-366L186 -325Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="1001" d="M137 727H864V592L137 584V727Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="504" d="M370 98Q370 71 360 47T334 5T296 -23T250 -33Q226 -33 205 -23T167 5T141 47T131 98Q131 126 141 150T167 193T206 221T252 232Q277 232 298 222T336 193T361 151T370 98Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="1413" d="M1372 1473L162 -556L43 -481L1240 1556L1372 1473Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1272" d="M326 753Q326 682 331 602T351 444T388 293T448 167T533 80T649 47Q707 47 752 73T830 143T886 249T922 380T942 526T948 677Q948 760 942 845T922 1009T885 1157T828 1278T748 1359T641 1389Q582
+1389 536 1363T454 1292T395 1186T356 1054T333 906T326 753ZM115 711Q115 797 128 886T168 1060T237 1218T339 1347T474 1435T646 1467Q745 1467 821 1436T955 1350T1051 1222T1114 1067T1148 895T1159 721Q1159 636 1147 547T1109 375T1041 217T942 87T808 -1T637
+-33Q533 -33 454 -2T316 84T220 210T158 366T125 537T115 711Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="745" d="M508 223Q508 183 508 147T502 82L674 90V0H152V68Q205 70 239 87T294 134T322 206T330 301L328 1268H324L78 1109L37 1169L437 1467H506L508 223Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1100" d="M260 1242Q280 1220 288 1197T297 1150Q297 1137 292 1120T275 1089T244 1064T197 1055Q151 1057 127 1089T103 1168Q103 1211 130 1263T211 1361T345 1436T531 1467Q612 1467 689 1448T827 1386T924
+1271T961 1095Q961 1043 939 984T869 857T745 712T559 544Q489 487 431 432T330 328T261 235T227 155L590 145Q665 143 727 143T835 154T906 196T932 287H994L981 0H94Q94 108 128 192T219 347T348 485T498 624Q631 751 690 860T750 1070Q750 1127 739 1183T698
+1285T621 1359T498 1387Q456 1387 418 1376T348 1345T294 1299T260 1242Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1141" d="M275 1239Q293 1219 300 1198T308 1155Q308 1143 303 1127T287 1098T258 1075T214 1066Q170 1068 148 1098T125 1172Q125 1214 150 1265T228 1362T358 1437T543 1467Q625 1467 699 1448T831 1386T922
+1276T956 1111Q956 1062 939 1014T883 920T780 837T621 769V767Q718 757 795 725T927 643T1010 525T1039 379Q1039 275 996 198T882 69T717 -7T523 -33Q412 -33 331 -7T196 61T116 151T90 246Q90 292 114 324T184 359Q212 360 230 351T260 328T275 297T280 266Q280
+245 274 225T258 184Q268 149 292 125T351 85T425 62T507 54Q580 54 639 74T741 133T805 231T828 365Q828 432 814 496T759 609T647 687T464 714Q430 714 390 711V803H474Q555 803 609 832T696 906T743 1000T757 1093Q757 1156 746 1210T706 1303T632 1364T515
+1387Q469 1387 429 1374T357 1339T304 1291T275 1239Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1110" d="M834 223Q834 181 833 145T826 78L984 84V0H468V68H484Q536 72 568 91T618 144T642 224T648 326V395H25V496L765 1467H834V518L1041 516V395H834V223ZM160 528L648 522V1175H644L160 528Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1114" d="M274 187Q280 149 307 122T371 77T450 53T528 47Q603 50 656 80T744 158T795 267T811 393Q811 431 808 476T793 566T761 652T704 726T618 778T494 797Q468 797 432 792T359 778T285 756T223 725L166
+778L161 1434H693Q751 1434 790 1442T852 1466T886 1507T896 1567H953L941 1296L255 1282L256 832Q306 852 384 870T553 889Q679 889 768 849T914 743T997 595T1024 430Q1024 316 983 230T872 85T711 -3T520 -33Q422 -33 345 -7T215 61T134 151T106 246Q106 292
+130 324T200 359Q228 360 246 351T276 328T291 297T296 266Q296 246 290 225T274 187Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1184" d="M608 803Q560 803 513 785T426 735T355 662T309 577Q314 480 331 385T383 215T472 94T608 47Q680 47 731 75T815 151T862 261T877 391Q877 429 873 474T859 566T829 654T780 730T708 783T608 803ZM879
+1271Q873 1289 857 1310T814 1349T753 1378T676 1390Q598 1390 541 1354T443 1260T377 1129T336 982T315 840T307 722Q332 756 366 787T444 843T539 881T651 895Q774 895 857 853T990 743T1062 595T1084 436Q1084 340 1048 255T947 106T795 5T604 -33Q467 -33 374
+16T223 158T140 380T115 674Q115 735 124 817T156 988T218 1162T320 1315T468 1425T672 1467Q763 1467 831 1441T944 1375T1011 1291T1034 1207Q1034 1163 1013 1133T947 1100Q921 1099 903 1107T874 1128T858 1156T853 1185Q853 1205 859 1228T879 1271Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="944" d="M400 -33Q359 -30 344 -5T328 58Q328 91 342 141T378 249T423 365T467 475Q495 547 533 644T616 850T709 1073T809 1293L268 1290Q185 1289 140 1252T94 1130H45V1434H903V1294Q853 1192 814 1097T741
+909T678 722T622 529T569 321T512 93Q506 68 497 45T474 4T443 -24T400 -33Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1151" d="M984 1136Q984 1075 962 1022T902 924T814 843T707 778Q775 738 837 689T946 585T1021 467T1049 339Q1049 242 1009 172T902 57T748 -11T565 -33Q493 -33 415 -16T272 40T164 145T121 307Q121 376
+147 436T216 549T316 645T432 728Q354 774 300 820T213 913T164 1004T149 1095Q149 1192 188 1262T289 1377T428 1445T584 1467Q662 1467 734 1445T861 1381T950 1278T984 1136ZM509 690Q453 649 413 605T347 515T308 426T293 344Q289 279 307 225T362 132T451
+72T569 49Q702 47 775 114T848 302Q848 355 831 407T774 509T669 604T509 690ZM340 1140Q340 1084 362 1036T424 946T518 873T634 819Q726 882 774 958T824 1113Q826 1245 762 1315T588 1387Q527 1388 481 1367T404 1312T356 1233T340 1140Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1184" d="M569 629Q617 629 664 647T752 697T823 768T868 854Q863 950 847 1045T796 1217T706 1340T567 1388Q501 1388 451 1359T368 1281T318 1169T301 1038Q301 1000 305 955T319 864T349 777T398 701T470
+649T569 629ZM308 155Q315 133 330 113T370 78T431 54T516 45Q594 45 650 78T746 165T810 288T848 432T866 577T870 708Q844 674 810 643T733 589T638 551T526 537Q444 537 381 556T270 609T190 688T137 783T107 887T98 993Q98 1093 132 1179T229 1330T381 1430T582
+1467Q726 1467 819 1411T967 1257T1042 1024T1063 735Q1063 660 1056 575T1028 404T970 240T873 101T728 5T526 -33Q425 -34 355 -10T240 52T175 134T154 220Q154 264 176 294T243 327Q268 328 285 320T314 298T330 268T335 239Q335 197 308 155Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="512" d="M376 98Q376 71 366 47T340 5T302 -23T256 -33Q232 -33 211 -23T173 5T147 47T137 98Q137 126 147 150T173 193T212 221T258 232Q283 232 304 222T342 193T367 151T376 98ZM376 923Q376 896 366 872T340
+830T302 802T256 792Q232 792 211 802T173 830T147 872T137 923Q137 951 147 975T173 1018T212 1046T258 1057Q283 1057 304 1047T342 1018T367 976T376 923Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="539" d="M194 -325Q211 -304 230 -268T263 -188T286 -96T288 0Q259 -13 233 -11T186 4T155 39T143 88Q143 145 176 176T256 207Q291 207 318 193T363 153T391 94T401 21Q401 -18 390 -70T359 -177T311
+-281T249 -366L194 -325ZM382 923Q382 896 372 872T346 830T308 802T262 792Q238 792 217 802T179 830T153 872T143 923Q143 951 153 975T179 1018T218 1046T264 1057Q289 1057 310 1047T348 1018T373 976T382 923Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1110" d="M70 709L982 1114V987L209 647L982 305V174L70 571V709Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1212" d="M150 510L1062 506V387L150 383V510ZM150 895L1062 891V772L150 768V895Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1108" d="M1039 579L127 174V301L900 641L127 983V1114L1039 717V579Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="971" d="M226 1242Q237 1224 243 1204T249 1162Q249 1149 244 1133T227 1104T198 1082T155 1074Q111 1076 90 1106T68 1181Q68 1226 96 1276T178 1369T308 1439T482 1467Q600 1467 681 1435T810 1352T878
+1237T894 1109Q890 1040 855 981T768 871T659 776T552 692T470 617T437 547Q437 535 441 523T456 501T482 485T523 479Q537 479 558 482T599 494L623 422Q591 403 546 394T462 385Q432 385 403 392T350 416T313 458T298 522Q298 568 327 608T400 688T495 770T592
+863T667 975T701 1115Q702 1170 691 1219T650 1306T572 1365T451 1387Q407 1387 368 1374T298 1339T249 1292T226 1242ZM585 88Q585 63 577 41T555 3T520 -23T476 -33Q455 -33 435 -25T400 -1T375 37T365 88Q365 113 374 135T399 173T435 199T476 209Q499 209 519
+200T553 174T576 135T585 88Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1630" d="M1005 907Q957 926 878 926Q806 926 752 882T663 767T609 612T591 446Q591 343 619 282T700 221Q737 221 773 252T844 335T907 457T957 602T991 756T1005 907ZM1544 651Q1544 544 1522 462T1463 321T1381
+223T1277 158T1149 132Q1116 132 1076 144T1006 187T969 256T960 332Q960 364 964 401T980 498H976Q938 381 898 311T816 204T737 155T665 143Q622 143 583 159T513 210T466 299T448 428Q448 540 479 641T571 819T722 941T929 987Q953 987 981 986T1038 981T1096
+973T1150 961Q1142 891 1133 820T1115 680T1100 551T1090 449T1086 369Q1086 327 1094 291T1116 236T1150 209T1185 202Q1223 202 1256 222T1322 288T1376 412T1399 586Q1399 770 1355 889T1237 1080T1068 1185T846 1219Q795 1220 718 1205T556 1139T402 997T297
+787T260 539Q260 428 282 338T345 176T442 53T564 -34T708 -87T853 -106Q943 -106 985 -101T1094 -77T1223 -19T1339 84L1388 33Q1269 -94 1130 -144T856 -195Q714 -195 617 -171T437 -100T290 14T186 162T123 335T102 526Q102 612 121 701T178 874T274 1033T412
+1166T581 1256T740 1296T856 1304Q958 1304 1048 1284T1219 1219T1361 1110T1462 972T1523 815T1544 651Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1282" d="M262 223Q254 199 248 180T236 145T224 114T211 82L371 90V0H-12V68Q34 68 63 86T112 139T148 220T186 324L608 1473H657L1114 307Q1123 286 1132 257T1150 196T1163 135T1167 82L1307 90V0H838V68Q895
+69 922 89T956 138T956 200T938 262L866 454L333 442Q311 379 294 327T262 223ZM510 942Q463 810 428 710T364 530H838L692 922L600 1174H596L510 942Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1274" d="M254 1190Q254 1246 255 1286T261 1352L113 1343V1434Q226 1436 339 1437T576 1438Q695 1438 789 1417T947 1353T1045 1247T1078 1087Q1077 1037 1056 987T993 894T888 818T740 770V766Q853 766 938 739T1080
+663T1165 547T1194 401Q1194 307 1158 233T1057 107T904 28T711 0H113V68Q171 69 200 88T241 142T253 224T254 330V1190ZM586 1364Q536 1364 506 1354T460 1321T438 1259T433 1165V784L582 788Q670 790 729 817T825 887T876 983T891 1098Q891 1176 861 1232T787
+1315T690 1353T586 1364ZM426 82Q450 80 483 79T548 78T607 78T643 78Q722 78 787 98T898 157T970 254T996 389Q996 483 967 545T890 644T777 696T643 711Q582 711 532 710T433 705V242Q433 186 432 147T426 82Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1432" d="M819 1383Q710 1383 615 1337T448 1205T336 997T295 725Q295 628 314 543T370 385T456 255T567 157T698 96T844 74Q911 74 977 89T1105 134T1221 208T1317 309L1370 266Q1304 175 1229 117T1077 26T927
+-20T790 -33Q636 -33 508 23T288 178T145 408T94 694Q94 790 113 885T172 1065T271 1224T409 1352T587 1436T805 1467Q921 1467 1022 1436T1218 1342L1208 1452H1319V977H1245Q1234 1073 1200 1148T1111 1276T982 1355T819 1383Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1526" d="M433 242Q433 186 432 147T426 82Q467 80 504 79T570 78T620 78T646 78Q778 78 886 127T1070 262T1189 467T1231 723Q1231 868 1192 985T1071 1186T867 1315T574 1360Q516 1360 487 1342T446 1292T434
+1214T433 1114V242ZM596 1436Q782 1436 935 1393T1199 1261T1371 1036T1432 715Q1432 621 1410 532T1344 363T1235 217T1083 102T888 27T652 0H113V68Q171 70 200 89T241 141T253 219T254 319V1204Q254 1246 255 1283T261 1352L113 1343V1434L596 1436Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1274" d="M433 236Q433 179 432 141T426 76L818 82Q885 83 939 98T1031 150T1091 247T1112 399H1182L1170 0H113V68Q162 69 190 83T233 123T250 182T254 259V319V1204Q254 1246 255 1283T261 1352L113 1343V1434H1098L1108
+1075H1041Q1041 1163 1021 1219T965 1307T881 1350T777 1362L588 1359Q531 1356 500 1341T453 1297T436 1222T433 1114V784H817L802 961H893V530H826Q826 590 816 625T783 680T726 706T642 712Q628 712 613 712T433 705V236Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1122" d="M433 244Q433 188 432 148T426 82L635 90V0H113V68Q171 70 200 89T241 141T253 219T254 319V1204Q254 1246 255 1283T261 1352L113 1343V1434H1063L1074 1075H1006Q1006 1166 984 1222T923 1310T833 1352T723
+1362L574 1358Q517 1356 488 1337T446 1284T434 1205T433 1106V752H789L774 929H865V498H798Q798 558 788 593T755 648T698 674T614 680Q600 680 585 680T433 673V244Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1559" d="M1368 74H1312Q1278 74 1222 62T1091 21Q1059 9 1021 -1T944 -18T865 -29T792 -33Q638 -33 510 16T290 158T147 384T96 686Q96 782 115 877T174 1059T273 1220T411 1350T590 1436T809 1467Q864 1467 921
+1459T1033 1437T1139 1401T1233 1354L1224 1452H1337V983H1263Q1256 1079 1220 1154T1126 1280T990 1358T823 1385Q714 1385 618 1337T451 1202T339 996T297 733Q297 588 337 466T449 255T623 116T845 66Q886 66 931 72T1021 90T1111 121T1196 168V616L1052 608V698H1515V631Q1477
+631 1451 617T1409 580T1385 530T1373 475T1369 425T1368 387V74Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1597" d="M1166 693L433 684V244Q433 188 432 148T426 82L574 90V0H113V68Q171 70 200 89T241 141T253 219T254 319V1204Q254 1246 255 1283T261 1352L113 1343V1434H574V1366Q516 1364 487 1345T446 1292T434
+1214T433 1114V774H1166V1204Q1166 1290 1172 1352L1024 1343V1434H1485V1366Q1428 1364 1399 1345T1357 1292T1345 1214T1344 1114V244Q1344 134 1338 82L1485 90V0H1024V68Q1082 70 1111 89T1153 141T1165 219T1166 319V693Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="686" d="M254 1204Q254 1246 255 1283T261 1352L113 1343V1434H574V1366Q516 1364 487 1345T446 1292T434 1214T433 1114V244Q433 188 432 148T426 82L574 90V0H113V68Q171 70 200 89T241 141T253 219T254 319V1204Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="764" d="M165 83Q171 74 181 68T204 57T227 52T246 51Q276 52 299 65T337 106T359 178T367 285V1352L158 1343V1434H703V1366Q652 1366 621 1351T573 1308T551 1243T545 1163V500Q545 356 526 255T467 89T364 -4T212
+-33Q169 -33 130 -23T61 6T14 52T-4 113Q-4 133 1 151T18 185T42 207T66 217T92 220Q110 220 127 212T154 191T170 161T175 129Q175 119 173 107T165 83Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1364" d="M254 1204Q254 1246 255 1283T261 1352L113 1343V1434H574V1366Q516 1364 487 1345T446 1292T434 1214T433 1114V778H586L842 1182Q855 1202 871 1225T906 1271T946 1315T988 1354L863 1350V1434H1303V1366Q1238
+1361 1185 1349T1084 1307T989 1226T889 1090L689 770Q718 752 741 732T784 689T822 644T859 596L1088 291Q1146 213 1188 169T1264 102T1327 74T1389 68V0H1139Q1124 0 1101 16T1051 61T993 125T932 201L687 532Q648 583 609 629T533 698L433 696V244Q433 188
+432 148T426 82L574 90V0H113V68Q171 70 200 89T241 141T253 219T254 319V1204Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1184" d="M433 236Q433 180 432 141T426 76L809 82Q873 83 922 102T1005 163T1055 268T1072 424H1141L1129 0H113V68Q171 70 200 89T241 141T253 219T254 319V1204Q254 1246 255 1283T261 1352L113 1343V1434H574V1366Q516
+1364 487 1345T446 1292T434 1214T433 1114V236Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1880" d="M129 1434H442Q513 1273 577 1124T704 831T827 543T954 250H958Q970 278 983 312T1011 382T1038 452T1063 514Q1152 738 1249 965T1442 1434H1745V1366Q1706 1367 1678 1356T1632 1318T1607 1249T1603
+1143L1657 211Q1659 175 1660 143T1661 83L1810 90V0H1351V68Q1399 69 1427 85T1469 133T1487 208T1487 311L1434 1184Q1428 1169 1421 1153T1407 1118L946 -20H885Q818 130 750 280T616 582T485 888T360 1202L358 1112Q356 1063 355 1000T351 864T346 714T342
+557T338 402T335 256Q334 210 333 165T327 82L481 90V0H90V68Q138 69 165 84T206 125T225 184T231 256L276 1351L129 1346V1434Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1561" d="M1332 -33H1233L344 1162H341L348 285Q348 232 348 182T344 82L492 90V0H117V68Q164 68 191 84T231 125T248 177T252 229L254 1352L117 1343V1434H361L1233 267H1235L1237 1204Q1237 1290 1243 1352L1096
+1343V1434H1473V1366Q1415 1364 1387 1345T1347 1292T1335 1214T1336 1114L1332 -33Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1626" d="M295 754Q295 678 309 597T351 437T423 289T526 166T660 82T827 51Q911 51 981 76T1107 146T1205 251T1275 381T1317 530T1332 678Q1332 752 1316 842T1269 1010T1193 1157T1089 1276T958 1356T800 1385Q674
+1385 579 1329T421 1183T327 981T295 754ZM94 717Q94 803 113 892T171 1064T269 1221T407 1349T586 1435T807 1467Q932 1467 1034 1435T1218 1349T1358 1221T1457 1064T1516 891T1536 717Q1536 632 1517 544T1459 372T1361 215T1223 86T1044 -1T823 -33Q693 -33
+589 -2T403 82T264 208T168 364T112 537T94 717Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1240" d="M506 539Q496 539 475 539T433 540V244Q433 188 432 148T426 82L615 92V0H113V68Q171 70 200 89T241 141T253 219T254 319V1204Q254 1246 255 1283T261 1352L113 1343V1434Q221 1436 335 1436T570 1437Q868
+1437 1023 1337Q1189 1228 1189 1018Q1189 975 1180 923T1141 816T1062 710T935 622T752 562T506 539ZM433 625Q471 620 499 619T566 618Q653 618 730 644T865 719T956 840T990 1001Q990 1098 959 1166T872 1276T738 1338T566 1357Q511 1357 484 1340T445 1290T433
+1214T433 1114V625Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1630" d="M94 717Q94 803 113 892T171 1064T269 1221T407 1349T586 1435T807 1467Q932 1467 1034 1435T1218 1349T1358 1221T1457 1064T1516 891T1536 717Q1536 632 1517 544T1459 372T1361 215T1223 86T1043 -1Q1017
+-9 990 -15Q995 -16 999 -16Q1035 -17 1067 -22T1133 -40T1202 -79T1282 -145Q1353 -211 1402 -256T1487 -328T1551 -367T1609 -379V-446H1544Q1488 -446 1445 -444T1363 -432T1285 -398T1198 -332Q1129 -270 1078 -216T984 -121T899 -57T809 -33Q687 -31 588 -2Q484
+29 403 82T264 208T168 364T112 537T94 717ZM295 754Q295 678 309 597T351 437T423 289T526 166T660 82T827 51Q911 51 981 76T1107 146T1205 251T1275 381T1317 530T1332 678Q1332 752 1316 842T1269 1010T1193 1157T1089 1276T958 1356T800 1385Q674 1385 579
+1329T421 1183T327 981T295 754Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1286" d="M572 640Q538 638 503 638T433 642V244Q433 188 432 148T426 82L574 90V0H113V68Q171 70 200 89T241 141T253 219T254 319V1204Q254 1246 255 1283T261 1352L113 1343V1434Q229 1436 346 1437T582 1436Q730
+1433 835 1408T1008 1335T1107 1221T1139 1069Q1139 1009 1123 947T1064 828T947 728T755 660Q795 631 827 586T897 481L1037 262Q1063 221 1087 186T1139 124T1203 83T1287 68V0H1029Q999 26 975 52T930 106T888 163T846 227L709 446Q695 468 680 493T648 545T612
+595T572 640ZM433 720Q465 718 494 717T560 717Q644 720 713 738T833 796T912 896T940 1047Q940 1201 852 1279T574 1358Q516 1358 487 1341T446 1291T434 1214T433 1114V720Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1161" d="M237 -16H131L119 420H198Q204 329 237 261T323 146T448 77T600 53Q660 53 713 69T807 118T871 199T895 309Q895 384 862 438T775 533T651 608T509 675T368 746T244 833T156 949T123 1106Q123 1141 131
+1181T157 1261T206 1338T283 1404T392 1450T538 1467Q578 1467 623 1462T714 1445T807 1413T895 1361L887 1449H991V1000H917Q912 1074 889 1143T820 1266T709 1352T553 1385Q489 1385 440 1366T358 1313T308 1237T291 1145Q291 1075 324 1024T413 932T538 859T681
+793T824 721T949 632T1037 514T1071 356Q1071 271 1039 200T946 77T796 -4T592 -33Q546 -33 498 -27T402 -7T310 26T227 72L237 -16Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1311" d="M1186 1001Q1184 1092 1172 1159T1130 1271T1049 1338T919 1360L746 1359L743 244Q743 134 737 82L907 90V0H426V68Q483 70 512 90T553 143T565 222T565 319L568 1357L356 1356Q291 1356 247 1335T174
+1269T134 1159T121 1001H45L57 1434H1251L1263 1001H1186Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1540" d="M1332 639Q1331 505 1303 384T1210 170T1040 22T781 -33Q617 -33 506 10T328 142T231 370T202 698V1114Q202 1141 202 1174T204 1240T207 1302T210 1352L63 1346V1434H523V1366Q471 1366 443 1349T401
+1306T385 1253T382 1204V688Q382 612 388 538T410 396T456 272T533 173T647 108T806 84Q917 84 996 124T1127 236T1203 409T1230 629L1238 1204Q1238 1290 1244 1352L1097 1343V1434H1478V1366Q1420 1364 1391 1345T1349 1292T1337 1214T1336 1114L1332 639Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1337" d="M-8 1434H467V1366L465 1364Q414 1361 384 1345T342 1301T336 1234T363 1143Q387 1082 410 1025T456 909T504 791T557 666Q582 608 606 552T652 445T692 349T723 270H727Q1000 1040 1046 1172T1116 1352L959
+1343V1434H1374V1366Q1329 1364 1295 1353T1235 1319T1188 1258T1133 1123T1047 884T952 623T850 345T717 -20H660L195 1069Q172 1121 157 1162T132 1237T116 1298T107 1348L-8 1343V1434Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="2038" d="M14 1434H511V1366Q451 1363 417 1351T368 1313T357 1246T378 1143Q435 956 521 706T623 413T653 322H657Q667 356 679 395T702 471T771 685T855 946T907 1105T1013 1438H1079Q1179 1122 1205 1046T1327
+682T1453 297H1458Q1670 939 1717 1086T1780 1274T1816 1350L1652 1343V1434H2068V1366Q2016 1360 1982 1348T1922 1303T1871 1214T1694 701T1445 -20H1384L1001 1075L640 -20H581Q198 1123 184 1164T159 1239T141 1298T130 1348L14 1343V1434Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1329" d="M18 1434H548V1366L458 1362Q402 1359 382 1344T361 1305T377 1253T411 1196Q484 1084 555 985T666 830Q940 1224 963 1255T1007 1312T1044 1352L872 1343V1434H1275V1366Q1226 1359 1182 1331T1098 1263T1023
+1175T723 753L1083 276L1224 86L1343 90V0H841V68Q900 65 928 78T962 114T957 164T927 217L627 615Q386 258 347 199T257 80L427 90V0H24V68Q73 78 110 98T179 149T241 221T306 313L571 694Q482 820 373 973T235 1168T187 1241T155 1296T132 1348L18 1343V1434Z"
+/>
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1298" d="M581 553L226 1116Q173 1198 148 1253T115 1348L-12 1343V1434H516V1366Q445 1366 408 1350T361 1304T363 1233T408 1143Q446 1082 480 1028T548 920T618 812T699 696H703Q932 1132 976 1212T1034 1313T1063
+1350L901 1343V1434H1319V1366Q1268 1363 1228 1346T1153 1297T1086 1216T759 614Q758 515 758 380T758 244Q758 134 752 82L922 90V0H441V68Q498 70 527 90T568 143T580 222T580 319L581 553Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1249" d="M88 94Q146 175 219 278T382 512T580 808T815 1174Q844 1220 876 1266T946 1358L424 1350Q363 1347 318 1327T243 1265T198 1160T183 1010H113L125 1434H1141V1362L406 246Q383 213 365 188T330 143T298
+107T266 76L764 84Q831 85 889 105T990 166T1057 271T1082 420H1151L1139 0H88V94Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="735" d="M164 1546H707V1423L317 1417L308 -393L711 -399V-522H162L164 1546Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="1413" d="M43 1473L1253 -556L1372 -481L175 1556L43 1473Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="735" d="M572 -522H29V-399L419 -393L428 1417L25 1423V1546H574L572 -522Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1686" d="M936 1467L1563 894H1382L837 1394L291 904H123L754 1467H936Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="1493" d="M117 -102L1376 -111V-227H117V-102Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="516" d="M137 1405Q111 1432 102 1455Q99 1462 96 1472T93 1493Q93 1506 96 1517T110 1541T135 1560T167 1567T206 1556T252 1511L424 1235L367 1188L137 1405Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1057" d="M694 501Q647 499 597 493T498 473T406 438T331 388T281 321T265 235Q266 197 279 169T314 122T364 94T424 84Q465 84 501 92T569 115T632 153T694 204V501ZM132 811Q132 862 162 907T246 985T374 1038T537
+1057Q709 1057 790 966T871 677L869 217Q869 185 868 153T861 78L1006 86V0H713Q707 35 704 61T699 116Q630 47 549 7T376 -33Q299 -33 242 -15T146 37T89 114T70 210Q70 273 97 325T171 417T280 487T411 536T553 563T695 571V699Q695 752 689 802T663 893T599
+958T498 982Q465 982 435 977T376 958T324 924T285 874Q300 857 305 837T311 797Q311 785 306 770T291 741T264 719T219 710Q179 710 156 739T132 811Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1192" d="M155 1280Q155 1312 155 1342T161 1413L16 1405V1491Q83 1491 127 1495T200 1508T244 1525T272 1546H331V935Q388 992 466 1024T642 1057Q740 1057 824 1021T971 917T1069 753T1105 536Q1105 405 1061
+300T943 121T773 7T573 -33Q538 -33 499 -28T420 -8T342 31T272 92L223 0H151L155 1280ZM579 956Q511 956 445 925T331 840V322Q331 240 351 188T405 105T482 63T573 51Q647 51 706 82T807 171T871 309T894 486Q894 589 875 675T816 824T718 921T579 956Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1090" d="M838 871Q824 907 797 928T739 962T676 977T623 981Q553 981 493 953T388 869T319 732T293 544Q293 442 318 356T390 207T501 109T645 74Q693 74 740 87T829 125T906 181T967 250L1020 209Q979 145 927
+100T817 25T701 -19T590 -33Q486 -33 394 2T233 105T124 271T84 494Q84 565 101 634T152 765T232 881T338 974T468 1035T618 1057Q703 1057 773 1036T893 980T970 900T997 804Q997 760 973 729T902 696Q875 695 857 704T828 728T812 758T807 788Q807 808 813 830T838
+871Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1225" d="M1026 217Q1026 185 1025 153T1018 78L1163 86V0H870Q865 30 862 56T857 107Q798 43 715 5T528 -33Q433 -33 353 3T213 106T120 268T86 483Q86 608 125 713T235 895T401 1014T612 1057Q646 1057 680 1052T745
+1039T804 1021T851 1000L852 1280Q852 1312 852 1342T858 1413L713 1405V1491Q780 1491 824 1495T896 1508T939 1525T967 1546H1026V217ZM602 68Q636 68 671 78T738 106T799 148T851 202Q850 227 850 255T850 315L851 905Q802 943 744 959T625 976Q548 976 486
+942T381 846T317 703T297 502Q297 419 319 334T380 191T474 101T602 68Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1110" d="M604 977Q484 977 406 907T303 678H825Q825 732 813 785T775 881T706 950T604 977ZM1018 604L297 592Q296 474 315 378T375 214T480 109T635 72Q683 72 733 85T829 120T915 174T980 242L1030 201Q988
+137 933 93T818 20T698 -20T586 -33Q480 -33 389 5T230 114T125 285T86 510Q86 618 123 716T228 891T391 1012T602 1057Q687 1057 762 1029T895 945T985 804T1018 604Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="692" d="M645 1447Q630 1467 605 1475T557 1483Q509 1483 478 1462T429 1405T404 1327T396 1239V1024H672V944L396 939L398 217Q398 176 397 145T389 78L518 84V0H101V61Q148 61 172 79T208 131T220 210T221 311L219
+935L51 932V1024H219V1067Q219 1181 238 1271T302 1425T416 1522T588 1556Q621 1556 659 1548T730 1521T785 1474T807 1405Q807 1364 783 1338T722 1312Q696 1312 680 1320T654 1342T639 1370T634 1397Q634 1409 636 1421T645 1447Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1133" d="M562 -67Q505 -65 452 -62T351 -51Q294 -88 264 -141T233 -254Q233 -305 257 -345T327 -415T437 -459T581 -475Q669 -475 738 -457T856 -409T929 -340T954 -256Q954 -199 925 -164T843 -108T719 -79T562
+-67ZM544 985Q489 985 446 963T374 902T329 810T313 696Q313 622 329 562T376 457T452 389T554 365Q611 365 653 386T724 444T767 533T782 645Q782 712 767 774T722 882T648 957T544 985ZM992 1065Q966 1061 946 1049T911 1017T887 976T872 930Q923 883 952 820T982
+686Q982 599 947 527T851 402T713 320T548 291Q510 291 481 296T411 301Q373 301 342 291T289 264T260 230T253 201Q253 189 257 176Q264 152 289 137T356 114T453 101T581 94Q699 89 792 72T951 19T1050 -73T1085 -213Q1085 -296 1041 -359T925 -466T764 -532T583
+-555Q445 -555 348 -531T189 -468T100 -379T72 -278Q72 -231 90 -192T135 -122T196 -69T261 -32Q195 -12 157 25T119 129Q119 165 134 199T176 263T240 312T323 340Q276 362 238 393T173 464T132 551T117 652Q117 744 154 819T252 947T390 1028T548 1057Q617 1057
+684 1038T808 980Q823 1023 849 1060T907 1123T978 1165T1057 1180Q1109 1180 1137 1153T1166 1078Q1166 1066 1161 1051T1146 1023T1118 1001T1077 993Q1042 994 1020 1014T992 1065Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1227" d="M192 1280Q192 1312 192 1342T198 1413L53 1405V1491Q120 1491 164 1495T237 1508T281 1525T309 1546H368V922Q402 950 442 975T525 1018T614 1046T704 1057Q793 1057 857 1030T961 946T1021 803T1042
+599L1044 217Q1044 176 1043 145T1036 78L1165 84V0H747V61Q794 61 818 79T854 131T866 210T868 311V597Q868 774 812 861T634 949Q599 949 560 939T487 912T422 872T368 822V217Q368 176 366 145T358 78L487 84V0H69V61Q116 61 141 79T177 131T190 210T192 311V1280Z"
+/>
+<glyph unicode="i" glyph-name="i" horiz-adv-x="575" d="M211 778Q211 810 212 840T219 911L74 903V989Q141 989 185 993T257 1006T300 1023T328 1044H387V217Q387 176 386 145T379 78L508 84V0H90V61Q137 61 161 79T197 131T209 210T211 311V778ZM406 1368Q406
+1343 397 1321T372 1283T337 1257T295 1248Q273 1248 253 1257T218 1282T194 1321T185 1368Q185 1394 194 1416T218 1456T254 1482T297 1492Q320 1492 339 1483T374 1456T397 1417T406 1368Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="526" d="M-180 -441Q-180 -403 -156 -374T-92 -344Q-67 -344 -50 -352T-23 -374T-8 -402T-3 -430Q-3 -435 -3 -439T-4 -449Q25 -461 48 -461Q61 -461 83 -456T132 -426Q166 -394 178 -329T191 -177L195 778Q195
+810 195 840T201 911L56 903V989Q123 989 167 993T240 1005T284 1023T312 1044H371V-7Q371 -150 342 -253T260 -424T136 -523T-18 -555Q-60 -555 -91 -546T-141 -520T-170 -484T-180 -441ZM382 1368Q382 1343 373 1321T348 1283T313 1257T271 1248Q249 1248 229
+1257T194 1282T170 1321T161 1368Q161 1394 170 1416T194 1456T230 1482T273 1492Q296 1492 315 1483T350 1456T373 1417T382 1368Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1100" d="M679 1024H1052V963Q1000 957 953 934T864 878T787 811T724 748L565 580Q605 561 634 533T692 469L837 283Q843 275 857 255T891 211T935 160T984 111T1035 75T1085 61V0H899Q871 0 844 16T791 60T738
+121T683 193Q602 303 546 383T450 502L366 498V217Q366 176 365 145T358 78L489 84V0H71V61Q118 61 142 79T177 131T190 210T192 1280Q192 1312 192 1342T198 1413L53 1405V1491Q120 1491 164 1495T236 1508T279 1525T307 1546H366V578H448L698 840Q732 875 761
+902T819 948L679 942V1024Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="557" d="M190 1280Q190 1312 190 1342T196 1413L51 1405V1491Q118 1491 162 1495T235 1508T279 1525T307 1546H366L368 217Q368 176 366 145T358 78L487 84V0H69V61Q116 61 140 79T176 131T188 210T190 311V1280Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1831" d="M211 778Q211 810 212 843T219 911L74 903V989Q141 989 183 993T250 1006T290 1023T316 1044H375Q377 1024 379 998T383 935Q414 961 450 983T524 1022T603 1048T684 1057Q788 1057 857 1020T965 919Q999
+948 1040 973T1125 1017T1215 1046T1305 1057Q1394 1057 1459 1031T1567 950T1629 807T1647 599L1645 217Q1645 176 1644 145T1637 78L1766 84V0H1348V61Q1395 61 1419 79T1455 131T1467 210T1469 311V597Q1469 774 1413 861T1235 949Q1171 949 1108 920T997 848Q1018
+779 1018 699L1014 217Q1014 176 1013 145T1006 78L1135 84V0H717V61Q764 61 788 79T823 131T835 210T838 311L840 597Q841 773 789 863T615 953Q552 953 491 926T386 854Q386 830 386 803T387 744V217Q387 176 386 145T379 78L508 84V0H90V61Q137 61 161 79T197
+131T209 210T211 311V778Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1243" d="M213 778Q213 810 214 843T221 911L76 903V989Q143 989 185 993T252 1006T292 1023T318 1044H377Q379 1021 381 992T386 920Q419 949 458 974T541 1017T629 1046T719 1057Q897 1057 979 946T1061 599V217Q1061
+176 1060 145T1053 78L1182 84V0H764V61Q811 61 835 79T871 131T883 210T885 311V597Q883 774 827 863T649 953Q612 953 575 942T504 914T440 872T388 820Q389 802 389 782T389 740L387 217Q387 176 386 145T379 78L508 84V0H90V61Q137 61 161 79T196 131T208 210T211
+311L213 778Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1198" d="M598 979Q517 979 460 943T365 847T311 709T293 547Q293 452 312 362T372 203T472 91T614 49Q695 49 750 85T840 182T890 319T905 477Q905 569 888 659T834 820T739 935T598 979ZM598 1057Q706 1057 800
+1018T963 909T1073 744T1114 537Q1114 418 1075 314T966 133T802 12T598 -33Q490 -33 397 5T234 113T124 277T84 487Q84 608 123 712T232 893T395 1013T598 1057Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1223" d="M196 778Q196 810 197 843T204 911L59 903V989Q126 989 168 993T235 1006T275 1023T300 1044H360Q362 1024 364 997T368 934Q399 961 436 984T515 1023T600 1048T686 1057Q775 1057 856 1022T1000 922T1099
+762T1136 548Q1136 461 1117 384T1062 243T979 127T872 41T749 -14T614 -33Q472 -33 369 34L368 -305Q368 -346 367 -377T360 -444L489 -438V-522H71V-461Q118 -461 142 -443T177 -391T189 -312T192 -211L196 778ZM613 957Q577 957 543 948T478 923T420 886T371
+842Q371 834 371 824T372 788T372 718T372 596T371 405T370 129Q421 91 482 70T610 49Q683 49 741 84T840 181T903 329T925 517Q925 600 908 679T853 820T756 919T613 957Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1180" d="M1028 -305Q1028 -346 1027 -377T1020 -444L1149 -438V-522H731V-461Q778 -461 802 -443T838 -391T850 -312T852 -211V96Q798 35 721 1T545 -33Q449 -33 366 4T220 109T122 273T86 489Q86 617 127 722T240
+901T407 1016T612 1057Q675 1057 728 1044T825 1020T906 1012T969 1044H1026L1028 -305ZM618 68Q686 68 748 103T852 198V735Q852 797 840 843T800 920T728 966T617 982Q542 982 483 950T382 860T319 720T297 539Q297 440 318 355T381 205T482 105T618 68Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="887" d="M678 945Q639 946 599 931T521 885T448 813T387 720L389 217Q389 176 388 145T381 78L510 84V0H90V61Q137 61 161 79T197 131T209 210T211 311V779Q211 811 212 843T219 911L74 905V989H137Q181 989 210
+993T258 1006T291 1023T316 1044H375Q378 1012 380 965T385 842Q408 880 444 918T525 987T622 1037T729 1057Q757 1057 783 1050T829 1026T861 986T873 928Q873 914 868 897T850 865T818 840T771 830Q748 830 730 840T699 865T681 901T678 945Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="948" d="M474 47Q513 47 552 56T624 86T677 136T698 209Q698 258 673 292T606 353T511 401T402 444T293 492T199 555T132 641T106 760Q106 803 122 854T178 951T285 1026T456 1057Q484 1057 515 1053T580 1039T646
+1011T711 969L706 1047H792V688H728Q724 741 708 793T660 886T580 954T466 980Q418 980 381 968T319 934T280 884T267 825Q267 775 292 739T360 675T456 625T566 579T676 529T772 466T839 382T865 268Q865 191 834 134T753 40T639 -15T510 -33Q406 -33 327 -6T197
+57L204 -14H118L106 338H169Q173 274 198 221T265 129T360 69T474 47Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="793" d="M43 1024Q97 1025 141 1053T218 1124T275 1217T311 1311H381Q381 1229 381 1158T380 1024H725V944L380 940Q379 807 379 713T379 556T378 457T378 401T377 377T377 370Q377 300 384 247T410 157T457 102T532
+83Q585 83 637 115T729 206L784 161Q739 93 695 55T610 -3T536 -28T475 -33Q444 -33 412 -28T348 -9T289 32T240 101T207 203T196 345L200 937L43 936V1024Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1223" d="M850 755Q850 805 852 840T860 911L713 905V989H776Q820 989 851 993T904 1006T940 1023T967 1044H1026L1024 270Q1024 254 1024 230T1022 179T1020 126T1016 78L1163 86V0H870Q865 35 862 64T856 123Q824
+91 785 63T703 13T613 -20T522 -33Q438 -33 375 -11T270 64T207 201T186 414V778Q186 810 187 843T194 911L53 905V989H117Q160 989 191 993T244 1006T280 1023T307 1044H366V420Q366 331 378 266T416 157T485 93T588 72Q627 72 664 85T736 120T799 170T850 230V315V755Z"
+/>
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1034" d="M561 -6H479L186 662Q161 720 145 765T119 844T105 903T100 946L12 940V1024H389V963Q342 963 322 944T299 894T309 821T342 735L499 375Q515 340 530 302T561 224H563Q574 254 586 288T611 356L774 805Q791
+854 808 891T835 946L704 940V1024H1028V963Q994 963 969 946T922 894T878 807T829 686L561 -6Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1640" d="M12 1024H446V963Q400 961 376 945T345 899T344 830T368 741L529 257Q765 957 786 1024H870L1143 242Q1353 851 1367 887T1401 947L1282 940V1024H1638V963Q1585 960 1551 948T1495 915T1459 866T1431
+800L1136 -6H1054L786 769L520 -6H442L174 780Q151 845 139 883T121 946L12 940V1024Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1085" d="M45 1024H467V963Q421 961 395 951T363 920T374 863T428 776L547 614Q803 927 825 948L684 940V1024H1020V963Q978 951 947 934T887 891T598 555L880 204Q904 174 925 145T970 78L1063 84V0H667V61Q692
+61 711 66T738 84T743 116T717 162L501 428Q292 142 283 130T262 106T236 78L393 84V0H49V61Q80 69 104 82T149 115T448 494Q196 830 174 873T141 945L45 940V1024Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1081" d="M264 -448Q275 -453 287 -453Q305 -453 333 -438T391 -372Q417 -327 453 -238T535 -23Q188 720 169 765T138 844T118 903T107 945L8 940V1024H432V963L423 962Q380 959 358 943T330 898T336 821T617 207Q830
+828 843 860T869 916T893 948L752 940V1024H1073V963Q1035 948 1008 925T959 868T920 791T627 -18Q580 -147 541 -247T460 -416T367 -519T248 -555Q216 -555 188 -548T139 -525T106 -486T94 -431Q94 -412 100 -394T117 -362T145 -340T182 -331Q206 -331 222 -340T249
+-363T263 -392T267 -420Q267 -426 267 -433T264 -448Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="1047" d="M82 0V84Q702 882 717 900T746 932T770 952L385 946Q328 945 291 922T232 860T197 769T176 657H113L137 1024H940V958L363 199Q350 182 339 168T315 141T289 114T256 84L651 78Q715 77 758 100T829 163T872
+257T897 373H957L932 0H82Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="684" d="M192 537Q236 528 277 507T351 452T402 369T422 256Q422 232 420 200T415 130Q402 -22 400 -47T397 -90T396 -119T395 -145Q395 -232 406 -298T445 -408T523 -475T647 -498H659V-555H602Q497 -555
+427 -527T314 -444T255 -307T237 -117Q237 -72 240 -20T247 86T254 189T258 279Q258 331 249 370T217 434T156 473T61 486H14V592H61Q118 592 156 603T216 639T248 700T258 791Q258 872 248 957T237 1134Q237 1242 254 1321T314 1453T426 1530T602 1556H659V1486H636Q564
+1486 518 1467T444 1408T406 1308T395 1163Q395 1146 396 1126T399 1082L412 943Q417 895 420 863T422 813Q422 749 403 702T351 621T278 569T192 541V537V537Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="473" d="M315 1556L307 -555H168L162 1556H315Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="684" d="M492 537V541Q448 549 407 568T333 621T282 701T262 813Q261 831 264 863T272 943L285 1082Q287 1105 288 1125T289 1163Q289 1247 279 1307T241 1408T167 1467T48 1486H25V1556H82Q187 1556
+257 1531T370 1453T429 1322T447 1134Q447 1043 437 958T426 791Q426 738 435 701T467 639T528 604T623 592H670V486H623Q566 486 528 473T468 435T436 370T426 279Q426 239 429 189T436 86T443 -19T447 -117Q447 -225 430 -307T370 -444T258 -527T82 -555H25V-498H37Q112
+-498 161 -476T238 -409T278 -298T289 -145Q289 -132 289 -120T287 -90T284 -48T269 130Q266 167 264 199T262 256Q262 320 281 368T333 451T406 507T492 537Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1188" d="M391 627Q349 627 315 619T251 598T194 566T139 528V657Q171 683 200 703T260 738T324 759T399 766Q454 766 495 755T568 726T626 689T680 651T739 623T813 611Q881 611 940 637T1049 709V580Q1007
+532 947 503T805 473Q754 473 715 484T643 513T583 550T526 587T465 615T391 627Z" />
+<glyph unicode="&#xa0;" glyph-name="uni00A0" horiz-adv-x="539" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="498" d="M129 926Q129 953 139 977T166 1019T204 1047T250 1057Q274 1057 295 1047T333 1019T359 977T369 926Q369 898 359 874T333 831T294 803T248 792Q223 792 201 802T163 831T138 873T129 926ZM211
+553H287L367 -292Q369 -319 363 -346T341 -394T303 -429T248 -443Q215 -443 192 -430T155 -395T135 -346T131 -292L211 553Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1087" d="M828 873Q814 909 787 930T729 964T666 979T613 983Q543 983 483 955T378 870T309 732T283 544Q283 442 308 355T380 205T491 107T635 71Q683 71 730 85T819 123T896 179T957 249L1010 208Q974
+152 929 110T833 38T731 -9T630 -33L629 -274H510L509 -33Q417 -22 338 19T200 127T108 287T74 494Q74 589 105 682T194 852T333 984T513 1057L512 1274H645L643 1057Q721 1052 784 1030T893 974T962 897T987 806Q987 784 981 765T962 730T933 707T892 698Q865
+698 847 707T818 730T802 760T797 790Q797 810 803 832T828 873Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1122" d="M788 1288Q777 1328 736 1358T622 1389Q564 1389 521 1365T448 1301T405 1209T390 1100Q390 1048 394 1001T406 909T421 822T439 737H749V639H456Q461 602 464 565T468 487Q468 421 439 359T362
+240Q388 244 414 246T468 248Q535 248 594 229T705 187T800 144T878 125Q924 125 953 156T988 254H1052Q1050 192 1036 140T995 49T931 -11T843 -33Q800 -33 760 -19T680 18T601 65T522 113T439 149T350 164Q329 164 317 162Q312 123 298 88T265 25T222 -17T173
+-33Q136 -33 116 -10T96 43Q96 71 109 98T146 149T202 191T274 221Q297 257 312 304T327 408Q327 474 317 529T291 639H128V737H264Q249 797 238 864T227 1018Q227 1120 255 1203T334 1344T453 1435T606 1467Q696 1467 757 1443T856 1383T910 1305T926 1228Q926
+1193 905 1166T844 1139Q821 1139 806 1147T780 1167T766 1193T762 1219Q762 1230 766 1250T788 1288Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1096" d="M208 976L318 838Q364 875 421 896T549 918Q618 918 674 897T779 838L890 976L973 910L847 766Q886 713 906 649T926 521Q926 458 908 396T852 285L973 148L890 82L784 214Q739 179 680 159T548
+138Q476 138 418 158T313 213L208 82L125 148L245 284Q208 335 190 396T172 521Q172 585 192 649T251 767L125 910L208 976ZM549 845Q511 845 481 831T429 793T391 739T366 676T352 612T348 554Q348 505 356 447T387 337T449 252T549 218Q610 218 649 252T710 337T741
+446T750 554Q750 593 740 643T707 738T646 814T549 845Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1444" d="M388 648H590L295 1116Q242 1198 217 1253T184 1348L57 1343V1434H585V1366Q499 1366 462 1342T425 1276Q425 1248 438 1215T477 1143Q515 1082 548 1028T616 920T687 812T768 696H772Q808 766
+841 829T906 953T969 1072T1034 1194Q1041 1209 1051 1229T1075 1271T1102 1313T1132 1350L970 1343V1434H1388V1366Q1337 1363 1297 1346T1222 1297T1155 1216T1087 1102L845 645H1094V557L827 555L826 425L1094 424V336L826 334Q826 244 827 244Q827 134 821
+82L991 90V0H510V68Q558 69 586 84T628 123T645 182T649 257V332H388V426H650V553H388V648Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="498" d="M325 1556L317 789H178L172 1556H325ZM325 207L317 -555H178L172 207H325Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1092" d="M236 698Q236 624 263 568T335 468T438 387T557 316T679 245T790 165Q825 210 843 269T861 385Q861 458 834 514T761 614T658 694T539 765T417 836T306 916Q271 870 254 813T236 698ZM170
+-205Q170 -185 176 -166T195 -133T224 -109T262 -100Q285 -100 300 -108T326 -130T340 -159T344 -192Q344 -203 338 -222T321 -255Q323 -281 340 -304T386 -347T450 -377T527 -388Q597 -388 645 -367T723 -314T766 -244T779 -172Q779 -114 749 -68T670 19T557 96T429
+171T300 253T188 350T108 470T78 622Q78 665 90 710T125 799T182 884T259 962Q220 1007 197 1066T173 1192Q173 1227 181 1268T207 1349T254 1426T327 1493T427 1539T558 1556Q640 1556 707 1534T823 1475T897 1394T924 1302Q924 1283 919 1266T902 1236T876 1215T839
+1207Q813 1207 797 1215T772 1236T758 1263T753 1291Q753 1303 758 1325T778 1360Q768 1385 748 1407T701 1444T639 1469T566 1478Q495 1478 447 1456T370 1401T327 1328T314 1255Q314 1197 344 1151T423 1064T536 987T665 912T794 830T906 733T986 613T1016 461Q1016
+417 1004 372T969 282T912 197T835 119Q873 74 896 19T920 -109Q920 -142 912 -181T885 -260T837 -337T764 -403T665 -449T535 -467Q445 -467 377 -444T263 -383T194 -299T170 -205Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="793" d="M327 1369Q327 1344 319 1322T296 1284T264 1258T225 1248Q204 1248 186 1257T153 1283T131 1322T123 1369Q123 1394 131 1417T154 1456T187 1483T226 1493Q248 1493 266 1483T298 1457T319
+1417T327 1369ZM669 1369Q669 1344 661 1322T638 1284T606 1258T567 1248Q546 1248 528 1257T495 1283T473 1322T465 1369Q465 1394 473 1417T496 1456T529 1483T568 1493Q590 1493 608 1483T640 1457T661 1417T669 1369Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1796" d="M90 713Q90 826 117 931T195 1127T318 1294T481 1423T677 1506T901 1536Q1020 1536 1126 1507T1322 1423T1484 1294T1606 1128T1683 931T1710 713Q1710 601 1681 497T1600 303T1473 138T1309
+10T1114 -72T897 -102Q715 -102 566 -41T312 129T148 387T90 713ZM228 713Q228 619 249 530T310 361T408 215T542 101T707 27T903 0Q1005 0 1094 26T1258 101T1392 215T1491 360T1553 529T1575 713Q1575 808 1553 898T1490 1069T1389 1216T1254 1333T1088 1409T897
+1436Q797 1436 709 1409T546 1333T412 1217T312 1069T250 899T228 713ZM924 1116Q865 1116 808 1092T706 1019T634 899T606 733Q606 648 632 576T707 451T821 368T969 338Q1003 338 1042 348T1121 378T1198 426T1264 489L1325 418Q1280 356 1226 316T1116 252T1007
+219T910 209Q803 209 713 247T556 353T452 512T414 709Q414 769 428 831T471 950T541 1058T639 1146T764 1205T916 1227Q991 1227 1060 1204T1183 1143L1176 1217H1278V872H1196Q1188 939 1165 985T1105 1061T1023 1103T924 1116Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="838" d="M511 1102Q465 1102 420 1093T338 1066T279 1020T256 954Q256 921 271 902T303 874T335 866T350 865Q392 865 432 885T508 941L511 1102ZM144 1278Q144 1313 164 1347T219 1407T303 1450T410
+1467Q521 1467 580 1408T639 1222L637 994Q636 930 651 901T695 871Q708 871 731 888L754 849Q745 837 731 826T698 805T661 789T623 783Q596 783 577 790T545 810T525 838T513 870Q475 828 426 804T312 779Q212 779 162 822T111 931Q111 993 148 1037T244 1110T374
+1152T512 1166V1236Q512 1267 509 1296T493 1348T454 1384T382 1398Q363 1398 344 1393T307 1377T278 1352T259 1320Q276 1300 276 1270Q276 1260 273 1249T261 1229T241 1213T209 1206Q179 1206 162 1227T144 1278Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1085" d="M65 540V548L626 1123L689 1058L286 540V536L685 50L620 -15L65 540ZM501 546V552L907 951L972 890L724 558V554L968 218L902 157L501 546Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1212" d="M150 705L1062 700V322H957L950 581L150 578V705Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="1001" d="M137 727H864V592L137 584V727Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1798" d="M90 713Q90 826 117 931T195 1128T318 1295T480 1423T677 1506T901 1536Q1021 1536 1127 1507T1324 1424T1485 1295T1607 1129T1683 932T1710 713Q1710 600 1682 496T1601 301T1474 136T1310
+9T1116 -73T897 -102Q714 -102 566 -42T311 127T148 385T90 713ZM230 713Q230 618 250 529T311 360T409 216T541 103T707 29T903 2Q1006 2 1095 28T1259 102T1392 215T1491 360T1553 528T1575 713Q1575 808 1553 898T1490 1069T1389 1217T1254 1333T1089 1409T897
+1436Q796 1436 708 1409T545 1334T413 1218T314 1070T252 899T230 713ZM764 461Q764 426 763 401T760 356L862 360V279H514V348Q551 349 571 361T601 394T611 446T613 512V1047Q613 1074 613 1099T617 1145L514 1135V1221Q546 1222 586 1223T670 1226T757 1229T840
+1230Q953 1230 1035 1210T1169 1154T1247 1068T1272 958Q1272 924 1260 884T1219 806T1143 735T1023 682V680Q1040 672 1062 653T1110 596Q1168 509 1206 459T1271 382T1319 348T1362 340V270H1184Q1153 278 1117 320T1030 434Q985 497 946 556T876 661Q861 658
+833 658Q813 658 794 659T764 662V461ZM764 748H766Q783 746 801 745T837 744Q859 744 888 747T948 760T1008 784T1061 822T1098 877T1112 952Q1112 998 1093 1033T1043 1093T970 1129T886 1142Q838 1142 813 1130T777 1095T765 1040T764 969V748Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="727" d="M92 1434H635V1319L92 1311V1434Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="829" d="M225 1148Q225 1106 238 1067T277 998T337 951T415 933Q457 933 492 950T552 998T590 1067T604 1148Q604 1190 591 1229T552 1298T492 1347T413 1365Q371 1365 337 1347T277 1299T239 1229T225
+1148ZM96 1148Q96 1215 121 1273T191 1374T293 1442T417 1467Q489 1467 547 1442T647 1374T711 1273T733 1148Q733 1081 707 1023T637 922T535 853T411 828Q339 828 281 853T182 921T118 1023T96 1148Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1180" d="M133 737L522 735V1057H654V735L1045 733V618L654 616V276H522V615L133 614V737ZM1045 6H133V112L1045 121V6Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="788" d="M239 1311Q258 1294 258 1264Q258 1255 255 1245T245 1225T226 1210T197 1204Q171 1204 155 1223T139 1270Q139 1300 155 1334T204 1398T283 1447T393 1467Q441 1467 485 1454T563 1414T618
+1346T639 1248Q639 1218 631 1186T598 1115T525 1032T399 929Q262 829 237 742L410 738Q431 737 451 737T488 736Q515 736 537 739T574 751T597 776T606 820H649V627H125Q125 691 144 743T197 842T273 928T365 1008Q408 1043 433 1076T473 1140T491 1198T496 1246Q496
+1312 463 1352T367 1393Q342 1393 321 1386T282 1368T254 1342T239 1311Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="758" d="M111 808Q111 840 128 861T178 883Q194 883 205 877T224 862T235 840T238 817Q238 806 234 794T222 773Q225 752 237 738T267 714T307 700T352 695Q392 695 422 710T471 749T501 804T511
+867Q511 892 505 922T482 980T428 1026T343 1044Q317 1044 286 1042V1107H310Q369 1107 403 1124T454 1165T475 1214T480 1256Q480 1281 474 1306T452 1352T413 1386T352 1399Q299 1399 269 1373T232 1317Q250 1299 250 1272Q250 1263 247 1253T237 1233T218 1218T189
+1212Q162 1212 147 1232T132 1279Q132 1307 147 1339T193 1400T268 1448T374 1467Q427 1467 470 1453T544 1413T592 1350T609 1268Q609 1242 598 1215T566 1162T512 1117T436 1086V1084Q489 1079 529 1060T596 1012T636 946T650 867Q650 817 631 773T575 696T485
+644T364 625Q302 625 255 641T176 683T128 742T111 808Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="516" d="M149 1188L92 1235L264 1511Q287 1544 309 1555T348 1567T380 1561T406 1541T419 1517T423 1493Q423 1482 420 1472T414 1455Q405 1432 379 1405L149 1188Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1257" d="M1006 1024L1004 289Q1004 236 1010 200T1029 141T1058 108T1096 98Q1115 98 1134 105T1182 133L1205 102Q1192 84 1171 64T1124 27T1065 -1T998 -12Q960 -12 934 -2T888 27T858 68T841 115Q812
+85 776 58T698 11T613 -21T525 -33Q447 -33 391 11T293 133Q304 21 315 -57T338 -188T359 -276T376 -334T387 -377T392 -421Q392 -441 386 -461T369 -496T340 -522T298 -532Q241 -532 217 -485T193 -355L195 1024H367V483Q367 396 376 321T409 190T476 104T586
+72Q624 72 659 83T727 115T785 161T832 218V1024H1006Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1026" d="M823 1434L819 -522H676L680 1350L501 1344L496 -522H352L357 837Q306 841 255 858T162 911T94 1002T68 1136Q68 1209 93 1265T159 1358T252 1415T359 1434H823Z" />
+<glyph unicode="&#xb7;" glyph-name="middot" horiz-adv-x="512" d="M376 671Q376 644 366 620T340 578T302 550T256 540Q232 540 211 550T173 578T147 620T137 671Q137 699 147 723T173 766T212 794T258 805Q283 805 304 795T342 766T367 724T376 671Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="598" d="M369 -116Q432 -116 469 -152T506 -251Q506 -292 486 -325T433 -383T358 -427T271 -459T183 -480T104 -494L92 -425Q144 -416 189 -402T267 -368T319 -324T338 -269Q338 -236 319 -222T273
+-208Q250 -208 225 -216T180 -238L111 -204L170 16H285L229 -152Q258 -134 296 -125T369 -116Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="580" d="M155 674Q186 674 206 686T237 718T252 765T256 825V1319H251L124 1243L92 1301L320 1467H371L373 762Q373 739 372 719T369 682L473 686V616H155V674V674Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="858" d="M425 1398Q387 1398 352 1377T294 1322T259 1243T247 1144Q247 1086 258 1033T293 940T352 875T437 851Q482 851 515 870T572 924T606 1003T618 1101Q618 1159 607 1213T573 1308T515
+1373T425 1398ZM434 1467Q505 1467 564 1443T667 1374T736 1269T761 1133Q761 1055 737 990T668 878T563 805T429 779Q358 779 298 803T193 871T124 975T98 1107Q98 1183 123 1249T194 1363T300 1439T434 1467Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1083" d="M1020 568V560L459 -15L396 50L799 568V572L400 1058L465 1123L1020 568ZM584 562V556L178 157L113 218L361 550V554L117 890L183 951L584 562Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1563" d="M1278 1402L309 -33L232 20L1188 1467L1278 1402ZM156 674Q187 674 207 686T238 718T253 765T257 825V1319H252L125 1243L93 1301L321 1467H372L374 762Q374 739 373 719T370 682L474 686V616H156V674V674ZM1460
+0H1159V59Q1190 60 1210 70T1241 98T1256 140T1260 195V215H913V276L1321 842H1375V289H1491V215H1376V66L1460 70V0ZM1009 296L1259 292V643H1257L1009 296Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1642" d="M1276 1402L307 -33L230 20L1186 1467L1276 1402ZM410 674Q441 674 461 686T492 718T507 765T511 825V1319H506L379 1243L347 1301L575 1467H626L628 762Q628 739 627 719T624 682L728 686V616H410V674V674ZM1140
+684Q1159 667 1159 637Q1159 628 1156 618T1146 598T1127 583T1098 577Q1072 577 1056 596T1040 643Q1040 673 1056 707T1105 771T1184 820T1294 840Q1342 840 1386 827T1464 787T1519 719T1540 621Q1540 591 1532 559T1499 488T1426 405T1300 302Q1163 202 1138
+115L1311 111Q1332 110 1352 110T1389 109Q1416 109 1438 112T1475 124T1498 149T1507 193H1550V0H1026Q1026 64 1045 116T1098 215T1174 301T1266 381Q1309 416 1334 449T1374 513T1392 571T1397 619Q1397 685 1364 725T1268 766Q1243 766 1222 759T1183 741T1155
+715T1140 684Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1649" d="M1396 1402L427 -33L350 20L1306 1467L1396 1402ZM328 808Q328 840 345 861T395 883Q411 883 422 877T441 862T452 840T455 817Q455 806 451 794T439 773Q442 752 454 738T484 714T524
+700T569 695Q609 695 639 710T688 749T718 804T728 867Q728 892 722 922T699 980T645 1026T560 1044Q534 1044 503 1042V1107H527Q586 1107 620 1124T671 1165T692 1214T697 1256Q697 1281 691 1306T669 1352T630 1386T569 1399Q516 1399 486 1373T449 1317Q467
+1299 467 1272Q467 1263 464 1253T454 1233T435 1218T406 1212Q379 1212 364 1232T349 1279Q349 1307 364 1339T410 1400T485 1448T591 1467Q644 1467 687 1453T761 1413T809 1350T826 1268Q826 1242 815 1215T783 1162T729 1117T653 1086V1084Q706 1079 746 1060T813
+1012T853 946T867 867Q867 817 848 773T792 696T702 644T581 625Q519 625 472 641T393 683T345 742T328 808ZM1582 0H1281V59Q1312 60 1332 70T1363 98T1378 140T1382 195V215H1035V276L1443 842H1497V289H1613V215H1498V66L1582 70V0ZM1131 296L1381 292V643H1379L1131
+296Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="956" d="M737 -218Q726 -200 720 -180T714 -138Q714 -125 719 -109T736 -80T765 -58T808 -50Q852 -52 873 -82T895 -157Q895 -202 867 -252T785 -345T655 -415T481 -443Q363 -443 282 -411T153
+-328T85 -213T69 -85Q73 -16 108 43T195 153T304 248T411 332T493 407T526 477Q526 489 522 501T507 523T481 539T440 545Q426 545 405 542T364 530L340 602Q372 621 417 630T501 639Q531 639 560 632T613 608T650 566T665 502Q665 456 636 416T563 336T468 254T371
+161T296 49T262 -91Q261 -146 272 -195T313 -282T391 -341T512 -363Q556 -363 595 -350T665 -315T714 -268T737 -218ZM378 936Q378 961 386 983T408 1021T443 1047T487 1057Q508 1057 528 1049T563 1025T588 987T598 936Q598 911 589 889T564 851T528 825T487 815Q464
+815 444 824T410 850T387 889T378 936Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1282" d="M262 223Q254 199 248 180T236 145T224 114T211 82L371 90V0H-12V68Q34 68 63 86T112 139T148 220T186 324L608 1473H657L1114 307Q1123 286 1132 257T1150 196T1163 135T1167 82L1307 90V0H838V68Q895
+69 922 89T956 138T956 200T938 262L866 454L333 442Q311 379 294 327T262 223ZM510 942Q463 810 428 710T364 530H838L692 922L600 1174H596L510 942ZM336 1739Q301 1760 287 1781T270 1820T272 1851T282 1872Q285 1876 295 1884T323 1896T365 1894T420 1862L678
+1616L633 1556L336 1739Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1282" d="M262 223Q254 199 248 180T236 145T224 114T211 82L371 90V0H-12V68Q34 68 63 86T112 139T148 220T186 324L608 1473H657L1114 307Q1123 286 1132 257T1150 196T1163 135T1167 82L1307 90V0H838V68Q895
+69 922 89T956 138T956 200T938 262L866 454L333 442Q311 379 294 327T262 223ZM510 942Q463 810 428 710T364 530H838L692 922L600 1174H596L510 942ZM630 1556L585 1616L843 1862Q873 1888 897 1894T939 1897T967 1885T981 1872Q986 1865 991 1852T993 1820T976
+1781T927 1739L630 1556Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1282" d="M262 223Q254 199 248 180T236 145T224 114T211 82L371 90V0H-12V68Q34 68 63 86T112 139T148 220T186 324L608 1473H657L1114 307Q1123 286 1132 257T1150 196T1163 135T1167 82L1307
+90V0H838V68Q895 69 922 89T956 138T956 200T938 262L866 454L333 442Q311 379 294 327T262 223ZM510 942Q463 810 428 710T364 530H838L692 922L600 1174H596L510 942ZM634 1907H639L1015 1618L970 1548L630 1729H626L278 1550L237 1616L634 1907Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1282" d="M262 223Q254 199 248 180T236 145T224 114T211 82L371 90V0H-12V68Q34 68 63 86T112 139T148 220T186 324L608 1473H657L1114 307Q1123 286 1132 257T1150 196T1163 135T1167 82L1307 90V0H838V68Q895
+69 922 89T956 138T956 200T938 262L866 454L333 442Q311 379 294 327T262 223ZM510 942Q463 810 428 710T364 530H838L692 922L600 1174H596L510 942ZM448 1737Q404 1737 370 1704T297 1614L227 1653Q245 1698 271 1736T328 1802T392 1846T459 1864Q499 1864 531
+1854T591 1827T641 1792T688 1757T734 1731T786 1720Q813 1720 837 1731T881 1760T919 1802T952 1853L1018 1821Q996 1758 968 1714T908 1643T842 1604T774 1591Q734 1591 702 1602T641 1629T589 1664T541 1699T495 1726T448 1737Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1282" d="M262 223Q254 199 248 180T236 145T224 114T211 82L371 90V0H-12V68Q34 68 63 86T112 139T148 220T186 324L608 1473H657L1114 307Q1123 286 1132 257T1150 196T1163 135T1167 82L1307 90V0H838V68Q895
+69 922 89T956 138T956 200T938 262L866 454L333 442Q311 379 294 327T262 223ZM510 942Q463 810 428 710T364 530H838L692 922L600 1174H596L510 942ZM932 1718Q932 1691 923 1668T899 1627T863 1599T820 1589Q797 1589 777 1599T742 1626T718 1667T709 1718Q709
+1745 718 1769T743 1811T779 1839T822 1850Q845 1850 865 1840T900 1811T923 1769T932 1718ZM564 1718Q564 1691 555 1668T531 1627T495 1599T452 1589Q429 1589 409 1599T374 1626T350 1667T341 1718Q341 1745 350 1769T375 1811T411 1839T454 1850Q477 1850 497
+1840T532 1811T555 1769T564 1718Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1286" d="M264 223Q256 199 250 180T238 145T226 114T213 82L373 90V0H-10V68Q36 68 65 86T114 139T150 220T188 324L610 1473H659L1116 307Q1125 286 1134 257T1152 196T1165 135T1169 82L1309 90V0H840V68Q897
+69 924 89T958 138T958 200T940 262L868 454L335 442Q313 379 296 327T264 223ZM512 942Q465 810 430 710T366 530H840L694 922L602 1174H598L512 942ZM622 1847Q574 1844 545 1805T516 1700Q516 1626 548 1581T636 1536Q657 1536 677 1545T712 1573T736 1616T745
+1675Q745 1760 713 1803T629 1847H622ZM629 1917Q670 1917 711 1905T785 1866T840 1799T864 1704Q864 1648 845 1604T793 1529T719 1481T633 1464Q589 1464 547 1477T471 1517T418 1587T397 1687Q397 1739 417 1781T471 1854T545 1900T629 1917Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1944" d="M1496 530Q1496 597 1483 634T1440 688T1366 708T1256 711L1102 703Q1102 185 1101 147T1096 82L1499 76Q1564 76 1616 93T1705 148T1762 247T1782 399H1852L1840 0H783V74H799Q839 77 863 90T901
+126T919 184T924 266V453L425 442L184 82L340 90V0H-43V68Q-2 68 31 86T92 131T143 192T926 1353L742 1343V1434H1769L1778 1075H1711Q1711 1163 1691 1219T1635 1307T1551 1350T1447 1362H1434L1258 1358Q1200 1356 1169 1341T1122 1297T1105 1222T1102 1114V784H1254Q1318
+784 1364 789T1439 813T1482 870T1496 977H1563V530H1496ZM924 530V1191L483 530H924Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1434" d="M619 -454Q671 -445 716 -429T796 -392T849 -345T869 -288Q869 -253 850 -238T803 -223Q781 -223 757 -230T713 -251L640 -217L688 -26Q555 -7 446 55T259 213T139 431T96 694Q96 790 115
+885T174 1065T273 1224T411 1352T589 1436T807 1467Q924 1467 1024 1436T1220 1342L1210 1452H1321V977H1247Q1236 1073 1202 1148T1113 1276T984 1355T821 1383Q712 1383 617 1337T450 1205T338 997T297 725Q297 580 340 461T457 255T632 122T846 74Q913 74 979
+89T1107 134T1223 208T1319 309L1372 266Q1307 176 1234 119T1085 28T938 -18T801 -33L762 -157Q777 -148 795 -142T831 -132T867 -126T896 -124Q935 -124 964 -135T1013 -166T1043 -212T1053 -270Q1053 -312 1032 -346T975 -407T895 -456T803 -492T711 -517T631
+-532L619 -454Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1274" d="M433 236Q433 179 432 141T426 76L818 82Q885 83 939 98T1031 150T1091 247T1112 399H1182L1170 0H113V68Q162 69 190 83T233 123T250 182T254 259V319V1204Q254 1246 255 1283T261 1352L113
+1343V1434H1098L1108 1075H1041Q1041 1163 1021 1219T965 1307T881 1350T777 1362L588 1359Q531 1356 500 1341T453 1297T436 1222T433 1114V784H817L802 961H893V530H826Q826 590 816 625T783 680T726 706T642 712Q628 712 613 712T433 705V236ZM410 1739Q375
+1760 361 1781T344 1820T346 1851T356 1872Q359 1876 369 1884T397 1896T439 1894T494 1862L752 1616L707 1556L410 1739Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1274" d="M433 236Q433 179 432 141T426 76L818 82Q885 83 939 98T1031 150T1091 247T1112 399H1182L1170 0H113V68Q162 69 190 83T233 123T250 182T254 259V319V1204Q254 1246 255 1283T261 1352L113
+1343V1434H1098L1108 1075H1041Q1041 1163 1021 1219T965 1307T881 1350T777 1362L588 1359Q531 1356 500 1341T453 1297T436 1222T433 1114V784H817L802 961H893V530H826Q826 590 816 625T783 680T726 706T642 712Q628 712 613 712T433 705V236ZM592 1556L547
+1616L805 1862Q835 1888 859 1894T901 1897T929 1885T943 1872Q948 1865 953 1852T955 1820T938 1781T889 1739L592 1556Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1274" d="M433 236Q433 179 432 141T426 76L818 82Q885 83 939 98T1031 150T1091 247T1112 399H1182L1170 0H113V68Q162 69 190 83T233 123T250 182T254 259V319V1204Q254 1246 255 1283T261 1352L113
+1343V1434H1098L1108 1075H1041Q1041 1163 1021 1219T965 1307T881 1350T777 1362L588 1359Q531 1356 500 1341T453 1297T436 1222T433 1114V784H817L802 961H893V530H826Q826 590 816 625T783 680T726 706T642 712Q628 712 613 712T433 705V236ZM678 1907H683L1059
+1618L1014 1548L674 1729H670L322 1550L281 1616L678 1907Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1274" d="M433 236Q433 179 432 141T426 76L818 82Q885 83 939 98T1031 150T1091 247T1112 399H1182L1170 0H113V68Q162 69 190 83T233 123T250 182T254 259V319V1204Q254 1246 255 1283T261 1352L113
+1343V1434H1098L1108 1075H1041Q1041 1163 1021 1219T965 1307T881 1350T777 1362L588 1359Q531 1356 500 1341T453 1297T436 1222T433 1114V784H817L802 961H893V530H826Q826 590 816 625T783 680T726 706T642 712Q628 712 613 712T433 705V236ZM966 1718Q966
+1691 957 1668T933 1627T897 1599T854 1589Q831 1589 811 1599T776 1626T752 1667T743 1718Q743 1745 752 1769T777 1811T813 1839T856 1850Q879 1850 899 1840T934 1811T957 1769T966 1718ZM598 1718Q598 1691 589 1668T565 1627T529 1599T486 1589Q463 1589 443
+1599T408 1626T384 1667T375 1718Q375 1745 384 1769T409 1811T445 1839T488 1850Q511 1850 531 1840T566 1811T589 1769T598 1718Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="684" d="M509 1204Q509 1246 510 1283T516 1352L368 1343V1434H829V1366Q771 1364 742 1345T701 1292T689 1214T688 1114V244Q688 188 687 148T681 82L829 90V0H368V68Q426 70 455 89T496 141T508 219T509
+319V1204ZM358 1739Q323 1760 309 1781T292 1820T294 1851T304 1872Q307 1876 317 1884T345 1896T387 1894T442 1862L700 1616L655 1556L358 1739Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="684" d="M254 1204Q254 1246 255 1283T261 1352L113 1343V1434H574V1366Q516 1364 487 1345T446 1292T434 1214T433 1114V244Q433 188 432 148T426 82L574 90V0H113V68Q171 70 200 89T241 141T253 219T254
+319V1204ZM246 1556L201 1616L459 1862Q489 1888 513 1894T555 1897T583 1885T597 1872Q602 1865 607 1852T609 1820T592 1781T543 1739L246 1556Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="686" d="M359 1907H363L719 1618L674 1548L355 1729H351L23 1550L-18 1616L359 1907ZM253 1204Q253 1246 254 1283T260 1352L112 1343V1434H573V1366Q515 1364 486 1345T445 1292T433 1214T432
+1114V244Q432 188 431 148T425 82L573 90V0H112V68Q170 70 199 89T240 141T252 219T253 319V1204Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="684" d="M253 1204Q253 1246 254 1283T260 1352L112 1343V1434H573V1366Q515 1364 486 1345T445 1292T433 1214T432 1114V244Q432 188 431 148T425 82L573 90V0H112V68Q170 70 199 89T240 141T252
+219T253 319V1204ZM635 1714Q635 1688 626 1665T601 1623T565 1596T523 1586Q501 1586 481 1595T445 1623T421 1664T412 1714Q412 1742 421 1766T446 1808T481 1836T525 1846Q548 1846 568 1836T603 1808T626 1766T635 1714ZM309 1714Q309 1688 300 1665T275 1623T239
+1596T197 1586Q175 1586 155 1595T119 1623T95 1664T86 1714Q86 1742 95 1766T120 1808T155 1836T199 1846Q222 1846 242 1836T277 1808T300 1766T309 1714Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1528" d="M39 772H256V1204Q256 1246 257 1283T263 1352L115 1343V1434L598 1436Q784 1436 937 1393T1201 1261T1373 1036T1434 715Q1434 621 1412 532T1346 363T1237 217T1085 102T890 27T654 0H115V68Q164
+69 192 83T235 123T252 182T256 259V668L39 666V772ZM684 772V674L435 670V242Q435 185 434 147T428 82Q473 80 512 79T580 78H648Q780 78 888 127T1072 262T1191 467T1233 723Q1233 868 1194 985T1073 1186T869 1315T576 1360Q526 1360 498 1347T456 1310T439
+1251T435 1174V772H684Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1563" d="M1332 -33H1233L344 1162H341L348 285Q348 232 348 182T344 82L492 90V0H117V68Q164 68 191 84T231 125T248 177T252 229L254 1352L117 1343V1434H361L1233 267H1235L1237 1204Q1237 1290 1243
+1352L1096 1343V1434H1473V1366Q1415 1364 1387 1345T1347 1292T1335 1214T1336 1114L1332 -33ZM619 1737Q575 1737 541 1704T468 1614L398 1653Q416 1698 442 1736T499 1802T563 1846T630 1864Q670 1864 702 1854T762 1827T812 1792T859 1757T905 1731T957 1720Q984
+1720 1008 1731T1052 1760T1090 1802T1123 1853L1189 1821Q1167 1758 1139 1714T1079 1643T1013 1604T945 1591Q905 1591 873 1602T812 1629T760 1664T712 1699T666 1726T619 1737Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1626" d="M295 754Q295 678 309 597T351 437T423 289T526 166T660 82T827 51Q911 51 981 76T1107 146T1205 251T1275 381T1317 530T1332 678Q1332 752 1316 842T1269 1010T1193 1157T1089 1276T958 1356T800
+1385Q674 1385 579 1329T421 1183T327 981T295 754ZM94 717Q94 803 113 892T171 1064T269 1221T407 1349T586 1435T807 1467Q932 1467 1034 1435T1218 1349T1358 1221T1457 1064T1516 891T1536 717Q1536 632 1517 544T1459 372T1361 215T1223 86T1044 -1T823 -33Q693
+-33 589 -2T403 82T264 208T168 364T112 537T94 717ZM606 1739Q571 1760 557 1781T540 1820T542 1851T552 1872Q555 1876 565 1884T593 1896T635 1894T690 1862L948 1616L903 1556L606 1739Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1626" d="M295 754Q295 678 309 597T351 437T423 289T526 166T660 82T827 51Q911 51 981 76T1107 146T1205 251T1275 381T1317 530T1332 678Q1332 752 1316 842T1269 1010T1193 1157T1089 1276T958 1356T800
+1385Q674 1385 579 1329T421 1183T327 981T295 754ZM94 717Q94 803 113 892T171 1064T269 1221T407 1349T586 1435T807 1467Q932 1467 1034 1435T1218 1349T1358 1221T1457 1064T1516 891T1536 717Q1536 632 1517 544T1459 372T1361 215T1223 86T1044 -1T823 -33Q693
+-33 589 -2T403 82T264 208T168 364T112 537T94 717ZM687 1556L642 1616L900 1862Q930 1888 954 1894T996 1897T1024 1885T1038 1872Q1043 1865 1048 1852T1050 1820T1033 1781T984 1739L687 1556Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1626" d="M295 754Q295 678 309 597T351 437T423 289T526 166T660 82T827 51Q911 51 981 76T1107 146T1205 251T1275 381T1317 530T1332 678Q1332 752 1316 842T1269 1010T1193 1157T1089 1276T958
+1356T800 1385Q674 1385 579 1329T421 1183T327 981T295 754ZM94 717Q94 803 113 892T171 1064T269 1221T407 1349T586 1435T807 1467Q932 1467 1034 1435T1218 1349T1358 1221T1457 1064T1516 891T1536 717Q1536 632 1517 544T1459 372T1361 215T1223 86T1044
+-1T823 -33Q693 -33 589 -2T403 82T264 208T168 364T112 537T94 717ZM829 1907H834L1210 1618L1165 1548L825 1729H821L473 1550L432 1616L829 1907Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1626" d="M295 754Q295 678 309 597T351 437T423 289T526 166T660 82T827 51Q911 51 981 76T1107 146T1205 251T1275 381T1317 530T1332 678Q1332 752 1316 842T1269 1010T1193 1157T1089 1276T958 1356T800
+1385Q674 1385 579 1329T421 1183T327 981T295 754ZM94 717Q94 803 113 892T171 1064T269 1221T407 1349T586 1435T807 1467Q932 1467 1034 1435T1218 1349T1358 1221T1457 1064T1516 891T1536 717Q1536 632 1517 544T1459 372T1361 215T1223 86T1044 -1T823 -33Q693
+-33 589 -2T403 82T264 208T168 364T112 537T94 717ZM653 1737Q609 1737 575 1704T502 1614L432 1653Q450 1698 476 1736T533 1802T597 1846T664 1864Q704 1864 736 1854T796 1827T846 1792T893 1757T939 1731T991 1720Q1018 1720 1042 1731T1086 1760T1124 1802T1157
+1853L1223 1821Q1201 1758 1173 1714T1113 1643T1047 1604T979 1591Q939 1591 907 1602T846 1629T794 1664T746 1699T700 1726T653 1737Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1626" d="M295 754Q295 678 309 597T351 437T423 289T526 166T660 82T827 51Q911 51 981 76T1107 146T1205 251T1275 381T1317 530T1332 678Q1332 752 1316 842T1269 1010T1193 1157T1089 1276T958
+1356T800 1385Q674 1385 579 1329T421 1183T327 981T295 754ZM94 717Q94 803 113 892T171 1064T269 1221T407 1349T586 1435T807 1467Q932 1467 1034 1435T1218 1349T1358 1221T1457 1064T1516 891T1536 717Q1536 632 1517 544T1459 372T1361 215T1223 86T1044
+-1T823 -33Q693 -33 589 -2T403 82T264 208T168 364T112 537T94 717ZM1108 1718Q1108 1691 1099 1668T1075 1627T1039 1599T996 1589Q973 1589 953 1599T918 1626T894 1667T885 1718Q885 1745 894 1769T919 1811T955 1839T998 1850Q1021 1850 1041 1840T1076 1811T1099
+1769T1108 1718ZM740 1718Q740 1691 731 1668T707 1627T671 1599T628 1589Q605 1589 585 1599T550 1626T526 1667T517 1718Q517 1745 526 1769T551 1811T587 1839T630 1850Q653 1850 673 1840T708 1811T731 1769T740 1718Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1130" d="M111 279L474 635L115 991L210 1083L567 727L941 1094L1023 1006L654 641L1023 274L931 182L561 549L199 190L111 279Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1626" d="M92 717Q92 803 111 892T169 1064T267 1221T405 1349T584 1435T805 1467Q930 1467 1032 1435Q1099 1414 1157 1383L1251 1546L1362 1477L1265 1312Q1315 1271 1356 1220Q1416 1147 1455 1064T1514
+891T1534 717Q1534 632 1515 544T1457 372T1359 215T1221 86T1042 -1T821 -33Q691 -33 586 -2Q545 10 507 26L395 -164L297 -102L403 81Q402 82 401 82Q320 136 262 208T166 364T110 538T92 717ZM293 754Q293 678 307 597T349 437T421 288Q447 246 478 211L1092
+1271L1084 1278Q1025 1328 953 1356T798 1385Q672 1385 577 1329T419 1183T325 981T293 754ZM1189 1161Q1185 1166 1182 1171L568 130Q610 102 658 82Q733 51 825 51Q909 51 979 76T1105 146T1203 251T1273 381T1316 527T1330 678Q1330 764 1314 850T1266 1014T1189
+1161Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1540" d="M1332 639Q1331 505 1303 384T1210 170T1040 22T781 -33Q617 -33 506 10T328 142T231 370T202 698V1114Q202 1141 202 1174T204 1240T207 1302T210 1352L63 1346V1434H523V1366Q471 1366 443
+1349T401 1306T385 1253T382 1204V688Q382 612 388 538T410 396T456 272T533 173T647 108T806 84Q917 84 996 124T1127 236T1203 409T1230 629L1238 1204Q1238 1290 1244 1352L1097 1343V1434H1478V1366Q1420 1364 1391 1345T1349 1292T1337 1214T1336 1114L1332
+639ZM574 1739Q539 1760 525 1781T508 1820T510 1851T520 1872Q523 1876 533 1884T561 1896T603 1894T658 1862L916 1616L871 1556L574 1739Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1540" d="M1332 639Q1331 505 1303 384T1210 170T1040 22T781 -33Q617 -33 506 10T328 142T231 370T202 698V1114Q202 1141 202 1174T204 1240T207 1302T210 1352L63 1346V1434H523V1366Q471 1366 443
+1349T401 1306T385 1253T382 1204V688Q382 612 388 538T410 396T456 272T533 173T647 108T806 84Q917 84 996 124T1127 236T1203 409T1230 629L1238 1204Q1238 1290 1244 1352L1097 1343V1434H1478V1366Q1420 1364 1391 1345T1349 1292T1337 1214T1336 1114L1332
+639ZM747 1556L702 1616L960 1862Q990 1888 1014 1894T1056 1897T1084 1885T1098 1872Q1103 1865 1108 1852T1110 1820T1093 1781T1044 1739L747 1556Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1540" d="M1332 639Q1331 505 1303 384T1210 170T1040 22T781 -33Q617 -33 506 10T328 142T231 370T202 698V1114Q202 1141 202 1174T204 1240T207 1302T210 1352L63 1346V1434H523V1366Q471 1366
+443 1349T401 1306T385 1253T382 1204V688Q382 612 388 538T410 396T456 272T533 173T647 108T806 84Q917 84 996 124T1127 236T1203 409T1230 629L1238 1204Q1238 1290 1244 1352L1097 1343V1434H1478V1366Q1420 1364 1391 1345T1349 1292T1337 1214T1336 1114L1332
+639ZM807 1907H812L1188 1618L1143 1548L803 1729H799L451 1550L410 1616L807 1907Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1540" d="M1332 639Q1331 505 1303 384T1210 170T1040 22T781 -33Q617 -33 506 10T328 142T231 370T202 698V1114Q202 1141 202 1174T204 1240T207 1302T210 1352L63 1346V1434H523V1366Q471 1366
+443 1349T401 1306T385 1253T382 1204V688Q382 612 388 538T410 396T456 272T533 173T647 108T806 84Q917 84 996 124T1127 236T1203 409T1230 629L1238 1204Q1238 1290 1244 1352L1097 1343V1434H1478V1366Q1420 1364 1391 1345T1349 1292T1337 1214T1336 1114L1332
+639ZM1103 1718Q1103 1691 1094 1668T1070 1627T1034 1599T991 1589Q968 1589 948 1599T913 1626T889 1667T880 1718Q880 1745 889 1769T914 1811T950 1839T993 1850Q1016 1850 1036 1840T1071 1811T1094 1769T1103 1718ZM735 1718Q735 1691 726 1668T702 1627T666
+1599T623 1589Q600 1589 580 1599T545 1626T521 1667T512 1718Q512 1745 521 1769T546 1811T582 1839T625 1850Q648 1850 668 1840T703 1811T726 1769T735 1718Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1298" d="M581 553L226 1116Q173 1198 148 1253T115 1348L-12 1343V1434H516V1366Q445 1366 408 1350T361 1304T363 1233T408 1143Q446 1082 480 1028T548 920T618 812T699 696H703Q932 1132 976 1212T1034
+1313T1063 1350L901 1343V1434H1319V1366Q1268 1363 1228 1346T1153 1297T1086 1216T759 614Q758 515 758 380T758 244Q758 134 752 82L922 90V0H441V68Q498 70 527 90T568 143T580 222T580 319L581 553ZM656 1556L611 1616L869 1862Q899 1888 923 1894T965 1897T993
+1885T1007 1872Q1012 1865 1017 1852T1019 1820T1002 1781T953 1739L656 1556Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1221" d="M254 1204Q254 1246 255 1283T261 1352L113 1343V1434H574V1366Q524 1364 496 1350T454 1311T436 1250Q433 1220 433 1184L543 1186Q846 1186 1007 1086T1169 777Q1169 723 1156 669T1110 565T1025
+473T895 398T720 348T461 330H433V244Q433 187 432 148T426 82L574 90V0H113V68Q162 69 190 83T233 123T250 182T254 259V1204ZM487 1107Q460 1106 433 1104V414Q455 411 473 410Q495 408 518 408Q633 408 718 433T858 506T941 621T969 772Q969 937 866 1022T555
+1108Q517 1108 487 1107Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1395" d="M398 217Q398 176 397 145T389 78L518 84V0H101V61Q147 61 172 79T207 131T219 210T221 311L219 936L51 932V1024H219V1026Q219 1140 250 1237T343 1405T497 1516T712 1556Q750 1556 800
+1549T903 1523T1006 1471T1097 1383T1161 1252T1186 1070Q1186 1050 1185 1030T1180 979Q1155 981 1124 982T1059 984Q1013 984 967 978T884 955T823 907T799 825Q799 779 822 744T883 679T969 625T1068 574T1167 519T1254 455T1315 374T1338 270Q1338 192 1313
+135T1242 41T1132 -15T990 -33Q967 -33 938 -29T876 -17T813 3T754 33L760 -16H662V336H725Q729 272 748 219T800 128T879 68T986 47Q1020 47 1052 57T1110 89T1151 141T1166 213Q1166 258 1144 292T1084 353T999 404T902 451T805 503T720 567T660 650T637 760Q637
+827 660 882T729 976T840 1036T994 1057H1009V1079Q1009 1173 994 1238T953 1346T896 1414T830 1451T770 1466T705 1469Q623 1469 558 1430T459 1323T410 1159T396 938L398 217Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1057" d="M694 501Q647 499 597 493T498 473T406 438T331 388T281 321T265 235Q266 197 279 169T314 122T364 94T424 84Q465 84 501 92T569 115T632 153T694 204V501ZM132 811Q132 862 162 907T246 985T374
+1038T537 1057Q709 1057 790 966T871 677L869 217Q869 185 868 153T861 78L1006 86V0H713Q707 35 704 61T699 116Q630 47 549 7T376 -33Q299 -33 242 -15T146 37T89 114T70 210Q70 273 97 325T171 417T280 487T411 536T553 563T695 571V699Q695 752 689 802T663
+893T599 958T498 982Q465 982 435 977T376 958T324 924T285 874Q300 857 305 837T311 797Q311 785 306 770T291 741T264 719T219 710Q179 710 156 739T132 811ZM328 1405Q302 1432 293 1455Q290 1462 287 1472T284 1493Q284 1506 287 1517T301 1541T326 1560T358
+1567T397 1556T443 1511L615 1235L558 1188L328 1405Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1057" d="M694 501Q647 499 597 493T498 473T406 438T331 388T281 321T265 235Q266 197 279 169T314 122T364 94T424 84Q465 84 501 92T569 115T632 153T694 204V501ZM132 811Q132 862 162 907T246 985T374
+1038T537 1057Q709 1057 790 966T871 677L869 217Q869 185 868 153T861 78L1006 86V0H713Q707 35 704 61T699 116Q630 47 549 7T376 -33Q299 -33 242 -15T146 37T89 114T70 210Q70 273 97 325T171 417T280 487T411 536T553 563T695 571V699Q695 752 689 802T663
+893T599 958T498 982Q465 982 435 977T376 958T324 924T285 874Q300 857 305 837T311 797Q311 785 306 770T291 741T264 719T219 710Q179 710 156 739T132 811ZM453 1188L396 1235L568 1511Q591 1544 613 1555T652 1567T684 1561T710 1541T723 1517T727 1493Q727
+1482 724 1472T718 1455Q709 1432 683 1405L453 1188Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1057" d="M694 501Q647 499 597 493T498 473T406 438T331 388T281 321T265 235Q266 197 279 169T314 122T364 94T424 84Q465 84 501 92T569 115T632 153T694 204V501ZM132 811Q132 862 162 907T246
+985T374 1038T537 1057Q709 1057 790 966T871 677L869 217Q869 185 868 153T861 78L1006 86V0H713Q707 35 704 61T699 116Q630 47 549 7T376 -33Q299 -33 242 -15T146 37T89 114T70 210Q70 273 97 325T171 417T280 487T411 536T553 563T695 571V699Q695 752 689
+802T663 893T599 958T498 982Q465 982 435 977T376 958T324 924T285 874Q300 857 305 837T311 797Q311 785 306 770T291 741T264 719T219 710Q179 710 156 739T132 811ZM513 1593H517L822 1260L767 1194L507 1417H503L238 1208L187 1268L513 1593Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1057" d="M694 501Q647 499 597 493T498 473T406 438T331 388T281 321T265 235Q266 197 279 169T314 122T364 94T424 84Q465 84 501 92T569 115T632 153T694 204V501ZM132 811Q132 862 162 907T246 985T374
+1038T537 1057Q709 1057 790 966T871 677L869 217Q869 185 868 153T861 78L1006 86V0H713Q707 35 704 61T699 116Q630 47 549 7T376 -33Q299 -33 242 -15T146 37T89 114T70 210Q70 273 97 325T171 417T280 487T411 536T553 563T695 571V699Q695 752 689 802T663
+893T599 958T498 982Q465 982 435 977T376 958T324 924T285 874Q300 857 305 837T311 797Q311 785 306 770T291 741T264 719T219 710Q179 710 156 739T132 811ZM363 1364Q325 1364 284 1344T213 1278L152 1313Q165 1349 188 1380T241 1436T301 1474T361 1489Q409
+1489 445 1472T511 1435T569 1397T631 1380Q676 1380 716 1407T780 1479L840 1448Q823 1397 799 1361T746 1300T688 1265T631 1253Q583 1253 546 1270T478 1308T419 1346T363 1364Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1057" d="M694 501Q647 499 597 493T498 473T406 438T331 388T281 321T265 235Q266 197 279 169T314 122T364 94T424 84Q465 84 501 92T569 115T632 153T694 204V501ZM132 811Q132 862 162 907T246
+985T374 1038T537 1057Q709 1057 790 966T871 677L869 217Q869 185 868 153T861 78L1006 86V0H713Q707 35 704 61T699 116Q630 47 549 7T376 -33Q299 -33 242 -15T146 37T89 114T70 210Q70 273 97 325T171 417T280 487T411 536T553 563T695 571V699Q695 752 689
+802T663 893T599 958T498 982Q465 982 435 977T376 958T324 924T285 874Q300 857 305 837T311 797Q311 785 306 770T291 741T264 719T219 710Q179 710 156 739T132 811ZM430 1369Q430 1344 422 1322T399 1284T367 1258T328 1248Q307 1248 289 1257T256 1283T234
+1322T226 1369Q226 1394 234 1417T257 1456T290 1483T329 1493Q351 1493 369 1483T401 1457T422 1417T430 1369ZM772 1369Q772 1344 764 1322T741 1284T709 1258T670 1248Q649 1248 631 1257T598 1283T576 1322T568 1369Q568 1394 576 1417T599 1456T632 1483T671
+1493Q693 1493 711 1483T743 1457T764 1417T772 1369Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1057" d="M694 501Q647 499 597 493T498 473T406 438T331 388T281 321T265 235Q266 197 279 169T314 122T364 94T424 84Q465 84 501 92T569 115T632 153T694 204V501ZM132 811Q132 862 162 907T246 985T374
+1038T537 1057Q709 1057 790 966T871 677L869 217Q869 185 868 153T861 78L1006 86V0H713Q707 35 704 61T699 116Q630 47 549 7T376 -33Q299 -33 242 -15T146 37T89 114T70 210Q70 273 97 325T171 417T280 487T411 536T553 563T695 571V699Q695 752 689 802T663
+893T599 958T498 982Q465 982 435 977T376 958T324 924T285 874Q300 857 305 837T311 797Q311 785 306 770T291 741T264 719T219 710Q179 710 156 739T132 811ZM515 1495Q480 1495 452 1464T424 1372Q424 1343 430 1318T449 1273T480 1242T521 1231Q559 1231 584
+1263T609 1352Q609 1418 585 1456T515 1495ZM515 1559Q551 1559 586 1548T650 1514T698 1454T717 1374Q717 1322 701 1286T656 1223T593 1182T519 1167Q481 1167 445 1178T380 1214T334 1274T316 1362Q316 1406 333 1442T379 1504T442 1544T515 1559Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1591" d="M707 219Q704 240 701 274T695 347T690 424T686 493Q617 490 543 476T407 433T305 356T265 239Q265 192 281 162T322 115T376 90T432 83Q517 83 583 119T707 219ZM1125 977Q1065 977 1023 953T952
+888T908 793T885 678H1311Q1311 732 1305 785T1278 881T1222 950T1125 977ZM136 804Q136 850 162 895T237 977T357 1035T516 1057Q619 1057 690 1011T799 880Q856 958 939 1007T1133 1057Q1211 1057 1277 1032T1391 953T1467 812T1496 604L871 592Q868 553 868
+518Q868 410 891 327T955 187T1052 101T1174 72Q1222 72 1262 85T1337 120T1401 174T1457 242L1508 201Q1466 137 1421 93T1327 20T1228 -20T1125 -33Q1004 -33 910 13T759 161H757Q718 108 673 71T579 11T477 -22T369 -33Q299 -33 244 -15T150 34T91 110T70 205Q70
+269 97 320T170 411T277 479T407 526T548 554T689 563V688Q689 743 684 795T657 889T596 956T486 982Q452 982 420 974T361 949T314 911T282 860Q296 847 303 826T310 793Q310 781 305 766T290 738T262 715T221 706Q183 706 160 732T136 804Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1094" d="M662 -116Q725 -116 762 -152T799 -251Q799 -292 779 -325T726 -383T651 -427T564 -459T476 -480T397 -494L385 -425Q437 -416 482 -402T560 -368T612 -324T631 -269Q631 -236 612 -222T566
+-208Q543 -208 518 -216T473 -238L404 -204L454 -16Q424 -8 396 2Q304 38 235 105T126 271T86 494Q86 565 103 634T154 765T234 881T340 974T470 1035T620 1057Q705 1057 775 1036T895 980T972 899T999 804Q999 782 993 763T974 728T945 705T904 696Q877 696 859
+705T830 728T814 758T809 788Q809 808 815 830T840 871Q826 907 799 928T741 962T678 977T625 981Q555 981 495 953T390 869T321 732T295 544Q295 442 320 356T392 207T503 109T647 74Q695 74 742 87T831 125T908 181T969 250L1022 209Q981 145 929 100T819 25T703
+-19T592 -33Q577 -33 562 -32L522 -152Q551 -134 589 -125T662 -116Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1110" d="M604 977Q484 977 406 907T303 678H825Q825 732 813 785T775 881T706 950T604 977ZM1018 604L297 592Q296 474 315 378T375 214T480 109T635 72Q683 72 733 85T829 120T915 174T980 242L1030
+201Q988 137 933 93T818 20T698 -20T586 -33Q480 -33 389 5T230 114T125 285T86 510Q86 618 123 716T228 891T391 1012T602 1057Q687 1057 762 1029T895 945T985 804T1018 604ZM371 1405Q345 1432 336 1455Q333 1462 330 1472T327 1493Q327 1506 330 1517T344 1541T369
+1560T401 1567T440 1556T486 1511L658 1235L601 1188L371 1405Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1110" d="M604 977Q484 977 406 907T303 678H825Q825 732 813 785T775 881T706 950T604 977ZM1018 604L297 592Q296 474 315 378T375 214T480 109T635 72Q683 72 733 85T829 120T915 174T980 242L1030
+201Q988 137 933 93T818 20T698 -20T586 -33Q480 -33 389 5T230 114T125 285T86 510Q86 618 123 716T228 891T391 1012T602 1057Q687 1057 762 1029T895 945T985 804T1018 604ZM540 1188L483 1235L655 1511Q678 1544 700 1555T739 1567T771 1561T797 1541T810 1517T814
+1493Q814 1482 811 1472T805 1455Q796 1432 770 1405L540 1188Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1110" d="M604 977Q484 977 406 907T303 678H825Q825 732 813 785T775 881T706 950T604 977ZM1018 604L297 592Q296 474 315 378T375 214T480 109T635 72Q683 72 733 85T829 120T915 174T980 242L1030
+201Q988 137 933 93T818 20T698 -20T586 -33Q480 -33 389 5T230 114T125 285T86 510Q86 618 123 716T228 891T391 1012T602 1057Q687 1057 762 1029T895 945T985 804T1018 604ZM601 1593H605L910 1260L855 1194L595 1417H591L326 1208L275 1268L601 1593Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1110" d="M604 977Q484 977 406 907T303 678H825Q825 732 813 785T775 881T706 950T604 977ZM1018 604L297 592Q296 474 315 378T375 214T480 109T635 72Q683 72 733 85T829 120T915 174T980 242L1030
+201Q988 137 933 93T818 20T698 -20T586 -33Q480 -33 389 5T230 114T125 285T86 510Q86 618 123 716T228 891T391 1012T602 1057Q687 1057 762 1029T895 945T985 804T1018 604ZM512 1369Q512 1344 504 1322T481 1284T449 1258T410 1248Q389 1248 371 1257T338 1283T316
+1322T308 1369Q308 1394 316 1417T339 1456T372 1483T411 1493Q433 1493 451 1483T483 1457T504 1417T512 1369ZM854 1369Q854 1344 846 1322T823 1284T791 1258T752 1248Q731 1248 713 1257T680 1283T658 1322T650 1369Q650 1394 658 1417T681 1456T714 1483T753
+1493Q775 1493 793 1483T825 1457T846 1417T854 1369Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="575" d="M466 778Q466 810 467 840T474 911L329 903V989Q396 989 440 993T512 1006T555 1023T583 1044H642V217Q642 176 641 145T634 78L763 84V0H345V61Q391 61 416 79T452 131T464 210T466 311V778ZM309
+1405Q283 1432 274 1455Q271 1462 268 1472T265 1493Q265 1506 268 1517T282 1541T307 1560T339 1567T378 1556T424 1511L596 1235L539 1188L309 1405Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="578" d="M212 778Q212 810 213 840T220 911L75 903V989Q142 989 186 993T258 1006T301 1023T329 1044H388V217Q388 176 387 145T380 78L509 84V0H91V61Q137 61 162 79T198 131T210 210T212 311V778ZM263
+1188L206 1235L378 1511Q401 1544 423 1555T462 1567T494 1561T520 1541T533 1517T537 1493Q537 1482 534 1472T528 1455Q519 1432 493 1405L263 1188Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="575" d="M295 1593H299L574 1260L518 1194L289 1407H285L51 1208L0 1268L295 1593ZM212 778Q212 810 213 840T220 911L75 903V989Q142 989 186 993T258 1006T301 1023T329 1044H388V217Q388 176
+387 145T380 78L509 84V0H91V61Q137 61 162 79T198 131T210 210T212 311V778Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="575" d="M212 778Q212 810 213 840T220 911L75 903V989Q142 989 186 993T258 1006T301 1023T329 1044H388V217Q388 176 387 145T380 78L509 84V0H91V61Q137 61 162 79T198 131T210 210T212 311V778ZM243
+1368Q243 1343 235 1321T212 1283T180 1257T141 1248Q120 1248 102 1257T69 1282T47 1321T39 1368Q39 1394 47 1416T70 1456T103 1482T142 1492Q164 1492 182 1483T214 1456T235 1417T243 1368ZM530 1368Q530 1343 522 1321T499 1283T467 1257T428 1248Q407 1248
+389 1257T356 1282T334 1321T326 1368Q326 1394 334 1416T357 1456T390 1482T429 1492Q451 1492 469 1483T501 1456T522 1417T530 1368Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1145" d="M299 1274L418 1415Q370 1436 319 1450T211 1470L220 1556Q293 1552 358 1536T485 1494L596 1624L655 1569L565 1455Q675 1393 761 1299T906 1087T996 834T1028 557Q1028 435 1000 328T910 141T755
+14T530 -33Q438 -33 358 0T217 97T123 250T88 455Q88 564 119 665T208 845T349 969T539 1016Q576 1016 617 1009T696 987T768 945T825 881H829Q814 942 786 1009T717 1141T622 1266T498 1370L373 1212L299 1274ZM846 469Q846 517 841 570T823 674T789 772T737 854T665
+911T569 932Q502 932 451 897T364 802T311 664T293 498Q293 388 313 305T370 164T455 78T563 49Q619 49 670 75T759 154T822 285T846 469Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1241" d="M213 778Q213 810 214 843T221 911L76 903V989Q143 989 185 993T252 1006T292 1023T318 1044H377Q379 1021 381 992T386 920Q419 949 458 974T541 1017T629 1046T719 1057Q897 1057 979 946T1061
+599V217Q1061 176 1060 145T1053 78L1182 84V0H764V61Q811 61 835 79T871 131T883 210T885 311V597Q883 774 827 863T649 953Q612 953 575 942T504 914T440 872T388 820Q389 802 389 782T389 740L387 217Q387 176 386 145T379 78L508 84V0H90V61Q137 61 161 79T196
+131T208 210T211 311L213 778ZM490 1364Q452 1364 411 1344T340 1278L279 1313Q292 1349 315 1380T368 1436T428 1474T488 1489Q536 1489 572 1472T638 1435T696 1397T758 1380Q803 1380 843 1407T907 1479L967 1448Q950 1397 926 1361T873 1300T815 1265T758 1253Q710
+1253 673 1270T605 1308T546 1346T490 1364Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1198" d="M598 979Q517 979 460 943T365 847T311 709T293 547Q293 452 312 362T372 203T472 91T614 49Q695 49 750 85T840 182T890 319T905 477Q905 569 888 659T834 820T739 935T598 979ZM598 1057Q706
+1057 800 1018T963 909T1073 744T1114 537Q1114 418 1075 314T966 133T802 12T598 -33Q490 -33 397 5T234 113T124 277T84 487Q84 608 123 712T232 893T395 1013T598 1057ZM409 1405Q383 1432 374 1455Q371 1462 368 1472T365 1493Q365 1506 368 1517T382 1541T407
+1560T439 1567T478 1556T524 1511L696 1235L639 1188L409 1405Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1198" d="M598 979Q517 979 460 943T365 847T311 709T293 547Q293 452 312 362T372 203T472 91T614 49Q695 49 750 85T840 182T890 319T905 477Q905 569 888 659T834 820T739 935T598 979ZM598 1057Q706
+1057 800 1018T963 909T1073 744T1114 537Q1114 418 1075 314T966 133T802 12T598 -33Q490 -33 397 5T234 113T124 277T84 487Q84 608 123 712T232 893T395 1013T598 1057ZM540 1188L483 1235L655 1511Q678 1544 700 1555T739 1567T771 1561T797 1541T810 1517T814
+1493Q814 1482 811 1472T805 1455Q796 1432 770 1405L540 1188Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1198" d="M598 979Q517 979 460 943T365 847T311 709T293 547Q293 452 312 362T372 203T472 91T614 49Q695 49 750 85T840 182T890 319T905 477Q905 569 888 659T834 820T739 935T598 979ZM598
+1057Q706 1057 800 1018T963 909T1073 744T1114 537Q1114 418 1075 314T966 133T802 12T598 -33Q490 -33 397 5T234 113T124 277T84 487Q84 608 123 712T232 893T395 1013T598 1057ZM606 1593H610L915 1260L860 1194L600 1417H596L331 1208L280 1268L606 1593Z"
+/>
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1198" d="M598 979Q517 979 460 943T365 847T311 709T293 547Q293 452 312 362T372 203T472 91T614 49Q695 49 750 85T840 182T890 319T905 477Q905 569 888 659T834 820T739 935T598 979ZM598 1057Q706
+1057 800 1018T963 909T1073 744T1114 537Q1114 418 1075 314T966 133T802 12T598 -33Q490 -33 397 5T234 113T124 277T84 487Q84 608 123 712T232 893T395 1013T598 1057ZM465 1364Q427 1364 386 1344T315 1278L254 1313Q267 1349 290 1380T343 1436T403 1474T463
+1489Q511 1489 547 1472T613 1435T671 1397T733 1380Q778 1380 818 1407T882 1479L942 1448Q925 1397 901 1361T848 1300T790 1265T733 1253Q685 1253 648 1270T580 1308T521 1346T465 1364Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1198" d="M598 979Q517 979 460 943T365 847T311 709T293 547Q293 452 312 362T372 203T472 91T614 49Q695 49 750 85T840 182T890 319T905 477Q905 569 888 659T834 820T739 935T598 979ZM598 1057Q706
+1057 800 1018T963 909T1073 744T1114 537Q1114 418 1075 314T966 133T802 12T598 -33Q490 -33 397 5T234 113T124 277T84 487Q84 608 123 712T232 893T395 1013T598 1057ZM523 1369Q523 1344 515 1322T492 1284T460 1258T421 1248Q400 1248 382 1257T349 1283T327
+1322T319 1369Q319 1394 327 1417T350 1456T383 1483T422 1493Q444 1493 462 1483T494 1457T515 1417T523 1369ZM865 1369Q865 1344 857 1322T834 1284T802 1258T763 1248Q742 1248 724 1257T691 1283T669 1322T661 1369Q661 1394 669 1417T692 1456T725 1483T764
+1493Q786 1493 804 1483T836 1457T857 1417T865 1369Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="541" d="M391 221Q391 194 381 170T355 128T317 100T271 90Q247 90 226 100T188 128T162 170T152 221Q152 249 162 273T188 316T227 344T273 355Q298 355 319 345T357 316T382 274T391 221ZM391 923Q391
+896 381 872T355 830T317 802T271 792Q247 792 226 802T188 830T162 872T152 923Q152 951 162 975T188 1018T227 1046T273 1057Q298 1057 319 1047T357 1018T382 976T391 923Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1198" d="M598 1057Q735 1057 850 993L954 1157L1051 1094L943 927L963 908Q1033 839 1073 744T1114 537Q1114 418 1075 314T966 133T802 12T598 -33Q532 -33 471 -19T356 24L240 -154L164 -98L274 77Q186
+146 135 251T84 487Q84 608 123 712T232 893T395 1013T598 1057ZM598 979Q517 979 460 943T365 847T311 709T293 547Q293 458 310 373T363 218L786 890Q748 933 703 956T598 979ZM614 49Q695 49 750 85T840 182T890 319T905 477Q905 523 901 568T888 659Q881 693
+872 724T850 785L425 130Q465 90 511 70T614 49Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1223" d="M850 755Q850 805 852 840T860 911L713 905V989H776Q820 989 851 993T904 1006T940 1023T967 1044H1026L1024 270Q1024 254 1024 230T1022 179T1020 126T1016 78L1163 86V0H870Q865 35 862
+64T856 123Q824 91 785 63T703 13T613 -20T522 -33Q438 -33 375 -11T270 64T207 201T186 414V778Q186 810 187 843T194 911L53 905V989H117Q160 989 191 993T244 1006T280 1023T307 1044H366V420Q366 331 378 266T416 157T485 93T588 72Q627 72 664 85T736 120T799
+170T850 230V315V755ZM417 1405Q391 1432 382 1455Q379 1462 376 1472T373 1493Q373 1506 376 1517T390 1541T415 1560T447 1567T486 1556T532 1511L704 1235L647 1188L417 1405Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1223" d="M850 755Q850 805 852 840T860 911L713 905V989H776Q820 989 851 993T904 1006T940 1023T967 1044H1026L1024 270Q1024 254 1024 230T1022 179T1020 126T1016 78L1163 86V0H870Q865 35 862
+64T856 123Q824 91 785 63T703 13T613 -20T522 -33Q438 -33 375 -11T270 64T207 201T186 414V778Q186 810 187 843T194 911L53 905V989H117Q160 989 191 993T244 1006T280 1023T307 1044H366V420Q366 331 378 266T416 157T485 93T588 72Q627 72 664 85T736 120T799
+170T850 230V315V755ZM582 1188L525 1235L697 1511Q720 1544 742 1555T781 1567T813 1561T839 1541T852 1517T856 1493Q856 1482 853 1472T847 1455Q838 1432 812 1405L582 1188Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1223" d="M850 755Q850 805 852 840T860 911L713 905V989H776Q820 989 851 993T904 1006T940 1023T967 1044H1026L1024 270Q1024 254 1024 230T1022 179T1020 126T1016 78L1163 86V0H870Q865 35
+862 64T856 123Q824 91 785 63T703 13T613 -20T522 -33Q438 -33 375 -11T270 64T207 201T186 414V778Q186 810 187 843T194 911L53 905V989H117Q160 989 191 993T244 1006T280 1023T307 1044H366V420Q366 331 378 266T416 157T485 93T588 72Q627 72 664 85T736
+120T799 170T850 230V315V755ZM622 1593H626L931 1260L876 1194L616 1417H612L347 1208L296 1268L622 1593Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1223" d="M850 755Q850 805 852 840T860 911L713 905V989H776Q820 989 851 993T904 1006T940 1023T967 1044H1026L1024 270Q1024 254 1024 230T1022 179T1020 126T1016 78L1163 86V0H870Q865 35 862
+64T856 123Q824 91 785 63T703 13T613 -20T522 -33Q438 -33 375 -11T270 64T207 201T186 414V778Q186 810 187 843T194 911L53 905V989H117Q160 989 191 993T244 1006T280 1023T307 1044H366V420Q366 331 378 266T416 157T485 93T588 72Q627 72 664 85T736 120T799
+170T850 230V315V755ZM556 1369Q556 1344 548 1322T525 1284T493 1258T454 1248Q433 1248 415 1257T382 1283T360 1322T352 1369Q352 1394 360 1417T383 1456T416 1483T455 1493Q477 1493 495 1483T527 1457T548 1417T556 1369ZM898 1369Q898 1344 890 1322T867
+1284T835 1258T796 1248Q775 1248 757 1257T724 1283T702 1322T694 1369Q694 1394 702 1417T725 1456T758 1483T797 1493Q819 1493 837 1483T869 1457T890 1417T898 1369Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1081" d="M264 -448Q275 -453 287 -453Q305 -453 333 -438T391 -372Q417 -327 453 -238T535 -23Q188 720 169 765T138 844T118 903T107 945L8 940V1024H432V963L423 962Q380 959 358 943T330 898T336
+821T617 207Q830 828 843 860T869 916T893 948L752 940V1024H1073V963Q1035 948 1008 925T959 868T920 791T627 -18Q580 -147 541 -247T460 -416T367 -519T248 -555Q216 -555 188 -548T139 -525T106 -486T94 -431Q94 -412 100 -394T117 -362T145 -340T182 -331Q206
+-331 222 -340T249 -363T263 -392T267 -420Q267 -426 267 -433T264 -448ZM585 1188L528 1235L700 1511Q723 1544 745 1555T784 1567T816 1561T842 1541T855 1517T859 1493Q859 1482 856 1472T850 1455Q841 1432 815 1405L585 1188Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1182" d="M155 1280Q155 1312 156 1345T163 1413L18 1405V1491Q85 1491 128 1495T199 1508T242 1525T270 1546H329L328 947Q391 998 471 1027T636 1057Q729 1057 812 1021T957 918T1056 756T1093 541Q1093
+410 1052 304T939 123T773 8T571 -33Q499 -33 439 -18T327 31V-305Q327 -346 326 -377T319 -444L448 -438V-522H30V-461Q77 -461 101 -443T136 -391T148 -312T151 -211L155 1280ZM567 957Q495 957 434 929T328 852L327 127Q430 49 567 49Q640 49 698 83T797 178T860
+323T882 510Q882 592 864 672T808 816T711 918T567 957Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1081" d="M264 -448Q275 -453 287 -453Q305 -453 333 -438T391 -372Q417 -327 453 -238T535 -23Q188 720 169 765T138 844T118 903T107 945L8 940V1024H432V963L423 962Q380 959 358 943T330 898T336
+821T617 207Q830 828 843 860T869 916T893 948L752 940V1024H1073V963Q1035 948 1008 925T959 868T920 791T627 -18Q580 -147 541 -247T460 -416T367 -519T248 -555Q216 -555 188 -548T139 -525T106 -486T94 -431Q94 -412 100 -394T117 -362T145 -340T182 -331Q206
+-331 222 -340T249 -363T263 -392T267 -420Q267 -426 267 -433T264 -448ZM524 1369Q524 1344 516 1322T493 1284T461 1258T422 1248Q401 1248 383 1257T350 1283T328 1322T320 1369Q320 1394 328 1417T351 1456T384 1483T423 1493Q445 1493 463 1483T495 1457T516
+1417T524 1369ZM866 1369Q866 1344 858 1322T835 1284T803 1258T764 1248Q743 1248 725 1257T692 1283T670 1322T662 1369Q662 1394 670 1417T693 1456T726 1483T765 1493Q787 1493 805 1483T837 1457T858 1417T866 1369Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1208" d="M135 727H1067V592L135 584V727Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1434" d="M135 727H1292V592L135 584V727Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="459" d="M301 1514Q284 1493 265 1457T232 1377T209 1285T207 1189Q236 1202 262 1200T309 1185T340 1150T352 1101Q352 1044 319 1013T239 982Q204 982 177 996T132 1036T104 1095T94 1168Q94
+1207 105 1259T136 1366T184 1470T246 1555L301 1514Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="356" d="M102 1025Q119 1046 138 1082T171 1162T194 1254T196 1350Q167 1337 141 1339T94 1354T63 1389T51 1438Q51 1495 84 1526T164 1557Q199 1557 226 1543T271 1503T299 1444T309 1371Q309
+1332 298 1280T267 1173T219 1069T157 984L102 1025Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="518" d="M186 -325Q203 -304 222 -268T255 -188T278 -96T280 0Q251 -13 225 -11T178 4T147 39T135 88Q135 145 168 176T248 207Q283 207 310 193T355 153T383 94T393 21Q393 -18 382 -70T351
+-177T303 -281T241 -366L186 -325Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="819" d="M301 1514Q284 1493 265 1457T232 1377T209 1285T207 1189Q236 1202 262 1200T309 1185T340 1150T352 1101Q352 1044 319 1013T239 982Q204 982 177 996T132 1036T104 1095T94 1168Q94
+1207 105 1259T136 1366T184 1470T246 1555L301 1514ZM662 1514Q645 1493 626 1457T593 1377T570 1285T568 1189Q597 1202 623 1200T670 1185T701 1150T713 1101Q713 1044 680 1013T600 982Q565 982 538 996T493 1036T465 1095T455 1168Q455 1207 466 1259T497
+1366T545 1470T607 1555L662 1514Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="715" d="M102 1025Q119 1046 138 1082T171 1162T194 1254T196 1350Q167 1337 141 1339T94 1354T63 1389T51 1438Q51 1495 84 1526T164 1557Q199 1557 226 1543T271 1503T299 1444T309 1371Q309
+1332 298 1280T267 1173T219 1069T157 984L102 1025ZM462 1025Q479 1046 498 1082T531 1162T554 1254T556 1350Q527 1337 501 1339T454 1354T423 1389T411 1438Q411 1495 444 1526T524 1557Q559 1557 586 1543T631 1503T659 1444T669 1371Q669 1332 658 1280T627
+1173T579 1069T517 984L462 1025Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="879" d="M186 -325Q203 -304 222 -268T255 -188T278 -96T280 0Q251 -13 225 -11T178 4T147 39T135 88Q135 145 168 176T248 207Q283 207 310 193T355 153T383 94T393 21Q393 -18 382 -70T351
+-177T303 -281T241 -366L186 -325ZM546 -325Q563 -304 582 -268T615 -188T638 -96T640 0Q611 -13 585 -11T538 4T507 39T495 88Q495 145 528 176T608 207Q643 207 670 193T715 153T743 94T753 21Q753 -18 742 -70T711 -177T663 -281T601 -366L546 -325Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="821" d="M102 766Q102 830 126 885T191 981T289 1045T409 1069Q474 1069 530 1046T627 981T694 885T719 766Q719 702 695 647T628 551T530 487T409 463Q345 463 289 486T192 551T126 647T102 766Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="784" d="M64 569V561L625 -14L689 51L285 569V573L685 1059L619 1124L64 569Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="784" d="M719 569V561L158 -14L94 51L498 569V573L98 1059L164 1124L719 569Z" />
+<hkern g1="quotedbl" g2="ampersand" k="31" />
+<hkern g1="quotedbl" g2="comma" k="258" />
+<hkern g1="quotedbl" g2="period" k="252" />
+<hkern g1="quotedbl" g2="slash" k="231" />
+<hkern g1="quotedbl" g2="four" k="94" />
+<hkern g1="quotedbl" g2="at" k="43" />
+<hkern g1="quotedbl" g2="A" k="100" />
+<hkern g1="quotedbl" g2="a" k="18" />
+<hkern g1="quotedbl" g2="c" k="31" />
+<hkern g1="quotedbl" g2="d" k="53" />
+<hkern g1="quotedbl" g2="e" k="31" />
+<hkern g1="quotedbl" g2="g" k="31" />
+<hkern g1="quotedbl" g2="o" k="31" />
+<hkern g1="quotedbl" g2="q" k="53" />
+<hkern g1="quotedbl" g2="guillemotleft" k="96" />
+<hkern g1="quotedbl" g2="Agrave" k="100" />
+<hkern g1="quotedbl" g2="Aacute" k="100" />
+<hkern g1="quotedbl" g2="Acircumflex" k="100" />
+<hkern g1="quotedbl" g2="Atilde" k="100" />
+<hkern g1="quotedbl" g2="Adieresis" k="100" />
+<hkern g1="quotedbl" g2="Aring" k="100" />
+<hkern g1="quotedbl" g2="AE" k="166" />
+<hkern g1="quotedbl" g2="agrave" k="18" />
+<hkern g1="quotedbl" g2="aacute" k="18" />
+<hkern g1="quotedbl" g2="acircumflex" k="18" />
+<hkern g1="quotedbl" g2="atilde" k="18" />
+<hkern g1="quotedbl" g2="adieresis" k="18" />
+<hkern g1="quotedbl" g2="aring" k="18" />
+<hkern g1="quotedbl" g2="ae" k="18" />
+<hkern g1="quotedbl" g2="ccedilla" k="31" />
+<hkern g1="quotedbl" g2="egrave" k="31" />
+<hkern g1="quotedbl" g2="eacute" k="31" />
+<hkern g1="quotedbl" g2="ecircumflex" k="31" />
+<hkern g1="quotedbl" g2="edieresis" k="31" />
+<hkern g1="quotedbl" g2="eth" k="27" />
+<hkern g1="quotedbl" g2="ograve" k="31" />
+<hkern g1="quotedbl" g2="oacute" k="31" />
+<hkern g1="quotedbl" g2="ocircumflex" k="31" />
+<hkern g1="quotedbl" g2="otilde" k="31" />
+<hkern g1="quotedbl" g2="odieresis" k="31" />
+<hkern g1="quotedbl" g2="oslash" k="31" />
+<hkern g1="quotedbl" g2="oe" k="31" />
+<hkern g1="quotedbl" g2="quotesinglbase" k="258" />
+<hkern g1="quotedbl" g2="quotedblbase" k="279" />
+<hkern g1="quotedbl" g2="guilsinglleft" k="96" />
+<hkern g1="ampersand" g2="quotedbl" k="106" />
+<hkern g1="ampersand" g2="quotesingle" k="106" />
+<hkern g1="ampersand" g2="A" k="-102" />
+<hkern g1="ampersand" g2="J" k="-80" />
+<hkern g1="ampersand" g2="T" k="63" />
+<hkern g1="ampersand" g2="U" k="33" />
+<hkern g1="ampersand" g2="V" k="61" />
+<hkern g1="ampersand" g2="W" k="66" />
+<hkern g1="ampersand" g2="X" k="-68" />
+<hkern g1="ampersand" g2="Y" k="66" />
+<hkern g1="ampersand" g2="h" k="-20" />
+<hkern g1="ampersand" g2="k" k="-20" />
+<hkern g1="ampersand" g2="l" k="-18" />
+<hkern g1="ampersand" g2="v" k="31" />
+<hkern g1="ampersand" g2="w" k="35" />
+<hkern g1="ampersand" g2="x" k="-43" />
+<hkern g1="ampersand" g2="y" k="37" />
+<hkern g1="ampersand" g2="Agrave" k="-102" />
+<hkern g1="ampersand" g2="Aacute" k="-102" />
+<hkern g1="ampersand" g2="Acircumflex" k="-102" />
+<hkern g1="ampersand" g2="Atilde" k="-102" />
+<hkern g1="ampersand" g2="Adieresis" k="-102" />
+<hkern g1="ampersand" g2="Aring" k="-102" />
+<hkern g1="ampersand" g2="AE" k="-133" />
+<hkern g1="ampersand" g2="Ugrave" k="33" />
+<hkern g1="ampersand" g2="Uacute" k="33" />
+<hkern g1="ampersand" g2="Ucircumflex" k="33" />
+<hkern g1="ampersand" g2="Udieresis" k="33" />
+<hkern g1="ampersand" g2="Yacute" k="66" />
+<hkern g1="ampersand" g2="yacute" k="37" />
+<hkern g1="ampersand" g2="ydieresis" k="37" />
+<hkern g1="ampersand" g2="quoteright" k="106" />
+<hkern g1="ampersand" g2="quotedblright" k="106" />
+<hkern g1="quotesingle" g2="ampersand" k="31" />
+<hkern g1="quotesingle" g2="comma" k="213" />
+<hkern g1="quotesingle" g2="period" k="213" />
+<hkern g1="quotesingle" g2="slash" k="213" />
+<hkern g1="quotesingle" g2="four" k="94" />
+<hkern g1="quotesingle" g2="at" k="43" />
+<hkern g1="quotesingle" g2="A" k="100" />
+<hkern g1="quotesingle" g2="a" k="18" />
+<hkern g1="quotesingle" g2="c" k="31" />
+<hkern g1="quotesingle" g2="d" k="53" />
+<hkern g1="quotesingle" g2="e" k="31" />
+<hkern g1="quotesingle" g2="g" k="31" />
+<hkern g1="quotesingle" g2="o" k="31" />
+<hkern g1="quotesingle" g2="q" k="53" />
+<hkern g1="quotesingle" g2="guillemotleft" k="96" />
+<hkern g1="quotesingle" g2="Agrave" k="100" />
+<hkern g1="quotesingle" g2="Aacute" k="100" />
+<hkern g1="quotesingle" g2="Acircumflex" k="100" />
+<hkern g1="quotesingle" g2="Atilde" k="100" />
+<hkern g1="quotesingle" g2="Adieresis" k="100" />
+<hkern g1="quotesingle" g2="Aring" k="100" />
+<hkern g1="quotesingle" g2="AE" k="166" />
+<hkern g1="quotesingle" g2="agrave" k="18" />
+<hkern g1="quotesingle" g2="aacute" k="18" />
+<hkern g1="quotesingle" g2="acircumflex" k="18" />
+<hkern g1="quotesingle" g2="atilde" k="18" />
+<hkern g1="quotesingle" g2="adieresis" k="18" />
+<hkern g1="quotesingle" g2="aring" k="18" />
+<hkern g1="quotesingle" g2="ae" k="18" />
+<hkern g1="quotesingle" g2="ccedilla" k="31" />
+<hkern g1="quotesingle" g2="egrave" k="31" />
+<hkern g1="quotesingle" g2="eacute" k="31" />
+<hkern g1="quotesingle" g2="ecircumflex" k="31" />
+<hkern g1="quotesingle" g2="edieresis" k="31" />
+<hkern g1="quotesingle" g2="eth" k="27" />
+<hkern g1="quotesingle" g2="ograve" k="31" />
+<hkern g1="quotesingle" g2="oacute" k="31" />
+<hkern g1="quotesingle" g2="ocircumflex" k="31" />
+<hkern g1="quotesingle" g2="otilde" k="31" />
+<hkern g1="quotesingle" g2="odieresis" k="31" />
+<hkern g1="quotesingle" g2="oslash" k="31" />
+<hkern g1="quotesingle" g2="oe" k="31" />
+<hkern g1="quotesingle" g2="quotesinglbase" k="213" />
+<hkern g1="quotesingle" g2="quotedblbase" k="213" />
+<hkern g1="quotesingle" g2="guilsinglleft" k="96" />
+<hkern g1="parenleft" g2="parenleft" k="37" />
+<hkern g1="parenleft" g2="zero" k="41" />
+<hkern g1="parenleft" g2="three" k="20" />
+<hkern g1="parenleft" g2="four" k="51" />
+<hkern g1="parenleft" g2="six" k="43" />
+<hkern g1="parenleft" g2="eight" k="27" />
+<hkern g1="parenleft" g2="nine" k="25" />
+<hkern g1="parenleft" g2="A" k="20" />
+<hkern g1="parenleft" g2="C" k="70" />
+<hkern g1="parenleft" g2="G" k="47" />
+<hkern g1="parenleft" g2="O" k="70" />
+<hkern g1="parenleft" g2="Q" k="70" />
+<hkern g1="parenleft" g2="S" k="23" />
+<hkern g1="parenleft" g2="V" k="-85" />
+<hkern g1="parenleft" g2="a" k="55" />
+<hkern g1="parenleft" g2="c" k="100" />
+<hkern g1="parenleft" g2="d" k="66" />
+<hkern g1="parenleft" g2="e" k="100" />
+<hkern g1="parenleft" g2="f" k="23" />
+<hkern g1="parenleft" g2="j" k="-170" />
+<hkern g1="parenleft" g2="m" k="43" />
+<hkern g1="parenleft" g2="n" k="43" />
+<hkern g1="parenleft" g2="o" k="100" />
+<hkern g1="parenleft" g2="q" k="66" />
+<hkern g1="parenleft" g2="r" k="43" />
+<hkern g1="parenleft" g2="s" k="51" />
+<hkern g1="parenleft" g2="t" k="41" />
+<hkern g1="parenleft" g2="u" k="51" />
+<hkern g1="parenleft" g2="v" k="41" />
+<hkern g1="parenleft" g2="w" k="41" />
+<hkern g1="parenleft" g2="x" k="23" />
+<hkern g1="parenleft" g2="z" k="43" />
+<hkern g1="parenleft" g2="braceleft" k="31" />
+<hkern g1="parenleft" g2="Agrave" k="20" />
+<hkern g1="parenleft" g2="Aacute" k="20" />
+<hkern g1="parenleft" g2="Acircumflex" k="20" />
+<hkern g1="parenleft" g2="Atilde" k="20" />
+<hkern g1="parenleft" g2="Adieresis" k="20" />
+<hkern g1="parenleft" g2="Aring" k="20" />
+<hkern g1="parenleft" g2="Ccedilla" k="70" />
+<hkern g1="parenleft" g2="Ograve" k="70" />
+<hkern g1="parenleft" g2="Oacute" k="70" />
+<hkern g1="parenleft" g2="Ocircumflex" k="70" />
+<hkern g1="parenleft" g2="Otilde" k="70" />
+<hkern g1="parenleft" g2="Odieresis" k="70" />
+<hkern g1="parenleft" g2="Oslash" k="70" />
+<hkern g1="parenleft" g2="germandbls" k="23" />
+<hkern g1="parenleft" g2="agrave" k="55" />
+<hkern g1="parenleft" g2="aacute" k="55" />
+<hkern g1="parenleft" g2="acircumflex" k="55" />
+<hkern g1="parenleft" g2="atilde" k="55" />
+<hkern g1="parenleft" g2="adieresis" k="55" />
+<hkern g1="parenleft" g2="aring" k="55" />
+<hkern g1="parenleft" g2="ae" k="55" />
+<hkern g1="parenleft" g2="ccedilla" k="100" />
+<hkern g1="parenleft" g2="egrave" k="100" />
+<hkern g1="parenleft" g2="eacute" k="100" />
+<hkern g1="parenleft" g2="ecircumflex" k="100" />
+<hkern g1="parenleft" g2="edieresis" k="100" />
+<hkern g1="parenleft" g2="igrave" k="-27" />
+<hkern g1="parenleft" g2="eth" k="31" />
+<hkern g1="parenleft" g2="ntilde" k="43" />
+<hkern g1="parenleft" g2="ograve" k="100" />
+<hkern g1="parenleft" g2="oacute" k="100" />
+<hkern g1="parenleft" g2="ocircumflex" k="100" />
+<hkern g1="parenleft" g2="otilde" k="100" />
+<hkern g1="parenleft" g2="odieresis" k="100" />
+<hkern g1="parenleft" g2="oslash" k="100" />
+<hkern g1="parenleft" g2="ugrave" k="51" />
+<hkern g1="parenleft" g2="uacute" k="51" />
+<hkern g1="parenleft" g2="ucircumflex" k="51" />
+<hkern g1="parenleft" g2="udieresis" k="51" />
+<hkern g1="parenleft" g2="OE" k="70" />
+<hkern g1="parenleft" g2="oe" k="100" />
+<hkern g1="parenright" g2="parenright" k="37" />
+<hkern g1="parenright" g2="bracketright" k="49" />
+<hkern g1="parenright" g2="braceright" k="27" />
+<hkern g1="asterisk" g2="A" k="57" />
+<hkern g1="asterisk" g2="B" k="18" />
+<hkern g1="asterisk" g2="D" k="18" />
+<hkern g1="asterisk" g2="E" k="18" />
+<hkern g1="asterisk" g2="F" k="18" />
+<hkern g1="asterisk" g2="H" k="18" />
+<hkern g1="asterisk" g2="I" k="18" />
+<hkern g1="asterisk" g2="J" k="39" />
+<hkern g1="asterisk" g2="K" k="18" />
+<hkern g1="asterisk" g2="L" k="18" />
+<hkern g1="asterisk" g2="M" k="20" />
+<hkern g1="asterisk" g2="N" k="18" />
+<hkern g1="asterisk" g2="P" k="18" />
+<hkern g1="asterisk" g2="R" k="18" />
+<hkern g1="asterisk" g2="T" k="-23" />
+<hkern g1="asterisk" g2="d" k="16" />
+<hkern g1="asterisk" g2="q" k="16" />
+<hkern g1="asterisk" g2="v" k="-55" />
+<hkern g1="asterisk" g2="w" k="-45" />
+<hkern g1="asterisk" g2="y" k="-33" />
+<hkern g1="asterisk" g2="Agrave" k="57" />
+<hkern g1="asterisk" g2="Aacute" k="57" />
+<hkern g1="asterisk" g2="Acircumflex" k="57" />
+<hkern g1="asterisk" g2="Atilde" k="57" />
+<hkern g1="asterisk" g2="Adieresis" k="57" />
+<hkern g1="asterisk" g2="Aring" k="57" />
+<hkern g1="asterisk" g2="AE" k="109" />
+<hkern g1="asterisk" g2="Egrave" k="18" />
+<hkern g1="asterisk" g2="Eacute" k="18" />
+<hkern g1="asterisk" g2="Ecircumflex" k="18" />
+<hkern g1="asterisk" g2="Edieresis" k="18" />
+<hkern g1="asterisk" g2="Igrave" k="18" />
+<hkern g1="asterisk" g2="Iacute" k="18" />
+<hkern g1="asterisk" g2="Icircumflex" k="18" />
+<hkern g1="asterisk" g2="Idieresis" k="18" />
+<hkern g1="asterisk" g2="Eth" k="18" />
+<hkern g1="asterisk" g2="Ntilde" k="18" />
+<hkern g1="asterisk" g2="Thorn" k="18" />
+<hkern g1="asterisk" g2="yacute" k="-33" />
+<hkern g1="asterisk" g2="ydieresis" k="-33" />
+<hkern g1="plus" g2="one" k="39" />
+<hkern g1="plus" g2="two" k="41" />
+<hkern g1="plus" g2="three" k="29" />
+<hkern g1="plus" g2="seven" k="74" />
+<hkern g1="comma" g2="quotedbl" k="258" />
+<hkern g1="comma" g2="quotesingle" k="213" />
+<hkern g1="comma" g2="zero" k="31" />
+<hkern g1="comma" g2="six" k="20" />
+<hkern g1="comma" g2="seven" k="66" />
+<hkern g1="comma" g2="C" k="45" />
+<hkern g1="comma" g2="G" k="39" />
+<hkern g1="comma" g2="O" k="45" />
+<hkern g1="comma" g2="Q" k="45" />
+<hkern g1="comma" g2="T" k="113" />
+<hkern g1="comma" g2="U" k="55" />
+<hkern g1="comma" g2="V" k="139" />
+<hkern g1="comma" g2="W" k="133" />
+<hkern g1="comma" g2="Y" k="125" />
+<hkern g1="comma" g2="t" k="25" />
+<hkern g1="comma" g2="u" k="23" />
+<hkern g1="comma" g2="v" k="80" />
+<hkern g1="comma" g2="w" k="100" />
+<hkern g1="comma" g2="y" k="94" />
+<hkern g1="comma" g2="Ccedilla" k="45" />
+<hkern g1="comma" g2="Ograve" k="45" />
+<hkern g1="comma" g2="Oacute" k="45" />
+<hkern g1="comma" g2="Ocircumflex" k="45" />
+<hkern g1="comma" g2="Otilde" k="45" />
+<hkern g1="comma" g2="Odieresis" k="45" />
+<hkern g1="comma" g2="Oslash" k="45" />
+<hkern g1="comma" g2="Ugrave" k="55" />
+<hkern g1="comma" g2="Uacute" k="55" />
+<hkern g1="comma" g2="Ucircumflex" k="55" />
+<hkern g1="comma" g2="Udieresis" k="55" />
+<hkern g1="comma" g2="Yacute" k="125" />
+<hkern g1="comma" g2="ugrave" k="23" />
+<hkern g1="comma" g2="uacute" k="23" />
+<hkern g1="comma" g2="ucircumflex" k="23" />
+<hkern g1="comma" g2="udieresis" k="23" />
+<hkern g1="comma" g2="yacute" k="94" />
+<hkern g1="comma" g2="ydieresis" k="94" />
+<hkern g1="comma" g2="OE" k="45" />
+<hkern g1="comma" g2="quoteleft" k="227" />
+<hkern g1="comma" g2="quoteright" k="178" />
+<hkern g1="comma" g2="quotedblleft" k="258" />
+<hkern g1="comma" g2="quotedblright" k="258" />
+<hkern g1="hyphen" g2="one" k="53" />
+<hkern g1="hyphen" g2="two" k="66" />
+<hkern g1="hyphen" g2="three" k="49" />
+<hkern g1="hyphen" g2="seven" k="125" />
+<hkern g1="hyphen" g2="A" k="40" />
+<hkern g1="hyphen" g2="B" k="33" />
+<hkern g1="hyphen" g2="D" k="33" />
+<hkern g1="hyphen" g2="E" k="33" />
+<hkern g1="hyphen" g2="F" k="33" />
+<hkern g1="hyphen" g2="H" k="33" />
+<hkern g1="hyphen" g2="I" k="33" />
+<hkern g1="hyphen" g2="J" k="59" />
+<hkern g1="hyphen" g2="K" k="33" />
+<hkern g1="hyphen" g2="L" k="33" />
+<hkern g1="hyphen" g2="M" k="31" />
+<hkern g1="hyphen" g2="N" k="33" />
+<hkern g1="hyphen" g2="P" k="33" />
+<hkern g1="hyphen" g2="R" k="33" />
+<hkern g1="hyphen" g2="S" k="29" />
+<hkern g1="hyphen" g2="T" k="131" />
+<hkern g1="hyphen" g2="U" k="16" />
+<hkern g1="hyphen" g2="V" k="61" />
+<hkern g1="hyphen" g2="W" k="63" />
+<hkern g1="hyphen" g2="X" k="86" />
+<hkern g1="hyphen" g2="Y" k="111" />
+<hkern g1="hyphen" g2="Z" k="68" />
+<hkern g1="hyphen" g2="f" k="18" />
+<hkern g1="hyphen" g2="v" k="-55" />
+<hkern g1="hyphen" g2="w" k="16" />
+<hkern g1="hyphen" g2="y" k="16" />
+<hkern g1="hyphen" g2="Agrave" k="40" />
+<hkern g1="hyphen" g2="Aacute" k="40" />
+<hkern g1="hyphen" g2="Acircumflex" k="40" />
+<hkern g1="hyphen" g2="Atilde" k="40" />
+<hkern g1="hyphen" g2="Adieresis" k="40" />
+<hkern g1="hyphen" g2="Aring" k="40" />
+<hkern g1="hyphen" g2="AE" k="84" />
+<hkern g1="hyphen" g2="Egrave" k="33" />
+<hkern g1="hyphen" g2="Eacute" k="33" />
+<hkern g1="hyphen" g2="Ecircumflex" k="33" />
+<hkern g1="hyphen" g2="Edieresis" k="33" />
+<hkern g1="hyphen" g2="Igrave" k="33" />
+<hkern g1="hyphen" g2="Iacute" k="33" />
+<hkern g1="hyphen" g2="Icircumflex" k="33" />
+<hkern g1="hyphen" g2="Idieresis" k="33" />
+<hkern g1="hyphen" g2="Eth" k="33" />
+<hkern g1="hyphen" g2="Ntilde" k="33" />
+<hkern g1="hyphen" g2="Ugrave" k="16" />
+<hkern g1="hyphen" g2="Uacute" k="16" />
+<hkern g1="hyphen" g2="Ucircumflex" k="16" />
+<hkern g1="hyphen" g2="Udieresis" k="16" />
+<hkern g1="hyphen" g2="Yacute" k="111" />
+<hkern g1="hyphen" g2="Thorn" k="33" />
+<hkern g1="hyphen" g2="germandbls" k="18" />
+<hkern g1="hyphen" g2="yacute" k="16" />
+<hkern g1="hyphen" g2="ydieresis" k="16" />
+<hkern g1="period" g2="quotedbl" k="252" />
+<hkern g1="period" g2="quotesingle" k="213" />
+<hkern g1="period" g2="zero" k="31" />
+<hkern g1="period" g2="six" k="20" />
+<hkern g1="period" g2="seven" k="66" />
+<hkern g1="period" g2="C" k="45" />
+<hkern g1="period" g2="G" k="39" />
+<hkern g1="period" g2="O" k="45" />
+<hkern g1="period" g2="Q" k="45" />
+<hkern g1="period" g2="T" k="113" />
+<hkern g1="period" g2="U" k="55" />
+<hkern g1="period" g2="V" k="139" />
+<hkern g1="period" g2="W" k="133" />
+<hkern g1="period" g2="Y" k="125" />
+<hkern g1="period" g2="t" k="25" />
+<hkern g1="period" g2="u" k="23" />
+<hkern g1="period" g2="v" k="80" />
+<hkern g1="period" g2="w" k="100" />
+<hkern g1="period" g2="y" k="94" />
+<hkern g1="period" g2="Ccedilla" k="45" />
+<hkern g1="period" g2="Ograve" k="45" />
+<hkern g1="period" g2="Oacute" k="45" />
+<hkern g1="period" g2="Ocircumflex" k="45" />
+<hkern g1="period" g2="Otilde" k="45" />
+<hkern g1="period" g2="Odieresis" k="45" />
+<hkern g1="period" g2="Oslash" k="45" />
+<hkern g1="period" g2="Ugrave" k="55" />
+<hkern g1="period" g2="Uacute" k="55" />
+<hkern g1="period" g2="Ucircumflex" k="55" />
+<hkern g1="period" g2="Udieresis" k="55" />
+<hkern g1="period" g2="Yacute" k="125" />
+<hkern g1="period" g2="ugrave" k="23" />
+<hkern g1="period" g2="uacute" k="23" />
+<hkern g1="period" g2="ucircumflex" k="23" />
+<hkern g1="period" g2="udieresis" k="23" />
+<hkern g1="period" g2="yacute" k="94" />
+<hkern g1="period" g2="ydieresis" k="94" />
+<hkern g1="period" g2="OE" k="45" />
+<hkern g1="period" g2="quoteleft" k="227" />
+<hkern g1="period" g2="quoteright" k="178" />
+<hkern g1="period" g2="quotedblleft" k="252" />
+<hkern g1="period" g2="quotedblright" k="252" />
+<hkern g1="slash" g2="slash" k="657" />
+<hkern g1="slash" g2="zero" k="27" />
+<hkern g1="slash" g2="four" k="88" />
+<hkern g1="slash" g2="six" k="33" />
+<hkern g1="slash" g2="A" k="98" />
+<hkern g1="slash" g2="C" k="39" />
+<hkern g1="slash" g2="G" k="41" />
+<hkern g1="slash" g2="O" k="39" />
+<hkern g1="slash" g2="Q" k="39" />
+<hkern g1="slash" g2="Y" k="-10" />
+<hkern g1="slash" g2="a" k="90" />
+<hkern g1="slash" g2="b" k="-10" />
+<hkern g1="slash" g2="c" k="102" />
+<hkern g1="slash" g2="d" k="102" />
+<hkern g1="slash" g2="e" k="102" />
+<hkern g1="slash" g2="g" k="100" />
+<hkern g1="slash" g2="m" k="59" />
+<hkern g1="slash" g2="n" k="59" />
+<hkern g1="slash" g2="o" k="102" />
+<hkern g1="slash" g2="p" k="55" />
+<hkern g1="slash" g2="q" k="102" />
+<hkern g1="slash" g2="r" k="59" />
+<hkern g1="slash" g2="s" k="82" />
+<hkern g1="slash" g2="t" k="27" />
+<hkern g1="slash" g2="u" k="49" />
+<hkern g1="slash" g2="v" k="25" />
+<hkern g1="slash" g2="w" k="25" />
+<hkern g1="slash" g2="x" k="31" />
+<hkern g1="slash" g2="y" k="20" />
+<hkern g1="slash" g2="z" k="63" />
+<hkern g1="slash" g2="Agrave" k="98" />
+<hkern g1="slash" g2="Aacute" k="98" />
+<hkern g1="slash" g2="Acircumflex" k="98" />
+<hkern g1="slash" g2="Atilde" k="98" />
+<hkern g1="slash" g2="Adieresis" k="98" />
+<hkern g1="slash" g2="Aring" k="98" />
+<hkern g1="slash" g2="AE" k="141" />
+<hkern g1="slash" g2="Ccedilla" k="39" />
+<hkern g1="slash" g2="Ograve" k="39" />
+<hkern g1="slash" g2="Oacute" k="39" />
+<hkern g1="slash" g2="Ocircumflex" k="39" />
+<hkern g1="slash" g2="Otilde" k="39" />
+<hkern g1="slash" g2="Odieresis" k="39" />
+<hkern g1="slash" g2="Oslash" k="39" />
+<hkern g1="slash" g2="Yacute" k="-10" />
+<hkern g1="slash" g2="agrave" k="90" />
+<hkern g1="slash" g2="aacute" k="90" />
+<hkern g1="slash" g2="acircumflex" k="90" />
+<hkern g1="slash" g2="atilde" k="90" />
+<hkern g1="slash" g2="adieresis" k="90" />
+<hkern g1="slash" g2="aring" k="90" />
+<hkern g1="slash" g2="ae" k="90" />
+<hkern g1="slash" g2="ccedilla" k="102" />
+<hkern g1="slash" g2="egrave" k="102" />
+<hkern g1="slash" g2="eacute" k="102" />
+<hkern g1="slash" g2="ecircumflex" k="102" />
+<hkern g1="slash" g2="edieresis" k="102" />
+<hkern g1="slash" g2="igrave" k="-23" />
+<hkern g1="slash" g2="ntilde" k="59" />
+<hkern g1="slash" g2="ograve" k="102" />
+<hkern g1="slash" g2="oacute" k="102" />
+<hkern g1="slash" g2="ocircumflex" k="102" />
+<hkern g1="slash" g2="otilde" k="102" />
+<hkern g1="slash" g2="odieresis" k="102" />
+<hkern g1="slash" g2="oslash" k="102" />
+<hkern g1="slash" g2="ugrave" k="49" />
+<hkern g1="slash" g2="uacute" k="49" />
+<hkern g1="slash" g2="ucircumflex" k="49" />
+<hkern g1="slash" g2="udieresis" k="49" />
+<hkern g1="slash" g2="yacute" k="20" />
+<hkern g1="slash" g2="thorn" k="-10" />
+<hkern g1="slash" g2="ydieresis" k="20" />
+<hkern g1="slash" g2="OE" k="39" />
+<hkern g1="slash" g2="oe" k="102" />
+<hkern g1="zero" g2="parenright" k="41" />
+<hkern g1="zero" g2="comma" k="33" />
+<hkern g1="zero" g2="period" k="33" />
+<hkern g1="zero" g2="slash" k="100" />
+<hkern g1="zero" g2="two" k="15" />
+<hkern g1="zero" g2="seven" k="45" />
+<hkern g1="zero" g2="Y" k="20" />
+<hkern g1="zero" g2="backslash" k="27" />
+<hkern g1="zero" g2="bracketright" k="61" />
+<hkern g1="zero" g2="braceright" k="35" />
+<hkern g1="zero" g2="Yacute" k="20" />
+<hkern g1="zero" g2="quotesinglbase" k="33" />
+<hkern g1="zero" g2="quotedblbase" k="33" />
+<hkern g1="one" g2="hyphen" k="25" />
+<hkern g1="one" g2="slash" k="37" />
+<hkern g1="one" g2="A" k="-25" />
+<hkern g1="one" g2="bracketright" k="27" />
+<hkern g1="one" g2="uni00AD" k="25" />
+<hkern g1="one" g2="middot" k="35" />
+<hkern g1="one" g2="Agrave" k="-25" />
+<hkern g1="one" g2="Aacute" k="-25" />
+<hkern g1="one" g2="Acircumflex" k="-25" />
+<hkern g1="one" g2="Atilde" k="-25" />
+<hkern g1="one" g2="Adieresis" k="-25" />
+<hkern g1="one" g2="Aring" k="-25" />
+<hkern g1="one" g2="endash" k="25" />
+<hkern g1="one" g2="emdash" k="25" />
+<hkern g1="one" g2="fraction" k="-39" />
+<hkern g1="one" g2="minus" k="23" />
+<hkern g1="two" g2="hyphen" k="37" />
+<hkern g1="two" g2="slash" k="47" />
+<hkern g1="two" g2="three" k="30" />
+<hkern g1="two" g2="four" k="45" />
+<hkern g1="two" g2="bracketright" k="39" />
+<hkern g1="two" g2="uni00AD" k="37" />
+<hkern g1="two" g2="middot" k="43" />
+<hkern g1="two" g2="endash" k="37" />
+<hkern g1="two" g2="emdash" k="37" />
+<hkern g1="two" g2="minus" k="35" />
+<hkern g1="three" g2="parenright" k="37" />
+<hkern g1="three" g2="slash" k="82" />
+<hkern g1="three" g2="seven" k="50" />
+<hkern g1="three" g2="bracketright" k="49" />
+<hkern g1="three" g2="braceright" k="31" />
+<hkern g1="four" g2="quotedbl" k="25" />
+<hkern g1="four" g2="quotesingle" k="25" />
+<hkern g1="four" g2="parenright" k="25" />
+<hkern g1="four" g2="slash" k="49" />
+<hkern g1="four" g2="bracketright" k="37" />
+<hkern g1="four" g2="degree" k="27" />
+<hkern g1="five" g2="slash" k="78" />
+<hkern g1="six" g2="parenright" k="25" />
+<hkern g1="six" g2="slash" k="82" />
+<hkern g1="six" g2="seven" k="15" />
+<hkern g1="six" g2="bracketright" k="35" />
+<hkern g1="six" g2="braceright" k="23" />
+<hkern g1="seven" g2="plus" k="29" />
+<hkern g1="seven" g2="comma" k="90" />
+<hkern g1="seven" g2="hyphen" k="39" />
+<hkern g1="seven" g2="period" k="90" />
+<hkern g1="seven" g2="slash" k="150" />
+<hkern g1="seven" g2="four" k="29" />
+<hkern g1="seven" g2="colon" k="50" />
+<hkern g1="seven" g2="A" k="45" />
+<hkern g1="seven" g2="V" k="-55" />
+<hkern g1="seven" g2="W" k="-31" />
+<hkern g1="seven" g2="X" k="-25" />
+<hkern g1="seven" g2="Y" k="-53" />
+<hkern g1="seven" g2="bracketright" k="-10" />
+<hkern g1="seven" g2="cent" k="25" />
+<hkern g1="seven" g2="uni00AD" k="39" />
+<hkern g1="seven" g2="middot" k="43" />
+<hkern g1="seven" g2="Agrave" k="45" />
+<hkern g1="seven" g2="Aacute" k="45" />
+<hkern g1="seven" g2="Acircumflex" k="45" />
+<hkern g1="seven" g2="Atilde" k="45" />
+<hkern g1="seven" g2="Adieresis" k="45" />
+<hkern g1="seven" g2="Aring" k="45" />
+<hkern g1="seven" g2="AE" k="120" />
+<hkern g1="seven" g2="Yacute" k="-53" />
+<hkern g1="seven" g2="endash" k="39" />
+<hkern g1="seven" g2="emdash" k="39" />
+<hkern g1="seven" g2="quoteleft" k="-70" />
+<hkern g1="seven" g2="quotesinglbase" k="120" />
+<hkern g1="seven" g2="quotedblleft" k="-70" />
+<hkern g1="seven" g2="quotedblbase" k="90" />
+<hkern g1="seven" g2="fraction" k="66" />
+<hkern g1="seven" g2="minus" k="43" />
+<hkern g1="eight" g2="parenright" k="33" />
+<hkern g1="eight" g2="slash" k="74" />
+<hkern g1="eight" g2="nine" k="15" />
+<hkern g1="eight" g2="bracketright" k="47" />
+<hkern g1="eight" g2="braceright" k="29" />
+<hkern g1="eight" g2="middot" k="23" />
+<hkern g1="nine" g2="parenright" k="37" />
+<hkern g1="nine" g2="comma" k="33" />
+<hkern g1="nine" g2="period" k="33" />
+<hkern g1="nine" g2="slash" k="102" />
+<hkern g1="nine" g2="seven" k="50" />
+<hkern g1="nine" g2="bracketright" k="51" />
+<hkern g1="nine" g2="braceright" k="31" />
+<hkern g1="nine" g2="quotesinglbase" k="33" />
+<hkern g1="nine" g2="quotedblbase" k="33" />
+<hkern g1="equal" g2="one" k="23" />
+<hkern g1="equal" g2="seven" k="72" />
+<hkern g1="at" g2="quotedbl" k="20" />
+<hkern g1="at" g2="quotesingle" k="20" />
+<hkern g1="at" g2="V" k="31" />
+<hkern g1="at" g2="W" k="39" />
+<hkern g1="at" g2="Y" k="53" />
+<hkern g1="at" g2="Yacute" k="53" />
+<hkern g1="at" g2="quoteright" k="43" />
+<hkern g1="at" g2="quotedblright" k="43" />
+<hkern g1="A" g2="quotedbl" k="100" />
+<hkern g1="A" g2="quotesingle" k="100" />
+<hkern g1="A" g2="asterisk" k="57" />
+<hkern g1="A" g2="hyphen" k="40" />
+<hkern g1="A" g2="two" k="-10" />
+<hkern g1="A" g2="seven" k="20" />
+<hkern g1="A" g2="question" k="25" />
+<hkern g1="A" g2="A" k="-95" />
+<hkern g1="A" g2="C" k="10" />
+<hkern g1="A" g2="G" k="12" />
+<hkern g1="A" g2="J" k="-100" />
+<hkern g1="A" g2="O" k="10" />
+<hkern g1="A" g2="Q" k="10" />
+<hkern g1="A" g2="T" k="50" />
+<hkern g1="A" g2="U" k="39" />
+<hkern g1="A" g2="V" k="80" />
+<hkern g1="A" g2="W" k="94" />
+<hkern g1="A" g2="X" k="-85" />
+<hkern g1="A" g2="Y" k="70" />
+<hkern g1="A" g2="Z" k="-20" />
+<hkern g1="A" g2="backslash" k="100" />
+<hkern g1="A" g2="bracketright" k="51" />
+<hkern g1="A" g2="a" k="-55" />
+<hkern g1="A" g2="t" k="14" />
+<hkern g1="A" g2="v" k="40" />
+<hkern g1="A" g2="w" k="40" />
+<hkern g1="A" g2="x" k="-55" />
+<hkern g1="A" g2="y" k="30" />
+<hkern g1="A" g2="z" k="-60" />
+<hkern g1="A" g2="uni00AD" k="40" />
+<hkern g1="A" g2="acute" k="100" />
+<hkern g1="A" g2="Agrave" k="-95" />
+<hkern g1="A" g2="Aacute" k="-95" />
+<hkern g1="A" g2="Acircumflex" k="-95" />
+<hkern g1="A" g2="Atilde" k="-95" />
+<hkern g1="A" g2="Adieresis" k="-95" />
+<hkern g1="A" g2="Aring" k="-95" />
+<hkern g1="A" g2="AE" k="-120" />
+<hkern g1="A" g2="Ccedilla" k="10" />
+<hkern g1="A" g2="Ograve" k="10" />
+<hkern g1="A" g2="Oacute" k="10" />
+<hkern g1="A" g2="Ocircumflex" k="10" />
+<hkern g1="A" g2="Otilde" k="10" />
+<hkern g1="A" g2="Odieresis" k="10" />
+<hkern g1="A" g2="Oslash" k="10" />
+<hkern g1="A" g2="Ugrave" k="39" />
+<hkern g1="A" g2="Uacute" k="39" />
+<hkern g1="A" g2="Ucircumflex" k="39" />
+<hkern g1="A" g2="Udieresis" k="39" />
+<hkern g1="A" g2="Yacute" k="70" />
+<hkern g1="A" g2="agrave" k="-55" />
+<hkern g1="A" g2="aacute" k="-55" />
+<hkern g1="A" g2="acircumflex" k="-55" />
+<hkern g1="A" g2="atilde" k="-55" />
+<hkern g1="A" g2="adieresis" k="-55" />
+<hkern g1="A" g2="aring" k="-55" />
+<hkern g1="A" g2="ae" k="-55" />
+<hkern g1="A" g2="yacute" k="30" />
+<hkern g1="A" g2="ydieresis" k="30" />
+<hkern g1="A" g2="OE" k="10" />
+<hkern g1="A" g2="endash" k="40" />
+<hkern g1="A" g2="emdash" k="40" />
+<hkern g1="A" g2="quoteleft" k="120" />
+<hkern g1="A" g2="quoteright" k="109" />
+<hkern g1="A" g2="quotedblleft" k="120" />
+<hkern g1="A" g2="quotedblright" k="109" />
+<hkern g1="B" g2="parenright" k="43" />
+<hkern g1="B" g2="slash" k="84" />
+<hkern g1="B" g2="B" k="18" />
+<hkern g1="B" g2="D" k="18" />
+<hkern g1="B" g2="E" k="18" />
+<hkern g1="B" g2="F" k="18" />
+<hkern g1="B" g2="H" k="18" />
+<hkern g1="B" g2="I" k="18" />
+<hkern g1="B" g2="J" k="33" />
+<hkern g1="B" g2="K" k="18" />
+<hkern g1="B" g2="L" k="18" />
+<hkern g1="B" g2="M" k="18" />
+<hkern g1="B" g2="N" k="18" />
+<hkern g1="B" g2="P" k="18" />
+<hkern g1="B" g2="R" k="18" />
+<hkern g1="B" g2="T" k="18" />
+<hkern g1="B" g2="U" k="15" />
+<hkern g1="B" g2="V" k="30" />
+<hkern g1="B" g2="W" k="39" />
+<hkern g1="B" g2="X" k="45" />
+<hkern g1="B" g2="Y" k="50" />
+<hkern g1="B" g2="Z" k="12" />
+<hkern g1="B" g2="backslash" k="43" />
+<hkern g1="B" g2="bracketright" k="74" />
+<hkern g1="B" g2="f" k="16" />
+<hkern g1="B" g2="g" k="8" />
+<hkern g1="B" g2="h" k="18" />
+<hkern g1="B" g2="i" k="16" />
+<hkern g1="B" g2="j" k="14" />
+<hkern g1="B" g2="k" k="18" />
+<hkern g1="B" g2="l" k="16" />
+<hkern g1="B" g2="m" k="16" />
+<hkern g1="B" g2="n" k="16" />
+<hkern g1="B" g2="p" k="12" />
+<hkern g1="B" g2="r" k="16" />
+<hkern g1="B" g2="t" k="14" />
+<hkern g1="B" g2="u" k="14" />
+<hkern g1="B" g2="v" k="23" />
+<hkern g1="B" g2="w" k="25" />
+<hkern g1="B" g2="x" k="53" />
+<hkern g1="B" g2="y" k="27" />
+<hkern g1="B" g2="z" k="14" />
+<hkern g1="B" g2="braceright" k="41" />
+<hkern g1="B" g2="AE" k="61" />
+<hkern g1="B" g2="Egrave" k="18" />
+<hkern g1="B" g2="Eacute" k="18" />
+<hkern g1="B" g2="Ecircumflex" k="18" />
+<hkern g1="B" g2="Edieresis" k="18" />
+<hkern g1="B" g2="Igrave" k="18" />
+<hkern g1="B" g2="Iacute" k="18" />
+<hkern g1="B" g2="Icircumflex" k="18" />
+<hkern g1="B" g2="Idieresis" k="18" />
+<hkern g1="B" g2="Eth" k="18" />
+<hkern g1="B" g2="Ntilde" k="18" />
+<hkern g1="B" g2="Ugrave" k="15" />
+<hkern g1="B" g2="Uacute" k="15" />
+<hkern g1="B" g2="Ucircumflex" k="15" />
+<hkern g1="B" g2="Udieresis" k="15" />
+<hkern g1="B" g2="Yacute" k="50" />
+<hkern g1="B" g2="Thorn" k="18" />
+<hkern g1="B" g2="germandbls" k="16" />
+<hkern g1="B" g2="igrave" k="16" />
+<hkern g1="B" g2="iacute" k="16" />
+<hkern g1="B" g2="icircumflex" k="16" />
+<hkern g1="B" g2="idieresis" k="16" />
+<hkern g1="B" g2="ntilde" k="16" />
+<hkern g1="B" g2="ugrave" k="14" />
+<hkern g1="B" g2="uacute" k="14" />
+<hkern g1="B" g2="ucircumflex" k="14" />
+<hkern g1="B" g2="udieresis" k="14" />
+<hkern g1="B" g2="yacute" k="27" />
+<hkern g1="B" g2="ydieresis" k="27" />
+<hkern g1="B" g2="dotlessi" k="16" />
+<hkern g1="C" g2="hyphen" k="39" />
+<hkern g1="C" g2="slash" k="72" />
+<hkern g1="C" g2="A" k="20" />
+<hkern g1="C" g2="g" k="10" />
+<hkern g1="C" g2="z" k="10" />
+<hkern g1="C" g2="uni00AD" k="39" />
+<hkern g1="C" g2="Agrave" k="20" />
+<hkern g1="C" g2="Aacute" k="20" />
+<hkern g1="C" g2="Acircumflex" k="20" />
+<hkern g1="C" g2="Atilde" k="20" />
+<hkern g1="C" g2="Adieresis" k="20" />
+<hkern g1="C" g2="Aring" k="20" />
+<hkern g1="C" g2="AE" k="57" />
+<hkern g1="C" g2="endash" k="39" />
+<hkern g1="C" g2="emdash" k="39" />
+<hkern g1="D" g2="parenright" k="47" />
+<hkern g1="D" g2="comma" k="49" />
+<hkern g1="D" g2="period" k="49" />
+<hkern g1="D" g2="slash" k="121" />
+<hkern g1="D" g2="A" k="33" />
+<hkern g1="D" g2="B" k="20" />
+<hkern g1="D" g2="D" k="20" />
+<hkern g1="D" g2="E" k="20" />
+<hkern g1="D" g2="F" k="20" />
+<hkern g1="D" g2="H" k="20" />
+<hkern g1="D" g2="I" k="20" />
+<hkern g1="D" g2="J" k="55" />
+<hkern g1="D" g2="K" k="20" />
+<hkern g1="D" g2="L" k="20" />
+<hkern g1="D" g2="M" k="20" />
+<hkern g1="D" g2="N" k="20" />
+<hkern g1="D" g2="P" k="20" />
+<hkern g1="D" g2="R" k="20" />
+<hkern g1="D" g2="U" k="10" />
+<hkern g1="D" g2="V" k="27" />
+<hkern g1="D" g2="W" k="30" />
+<hkern g1="D" g2="X" k="55" />
+<hkern g1="D" g2="Y" k="30" />
+<hkern g1="D" g2="Z" k="10" />
+<hkern g1="D" g2="backslash" k="41" />
+<hkern g1="D" g2="bracketright" k="78" />
+<hkern g1="D" g2="a" k="10" />
+<hkern g1="D" g2="b" k="10" />
+<hkern g1="D" g2="g" k="10" />
+<hkern g1="D" g2="h" k="23" />
+<hkern g1="D" g2="k" k="23" />
+<hkern g1="D" g2="l" k="23" />
+<hkern g1="D" g2="x" k="16" />
+<hkern g1="D" g2="braceright" k="41" />
+<hkern g1="D" g2="Agrave" k="33" />
+<hkern g1="D" g2="Aacute" k="33" />
+<hkern g1="D" g2="Acircumflex" k="33" />
+<hkern g1="D" g2="Atilde" k="33" />
+<hkern g1="D" g2="Adieresis" k="33" />
+<hkern g1="D" g2="Aring" k="33" />
+<hkern g1="D" g2="AE" k="113" />
+<hkern g1="D" g2="Egrave" k="20" />
+<hkern g1="D" g2="Eacute" k="20" />
+<hkern g1="D" g2="Ecircumflex" k="20" />
+<hkern g1="D" g2="Edieresis" k="20" />
+<hkern g1="D" g2="Igrave" k="20" />
+<hkern g1="D" g2="Iacute" k="20" />
+<hkern g1="D" g2="Icircumflex" k="20" />
+<hkern g1="D" g2="Idieresis" k="20" />
+<hkern g1="D" g2="Eth" k="20" />
+<hkern g1="D" g2="Ntilde" k="20" />
+<hkern g1="D" g2="Ugrave" k="10" />
+<hkern g1="D" g2="Uacute" k="10" />
+<hkern g1="D" g2="Ucircumflex" k="10" />
+<hkern g1="D" g2="Udieresis" k="10" />
+<hkern g1="D" g2="Yacute" k="30" />
+<hkern g1="D" g2="Thorn" k="20" />
+<hkern g1="D" g2="agrave" k="10" />
+<hkern g1="D" g2="aacute" k="10" />
+<hkern g1="D" g2="acircumflex" k="10" />
+<hkern g1="D" g2="atilde" k="10" />
+<hkern g1="D" g2="adieresis" k="10" />
+<hkern g1="D" g2="aring" k="10" />
+<hkern g1="D" g2="ae" k="10" />
+<hkern g1="D" g2="thorn" k="10" />
+<hkern g1="D" g2="quoteleft" k="31" />
+<hkern g1="D" g2="quoteright" k="18" />
+<hkern g1="D" g2="quotesinglbase" k="49" />
+<hkern g1="D" g2="quotedblleft" k="31" />
+<hkern g1="D" g2="quotedblright" k="18" />
+<hkern g1="D" g2="quotedblbase" k="49" />
+<hkern g1="G" g2="parenright" k="25" />
+<hkern g1="G" g2="comma" k="16" />
+<hkern g1="G" g2="period" k="16" />
+<hkern g1="G" g2="slash" k="82" />
+<hkern g1="G" g2="C" k="25" />
+<hkern g1="G" g2="G" k="25" />
+<hkern g1="G" g2="O" k="25" />
+<hkern g1="G" g2="Q" k="25" />
+<hkern g1="G" g2="T" k="10" />
+<hkern g1="G" g2="V" k="15" />
+<hkern g1="G" g2="W" k="10" />
+<hkern g1="G" g2="bracketright" k="29" />
+<hkern g1="G" g2="x" k="16" />
+<hkern g1="G" g2="Ccedilla" k="25" />
+<hkern g1="G" g2="Ograve" k="25" />
+<hkern g1="G" g2="Oacute" k="25" />
+<hkern g1="G" g2="Ocircumflex" k="25" />
+<hkern g1="G" g2="Otilde" k="25" />
+<hkern g1="G" g2="Odieresis" k="25" />
+<hkern g1="G" g2="Oslash" k="25" />
+<hkern g1="G" g2="OE" k="25" />
+<hkern g1="G" g2="quotesinglbase" k="16" />
+<hkern g1="G" g2="quotedblbase" k="16" />
+<hkern g1="H" g2="asterisk" k="16" />
+<hkern g1="H" g2="hyphen" k="33" />
+<hkern g1="H" g2="slash" k="49" />
+<hkern g1="H" g2="G" k="18" />
+<hkern g1="H" g2="a" k="16" />
+<hkern g1="H" g2="c" k="45" />
+<hkern g1="H" g2="d" k="43" />
+<hkern g1="H" g2="e" k="45" />
+<hkern g1="H" g2="f" k="18" />
+<hkern g1="H" g2="g" k="29" />
+<hkern g1="H" g2="i" k="14" />
+<hkern g1="H" g2="j" k="20" />
+<hkern g1="H" g2="m" k="16" />
+<hkern g1="H" g2="n" k="16" />
+<hkern g1="H" g2="o" k="45" />
+<hkern g1="H" g2="p" k="33" />
+<hkern g1="H" g2="q" k="43" />
+<hkern g1="H" g2="r" k="16" />
+<hkern g1="H" g2="s" k="18" />
+<hkern g1="H" g2="t" k="35" />
+<hkern g1="H" g2="u" k="39" />
+<hkern g1="H" g2="v" k="35" />
+<hkern g1="H" g2="w" k="35" />
+<hkern g1="H" g2="y" k="35" />
+<hkern g1="H" g2="z" k="12" />
+<hkern g1="H" g2="guillemotleft" k="20" />
+<hkern g1="H" g2="uni00AD" k="33" />
+<hkern g1="H" g2="germandbls" k="18" />
+<hkern g1="H" g2="agrave" k="16" />
+<hkern g1="H" g2="aacute" k="16" />
+<hkern g1="H" g2="acircumflex" k="16" />
+<hkern g1="H" g2="atilde" k="16" />
+<hkern g1="H" g2="adieresis" k="16" />
+<hkern g1="H" g2="aring" k="16" />
+<hkern g1="H" g2="ae" k="16" />
+<hkern g1="H" g2="ccedilla" k="45" />
+<hkern g1="H" g2="egrave" k="45" />
+<hkern g1="H" g2="eacute" k="45" />
+<hkern g1="H" g2="ecircumflex" k="45" />
+<hkern g1="H" g2="edieresis" k="45" />
+<hkern g1="H" g2="igrave" k="14" />
+<hkern g1="H" g2="iacute" k="14" />
+<hkern g1="H" g2="icircumflex" k="14" />
+<hkern g1="H" g2="idieresis" k="14" />
+<hkern g1="H" g2="eth" k="43" />
+<hkern g1="H" g2="ntilde" k="16" />
+<hkern g1="H" g2="ograve" k="45" />
+<hkern g1="H" g2="oacute" k="45" />
+<hkern g1="H" g2="ocircumflex" k="45" />
+<hkern g1="H" g2="otilde" k="45" />
+<hkern g1="H" g2="odieresis" k="45" />
+<hkern g1="H" g2="oslash" k="45" />
+<hkern g1="H" g2="ugrave" k="39" />
+<hkern g1="H" g2="uacute" k="39" />
+<hkern g1="H" g2="ucircumflex" k="39" />
+<hkern g1="H" g2="udieresis" k="39" />
+<hkern g1="H" g2="yacute" k="35" />
+<hkern g1="H" g2="ydieresis" k="35" />
+<hkern g1="H" g2="dotlessi" k="14" />
+<hkern g1="H" g2="oe" k="45" />
+<hkern g1="H" g2="endash" k="33" />
+<hkern g1="H" g2="emdash" k="33" />
+<hkern g1="H" g2="guilsinglleft" k="20" />
+<hkern g1="I" g2="asterisk" k="16" />
+<hkern g1="I" g2="hyphen" k="33" />
+<hkern g1="I" g2="slash" k="49" />
+<hkern g1="I" g2="G" k="18" />
+<hkern g1="I" g2="a" k="16" />
+<hkern g1="I" g2="c" k="45" />
+<hkern g1="I" g2="d" k="43" />
+<hkern g1="I" g2="e" k="45" />
+<hkern g1="I" g2="f" k="18" />
+<hkern g1="I" g2="g" k="29" />
+<hkern g1="I" g2="i" k="14" />
+<hkern g1="I" g2="j" k="20" />
+<hkern g1="I" g2="m" k="16" />
+<hkern g1="I" g2="n" k="16" />
+<hkern g1="I" g2="o" k="45" />
+<hkern g1="I" g2="p" k="33" />
+<hkern g1="I" g2="q" k="43" />
+<hkern g1="I" g2="r" k="16" />
+<hkern g1="I" g2="s" k="18" />
+<hkern g1="I" g2="t" k="35" />
+<hkern g1="I" g2="u" k="39" />
+<hkern g1="I" g2="v" k="35" />
+<hkern g1="I" g2="w" k="35" />
+<hkern g1="I" g2="y" k="35" />
+<hkern g1="I" g2="z" k="12" />
+<hkern g1="I" g2="guillemotleft" k="20" />
+<hkern g1="I" g2="uni00AD" k="33" />
+<hkern g1="I" g2="germandbls" k="18" />
+<hkern g1="I" g2="agrave" k="16" />
+<hkern g1="I" g2="aacute" k="16" />
+<hkern g1="I" g2="acircumflex" k="16" />
+<hkern g1="I" g2="atilde" k="16" />
+<hkern g1="I" g2="adieresis" k="16" />
+<hkern g1="I" g2="aring" k="16" />
+<hkern g1="I" g2="ae" k="16" />
+<hkern g1="I" g2="ccedilla" k="45" />
+<hkern g1="I" g2="egrave" k="45" />
+<hkern g1="I" g2="eacute" k="45" />
+<hkern g1="I" g2="ecircumflex" k="45" />
+<hkern g1="I" g2="edieresis" k="45" />
+<hkern g1="I" g2="igrave" k="14" />
+<hkern g1="I" g2="iacute" k="14" />
+<hkern g1="I" g2="icircumflex" k="14" />
+<hkern g1="I" g2="idieresis" k="14" />
+<hkern g1="I" g2="eth" k="43" />
+<hkern g1="I" g2="ntilde" k="16" />
+<hkern g1="I" g2="ograve" k="45" />
+<hkern g1="I" g2="oacute" k="45" />
+<hkern g1="I" g2="ocircumflex" k="45" />
+<hkern g1="I" g2="otilde" k="45" />
+<hkern g1="I" g2="odieresis" k="45" />
+<hkern g1="I" g2="oslash" k="45" />
+<hkern g1="I" g2="ugrave" k="39" />
+<hkern g1="I" g2="uacute" k="39" />
+<hkern g1="I" g2="ucircumflex" k="39" />
+<hkern g1="I" g2="udieresis" k="39" />
+<hkern g1="I" g2="yacute" k="35" />
+<hkern g1="I" g2="ydieresis" k="35" />
+<hkern g1="I" g2="dotlessi" k="14" />
+<hkern g1="I" g2="oe" k="45" />
+<hkern g1="I" g2="endash" k="33" />
+<hkern g1="I" g2="emdash" k="33" />
+<hkern g1="I" g2="guilsinglleft" k="20" />
+<hkern g1="J" g2="comma" k="43" />
+<hkern g1="J" g2="hyphen" k="20" />
+<hkern g1="J" g2="period" k="43" />
+<hkern g1="J" g2="slash" k="113" />
+<hkern g1="J" g2="A" k="60" />
+<hkern g1="J" g2="G" k="12" />
+<hkern g1="J" g2="a" k="30" />
+<hkern g1="J" g2="c" k="30" />
+<hkern g1="J" g2="d" k="30" />
+<hkern g1="J" g2="e" k="30" />
+<hkern g1="J" g2="f" k="20" />
+<hkern g1="J" g2="g" k="50" />
+<hkern g1="J" g2="o" k="10" />
+<hkern g1="J" g2="q" k="10" />
+<hkern g1="J" g2="s" k="20" />
+<hkern g1="J" g2="t" k="20" />
+<hkern g1="J" g2="v" k="10" />
+<hkern g1="J" g2="w" k="10" />
+<hkern g1="J" g2="x" k="18" />
+<hkern g1="J" g2="y" k="20" />
+<hkern g1="J" g2="z" k="30" />
+<hkern g1="J" g2="uni00AD" k="20" />
+<hkern g1="J" g2="Agrave" k="60" />
+<hkern g1="J" g2="Aacute" k="60" />
+<hkern g1="J" g2="Acircumflex" k="60" />
+<hkern g1="J" g2="Atilde" k="60" />
+<hkern g1="J" g2="Adieresis" k="60" />
+<hkern g1="J" g2="Aring" k="60" />
+<hkern g1="J" g2="AE" k="27" />
+<hkern g1="J" g2="germandbls" k="20" />
+<hkern g1="J" g2="agrave" k="30" />
+<hkern g1="J" g2="aacute" k="30" />
+<hkern g1="J" g2="acircumflex" k="30" />
+<hkern g1="J" g2="atilde" k="30" />
+<hkern g1="J" g2="adieresis" k="30" />
+<hkern g1="J" g2="aring" k="30" />
+<hkern g1="J" g2="ae" k="30" />
+<hkern g1="J" g2="ccedilla" k="10" />
+<hkern g1="J" g2="egrave" k="10" />
+<hkern g1="J" g2="eacute" k="10" />
+<hkern g1="J" g2="ecircumflex" k="10" />
+<hkern g1="J" g2="edieresis" k="10" />
+<hkern g1="J" g2="eth" k="43" />
+<hkern g1="J" g2="ograve" k="10" />
+<hkern g1="J" g2="oacute" k="10" />
+<hkern g1="J" g2="ocircumflex" k="10" />
+<hkern g1="J" g2="otilde" k="10" />
+<hkern g1="J" g2="odieresis" k="10" />
+<hkern g1="J" g2="oslash" k="10" />
+<hkern g1="J" g2="yacute" k="20" />
+<hkern g1="J" g2="ydieresis" k="20" />
+<hkern g1="J" g2="oe" k="10" />
+<hkern g1="J" g2="endash" k="20" />
+<hkern g1="J" g2="emdash" k="20" />
+<hkern g1="J" g2="quotesinglbase" k="43" />
+<hkern g1="J" g2="quotedblbase" k="43" />
+<hkern g1="K" g2="asterisk" k="35" />
+<hkern g1="K" g2="hyphen" k="92" />
+<hkern g1="K" g2="two" k="-10" />
+<hkern g1="K" g2="C" k="50" />
+<hkern g1="K" g2="G" k="70" />
+<hkern g1="K" g2="J" k="-95" />
+<hkern g1="K" g2="O" k="50" />
+<hkern g1="K" g2="Q" k="70" />
+<hkern g1="K" g2="T" k="40" />
+<hkern g1="K" g2="c" k="30" />
+<hkern g1="K" g2="d" k="30" />
+<hkern g1="K" g2="e" k="30" />
+<hkern g1="K" g2="o" k="30" />
+<hkern g1="K" g2="q" k="30" />
+<hkern g1="K" g2="t" k="45" />
+<hkern g1="K" g2="u" k="20" />
+<hkern g1="K" g2="v" k="100" />
+<hkern g1="K" g2="w" k="100" />
+<hkern g1="K" g2="y" k="55" />
+<hkern g1="K" g2="guillemotleft" k="29" />
+<hkern g1="K" g2="uni00AD" k="92" />
+<hkern g1="K" g2="Ccedilla" k="50" />
+<hkern g1="K" g2="Ograve" k="50" />
+<hkern g1="K" g2="Oacute" k="50" />
+<hkern g1="K" g2="Ocircumflex" k="50" />
+<hkern g1="K" g2="Otilde" k="50" />
+<hkern g1="K" g2="Odieresis" k="50" />
+<hkern g1="K" g2="Oslash" k="50" />
+<hkern g1="K" g2="ccedilla" k="30" />
+<hkern g1="K" g2="egrave" k="30" />
+<hkern g1="K" g2="eacute" k="30" />
+<hkern g1="K" g2="ecircumflex" k="30" />
+<hkern g1="K" g2="edieresis" k="30" />
+<hkern g1="K" g2="eth" k="51" />
+<hkern g1="K" g2="ograve" k="30" />
+<hkern g1="K" g2="oacute" k="30" />
+<hkern g1="K" g2="ocircumflex" k="30" />
+<hkern g1="K" g2="otilde" k="30" />
+<hkern g1="K" g2="odieresis" k="30" />
+<hkern g1="K" g2="oslash" k="30" />
+<hkern g1="K" g2="ugrave" k="20" />
+<hkern g1="K" g2="uacute" k="20" />
+<hkern g1="K" g2="ucircumflex" k="20" />
+<hkern g1="K" g2="udieresis" k="20" />
+<hkern g1="K" g2="yacute" k="55" />
+<hkern g1="K" g2="ydieresis" k="55" />
+<hkern g1="K" g2="OE" k="50" />
+<hkern g1="K" g2="oe" k="30" />
+<hkern g1="K" g2="endash" k="92" />
+<hkern g1="K" g2="emdash" k="92" />
+<hkern g1="K" g2="guilsinglleft" k="29" />
+<hkern g1="L" g2="quotedbl" k="166" />
+<hkern g1="L" g2="quotesingle" k="166" />
+<hkern g1="L" g2="parenright" k="39" />
+<hkern g1="L" g2="asterisk" k="109" />
+<hkern g1="L" g2="hyphen" k="82" />
+<hkern g1="L" g2="slash" k="29" />
+<hkern g1="L" g2="four" k="-14" />
+<hkern g1="L" g2="seven" k="49" />
+<hkern g1="L" g2="question" k="41" />
+<hkern g1="L" g2="A" k="-35" />
+<hkern g1="L" g2="C" k="40" />
+<hkern g1="L" g2="G" k="40" />
+<hkern g1="L" g2="O" k="40" />
+<hkern g1="L" g2="Q" k="40" />
+<hkern g1="L" g2="T" k="120" />
+<hkern g1="L" g2="U" k="23" />
+<hkern g1="L" g2="V" k="150" />
+<hkern g1="L" g2="W" k="121" />
+<hkern g1="L" g2="Y" k="162" />
+<hkern g1="L" g2="backslash" k="123" />
+<hkern g1="L" g2="bracketright" k="74" />
+<hkern g1="L" g2="a" k="-45" />
+<hkern g1="L" g2="v" k="80" />
+<hkern g1="L" g2="w" k="80" />
+<hkern g1="L" g2="y" k="50" />
+<hkern g1="L" g2="braceright" k="29" />
+<hkern g1="L" g2="ordfeminine" k="200" />
+<hkern g1="L" g2="uni00AD" k="82" />
+<hkern g1="L" g2="middot" k="252" />
+<hkern g1="L" g2="Agrave" k="-35" />
+<hkern g1="L" g2="Aacute" k="-35" />
+<hkern g1="L" g2="Acircumflex" k="-35" />
+<hkern g1="L" g2="Atilde" k="-35" />
+<hkern g1="L" g2="Adieresis" k="-35" />
+<hkern g1="L" g2="Aring" k="-35" />
+<hkern g1="L" g2="AE" k="-45" />
+<hkern g1="L" g2="Ccedilla" k="40" />
+<hkern g1="L" g2="Ograve" k="40" />
+<hkern g1="L" g2="Oacute" k="40" />
+<hkern g1="L" g2="Ocircumflex" k="40" />
+<hkern g1="L" g2="Otilde" k="40" />
+<hkern g1="L" g2="Odieresis" k="40" />
+<hkern g1="L" g2="Oslash" k="40" />
+<hkern g1="L" g2="Ugrave" k="23" />
+<hkern g1="L" g2="Uacute" k="23" />
+<hkern g1="L" g2="Ucircumflex" k="23" />
+<hkern g1="L" g2="Udieresis" k="23" />
+<hkern g1="L" g2="Yacute" k="162" />
+<hkern g1="L" g2="agrave" k="-45" />
+<hkern g1="L" g2="aacute" k="-45" />
+<hkern g1="L" g2="acircumflex" k="-45" />
+<hkern g1="L" g2="atilde" k="-45" />
+<hkern g1="L" g2="adieresis" k="-45" />
+<hkern g1="L" g2="aring" k="-45" />
+<hkern g1="L" g2="ae" k="-45" />
+<hkern g1="L" g2="yacute" k="50" />
+<hkern g1="L" g2="ydieresis" k="50" />
+<hkern g1="L" g2="OE" k="40" />
+<hkern g1="L" g2="endash" k="82" />
+<hkern g1="L" g2="emdash" k="82" />
+<hkern g1="L" g2="quoteleft" k="158" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblleft" k="158" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="M" g2="asterisk" k="18" />
+<hkern g1="M" g2="hyphen" k="33" />
+<hkern g1="M" g2="slash" k="39" />
+<hkern g1="M" g2="C" k="10" />
+<hkern g1="M" g2="G" k="10" />
+<hkern g1="M" g2="O" k="10" />
+<hkern g1="M" g2="Q" k="10" />
+<hkern g1="M" g2="Y" k="10" />
+<hkern g1="M" g2="c" k="15" />
+<hkern g1="M" g2="d" k="15" />
+<hkern g1="M" g2="e" k="15" />
+<hkern g1="M" g2="f" k="10" />
+<hkern g1="M" g2="g" k="10" />
+<hkern g1="M" g2="j" k="10" />
+<hkern g1="M" g2="o" k="15" />
+<hkern g1="M" g2="q" k="15" />
+<hkern g1="M" g2="t" k="10" />
+<hkern g1="M" g2="v" k="20" />
+<hkern g1="M" g2="w" k="20" />
+<hkern g1="M" g2="y" k="30" />
+<hkern g1="M" g2="uni00AD" k="33" />
+<hkern g1="M" g2="Ccedilla" k="10" />
+<hkern g1="M" g2="Ograve" k="10" />
+<hkern g1="M" g2="Oacute" k="10" />
+<hkern g1="M" g2="Ocircumflex" k="10" />
+<hkern g1="M" g2="Otilde" k="10" />
+<hkern g1="M" g2="Odieresis" k="10" />
+<hkern g1="M" g2="Oslash" k="10" />
+<hkern g1="M" g2="Yacute" k="10" />
+<hkern g1="M" g2="germandbls" k="10" />
+<hkern g1="M" g2="ccedilla" k="15" />
+<hkern g1="M" g2="egrave" k="15" />
+<hkern g1="M" g2="eacute" k="15" />
+<hkern g1="M" g2="ecircumflex" k="15" />
+<hkern g1="M" g2="edieresis" k="15" />
+<hkern g1="M" g2="eth" k="29" />
+<hkern g1="M" g2="ograve" k="15" />
+<hkern g1="M" g2="oacute" k="15" />
+<hkern g1="M" g2="ocircumflex" k="15" />
+<hkern g1="M" g2="otilde" k="15" />
+<hkern g1="M" g2="odieresis" k="15" />
+<hkern g1="M" g2="oslash" k="15" />
+<hkern g1="M" g2="yacute" k="30" />
+<hkern g1="M" g2="ydieresis" k="30" />
+<hkern g1="M" g2="OE" k="10" />
+<hkern g1="M" g2="oe" k="15" />
+<hkern g1="M" g2="endash" k="33" />
+<hkern g1="M" g2="emdash" k="33" />
+<hkern g1="N" g2="comma" k="29" />
+<hkern g1="N" g2="hyphen" k="23" />
+<hkern g1="N" g2="period" k="29" />
+<hkern g1="N" g2="slash" k="78" />
+<hkern g1="N" g2="C" k="10" />
+<hkern g1="N" g2="a" k="10" />
+<hkern g1="N" g2="c" k="20" />
+<hkern g1="N" g2="d" k="20" />
+<hkern g1="N" g2="e" k="20" />
+<hkern g1="N" g2="f" k="10" />
+<hkern g1="N" g2="g" k="10" />
+<hkern g1="N" g2="o" k="20" />
+<hkern g1="N" g2="q" k="20" />
+<hkern g1="N" g2="s" k="15" />
+<hkern g1="N" g2="t" k="10" />
+<hkern g1="N" g2="v" k="15" />
+<hkern g1="N" g2="w" k="15" />
+<hkern g1="N" g2="x" k="10" />
+<hkern g1="N" g2="y" k="15" />
+<hkern g1="N" g2="z" k="20" />
+<hkern g1="N" g2="uni00AD" k="23" />
+<hkern g1="N" g2="germandbls" k="10" />
+<hkern g1="N" g2="agrave" k="10" />
+<hkern g1="N" g2="aacute" k="10" />
+<hkern g1="N" g2="acircumflex" k="10" />
+<hkern g1="N" g2="atilde" k="10" />
+<hkern g1="N" g2="adieresis" k="10" />
+<hkern g1="N" g2="aring" k="10" />
+<hkern g1="N" g2="ae" k="10" />
+<hkern g1="N" g2="ccedilla" k="20" />
+<hkern g1="N" g2="egrave" k="20" />
+<hkern g1="N" g2="eacute" k="20" />
+<hkern g1="N" g2="ecircumflex" k="20" />
+<hkern g1="N" g2="edieresis" k="20" />
+<hkern g1="N" g2="eth" k="41" />
+<hkern g1="N" g2="ograve" k="20" />
+<hkern g1="N" g2="oacute" k="20" />
+<hkern g1="N" g2="ocircumflex" k="20" />
+<hkern g1="N" g2="otilde" k="20" />
+<hkern g1="N" g2="odieresis" k="20" />
+<hkern g1="N" g2="oslash" k="20" />
+<hkern g1="N" g2="yacute" k="15" />
+<hkern g1="N" g2="ydieresis" k="15" />
+<hkern g1="N" g2="oe" k="20" />
+<hkern g1="N" g2="endash" k="23" />
+<hkern g1="N" g2="emdash" k="23" />
+<hkern g1="N" g2="quotesinglbase" k="29" />
+<hkern g1="N" g2="quotedblbase" k="29" />
+<hkern g1="O" g2="parenright" k="70" />
+<hkern g1="O" g2="comma" k="45" />
+<hkern g1="O" g2="period" k="45" />
+<hkern g1="O" g2="slash" k="115" />
+<hkern g1="O" g2="A" k="27" />
+<hkern g1="O" g2="B" k="18" />
+<hkern g1="O" g2="D" k="18" />
+<hkern g1="O" g2="E" k="18" />
+<hkern g1="O" g2="F" k="18" />
+<hkern g1="O" g2="H" k="18" />
+<hkern g1="O" g2="I" k="18" />
+<hkern g1="O" g2="J" k="45" />
+<hkern g1="O" g2="K" k="18" />
+<hkern g1="O" g2="L" k="18" />
+<hkern g1="O" g2="M" k="10" />
+<hkern g1="O" g2="N" k="18" />
+<hkern g1="O" g2="P" k="18" />
+<hkern g1="O" g2="R" k="18" />
+<hkern g1="O" g2="T" k="45" />
+<hkern g1="O" g2="U" k="10" />
+<hkern g1="O" g2="V" k="25" />
+<hkern g1="O" g2="W" k="30" />
+<hkern g1="O" g2="X" k="50" />
+<hkern g1="O" g2="Y" k="40" />
+<hkern g1="O" g2="backslash" k="39" />
+<hkern g1="O" g2="bracketright" k="74" />
+<hkern g1="O" g2="c" k="10" />
+<hkern g1="O" g2="d" k="10" />
+<hkern g1="O" g2="e" k="10" />
+<hkern g1="O" g2="g" k="10" />
+<hkern g1="O" g2="o" k="10" />
+<hkern g1="O" g2="q" k="10" />
+<hkern g1="O" g2="x" k="15" />
+<hkern g1="O" g2="braceright" k="41" />
+<hkern g1="O" g2="Agrave" k="27" />
+<hkern g1="O" g2="Aacute" k="27" />
+<hkern g1="O" g2="Acircumflex" k="27" />
+<hkern g1="O" g2="Atilde" k="27" />
+<hkern g1="O" g2="Adieresis" k="27" />
+<hkern g1="O" g2="Aring" k="27" />
+<hkern g1="O" g2="AE" k="92" />
+<hkern g1="O" g2="Egrave" k="18" />
+<hkern g1="O" g2="Eacute" k="18" />
+<hkern g1="O" g2="Ecircumflex" k="18" />
+<hkern g1="O" g2="Edieresis" k="18" />
+<hkern g1="O" g2="Igrave" k="18" />
+<hkern g1="O" g2="Iacute" k="18" />
+<hkern g1="O" g2="Icircumflex" k="18" />
+<hkern g1="O" g2="Idieresis" k="18" />
+<hkern g1="O" g2="Eth" k="18" />
+<hkern g1="O" g2="Ntilde" k="18" />
+<hkern g1="O" g2="Ugrave" k="10" />
+<hkern g1="O" g2="Uacute" k="10" />
+<hkern g1="O" g2="Ucircumflex" k="10" />
+<hkern g1="O" g2="Udieresis" k="10" />
+<hkern g1="O" g2="Yacute" k="40" />
+<hkern g1="O" g2="Thorn" k="18" />
+<hkern g1="O" g2="ccedilla" k="10" />
+<hkern g1="O" g2="egrave" k="10" />
+<hkern g1="O" g2="eacute" k="10" />
+<hkern g1="O" g2="ecircumflex" k="10" />
+<hkern g1="O" g2="edieresis" k="10" />
+<hkern g1="O" g2="ograve" k="10" />
+<hkern g1="O" g2="oacute" k="10" />
+<hkern g1="O" g2="ocircumflex" k="10" />
+<hkern g1="O" g2="otilde" k="10" />
+<hkern g1="O" g2="odieresis" k="10" />
+<hkern g1="O" g2="oslash" k="10" />
+<hkern g1="O" g2="oe" k="10" />
+<hkern g1="O" g2="quoteleft" k="31" />
+<hkern g1="O" g2="quoteright" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="45" />
+<hkern g1="O" g2="quotedblleft" k="31" />
+<hkern g1="O" g2="quotedblright" k="20" />
+<hkern g1="O" g2="quotedblbase" k="45" />
+<hkern g1="P" g2="parenright" k="20" />
+<hkern g1="P" g2="asterisk" k="-45" />
+<hkern g1="P" g2="comma" k="160" />
+<hkern g1="P" g2="hyphen" k="27" />
+<hkern g1="P" g2="period" k="172" />
+<hkern g1="P" g2="slash" k="170" />
+<hkern g1="P" g2="four" k="20" />
+<hkern g1="P" g2="A" k="70" />
+<hkern g1="P" g2="B" k="10" />
+<hkern g1="P" g2="D" k="10" />
+<hkern g1="P" g2="E" k="10" />
+<hkern g1="P" g2="F" k="10" />
+<hkern g1="P" g2="H" k="10" />
+<hkern g1="P" g2="I" k="10" />
+<hkern g1="P" g2="J" k="86" />
+<hkern g1="P" g2="K" k="10" />
+<hkern g1="P" g2="L" k="10" />
+<hkern g1="P" g2="M" k="16" />
+<hkern g1="P" g2="N" k="10" />
+<hkern g1="P" g2="P" k="10" />
+<hkern g1="P" g2="R" k="10" />
+<hkern g1="P" g2="X" k="10" />
+<hkern g1="P" g2="bracketright" k="39" />
+<hkern g1="P" g2="a" k="15" />
+<hkern g1="P" g2="c" k="20" />
+<hkern g1="P" g2="d" k="20" />
+<hkern g1="P" g2="e" k="20" />
+<hkern g1="P" g2="g" k="20" />
+<hkern g1="P" g2="h" k="12" />
+<hkern g1="P" g2="k" k="12" />
+<hkern g1="P" g2="l" k="12" />
+<hkern g1="P" g2="o" k="20" />
+<hkern g1="P" g2="q" k="20" />
+<hkern g1="P" g2="s" k="14" />
+<hkern g1="P" g2="v" k="-60" />
+<hkern g1="P" g2="w" k="-60" />
+<hkern g1="P" g2="x" k="-35" />
+<hkern g1="P" g2="y" k="-30" />
+<hkern g1="P" g2="z" k="20" />
+<hkern g1="P" g2="braceright" k="25" />
+<hkern g1="P" g2="uni00AD" k="27" />
+<hkern g1="P" g2="Agrave" k="70" />
+<hkern g1="P" g2="Aacute" k="70" />
+<hkern g1="P" g2="Acircumflex" k="70" />
+<hkern g1="P" g2="Atilde" k="70" />
+<hkern g1="P" g2="Adieresis" k="70" />
+<hkern g1="P" g2="Aring" k="70" />
+<hkern g1="P" g2="AE" k="200" />
+<hkern g1="P" g2="Egrave" k="10" />
+<hkern g1="P" g2="Eacute" k="10" />
+<hkern g1="P" g2="Ecircumflex" k="10" />
+<hkern g1="P" g2="Edieresis" k="10" />
+<hkern g1="P" g2="Igrave" k="10" />
+<hkern g1="P" g2="Iacute" k="10" />
+<hkern g1="P" g2="Icircumflex" k="10" />
+<hkern g1="P" g2="Idieresis" k="10" />
+<hkern g1="P" g2="Eth" k="10" />
+<hkern g1="P" g2="Ntilde" k="10" />
+<hkern g1="P" g2="Thorn" k="10" />
+<hkern g1="P" g2="agrave" k="23" />
+<hkern g1="P" g2="aacute" k="15" />
+<hkern g1="P" g2="acircumflex" k="15" />
+<hkern g1="P" g2="atilde" k="15" />
+<hkern g1="P" g2="adieresis" k="15" />
+<hkern g1="P" g2="aring" k="15" />
+<hkern g1="P" g2="ae" k="15" />
+<hkern g1="P" g2="ccedilla" k="20" />
+<hkern g1="P" g2="egrave" k="20" />
+<hkern g1="P" g2="eacute" k="20" />
+<hkern g1="P" g2="ecircumflex" k="20" />
+<hkern g1="P" g2="edieresis" k="20" />
+<hkern g1="P" g2="eth" k="43" />
+<hkern g1="P" g2="ograve" k="20" />
+<hkern g1="P" g2="oacute" k="20" />
+<hkern g1="P" g2="ocircumflex" k="20" />
+<hkern g1="P" g2="otilde" k="20" />
+<hkern g1="P" g2="odieresis" k="20" />
+<hkern g1="P" g2="oslash" k="20" />
+<hkern g1="P" g2="yacute" k="-30" />
+<hkern g1="P" g2="ydieresis" k="-30" />
+<hkern g1="P" g2="oe" k="20" />
+<hkern g1="P" g2="endash" k="27" />
+<hkern g1="P" g2="emdash" k="27" />
+<hkern g1="P" g2="quotesinglbase" k="172" />
+<hkern g1="P" g2="quotedblbase" k="172" />
+<hkern g1="Q" g2="parenright" k="29" />
+<hkern g1="Q" g2="comma" k="45" />
+<hkern g1="Q" g2="period" k="45" />
+<hkern g1="Q" g2="slash" k="115" />
+<hkern g1="Q" g2="A" k="27" />
+<hkern g1="Q" g2="B" k="18" />
+<hkern g1="Q" g2="D" k="18" />
+<hkern g1="Q" g2="E" k="18" />
+<hkern g1="Q" g2="F" k="18" />
+<hkern g1="Q" g2="H" k="18" />
+<hkern g1="Q" g2="I" k="18" />
+<hkern g1="Q" g2="J" k="45" />
+<hkern g1="Q" g2="K" k="18" />
+<hkern g1="Q" g2="L" k="18" />
+<hkern g1="Q" g2="M" k="10" />
+<hkern g1="Q" g2="N" k="18" />
+<hkern g1="Q" g2="P" k="18" />
+<hkern g1="Q" g2="R" k="18" />
+<hkern g1="Q" g2="T" k="25" />
+<hkern g1="Q" g2="U" k="10" />
+<hkern g1="Q" g2="V" k="30" />
+<hkern g1="Q" g2="W" k="30" />
+<hkern g1="Q" g2="X" k="20" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="backslash" k="39" />
+<hkern g1="Q" g2="bracketright" k="-27" />
+<hkern g1="Q" g2="c" k="10" />
+<hkern g1="Q" g2="d" k="10" />
+<hkern g1="Q" g2="e" k="10" />
+<hkern g1="Q" g2="g" k="10" />
+<hkern g1="Q" g2="j" k="-219" />
+<hkern g1="Q" g2="o" k="10" />
+<hkern g1="Q" g2="q" k="10" />
+<hkern g1="Q" g2="x" k="15" />
+<hkern g1="Q" g2="braceright" k="-14" />
+<hkern g1="Q" g2="Agrave" k="27" />
+<hkern g1="Q" g2="Aacute" k="27" />
+<hkern g1="Q" g2="Acircumflex" k="27" />
+<hkern g1="Q" g2="Atilde" k="27" />
+<hkern g1="Q" g2="Adieresis" k="27" />
+<hkern g1="Q" g2="Aring" k="27" />
+<hkern g1="Q" g2="AE" k="92" />
+<hkern g1="Q" g2="Egrave" k="18" />
+<hkern g1="Q" g2="Eacute" k="18" />
+<hkern g1="Q" g2="Ecircumflex" k="18" />
+<hkern g1="Q" g2="Edieresis" k="18" />
+<hkern g1="Q" g2="Igrave" k="18" />
+<hkern g1="Q" g2="Iacute" k="18" />
+<hkern g1="Q" g2="Icircumflex" k="18" />
+<hkern g1="Q" g2="Idieresis" k="18" />
+<hkern g1="Q" g2="Eth" k="18" />
+<hkern g1="Q" g2="Ntilde" k="18" />
+<hkern g1="Q" g2="Ugrave" k="10" />
+<hkern g1="Q" g2="Uacute" k="10" />
+<hkern g1="Q" g2="Ucircumflex" k="10" />
+<hkern g1="Q" g2="Udieresis" k="10" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Thorn" k="18" />
+<hkern g1="Q" g2="ccedilla" k="10" />
+<hkern g1="Q" g2="egrave" k="10" />
+<hkern g1="Q" g2="eacute" k="10" />
+<hkern g1="Q" g2="ecircumflex" k="10" />
+<hkern g1="Q" g2="edieresis" k="10" />
+<hkern g1="Q" g2="ograve" k="10" />
+<hkern g1="Q" g2="oacute" k="10" />
+<hkern g1="Q" g2="ocircumflex" k="10" />
+<hkern g1="Q" g2="otilde" k="10" />
+<hkern g1="Q" g2="odieresis" k="10" />
+<hkern g1="Q" g2="oslash" k="10" />
+<hkern g1="Q" g2="oe" k="10" />
+<hkern g1="Q" g2="quoteleft" k="31" />
+<hkern g1="Q" g2="quoteright" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="45" />
+<hkern g1="Q" g2="quotedblleft" k="31" />
+<hkern g1="Q" g2="quotedblright" k="20" />
+<hkern g1="Q" g2="quotedblbase" k="45" />
+<hkern g1="R" g2="A" k="-100" />
+<hkern g1="R" g2="J" k="-55" />
+<hkern g1="R" g2="U" k="12" />
+<hkern g1="R" g2="V" k="10" />
+<hkern g1="R" g2="W" k="23" />
+<hkern g1="R" g2="X" k="-60" />
+<hkern g1="R" g2="Y" k="23" />
+<hkern g1="R" g2="backslash" k="27" />
+<hkern g1="R" g2="bracketright" k="51" />
+<hkern g1="R" g2="c" k="15" />
+<hkern g1="R" g2="d" k="15" />
+<hkern g1="R" g2="e" k="15" />
+<hkern g1="R" g2="o" k="15" />
+<hkern g1="R" g2="q" k="15" />
+<hkern g1="R" g2="x" k="-35" />
+<hkern g1="R" g2="y" k="10" />
+<hkern g1="R" g2="guillemotleft" k="39" />
+<hkern g1="R" g2="Agrave" k="-100" />
+<hkern g1="R" g2="Aacute" k="-100" />
+<hkern g1="R" g2="Acircumflex" k="-100" />
+<hkern g1="R" g2="Atilde" k="-100" />
+<hkern g1="R" g2="Adieresis" k="-100" />
+<hkern g1="R" g2="Aring" k="-100" />
+<hkern g1="R" g2="AE" k="-100" />
+<hkern g1="R" g2="Ugrave" k="12" />
+<hkern g1="R" g2="Uacute" k="12" />
+<hkern g1="R" g2="Ucircumflex" k="12" />
+<hkern g1="R" g2="Udieresis" k="12" />
+<hkern g1="R" g2="Yacute" k="23" />
+<hkern g1="R" g2="ccedilla" k="15" />
+<hkern g1="R" g2="egrave" k="15" />
+<hkern g1="R" g2="eacute" k="15" />
+<hkern g1="R" g2="ecircumflex" k="15" />
+<hkern g1="R" g2="edieresis" k="15" />
+<hkern g1="R" g2="eth" k="18" />
+<hkern g1="R" g2="ograve" k="15" />
+<hkern g1="R" g2="oacute" k="15" />
+<hkern g1="R" g2="ocircumflex" k="15" />
+<hkern g1="R" g2="otilde" k="15" />
+<hkern g1="R" g2="odieresis" k="15" />
+<hkern g1="R" g2="oslash" k="15" />
+<hkern g1="R" g2="yacute" k="10" />
+<hkern g1="R" g2="ydieresis" k="10" />
+<hkern g1="R" g2="oe" k="15" />
+<hkern g1="R" g2="guilsinglleft" k="39" />
+<hkern g1="S" g2="slash" k="74" />
+<hkern g1="S" g2="f" k="8" />
+<hkern g1="S" g2="g" k="14" />
+<hkern g1="S" g2="i" k="12" />
+<hkern g1="S" g2="j" k="12" />
+<hkern g1="S" g2="m" k="12" />
+<hkern g1="S" g2="n" k="12" />
+<hkern g1="S" g2="p" k="12" />
+<hkern g1="S" g2="r" k="12" />
+<hkern g1="S" g2="t" k="8" />
+<hkern g1="S" g2="u" k="12" />
+<hkern g1="S" g2="v" k="10" />
+<hkern g1="S" g2="w" k="10" />
+<hkern g1="S" g2="x" k="10" />
+<hkern g1="S" g2="y" k="10" />
+<hkern g1="S" g2="germandbls" k="8" />
+<hkern g1="S" g2="igrave" k="12" />
+<hkern g1="S" g2="iacute" k="12" />
+<hkern g1="S" g2="icircumflex" k="12" />
+<hkern g1="S" g2="idieresis" k="12" />
+<hkern g1="S" g2="ntilde" k="12" />
+<hkern g1="S" g2="ugrave" k="12" />
+<hkern g1="S" g2="uacute" k="12" />
+<hkern g1="S" g2="ucircumflex" k="12" />
+<hkern g1="S" g2="udieresis" k="12" />
+<hkern g1="S" g2="yacute" k="10" />
+<hkern g1="S" g2="ydieresis" k="10" />
+<hkern g1="S" g2="dotlessi" k="12" />
+<hkern g1="T" g2="asterisk" k="-25" />
+<hkern g1="T" g2="comma" k="144" />
+<hkern g1="T" g2="hyphen" k="131" />
+<hkern g1="T" g2="period" k="100" />
+<hkern g1="T" g2="slash" k="145" />
+<hkern g1="T" g2="four" k="57" />
+<hkern g1="T" g2="at" k="25" />
+<hkern g1="T" g2="A" k="50" />
+<hkern g1="T" g2="J" k="45" />
+<hkern g1="T" g2="V" k="-45" />
+<hkern g1="T" g2="X" k="-35" />
+<hkern g1="T" g2="Y" k="-45" />
+<hkern g1="T" g2="a" k="50" />
+<hkern g1="T" g2="c" k="100" />
+<hkern g1="T" g2="d" k="100" />
+<hkern g1="T" g2="e" k="100" />
+<hkern g1="T" g2="g" k="86" />
+<hkern g1="T" g2="m" k="30" />
+<hkern g1="T" g2="n" k="30" />
+<hkern g1="T" g2="o" k="100" />
+<hkern g1="T" g2="p" k="30" />
+<hkern g1="T" g2="q" k="100" />
+<hkern g1="T" g2="r" k="30" />
+<hkern g1="T" g2="s" k="55" />
+<hkern g1="T" g2="u" k="30" />
+<hkern g1="T" g2="x" k="45" />
+<hkern g1="T" g2="z" k="80" />
+<hkern g1="T" g2="guillemotleft" k="78" />
+<hkern g1="T" g2="uni00AD" k="131" />
+<hkern g1="T" g2="Agrave" k="50" />
+<hkern g1="T" g2="Aacute" k="50" />
+<hkern g1="T" g2="Acircumflex" k="50" />
+<hkern g1="T" g2="Atilde" k="50" />
+<hkern g1="T" g2="Adieresis" k="50" />
+<hkern g1="T" g2="Aring" k="50" />
+<hkern g1="T" g2="AE" k="129" />
+<hkern g1="T" g2="Yacute" k="-45" />
+<hkern g1="T" g2="agrave" k="50" />
+<hkern g1="T" g2="aacute" k="50" />
+<hkern g1="T" g2="acircumflex" k="50" />
+<hkern g1="T" g2="atilde" k="50" />
+<hkern g1="T" g2="adieresis" k="50" />
+<hkern g1="T" g2="aring" k="50" />
+<hkern g1="T" g2="ae" k="50" />
+<hkern g1="T" g2="ccedilla" k="100" />
+<hkern g1="T" g2="egrave" k="100" />
+<hkern g1="T" g2="eacute" k="100" />
+<hkern g1="T" g2="ecircumflex" k="100" />
+<hkern g1="T" g2="edieresis" k="100" />
+<hkern g1="T" g2="eth" k="84" />
+<hkern g1="T" g2="ntilde" k="30" />
+<hkern g1="T" g2="ograve" k="100" />
+<hkern g1="T" g2="oacute" k="100" />
+<hkern g1="T" g2="ocircumflex" k="100" />
+<hkern g1="T" g2="otilde" k="100" />
+<hkern g1="T" g2="odieresis" k="100" />
+<hkern g1="T" g2="oslash" k="100" />
+<hkern g1="T" g2="ugrave" k="30" />
+<hkern g1="T" g2="uacute" k="30" />
+<hkern g1="T" g2="ucircumflex" k="30" />
+<hkern g1="T" g2="udieresis" k="30" />
+<hkern g1="T" g2="oe" k="100" />
+<hkern g1="T" g2="endash" k="131" />
+<hkern g1="T" g2="emdash" k="131" />
+<hkern g1="T" g2="quoteleft" k="-100" />
+<hkern g1="T" g2="quotesinglbase" k="170" />
+<hkern g1="T" g2="quotedblleft" k="-100" />
+<hkern g1="T" g2="quotedblbase" k="100" />
+<hkern g1="T" g2="guilsinglleft" k="78" />
+<hkern g1="U" g2="comma" k="80" />
+<hkern g1="U" g2="hyphen" k="18" />
+<hkern g1="U" g2="period" k="59" />
+<hkern g1="U" g2="slash" k="133" />
+<hkern g1="U" g2="semicolon" k="16" />
+<hkern g1="U" g2="A" k="50" />
+<hkern g1="U" g2="C" k="12" />
+<hkern g1="U" g2="G" k="20" />
+<hkern g1="U" g2="O" k="12" />
+<hkern g1="U" g2="Q" k="12" />
+<hkern g1="U" g2="a" k="50" />
+<hkern g1="U" g2="c" k="40" />
+<hkern g1="U" g2="d" k="40" />
+<hkern g1="U" g2="e" k="40" />
+<hkern g1="U" g2="f" k="20" />
+<hkern g1="U" g2="g" k="57" />
+<hkern g1="U" g2="q" k="30" />
+<hkern g1="U" g2="s" k="15" />
+<hkern g1="U" g2="t" k="10" />
+<hkern g1="U" g2="v" k="10" />
+<hkern g1="U" g2="w" k="10" />
+<hkern g1="U" g2="x" k="10" />
+<hkern g1="U" g2="y" k="10" />
+<hkern g1="U" g2="z" k="45" />
+<hkern g1="U" g2="uni00AD" k="18" />
+<hkern g1="U" g2="Agrave" k="50" />
+<hkern g1="U" g2="Aacute" k="50" />
+<hkern g1="U" g2="Acircumflex" k="50" />
+<hkern g1="U" g2="Atilde" k="50" />
+<hkern g1="U" g2="Adieresis" k="50" />
+<hkern g1="U" g2="Aring" k="50" />
+<hkern g1="U" g2="AE" k="80" />
+<hkern g1="U" g2="Ccedilla" k="12" />
+<hkern g1="U" g2="Ograve" k="12" />
+<hkern g1="U" g2="Oacute" k="12" />
+<hkern g1="U" g2="Ocircumflex" k="12" />
+<hkern g1="U" g2="Otilde" k="12" />
+<hkern g1="U" g2="Odieresis" k="12" />
+<hkern g1="U" g2="Oslash" k="12" />
+<hkern g1="U" g2="germandbls" k="20" />
+<hkern g1="U" g2="agrave" k="50" />
+<hkern g1="U" g2="aacute" k="50" />
+<hkern g1="U" g2="acircumflex" k="50" />
+<hkern g1="U" g2="atilde" k="50" />
+<hkern g1="U" g2="adieresis" k="50" />
+<hkern g1="U" g2="aring" k="50" />
+<hkern g1="U" g2="ae" k="50" />
+<hkern g1="U" g2="eth" k="47" />
+<hkern g1="U" g2="yacute" k="10" />
+<hkern g1="U" g2="ydieresis" k="10" />
+<hkern g1="U" g2="OE" k="12" />
+<hkern g1="U" g2="endash" k="18" />
+<hkern g1="U" g2="emdash" k="18" />
+<hkern g1="U" g2="quotesinglbase" k="59" />
+<hkern g1="U" g2="quotedblbase" k="59" />
+<hkern g1="V" g2="parenright" k="-90" />
+<hkern g1="V" g2="comma" k="176" />
+<hkern g1="V" g2="hyphen" k="63" />
+<hkern g1="V" g2="period" k="208" />
+<hkern g1="V" g2="slash" k="172" />
+<hkern g1="V" g2="four" k="51" />
+<hkern g1="V" g2="seven" k="-68" />
+<hkern g1="V" g2="colon" k="96" />
+<hkern g1="V" g2="semicolon" k="80" />
+<hkern g1="V" g2="at" k="47" />
+<hkern g1="V" g2="A" k="90" />
+<hkern g1="V" g2="C" k="30" />
+<hkern g1="V" g2="G" k="30" />
+<hkern g1="V" g2="O" k="30" />
+<hkern g1="V" g2="Q" k="30" />
+<hkern g1="V" g2="T" k="-45" />
+<hkern g1="V" g2="V" k="-120" />
+<hkern g1="V" g2="W" k="-110" />
+<hkern g1="V" g2="X" k="-110" />
+<hkern g1="V" g2="Y" k="-120" />
+<hkern g1="V" g2="backslash" k="-47" />
+<hkern g1="V" g2="bracketright" k="-86" />
+<hkern g1="V" g2="a" k="50" />
+<hkern g1="V" g2="b" k="-80" />
+<hkern g1="V" g2="c" k="80" />
+<hkern g1="V" g2="d" k="80" />
+<hkern g1="V" g2="e" k="80" />
+<hkern g1="V" g2="f" k="12" />
+<hkern g1="V" g2="g" k="80" />
+<hkern g1="V" g2="h" k="-45" />
+<hkern g1="V" g2="k" k="-45" />
+<hkern g1="V" g2="l" k="-45" />
+<hkern g1="V" g2="m" k="30" />
+<hkern g1="V" g2="n" k="30" />
+<hkern g1="V" g2="o" k="80" />
+<hkern g1="V" g2="p" k="30" />
+<hkern g1="V" g2="q" k="80" />
+<hkern g1="V" g2="r" k="30" />
+<hkern g1="V" g2="s" k="60" />
+<hkern g1="V" g2="t" k="20" />
+<hkern g1="V" g2="u" k="30" />
+<hkern g1="V" g2="v" k="30" />
+<hkern g1="V" g2="w" k="30" />
+<hkern g1="V" g2="x" k="30" />
+<hkern g1="V" g2="y" k="37" />
+<hkern g1="V" g2="z" k="80" />
+<hkern g1="V" g2="braceright" k="-43" />
+<hkern g1="V" g2="guillemotleft" k="63" />
+<hkern g1="V" g2="uni00AD" k="63" />
+<hkern g1="V" g2="guillemotright" k="20" />
+<hkern g1="V" g2="Agrave" k="90" />
+<hkern g1="V" g2="Aacute" k="90" />
+<hkern g1="V" g2="Acircumflex" k="90" />
+<hkern g1="V" g2="Atilde" k="90" />
+<hkern g1="V" g2="Adieresis" k="90" />
+<hkern g1="V" g2="Aring" k="90" />
+<hkern g1="V" g2="AE" k="166" />
+<hkern g1="V" g2="Ccedilla" k="30" />
+<hkern g1="V" g2="Ograve" k="30" />
+<hkern g1="V" g2="Oacute" k="30" />
+<hkern g1="V" g2="Ocircumflex" k="30" />
+<hkern g1="V" g2="Otilde" k="30" />
+<hkern g1="V" g2="Odieresis" k="30" />
+<hkern g1="V" g2="Oslash" k="30" />
+<hkern g1="V" g2="Yacute" k="-120" />
+<hkern g1="V" g2="germandbls" k="12" />
+<hkern g1="V" g2="agrave" k="50" />
+<hkern g1="V" g2="aacute" k="50" />
+<hkern g1="V" g2="acircumflex" k="50" />
+<hkern g1="V" g2="atilde" k="50" />
+<hkern g1="V" g2="adieresis" k="50" />
+<hkern g1="V" g2="aring" k="50" />
+<hkern g1="V" g2="ae" k="50" />
+<hkern g1="V" g2="ccedilla" k="80" />
+<hkern g1="V" g2="egrave" k="80" />
+<hkern g1="V" g2="eacute" k="80" />
+<hkern g1="V" g2="ecircumflex" k="80" />
+<hkern g1="V" g2="edieresis" k="80" />
+<hkern g1="V" g2="igrave" k="-80" />
+<hkern g1="V" g2="iacute" k="30" />
+<hkern g1="V" g2="icircumflex" k="-80" />
+<hkern g1="V" g2="idieresis" k="-80" />
+<hkern g1="V" g2="eth" k="72" />
+<hkern g1="V" g2="ntilde" k="30" />
+<hkern g1="V" g2="ograve" k="80" />
+<hkern g1="V" g2="oacute" k="80" />
+<hkern g1="V" g2="ocircumflex" k="80" />
+<hkern g1="V" g2="otilde" k="80" />
+<hkern g1="V" g2="odieresis" k="80" />
+<hkern g1="V" g2="oslash" k="80" />
+<hkern g1="V" g2="ugrave" k="30" />
+<hkern g1="V" g2="uacute" k="30" />
+<hkern g1="V" g2="ucircumflex" k="30" />
+<hkern g1="V" g2="udieresis" k="30" />
+<hkern g1="V" g2="yacute" k="37" />
+<hkern g1="V" g2="thorn" k="-80" />
+<hkern g1="V" g2="ydieresis" k="37" />
+<hkern g1="V" g2="OE" k="30" />
+<hkern g1="V" g2="oe" k="80" />
+<hkern g1="V" g2="endash" k="63" />
+<hkern g1="V" g2="emdash" k="63" />
+<hkern g1="V" g2="quoteleft" k="-110" />
+<hkern g1="V" g2="quotesinglbase" k="180" />
+<hkern g1="V" g2="quotedblleft" k="-110" />
+<hkern g1="V" g2="quotedblbase" k="208" />
+<hkern g1="V" g2="guilsinglleft" k="63" />
+<hkern g1="V" g2="guilsinglright" k="20" />
+<hkern g1="W" g2="ampersand" k="20" />
+<hkern g1="W" g2="parenright" k="-55" />
+<hkern g1="W" g2="comma" k="176" />
+<hkern g1="W" g2="hyphen" k="66" />
+<hkern g1="W" g2="period" k="133" />
+<hkern g1="W" g2="slash" k="174" />
+<hkern g1="W" g2="four" k="53" />
+<hkern g1="W" g2="seven" k="-63" />
+<hkern g1="W" g2="colon" k="41" />
+<hkern g1="W" g2="semicolon" k="43" />
+<hkern g1="W" g2="at" k="51" />
+<hkern g1="W" g2="A" k="90" />
+<hkern g1="W" g2="C" k="30" />
+<hkern g1="W" g2="G" k="30" />
+<hkern g1="W" g2="O" k="30" />
+<hkern g1="W" g2="Q" k="30" />
+<hkern g1="W" g2="T" k="-35" />
+<hkern g1="W" g2="V" k="-110" />
+<hkern g1="W" g2="W" k="-110" />
+<hkern g1="W" g2="X" k="-110" />
+<hkern g1="W" g2="Y" k="-110" />
+<hkern g1="W" g2="backslash" k="-39" />
+<hkern g1="W" g2="bracketright" k="-80" />
+<hkern g1="W" g2="a" k="80" />
+<hkern g1="W" g2="b" k="-76" />
+<hkern g1="W" g2="c" k="80" />
+<hkern g1="W" g2="d" k="80" />
+<hkern g1="W" g2="e" k="80" />
+<hkern g1="W" g2="f" k="10" />
+<hkern g1="W" g2="g" k="100" />
+<hkern g1="W" g2="h" k="-45" />
+<hkern g1="W" g2="k" k="-45" />
+<hkern g1="W" g2="l" k="-41" />
+<hkern g1="W" g2="m" k="55" />
+<hkern g1="W" g2="n" k="55" />
+<hkern g1="W" g2="o" k="80" />
+<hkern g1="W" g2="p" k="55" />
+<hkern g1="W" g2="q" k="80" />
+<hkern g1="W" g2="r" k="55" />
+<hkern g1="W" g2="s" k="80" />
+<hkern g1="W" g2="t" k="35" />
+<hkern g1="W" g2="u" k="70" />
+<hkern g1="W" g2="v" k="20" />
+<hkern g1="W" g2="w" k="20" />
+<hkern g1="W" g2="x" k="50" />
+<hkern g1="W" g2="y" k="35" />
+<hkern g1="W" g2="z" k="96" />
+<hkern g1="W" g2="braceright" k="-39" />
+<hkern g1="W" g2="guillemotleft" k="63" />
+<hkern g1="W" g2="uni00AD" k="66" />
+<hkern g1="W" g2="guillemotright" k="25" />
+<hkern g1="W" g2="Agrave" k="90" />
+<hkern g1="W" g2="Aacute" k="90" />
+<hkern g1="W" g2="Acircumflex" k="90" />
+<hkern g1="W" g2="Atilde" k="90" />
+<hkern g1="W" g2="Adieresis" k="90" />
+<hkern g1="W" g2="Aring" k="90" />
+<hkern g1="W" g2="AE" k="164" />
+<hkern g1="W" g2="Ccedilla" k="30" />
+<hkern g1="W" g2="Ograve" k="30" />
+<hkern g1="W" g2="Oacute" k="30" />
+<hkern g1="W" g2="Ocircumflex" k="30" />
+<hkern g1="W" g2="Otilde" k="30" />
+<hkern g1="W" g2="Odieresis" k="30" />
+<hkern g1="W" g2="Oslash" k="30" />
+<hkern g1="W" g2="Yacute" k="-110" />
+<hkern g1="W" g2="germandbls" k="10" />
+<hkern g1="W" g2="agrave" k="70" />
+<hkern g1="W" g2="aacute" k="70" />
+<hkern g1="W" g2="acircumflex" k="70" />
+<hkern g1="W" g2="atilde" k="70" />
+<hkern g1="W" g2="adieresis" k="70" />
+<hkern g1="W" g2="aring" k="70" />
+<hkern g1="W" g2="ae" k="80" />
+<hkern g1="W" g2="ccedilla" k="80" />
+<hkern g1="W" g2="egrave" k="80" />
+<hkern g1="W" g2="eacute" k="80" />
+<hkern g1="W" g2="ecircumflex" k="80" />
+<hkern g1="W" g2="edieresis" k="80" />
+<hkern g1="W" g2="igrave" k="-70" />
+<hkern g1="W" g2="iacute" k="35" />
+<hkern g1="W" g2="icircumflex" k="-55" />
+<hkern g1="W" g2="idieresis" k="-55" />
+<hkern g1="W" g2="eth" k="82" />
+<hkern g1="W" g2="ntilde" k="55" />
+<hkern g1="W" g2="ograve" k="80" />
+<hkern g1="W" g2="oacute" k="80" />
+<hkern g1="W" g2="ocircumflex" k="80" />
+<hkern g1="W" g2="otilde" k="80" />
+<hkern g1="W" g2="odieresis" k="80" />
+<hkern g1="W" g2="oslash" k="80" />
+<hkern g1="W" g2="ugrave" k="70" />
+<hkern g1="W" g2="uacute" k="70" />
+<hkern g1="W" g2="ucircumflex" k="70" />
+<hkern g1="W" g2="udieresis" k="70" />
+<hkern g1="W" g2="yacute" k="35" />
+<hkern g1="W" g2="thorn" k="-76" />
+<hkern g1="W" g2="ydieresis" k="35" />
+<hkern g1="W" g2="OE" k="30" />
+<hkern g1="W" g2="oe" k="80" />
+<hkern g1="W" g2="endash" k="66" />
+<hkern g1="W" g2="emdash" k="66" />
+<hkern g1="W" g2="quoteleft" k="-90" />
+<hkern g1="W" g2="quotesinglbase" k="180" />
+<hkern g1="W" g2="quotedblleft" k="-90" />
+<hkern g1="W" g2="quotedblbase" k="133" />
+<hkern g1="W" g2="guilsinglleft" k="63" />
+<hkern g1="W" g2="guilsinglright" k="25" />
+<hkern g1="X" g2="asterisk" k="16" />
+<hkern g1="X" g2="hyphen" k="82" />
+<hkern g1="X" g2="A" k="-85" />
+<hkern g1="X" g2="C" k="30" />
+<hkern g1="X" g2="G" k="30" />
+<hkern g1="X" g2="O" k="30" />
+<hkern g1="X" g2="Q" k="30" />
+<hkern g1="X" g2="V" k="-25" />
+<hkern g1="X" g2="W" k="-35" />
+<hkern g1="X" g2="X" k="-75" />
+<hkern g1="X" g2="Y" k="-55" />
+<hkern g1="X" g2="a" k="-45" />
+<hkern g1="X" g2="d" k="33" />
+<hkern g1="X" g2="q" k="33" />
+<hkern g1="X" g2="t" k="10" />
+<hkern g1="X" g2="v" k="50" />
+<hkern g1="X" g2="w" k="25" />
+<hkern g1="X" g2="x" k="-70" />
+<hkern g1="X" g2="y" k="50" />
+<hkern g1="X" g2="z" k="-45" />
+<hkern g1="X" g2="guillemotleft" k="25" />
+<hkern g1="X" g2="uni00AD" k="82" />
+<hkern g1="X" g2="Agrave" k="-85" />
+<hkern g1="X" g2="Aacute" k="-85" />
+<hkern g1="X" g2="Acircumflex" k="-85" />
+<hkern g1="X" g2="Atilde" k="-85" />
+<hkern g1="X" g2="Adieresis" k="-85" />
+<hkern g1="X" g2="Aring" k="-85" />
+<hkern g1="X" g2="AE" k="-120" />
+<hkern g1="X" g2="Ccedilla" k="30" />
+<hkern g1="X" g2="Ograve" k="30" />
+<hkern g1="X" g2="Oacute" k="30" />
+<hkern g1="X" g2="Ocircumflex" k="30" />
+<hkern g1="X" g2="Otilde" k="30" />
+<hkern g1="X" g2="Odieresis" k="30" />
+<hkern g1="X" g2="Oslash" k="30" />
+<hkern g1="X" g2="Yacute" k="-55" />
+<hkern g1="X" g2="agrave" k="-45" />
+<hkern g1="X" g2="aacute" k="-45" />
+<hkern g1="X" g2="acircumflex" k="-45" />
+<hkern g1="X" g2="atilde" k="-45" />
+<hkern g1="X" g2="adieresis" k="-45" />
+<hkern g1="X" g2="aring" k="-45" />
+<hkern g1="X" g2="ae" k="-45" />
+<hkern g1="X" g2="eth" k="31" />
+<hkern g1="X" g2="yacute" k="50" />
+<hkern g1="X" g2="ydieresis" k="50" />
+<hkern g1="X" g2="OE" k="30" />
+<hkern g1="X" g2="endash" k="82" />
+<hkern g1="X" g2="emdash" k="82" />
+<hkern g1="X" g2="guilsinglleft" k="25" />
+<hkern g1="Y" g2="ampersand" k="29" />
+<hkern g1="Y" g2="asterisk" k="23" />
+<hkern g1="Y" g2="comma" k="96" />
+<hkern g1="Y" g2="hyphen" k="115" />
+<hkern g1="Y" g2="period" k="110" />
+<hkern g1="Y" g2="slash" k="143" />
+<hkern g1="Y" g2="zero" k="23" />
+<hkern g1="Y" g2="four" k="80" />
+<hkern g1="Y" g2="six" k="27" />
+<hkern g1="Y" g2="seven" k="-53" />
+<hkern g1="Y" g2="colon" k="55" />
+<hkern g1="Y" g2="semicolon" k="57" />
+<hkern g1="Y" g2="at" k="72" />
+<hkern g1="Y" g2="A" k="70" />
+<hkern g1="Y" g2="C" k="30" />
+<hkern g1="Y" g2="G" k="30" />
+<hkern g1="Y" g2="O" k="40" />
+<hkern g1="Y" g2="Q" k="30" />
+<hkern g1="Y" g2="T" k="-45" />
+<hkern g1="Y" g2="V" k="-110" />
+<hkern g1="Y" g2="W" k="-80" />
+<hkern g1="Y" g2="X" k="-55" />
+<hkern g1="Y" g2="Y" k="-120" />
+<hkern g1="Y" g2="backslash" k="-20" />
+<hkern g1="Y" g2="bracketright" k="-70" />
+<hkern g1="Y" g2="a" k="100" />
+<hkern g1="Y" g2="b" k="-63" />
+<hkern g1="Y" g2="c" k="100" />
+<hkern g1="Y" g2="d" k="100" />
+<hkern g1="Y" g2="e" k="100" />
+<hkern g1="Y" g2="f" k="33" />
+<hkern g1="Y" g2="g" k="120" />
+<hkern g1="Y" g2="h" k="-45" />
+<hkern g1="Y" g2="i" k="12" />
+<hkern g1="Y" g2="k" k="-45" />
+<hkern g1="Y" g2="l" k="-31" />
+<hkern g1="Y" g2="m" k="100" />
+<hkern g1="Y" g2="n" k="100" />
+<hkern g1="Y" g2="o" k="144" />
+<hkern g1="Y" g2="p" k="100" />
+<hkern g1="Y" g2="q" k="100" />
+<hkern g1="Y" g2="r" k="100" />
+<hkern g1="Y" g2="s" k="135" />
+<hkern g1="Y" g2="t" k="60" />
+<hkern g1="Y" g2="u" k="100" />
+<hkern g1="Y" g2="v" k="80" />
+<hkern g1="Y" g2="w" k="80" />
+<hkern g1="Y" g2="x" k="100" />
+<hkern g1="Y" g2="y" k="80" />
+<hkern g1="Y" g2="z" k="100" />
+<hkern g1="Y" g2="braceright" k="-27" />
+<hkern g1="Y" g2="guillemotleft" k="106" />
+<hkern g1="Y" g2="uni00AD" k="115" />
+<hkern g1="Y" g2="registered" k="33" />
+<hkern g1="Y" g2="guillemotright" k="43" />
+<hkern g1="Y" g2="Agrave" k="70" />
+<hkern g1="Y" g2="Aacute" k="70" />
+<hkern g1="Y" g2="Acircumflex" k="70" />
+<hkern g1="Y" g2="Atilde" k="70" />
+<hkern g1="Y" g2="Adieresis" k="70" />
+<hkern g1="Y" g2="Aring" k="70" />
+<hkern g1="Y" g2="AE" k="111" />
+<hkern g1="Y" g2="Ccedilla" k="40" />
+<hkern g1="Y" g2="Ograve" k="40" />
+<hkern g1="Y" g2="Oacute" k="40" />
+<hkern g1="Y" g2="Ocircumflex" k="40" />
+<hkern g1="Y" g2="Otilde" k="40" />
+<hkern g1="Y" g2="Odieresis" k="40" />
+<hkern g1="Y" g2="Oslash" k="40" />
+<hkern g1="Y" g2="Yacute" k="-120" />
+<hkern g1="Y" g2="germandbls" k="33" />
+<hkern g1="Y" g2="agrave" k="100" />
+<hkern g1="Y" g2="aacute" k="100" />
+<hkern g1="Y" g2="acircumflex" k="100" />
+<hkern g1="Y" g2="atilde" k="100" />
+<hkern g1="Y" g2="adieresis" k="145" />
+<hkern g1="Y" g2="aring" k="100" />
+<hkern g1="Y" g2="ae" k="100" />
+<hkern g1="Y" g2="ccedilla" k="144" />
+<hkern g1="Y" g2="egrave" k="144" />
+<hkern g1="Y" g2="eacute" k="144" />
+<hkern g1="Y" g2="ecircumflex" k="144" />
+<hkern g1="Y" g2="edieresis" k="144" />
+<hkern g1="Y" g2="igrave" k="-57" />
+<hkern g1="Y" g2="iacute" k="12" />
+<hkern g1="Y" g2="icircumflex" k="12" />
+<hkern g1="Y" g2="idieresis" k="-43" />
+<hkern g1="Y" g2="eth" k="102" />
+<hkern g1="Y" g2="ntilde" k="100" />
+<hkern g1="Y" g2="ograve" k="144" />
+<hkern g1="Y" g2="oacute" k="144" />
+<hkern g1="Y" g2="ocircumflex" k="144" />
+<hkern g1="Y" g2="otilde" k="144" />
+<hkern g1="Y" g2="odieresis" k="144" />
+<hkern g1="Y" g2="oslash" k="144" />
+<hkern g1="Y" g2="ugrave" k="100" />
+<hkern g1="Y" g2="uacute" k="100" />
+<hkern g1="Y" g2="ucircumflex" k="100" />
+<hkern g1="Y" g2="udieresis" k="100" />
+<hkern g1="Y" g2="yacute" k="80" />
+<hkern g1="Y" g2="thorn" k="-63" />
+<hkern g1="Y" g2="ydieresis" k="80" />
+<hkern g1="Y" g2="dotlessi" k="12" />
+<hkern g1="Y" g2="OE" k="40" />
+<hkern g1="Y" g2="oe" k="144" />
+<hkern g1="Y" g2="endash" k="115" />
+<hkern g1="Y" g2="emdash" k="115" />
+<hkern g1="Y" g2="quoteleft" k="-100" />
+<hkern g1="Y" g2="quotesinglbase" k="110" />
+<hkern g1="Y" g2="quotedblleft" k="-100" />
+<hkern g1="Y" g2="quotedblbase" k="110" />
+<hkern g1="Y" g2="guilsinglleft" k="106" />
+<hkern g1="Y" g2="guilsinglright" k="43" />
+<hkern g1="Z" g2="hyphen" k="39" />
+<hkern g1="Z" g2="slash" k="47" />
+<hkern g1="Z" g2="C" k="10" />
+<hkern g1="Z" g2="O" k="10" />
+<hkern g1="Z" g2="Q" k="10" />
+<hkern g1="Z" g2="i" k="10" />
+<hkern g1="Z" g2="j" k="16" />
+<hkern g1="Z" g2="m" k="12" />
+<hkern g1="Z" g2="n" k="12" />
+<hkern g1="Z" g2="r" k="12" />
+<hkern g1="Z" g2="t" k="10" />
+<hkern g1="Z" g2="v" k="15" />
+<hkern g1="Z" g2="w" k="15" />
+<hkern g1="Z" g2="y" k="50" />
+<hkern g1="Z" g2="uni00AD" k="39" />
+<hkern g1="Z" g2="Ccedilla" k="10" />
+<hkern g1="Z" g2="Ograve" k="10" />
+<hkern g1="Z" g2="Oacute" k="10" />
+<hkern g1="Z" g2="Ocircumflex" k="10" />
+<hkern g1="Z" g2="Otilde" k="10" />
+<hkern g1="Z" g2="Odieresis" k="10" />
+<hkern g1="Z" g2="Oslash" k="10" />
+<hkern g1="Z" g2="igrave" k="10" />
+<hkern g1="Z" g2="iacute" k="10" />
+<hkern g1="Z" g2="icircumflex" k="10" />
+<hkern g1="Z" g2="idieresis" k="10" />
+<hkern g1="Z" g2="ntilde" k="12" />
+<hkern g1="Z" g2="yacute" k="50" />
+<hkern g1="Z" g2="ydieresis" k="50" />
+<hkern g1="Z" g2="dotlessi" k="10" />
+<hkern g1="Z" g2="OE" k="10" />
+<hkern g1="Z" g2="endash" k="39" />
+<hkern g1="Z" g2="emdash" k="39" />
+<hkern g1="bracketleft" g2="parenleft" k="49" />
+<hkern g1="bracketleft" g2="zero" k="61" />
+<hkern g1="bracketleft" g2="one" k="45" />
+<hkern g1="bracketleft" g2="two" k="31" />
+<hkern g1="bracketleft" g2="three" k="37" />
+<hkern g1="bracketleft" g2="four" k="78" />
+<hkern g1="bracketleft" g2="six" k="63" />
+<hkern g1="bracketleft" g2="eight" k="45" />
+<hkern g1="bracketleft" g2="nine" k="45" />
+<hkern g1="bracketleft" g2="A" k="59" />
+<hkern g1="bracketleft" g2="C" k="74" />
+<hkern g1="bracketleft" g2="G" k="74" />
+<hkern g1="bracketleft" g2="O" k="74" />
+<hkern g1="bracketleft" g2="Q" k="74" />
+<hkern g1="bracketleft" g2="S" k="41" />
+<hkern g1="bracketleft" g2="V" k="-53" />
+<hkern g1="bracketleft" g2="W" k="-31" />
+<hkern g1="bracketleft" g2="X" k="-35" />
+<hkern g1="bracketleft" g2="Y" k="-57" />
+<hkern g1="bracketleft" g2="a" k="96" />
+<hkern g1="bracketleft" g2="b" k="-27" />
+<hkern g1="bracketleft" g2="c" k="104" />
+<hkern g1="bracketleft" g2="d" k="98" />
+<hkern g1="bracketleft" g2="e" k="104" />
+<hkern g1="bracketleft" g2="f" k="43" />
+<hkern g1="bracketleft" g2="i" k="25" />
+<hkern g1="bracketleft" g2="j" k="-217" />
+<hkern g1="bracketleft" g2="m" k="90" />
+<hkern g1="bracketleft" g2="n" k="90" />
+<hkern g1="bracketleft" g2="o" k="104" />
+<hkern g1="bracketleft" g2="q" k="98" />
+<hkern g1="bracketleft" g2="r" k="90" />
+<hkern g1="bracketleft" g2="s" k="94" />
+<hkern g1="bracketleft" g2="t" k="78" />
+<hkern g1="bracketleft" g2="u" k="96" />
+<hkern g1="bracketleft" g2="v" k="88" />
+<hkern g1="bracketleft" g2="w" k="88" />
+<hkern g1="bracketleft" g2="x" k="70" />
+<hkern g1="bracketleft" g2="z" k="90" />
+<hkern g1="bracketleft" g2="braceleft" k="35" />
+<hkern g1="bracketleft" g2="Agrave" k="59" />
+<hkern g1="bracketleft" g2="Aacute" k="59" />
+<hkern g1="bracketleft" g2="Acircumflex" k="59" />
+<hkern g1="bracketleft" g2="Atilde" k="59" />
+<hkern g1="bracketleft" g2="Adieresis" k="59" />
+<hkern g1="bracketleft" g2="Aring" k="59" />
+<hkern g1="bracketleft" g2="AE" k="51" />
+<hkern g1="bracketleft" g2="Ccedilla" k="74" />
+<hkern g1="bracketleft" g2="Ograve" k="74" />
+<hkern g1="bracketleft" g2="Oacute" k="74" />
+<hkern g1="bracketleft" g2="Ocircumflex" k="74" />
+<hkern g1="bracketleft" g2="Otilde" k="74" />
+<hkern g1="bracketleft" g2="Odieresis" k="74" />
+<hkern g1="bracketleft" g2="Oslash" k="74" />
+<hkern g1="bracketleft" g2="Yacute" k="-57" />
+<hkern g1="bracketleft" g2="germandbls" k="43" />
+<hkern g1="bracketleft" g2="agrave" k="96" />
+<hkern g1="bracketleft" g2="aacute" k="96" />
+<hkern g1="bracketleft" g2="acircumflex" k="96" />
+<hkern g1="bracketleft" g2="atilde" k="96" />
+<hkern g1="bracketleft" g2="adieresis" k="96" />
+<hkern g1="bracketleft" g2="aring" k="96" />
+<hkern g1="bracketleft" g2="ae" k="96" />
+<hkern g1="bracketleft" g2="ccedilla" k="104" />
+<hkern g1="bracketleft" g2="egrave" k="104" />
+<hkern g1="bracketleft" g2="eacute" k="104" />
+<hkern g1="bracketleft" g2="ecircumflex" k="104" />
+<hkern g1="bracketleft" g2="edieresis" k="104" />
+<hkern g1="bracketleft" g2="igrave" k="-35" />
+<hkern g1="bracketleft" g2="iacute" k="25" />
+<hkern g1="bracketleft" g2="icircumflex" k="25" />
+<hkern g1="bracketleft" g2="idieresis" k="12" />
+<hkern g1="bracketleft" g2="eth" k="35" />
+<hkern g1="bracketleft" g2="ntilde" k="90" />
+<hkern g1="bracketleft" g2="ograve" k="104" />
+<hkern g1="bracketleft" g2="oacute" k="104" />
+<hkern g1="bracketleft" g2="ocircumflex" k="104" />
+<hkern g1="bracketleft" g2="otilde" k="104" />
+<hkern g1="bracketleft" g2="odieresis" k="104" />
+<hkern g1="bracketleft" g2="oslash" k="104" />
+<hkern g1="bracketleft" g2="ugrave" k="96" />
+<hkern g1="bracketleft" g2="uacute" k="96" />
+<hkern g1="bracketleft" g2="ucircumflex" k="96" />
+<hkern g1="bracketleft" g2="udieresis" k="96" />
+<hkern g1="bracketleft" g2="thorn" k="-27" />
+<hkern g1="bracketleft" g2="dotlessi" k="25" />
+<hkern g1="bracketleft" g2="OE" k="74" />
+<hkern g1="bracketleft" g2="oe" k="104" />
+<hkern g1="backslash" g2="quotedbl" k="231" />
+<hkern g1="backslash" g2="quotesingle" k="213" />
+<hkern g1="backslash" g2="zero" k="100" />
+<hkern g1="backslash" g2="one" k="61" />
+<hkern g1="backslash" g2="two" k="43" />
+<hkern g1="backslash" g2="three" k="66" />
+<hkern g1="backslash" g2="four" k="82" />
+<hkern g1="backslash" g2="five" k="70" />
+<hkern g1="backslash" g2="six" k="92" />
+<hkern g1="backslash" g2="seven" k="121" />
+<hkern g1="backslash" g2="eight" k="78" />
+<hkern g1="backslash" g2="nine" k="80" />
+<hkern g1="backslash" g2="B" k="49" />
+<hkern g1="backslash" g2="C" k="115" />
+<hkern g1="backslash" g2="D" k="49" />
+<hkern g1="backslash" g2="E" k="49" />
+<hkern g1="backslash" g2="F" k="49" />
+<hkern g1="backslash" g2="G" k="109" />
+<hkern g1="backslash" g2="H" k="49" />
+<hkern g1="backslash" g2="I" k="49" />
+<hkern g1="backslash" g2="K" k="49" />
+<hkern g1="backslash" g2="L" k="49" />
+<hkern g1="backslash" g2="M" k="43" />
+<hkern g1="backslash" g2="N" k="49" />
+<hkern g1="backslash" g2="O" k="115" />
+<hkern g1="backslash" g2="P" k="49" />
+<hkern g1="backslash" g2="Q" k="115" />
+<hkern g1="backslash" g2="R" k="49" />
+<hkern g1="backslash" g2="S" k="51" />
+<hkern g1="backslash" g2="T" k="154" />
+<hkern g1="backslash" g2="U" k="129" />
+<hkern g1="backslash" g2="V" k="176" />
+<hkern g1="backslash" g2="W" k="174" />
+<hkern g1="backslash" g2="Y" k="162" />
+<hkern g1="backslash" g2="Z" k="43" />
+<hkern g1="backslash" g2="a" k="61" />
+<hkern g1="backslash" g2="b" k="59" />
+<hkern g1="backslash" g2="c" k="94" />
+<hkern g1="backslash" g2="d" k="86" />
+<hkern g1="backslash" g2="e" k="94" />
+<hkern g1="backslash" g2="f" k="51" />
+<hkern g1="backslash" g2="h" k="41" />
+<hkern g1="backslash" g2="i" k="47" />
+<hkern g1="backslash" g2="j" k="-193" />
+<hkern g1="backslash" g2="k" k="41" />
+<hkern g1="backslash" g2="l" k="41" />
+<hkern g1="backslash" g2="m" k="49" />
+<hkern g1="backslash" g2="n" k="49" />
+<hkern g1="backslash" g2="o" k="94" />
+<hkern g1="backslash" g2="q" k="86" />
+<hkern g1="backslash" g2="r" k="49" />
+<hkern g1="backslash" g2="s" k="53" />
+<hkern g1="backslash" g2="t" k="104" />
+<hkern g1="backslash" g2="u" k="106" />
+<hkern g1="backslash" g2="v" k="147" />
+<hkern g1="backslash" g2="w" k="143" />
+<hkern g1="backslash" g2="x" k="29" />
+<hkern g1="backslash" g2="z" k="47" />
+<hkern g1="backslash" g2="Ccedilla" k="115" />
+<hkern g1="backslash" g2="Egrave" k="49" />
+<hkern g1="backslash" g2="Eacute" k="49" />
+<hkern g1="backslash" g2="Ecircumflex" k="49" />
+<hkern g1="backslash" g2="Edieresis" k="49" />
+<hkern g1="backslash" g2="Igrave" k="49" />
+<hkern g1="backslash" g2="Iacute" k="49" />
+<hkern g1="backslash" g2="Icircumflex" k="49" />
+<hkern g1="backslash" g2="Idieresis" k="49" />
+<hkern g1="backslash" g2="Eth" k="49" />
+<hkern g1="backslash" g2="Ntilde" k="49" />
+<hkern g1="backslash" g2="Ograve" k="115" />
+<hkern g1="backslash" g2="Oacute" k="115" />
+<hkern g1="backslash" g2="Ocircumflex" k="115" />
+<hkern g1="backslash" g2="Otilde" k="115" />
+<hkern g1="backslash" g2="Odieresis" k="115" />
+<hkern g1="backslash" g2="Oslash" k="115" />
+<hkern g1="backslash" g2="Ugrave" k="129" />
+<hkern g1="backslash" g2="Uacute" k="129" />
+<hkern g1="backslash" g2="Ucircumflex" k="129" />
+<hkern g1="backslash" g2="Udieresis" k="129" />
+<hkern g1="backslash" g2="Yacute" k="162" />
+<hkern g1="backslash" g2="Thorn" k="49" />
+<hkern g1="backslash" g2="germandbls" k="51" />
+<hkern g1="backslash" g2="agrave" k="61" />
+<hkern g1="backslash" g2="aacute" k="61" />
+<hkern g1="backslash" g2="acircumflex" k="61" />
+<hkern g1="backslash" g2="atilde" k="61" />
+<hkern g1="backslash" g2="adieresis" k="61" />
+<hkern g1="backslash" g2="aring" k="61" />
+<hkern g1="backslash" g2="ae" k="61" />
+<hkern g1="backslash" g2="ccedilla" k="94" />
+<hkern g1="backslash" g2="egrave" k="94" />
+<hkern g1="backslash" g2="eacute" k="94" />
+<hkern g1="backslash" g2="ecircumflex" k="94" />
+<hkern g1="backslash" g2="edieresis" k="94" />
+<hkern g1="backslash" g2="igrave" k="47" />
+<hkern g1="backslash" g2="iacute" k="47" />
+<hkern g1="backslash" g2="icircumflex" k="47" />
+<hkern g1="backslash" g2="idieresis" k="47" />
+<hkern g1="backslash" g2="eth" k="86" />
+<hkern g1="backslash" g2="ntilde" k="49" />
+<hkern g1="backslash" g2="ograve" k="94" />
+<hkern g1="backslash" g2="oacute" k="94" />
+<hkern g1="backslash" g2="ocircumflex" k="94" />
+<hkern g1="backslash" g2="otilde" k="94" />
+<hkern g1="backslash" g2="odieresis" k="94" />
+<hkern g1="backslash" g2="oslash" k="94" />
+<hkern g1="backslash" g2="ugrave" k="106" />
+<hkern g1="backslash" g2="uacute" k="106" />
+<hkern g1="backslash" g2="ucircumflex" k="106" />
+<hkern g1="backslash" g2="udieresis" k="106" />
+<hkern g1="backslash" g2="thorn" k="6" />
+<hkern g1="backslash" g2="dotlessi" k="47" />
+<hkern g1="backslash" g2="OE" k="115" />
+<hkern g1="backslash" g2="oe" k="94" />
+<hkern g1="backslash" g2="quoteright" k="178" />
+<hkern g1="backslash" g2="quotedblright" k="178" />
+<hkern g1="a" g2="quotedbl" k="23" />
+<hkern g1="a" g2="quotesingle" k="23" />
+<hkern g1="a" g2="parenright" k="47" />
+<hkern g1="a" g2="slash" k="37" />
+<hkern g1="a" g2="question" k="35" />
+<hkern g1="a" g2="B" k="10" />
+<hkern g1="a" g2="C" k="23" />
+<hkern g1="a" g2="D" k="10" />
+<hkern g1="a" g2="E" k="10" />
+<hkern g1="a" g2="F" k="10" />
+<hkern g1="a" g2="G" k="15" />
+<hkern g1="a" g2="H" k="10" />
+<hkern g1="a" g2="I" k="10" />
+<hkern g1="a" g2="J" k="-40" />
+<hkern g1="a" g2="K" k="10" />
+<hkern g1="a" g2="L" k="10" />
+<hkern g1="a" g2="N" k="10" />
+<hkern g1="a" g2="O" k="23" />
+<hkern g1="a" g2="P" k="10" />
+<hkern g1="a" g2="Q" k="23" />
+<hkern g1="a" g2="R" k="10" />
+<hkern g1="a" g2="T" k="84" />
+<hkern g1="a" g2="U" k="55" />
+<hkern g1="a" g2="V" k="100" />
+<hkern g1="a" g2="W" k="100" />
+<hkern g1="a" g2="Y" k="125" />
+<hkern g1="a" g2="backslash" k="106" />
+<hkern g1="a" g2="bracketright" k="92" />
+<hkern g1="a" g2="q" k="15" />
+<hkern g1="a" g2="t" k="15" />
+<hkern g1="a" g2="u" k="12" />
+<hkern g1="a" g2="v" k="25" />
+<hkern g1="a" g2="w" k="30" />
+<hkern g1="a" g2="y" k="20" />
+<hkern g1="a" g2="braceright" k="43" />
+<hkern g1="a" g2="Ccedilla" k="23" />
+<hkern g1="a" g2="Egrave" k="10" />
+<hkern g1="a" g2="Eacute" k="10" />
+<hkern g1="a" g2="Ecircumflex" k="10" />
+<hkern g1="a" g2="Edieresis" k="10" />
+<hkern g1="a" g2="Igrave" k="10" />
+<hkern g1="a" g2="Iacute" k="10" />
+<hkern g1="a" g2="Icircumflex" k="10" />
+<hkern g1="a" g2="Idieresis" k="10" />
+<hkern g1="a" g2="Eth" k="10" />
+<hkern g1="a" g2="Ntilde" k="10" />
+<hkern g1="a" g2="Ograve" k="23" />
+<hkern g1="a" g2="Oacute" k="23" />
+<hkern g1="a" g2="Ocircumflex" k="23" />
+<hkern g1="a" g2="Otilde" k="23" />
+<hkern g1="a" g2="Odieresis" k="23" />
+<hkern g1="a" g2="Oslash" k="23" />
+<hkern g1="a" g2="Ugrave" k="55" />
+<hkern g1="a" g2="Uacute" k="55" />
+<hkern g1="a" g2="Ucircumflex" k="55" />
+<hkern g1="a" g2="Udieresis" k="55" />
+<hkern g1="a" g2="Yacute" k="125" />
+<hkern g1="a" g2="Thorn" k="10" />
+<hkern g1="a" g2="ugrave" k="12" />
+<hkern g1="a" g2="uacute" k="12" />
+<hkern g1="a" g2="ucircumflex" k="12" />
+<hkern g1="a" g2="udieresis" k="12" />
+<hkern g1="a" g2="yacute" k="20" />
+<hkern g1="a" g2="ydieresis" k="20" />
+<hkern g1="a" g2="OE" k="23" />
+<hkern g1="a" g2="quoteleft" k="55" />
+<hkern g1="a" g2="quoteright" k="43" />
+<hkern g1="a" g2="quotedblleft" k="55" />
+<hkern g1="a" g2="quotedblright" k="43" />
+<hkern g1="b" g2="quotedbl" k="29" />
+<hkern g1="b" g2="quotesingle" k="29" />
+<hkern g1="b" g2="parenright" k="100" />
+<hkern g1="b" g2="slash" k="98" />
+<hkern g1="b" g2="question" k="35" />
+<hkern g1="b" g2="A" k="15" />
+<hkern g1="b" g2="B" k="49" />
+<hkern g1="b" g2="D" k="49" />
+<hkern g1="b" g2="E" k="49" />
+<hkern g1="b" g2="F" k="49" />
+<hkern g1="b" g2="H" k="49" />
+<hkern g1="b" g2="I" k="49" />
+<hkern g1="b" g2="J" k="20" />
+<hkern g1="b" g2="K" k="49" />
+<hkern g1="b" g2="L" k="49" />
+<hkern g1="b" g2="M" k="43" />
+<hkern g1="b" g2="N" k="49" />
+<hkern g1="b" g2="P" k="49" />
+<hkern g1="b" g2="R" k="49" />
+<hkern g1="b" g2="S" k="12" />
+<hkern g1="b" g2="T" k="64" />
+<hkern g1="b" g2="U" k="41" />
+<hkern g1="b" g2="V" k="70" />
+<hkern g1="b" g2="W" k="80" />
+<hkern g1="b" g2="X" k="94" />
+<hkern g1="b" g2="Y" k="100" />
+<hkern g1="b" g2="Z" k="43" />
+<hkern g1="b" g2="backslash" k="98" />
+<hkern g1="b" g2="bracketright" k="104" />
+<hkern g1="b" g2="f" k="10" />
+<hkern g1="b" g2="v" k="10" />
+<hkern g1="b" g2="w" k="10" />
+<hkern g1="b" g2="x" k="10" />
+<hkern g1="b" g2="y" k="15" />
+<hkern g1="b" g2="braceright" k="53" />
+<hkern g1="b" g2="Agrave" k="15" />
+<hkern g1="b" g2="Aacute" k="15" />
+<hkern g1="b" g2="Acircumflex" k="15" />
+<hkern g1="b" g2="Atilde" k="15" />
+<hkern g1="b" g2="Adieresis" k="15" />
+<hkern g1="b" g2="Aring" k="15" />
+<hkern g1="b" g2="Egrave" k="49" />
+<hkern g1="b" g2="Eacute" k="49" />
+<hkern g1="b" g2="Ecircumflex" k="49" />
+<hkern g1="b" g2="Edieresis" k="49" />
+<hkern g1="b" g2="Igrave" k="49" />
+<hkern g1="b" g2="Iacute" k="49" />
+<hkern g1="b" g2="Icircumflex" k="49" />
+<hkern g1="b" g2="Idieresis" k="49" />
+<hkern g1="b" g2="Eth" k="49" />
+<hkern g1="b" g2="Ntilde" k="49" />
+<hkern g1="b" g2="Ugrave" k="41" />
+<hkern g1="b" g2="Uacute" k="41" />
+<hkern g1="b" g2="Ucircumflex" k="41" />
+<hkern g1="b" g2="Udieresis" k="41" />
+<hkern g1="b" g2="Yacute" k="100" />
+<hkern g1="b" g2="Thorn" k="49" />
+<hkern g1="b" g2="germandbls" k="10" />
+<hkern g1="b" g2="yacute" k="15" />
+<hkern g1="b" g2="ydieresis" k="15" />
+<hkern g1="b" g2="quoteleft" k="70" />
+<hkern g1="b" g2="quoteright" k="53" />
+<hkern g1="b" g2="quotedblleft" k="70" />
+<hkern g1="b" g2="quotedblright" k="53" />
+<hkern g1="c" g2="parenright" k="51" />
+<hkern g1="c" g2="slash" k="70" />
+<hkern g1="c" g2="B" k="39" />
+<hkern g1="c" g2="C" k="12" />
+<hkern g1="c" g2="D" k="39" />
+<hkern g1="c" g2="E" k="39" />
+<hkern g1="c" g2="F" k="39" />
+<hkern g1="c" g2="G" k="12" />
+<hkern g1="c" g2="H" k="39" />
+<hkern g1="c" g2="I" k="39" />
+<hkern g1="c" g2="K" k="39" />
+<hkern g1="c" g2="L" k="39" />
+<hkern g1="c" g2="M" k="31" />
+<hkern g1="c" g2="N" k="39" />
+<hkern g1="c" g2="O" k="12" />
+<hkern g1="c" g2="P" k="39" />
+<hkern g1="c" g2="Q" k="12" />
+<hkern g1="c" g2="R" k="39" />
+<hkern g1="c" g2="T" k="43" />
+<hkern g1="c" g2="U" k="37" />
+<hkern g1="c" g2="V" k="80" />
+<hkern g1="c" g2="W" k="70" />
+<hkern g1="c" g2="X" k="33" />
+<hkern g1="c" g2="Y" k="100" />
+<hkern g1="c" g2="backslash" k="72" />
+<hkern g1="c" g2="bracketright" k="92" />
+<hkern g1="c" g2="a" k="5" />
+<hkern g1="c" g2="c" k="10" />
+<hkern g1="c" g2="d" k="10" />
+<hkern g1="c" g2="e" k="10" />
+<hkern g1="c" g2="o" k="10" />
+<hkern g1="c" g2="q" k="10" />
+<hkern g1="c" g2="t" k="10" />
+<hkern g1="c" g2="v" k="10" />
+<hkern g1="c" g2="w" k="10" />
+<hkern g1="c" g2="x" k="15" />
+<hkern g1="c" g2="y" k="10" />
+<hkern g1="c" g2="z" k="10" />
+<hkern g1="c" g2="braceright" k="39" />
+<hkern g1="c" g2="Ccedilla" k="12" />
+<hkern g1="c" g2="Egrave" k="39" />
+<hkern g1="c" g2="Eacute" k="39" />
+<hkern g1="c" g2="Ecircumflex" k="39" />
+<hkern g1="c" g2="Edieresis" k="39" />
+<hkern g1="c" g2="Igrave" k="39" />
+<hkern g1="c" g2="Iacute" k="39" />
+<hkern g1="c" g2="Icircumflex" k="39" />
+<hkern g1="c" g2="Idieresis" k="39" />
+<hkern g1="c" g2="Eth" k="39" />
+<hkern g1="c" g2="Ntilde" k="39" />
+<hkern g1="c" g2="Ograve" k="12" />
+<hkern g1="c" g2="Oacute" k="12" />
+<hkern g1="c" g2="Ocircumflex" k="12" />
+<hkern g1="c" g2="Otilde" k="12" />
+<hkern g1="c" g2="Odieresis" k="12" />
+<hkern g1="c" g2="Oslash" k="12" />
+<hkern g1="c" g2="Ugrave" k="37" />
+<hkern g1="c" g2="Uacute" k="37" />
+<hkern g1="c" g2="Ucircumflex" k="37" />
+<hkern g1="c" g2="Udieresis" k="37" />
+<hkern g1="c" g2="Yacute" k="100" />
+<hkern g1="c" g2="Thorn" k="39" />
+<hkern g1="c" g2="agrave" k="5" />
+<hkern g1="c" g2="aacute" k="5" />
+<hkern g1="c" g2="acircumflex" k="5" />
+<hkern g1="c" g2="atilde" k="5" />
+<hkern g1="c" g2="adieresis" k="5" />
+<hkern g1="c" g2="aring" k="5" />
+<hkern g1="c" g2="ae" k="5" />
+<hkern g1="c" g2="ccedilla" k="10" />
+<hkern g1="c" g2="egrave" k="10" />
+<hkern g1="c" g2="eacute" k="10" />
+<hkern g1="c" g2="ecircumflex" k="10" />
+<hkern g1="c" g2="edieresis" k="10" />
+<hkern g1="c" g2="ograve" k="10" />
+<hkern g1="c" g2="oacute" k="10" />
+<hkern g1="c" g2="ocircumflex" k="10" />
+<hkern g1="c" g2="otilde" k="10" />
+<hkern g1="c" g2="odieresis" k="10" />
+<hkern g1="c" g2="oslash" k="10" />
+<hkern g1="c" g2="yacute" k="10" />
+<hkern g1="c" g2="ydieresis" k="10" />
+<hkern g1="c" g2="OE" k="12" />
+<hkern g1="c" g2="oe" k="10" />
+<hkern g1="c" g2="quoteleft" k="41" />
+<hkern g1="c" g2="quoteright" k="27" />
+<hkern g1="c" g2="quotedblleft" k="41" />
+<hkern g1="c" g2="quotedblright" k="27" />
+<hkern g1="d" g2="slash" k="41" />
+<hkern g1="d" g2="B" k="14" />
+<hkern g1="d" g2="C" k="23" />
+<hkern g1="d" g2="D" k="14" />
+<hkern g1="d" g2="E" k="14" />
+<hkern g1="d" g2="F" k="14" />
+<hkern g1="d" g2="G" k="23" />
+<hkern g1="d" g2="H" k="14" />
+<hkern g1="d" g2="I" k="14" />
+<hkern g1="d" g2="K" k="14" />
+<hkern g1="d" g2="L" k="14" />
+<hkern g1="d" g2="M" k="8" />
+<hkern g1="d" g2="N" k="14" />
+<hkern g1="d" g2="O" k="23" />
+<hkern g1="d" g2="P" k="14" />
+<hkern g1="d" g2="Q" k="23" />
+<hkern g1="d" g2="R" k="14" />
+<hkern g1="d" g2="T" k="14" />
+<hkern g1="d" g2="U" k="29" />
+<hkern g1="d" g2="W" k="23" />
+<hkern g1="d" g2="Y" k="14" />
+<hkern g1="d" g2="t" k="10" />
+<hkern g1="d" g2="v" k="10" />
+<hkern g1="d" g2="w" k="10" />
+<hkern g1="d" g2="y" k="12" />
+<hkern g1="d" g2="Ccedilla" k="23" />
+<hkern g1="d" g2="Egrave" k="14" />
+<hkern g1="d" g2="Eacute" k="14" />
+<hkern g1="d" g2="Ecircumflex" k="14" />
+<hkern g1="d" g2="Edieresis" k="14" />
+<hkern g1="d" g2="Igrave" k="14" />
+<hkern g1="d" g2="Iacute" k="14" />
+<hkern g1="d" g2="Icircumflex" k="14" />
+<hkern g1="d" g2="Idieresis" k="14" />
+<hkern g1="d" g2="Eth" k="14" />
+<hkern g1="d" g2="Ntilde" k="14" />
+<hkern g1="d" g2="Ograve" k="23" />
+<hkern g1="d" g2="Oacute" k="23" />
+<hkern g1="d" g2="Ocircumflex" k="23" />
+<hkern g1="d" g2="Otilde" k="23" />
+<hkern g1="d" g2="Odieresis" k="23" />
+<hkern g1="d" g2="Oslash" k="23" />
+<hkern g1="d" g2="Ugrave" k="29" />
+<hkern g1="d" g2="Uacute" k="29" />
+<hkern g1="d" g2="Ucircumflex" k="29" />
+<hkern g1="d" g2="Udieresis" k="29" />
+<hkern g1="d" g2="Yacute" k="14" />
+<hkern g1="d" g2="Thorn" k="14" />
+<hkern g1="d" g2="eth" k="8" />
+<hkern g1="d" g2="yacute" k="12" />
+<hkern g1="d" g2="ydieresis" k="12" />
+<hkern g1="d" g2="OE" k="23" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="parenright" k="61" />
+<hkern g1="e" g2="slash" k="78" />
+<hkern g1="e" g2="question" k="29" />
+<hkern g1="e" g2="B" k="33" />
+<hkern g1="e" g2="D" k="33" />
+<hkern g1="e" g2="E" k="33" />
+<hkern g1="e" g2="F" k="33" />
+<hkern g1="e" g2="H" k="33" />
+<hkern g1="e" g2="I" k="33" />
+<hkern g1="e" g2="K" k="33" />
+<hkern g1="e" g2="L" k="33" />
+<hkern g1="e" g2="M" k="25" />
+<hkern g1="e" g2="N" k="33" />
+<hkern g1="e" g2="P" k="33" />
+<hkern g1="e" g2="R" k="33" />
+<hkern g1="e" g2="S" k="10" />
+<hkern g1="e" g2="T" k="88" />
+<hkern g1="e" g2="U" k="41" />
+<hkern g1="e" g2="V" k="80" />
+<hkern g1="e" g2="W" k="70" />
+<hkern g1="e" g2="X" k="27" />
+<hkern g1="e" g2="Y" k="100" />
+<hkern g1="e" g2="Z" k="16" />
+<hkern g1="e" g2="backslash" k="88" />
+<hkern g1="e" g2="bracketright" k="100" />
+<hkern g1="e" g2="a" k="5" />
+<hkern g1="e" g2="c" k="10" />
+<hkern g1="e" g2="d" k="10" />
+<hkern g1="e" g2="e" k="10" />
+<hkern g1="e" g2="o" k="10" />
+<hkern g1="e" g2="q" k="10" />
+<hkern g1="e" g2="t" k="15" />
+<hkern g1="e" g2="v" k="10" />
+<hkern g1="e" g2="w" k="8" />
+<hkern g1="e" g2="x" k="10" />
+<hkern g1="e" g2="y" k="10" />
+<hkern g1="e" g2="braceright" k="47" />
+<hkern g1="e" g2="Egrave" k="33" />
+<hkern g1="e" g2="Eacute" k="33" />
+<hkern g1="e" g2="Ecircumflex" k="33" />
+<hkern g1="e" g2="Edieresis" k="33" />
+<hkern g1="e" g2="Igrave" k="33" />
+<hkern g1="e" g2="Iacute" k="33" />
+<hkern g1="e" g2="Icircumflex" k="33" />
+<hkern g1="e" g2="Idieresis" k="33" />
+<hkern g1="e" g2="Eth" k="33" />
+<hkern g1="e" g2="Ntilde" k="33" />
+<hkern g1="e" g2="Ugrave" k="41" />
+<hkern g1="e" g2="Uacute" k="41" />
+<hkern g1="e" g2="Ucircumflex" k="41" />
+<hkern g1="e" g2="Udieresis" k="41" />
+<hkern g1="e" g2="Yacute" k="100" />
+<hkern g1="e" g2="Thorn" k="33" />
+<hkern g1="e" g2="agrave" k="5" />
+<hkern g1="e" g2="aacute" k="5" />
+<hkern g1="e" g2="acircumflex" k="5" />
+<hkern g1="e" g2="atilde" k="5" />
+<hkern g1="e" g2="adieresis" k="5" />
+<hkern g1="e" g2="aring" k="5" />
+<hkern g1="e" g2="ae" k="5" />
+<hkern g1="e" g2="ccedilla" k="10" />
+<hkern g1="e" g2="egrave" k="10" />
+<hkern g1="e" g2="eacute" k="10" />
+<hkern g1="e" g2="ecircumflex" k="10" />
+<hkern g1="e" g2="edieresis" k="10" />
+<hkern g1="e" g2="ograve" k="10" />
+<hkern g1="e" g2="oacute" k="10" />
+<hkern g1="e" g2="ocircumflex" k="10" />
+<hkern g1="e" g2="otilde" k="10" />
+<hkern g1="e" g2="odieresis" k="10" />
+<hkern g1="e" g2="oslash" k="10" />
+<hkern g1="e" g2="yacute" k="10" />
+<hkern g1="e" g2="ydieresis" k="10" />
+<hkern g1="e" g2="oe" k="10" />
+<hkern g1="e" g2="quoteleft" k="55" />
+<hkern g1="e" g2="quoteright" k="41" />
+<hkern g1="e" g2="quotedblleft" k="55" />
+<hkern g1="e" g2="quotedblright" k="41" />
+<hkern g1="f" g2="exclam" k="-25" />
+<hkern g1="f" g2="quotedbl" k="-74" />
+<hkern g1="f" g2="quotesingle" k="-74" />
+<hkern g1="f" g2="parenright" k="-120" />
+<hkern g1="f" g2="asterisk" k="-25" />
+<hkern g1="f" g2="hyphen" k="20" />
+<hkern g1="f" g2="slash" k="72" />
+<hkern g1="f" g2="question" k="-16" />
+<hkern g1="f" g2="B" k="-63" />
+<hkern g1="f" g2="D" k="-63" />
+<hkern g1="f" g2="E" k="-63" />
+<hkern g1="f" g2="F" k="-63" />
+<hkern g1="f" g2="H" k="-90" />
+<hkern g1="f" g2="I" k="-63" />
+<hkern g1="f" g2="J" k="-80" />
+<hkern g1="f" g2="K" k="-63" />
+<hkern g1="f" g2="L" k="-63" />
+<hkern g1="f" g2="M" k="-96" />
+<hkern g1="f" g2="N" k="-63" />
+<hkern g1="f" g2="P" k="-63" />
+<hkern g1="f" g2="R" k="-63" />
+<hkern g1="f" g2="T" k="-123" />
+<hkern g1="f" g2="U" k="-115" />
+<hkern g1="f" g2="V" k="-186" />
+<hkern g1="f" g2="W" k="-162" />
+<hkern g1="f" g2="X" k="-208" />
+<hkern g1="f" g2="Y" k="-190" />
+<hkern g1="f" g2="Z" k="-53" />
+<hkern g1="f" g2="backslash" k="-119" />
+<hkern g1="f" g2="bracketright" k="-154" />
+<hkern g1="f" g2="b" k="-224" />
+<hkern g1="f" g2="c" k="10" />
+<hkern g1="f" g2="d" k="10" />
+<hkern g1="f" g2="e" k="10" />
+<hkern g1="f" g2="f" k="-20" />
+<hkern g1="f" g2="g" k="10" />
+<hkern g1="f" g2="h" k="-120" />
+<hkern g1="f" g2="i" k="-64" />
+<hkern g1="f" g2="j" k="-112" />
+<hkern g1="f" g2="k" k="-130" />
+<hkern g1="f" g2="l" k="-135" />
+<hkern g1="f" g2="o" k="10" />
+<hkern g1="f" g2="q" k="10" />
+<hkern g1="f" g2="t" k="-25" />
+<hkern g1="f" g2="v" k="-40" />
+<hkern g1="f" g2="w" k="-35" />
+<hkern g1="f" g2="y" k="-25" />
+<hkern g1="f" g2="bar" k="-31" />
+<hkern g1="f" g2="braceright" k="-137" />
+<hkern g1="f" g2="guillemotleft" k="23" />
+<hkern g1="f" g2="uni00AD" k="20" />
+<hkern g1="f" g2="Egrave" k="-63" />
+<hkern g1="f" g2="Eacute" k="-63" />
+<hkern g1="f" g2="Ecircumflex" k="-63" />
+<hkern g1="f" g2="Edieresis" k="-63" />
+<hkern g1="f" g2="Igrave" k="-63" />
+<hkern g1="f" g2="Iacute" k="-63" />
+<hkern g1="f" g2="Icircumflex" k="-63" />
+<hkern g1="f" g2="Idieresis" k="-63" />
+<hkern g1="f" g2="Eth" k="-63" />
+<hkern g1="f" g2="Ntilde" k="-63" />
+<hkern g1="f" g2="Ugrave" k="-115" />
+<hkern g1="f" g2="Uacute" k="-115" />
+<hkern g1="f" g2="Ucircumflex" k="-115" />
+<hkern g1="f" g2="Udieresis" k="-115" />
+<hkern g1="f" g2="Yacute" k="-190" />
+<hkern g1="f" g2="Thorn" k="-63" />
+<hkern g1="f" g2="germandbls" k="-20" />
+<hkern g1="f" g2="ccedilla" k="10" />
+<hkern g1="f" g2="egrave" k="10" />
+<hkern g1="f" g2="eacute" k="10" />
+<hkern g1="f" g2="ecircumflex" k="10" />
+<hkern g1="f" g2="edieresis" k="10" />
+<hkern g1="f" g2="igrave" k="-127" />
+<hkern g1="f" g2="iacute" k="-64" />
+<hkern g1="f" g2="icircumflex" k="-59" />
+<hkern g1="f" g2="idieresis" k="-109" />
+<hkern g1="f" g2="eth" k="23" />
+<hkern g1="f" g2="ograve" k="10" />
+<hkern g1="f" g2="oacute" k="10" />
+<hkern g1="f" g2="ocircumflex" k="10" />
+<hkern g1="f" g2="otilde" k="10" />
+<hkern g1="f" g2="odieresis" k="10" />
+<hkern g1="f" g2="oslash" k="10" />
+<hkern g1="f" g2="yacute" k="-25" />
+<hkern g1="f" g2="thorn" k="-224" />
+<hkern g1="f" g2="ydieresis" k="-25" />
+<hkern g1="f" g2="dotlessi" k="-64" />
+<hkern g1="f" g2="oe" k="10" />
+<hkern g1="f" g2="endash" k="20" />
+<hkern g1="f" g2="emdash" k="20" />
+<hkern g1="f" g2="quoteleft" k="-200" />
+<hkern g1="f" g2="quotedblleft" k="-200" />
+<hkern g1="f" g2="guilsinglleft" k="23" />
+<hkern g1="g" g2="asterisk" k="-86" />
+<hkern g1="g" g2="question" k="-25" />
+<hkern g1="g" g2="M" k="10" />
+<hkern g1="g" g2="T" k="-49" />
+<hkern g1="g" g2="Y" k="8" />
+<hkern g1="g" g2="b" k="-60" />
+<hkern g1="g" g2="c" k="10" />
+<hkern g1="g" g2="d" k="10" />
+<hkern g1="g" g2="f" k="-80" />
+<hkern g1="g" g2="h" k="-50" />
+<hkern g1="g" g2="i" k="-50" />
+<hkern g1="g" g2="j" k="-129" />
+<hkern g1="g" g2="k" k="-48" />
+<hkern g1="g" g2="l" k="-48" />
+<hkern g1="g" g2="p" k="-10" />
+<hkern g1="g" g2="q" k="10" />
+<hkern g1="g" g2="v" k="-22" />
+<hkern g1="g" g2="w" k="-20" />
+<hkern g1="g" g2="y" k="-40" />
+<hkern g1="g" g2="Yacute" k="8" />
+<hkern g1="g" g2="germandbls" k="-80" />
+<hkern g1="g" g2="igrave" k="-50" />
+<hkern g1="g" g2="iacute" k="-50" />
+<hkern g1="g" g2="icircumflex" k="-50" />
+<hkern g1="g" g2="idieresis" k="-50" />
+<hkern g1="g" g2="eth" k="8" />
+<hkern g1="g" g2="yacute" k="-40" />
+<hkern g1="g" g2="thorn" k="-60" />
+<hkern g1="g" g2="ydieresis" k="-40" />
+<hkern g1="g" g2="dotlessi" k="-50" />
+<hkern g1="h" g2="quotedbl" k="27" />
+<hkern g1="h" g2="quotesingle" k="27" />
+<hkern g1="h" g2="parenright" k="51" />
+<hkern g1="h" g2="asterisk" k="18" />
+<hkern g1="h" g2="slash" k="39" />
+<hkern g1="h" g2="seven" k="85" />
+<hkern g1="h" g2="question" k="39" />
+<hkern g1="h" g2="B" k="12" />
+<hkern g1="h" g2="C" k="25" />
+<hkern g1="h" g2="D" k="12" />
+<hkern g1="h" g2="E" k="12" />
+<hkern g1="h" g2="F" k="12" />
+<hkern g1="h" g2="G" k="23" />
+<hkern g1="h" g2="H" k="12" />
+<hkern g1="h" g2="I" k="12" />
+<hkern g1="h" g2="K" k="12" />
+<hkern g1="h" g2="L" k="12" />
+<hkern g1="h" g2="N" k="12" />
+<hkern g1="h" g2="O" k="25" />
+<hkern g1="h" g2="P" k="12" />
+<hkern g1="h" g2="Q" k="25" />
+<hkern g1="h" g2="R" k="12" />
+<hkern g1="h" g2="T" k="90" />
+<hkern g1="h" g2="U" k="57" />
+<hkern g1="h" g2="V" k="80" />
+<hkern g1="h" g2="W" k="80" />
+<hkern g1="h" g2="Y" k="100" />
+<hkern g1="h" g2="backslash" k="113" />
+<hkern g1="h" g2="bracketright" k="96" />
+<hkern g1="h" g2="j" k="10" />
+<hkern g1="h" g2="t" k="18" />
+<hkern g1="h" g2="v" k="10" />
+<hkern g1="h" g2="w" k="10" />
+<hkern g1="h" g2="y" k="15" />
+<hkern g1="h" g2="braceright" k="45" />
+<hkern g1="h" g2="Ccedilla" k="25" />
+<hkern g1="h" g2="Egrave" k="12" />
+<hkern g1="h" g2="Eacute" k="12" />
+<hkern g1="h" g2="Ecircumflex" k="12" />
+<hkern g1="h" g2="Edieresis" k="12" />
+<hkern g1="h" g2="Igrave" k="12" />
+<hkern g1="h" g2="Iacute" k="12" />
+<hkern g1="h" g2="Icircumflex" k="12" />
+<hkern g1="h" g2="Idieresis" k="12" />
+<hkern g1="h" g2="Eth" k="12" />
+<hkern g1="h" g2="Ntilde" k="12" />
+<hkern g1="h" g2="Ograve" k="25" />
+<hkern g1="h" g2="Oacute" k="25" />
+<hkern g1="h" g2="Ocircumflex" k="25" />
+<hkern g1="h" g2="Otilde" k="25" />
+<hkern g1="h" g2="Odieresis" k="25" />
+<hkern g1="h" g2="Oslash" k="25" />
+<hkern g1="h" g2="Ugrave" k="57" />
+<hkern g1="h" g2="Uacute" k="57" />
+<hkern g1="h" g2="Ucircumflex" k="57" />
+<hkern g1="h" g2="Udieresis" k="57" />
+<hkern g1="h" g2="Yacute" k="100" />
+<hkern g1="h" g2="Thorn" k="12" />
+<hkern g1="h" g2="yacute" k="15" />
+<hkern g1="h" g2="ydieresis" k="15" />
+<hkern g1="h" g2="OE" k="25" />
+<hkern g1="h" g2="quoteleft" k="59" />
+<hkern g1="h" g2="quoteright" k="47" />
+<hkern g1="h" g2="quotedblleft" k="59" />
+<hkern g1="h" g2="quotedblright" k="47" />
+<hkern g1="i" g2="slash" k="43" />
+<hkern g1="i" g2="B" k="14" />
+<hkern g1="i" g2="C" k="23" />
+<hkern g1="i" g2="D" k="14" />
+<hkern g1="i" g2="E" k="14" />
+<hkern g1="i" g2="F" k="14" />
+<hkern g1="i" g2="G" k="20" />
+<hkern g1="i" g2="H" k="14" />
+<hkern g1="i" g2="I" k="14" />
+<hkern g1="i" g2="K" k="14" />
+<hkern g1="i" g2="L" k="14" />
+<hkern g1="i" g2="M" k="10" />
+<hkern g1="i" g2="N" k="14" />
+<hkern g1="i" g2="O" k="23" />
+<hkern g1="i" g2="P" k="14" />
+<hkern g1="i" g2="Q" k="23" />
+<hkern g1="i" g2="R" k="14" />
+<hkern g1="i" g2="T" k="14" />
+<hkern g1="i" g2="U" k="25" />
+<hkern g1="i" g2="W" k="18" />
+<hkern g1="i" g2="Y" k="12" />
+<hkern g1="i" g2="t" k="8" />
+<hkern g1="i" g2="w" k="10" />
+<hkern g1="i" g2="y" k="10" />
+<hkern g1="i" g2="Ccedilla" k="23" />
+<hkern g1="i" g2="Egrave" k="14" />
+<hkern g1="i" g2="Eacute" k="14" />
+<hkern g1="i" g2="Ecircumflex" k="14" />
+<hkern g1="i" g2="Edieresis" k="14" />
+<hkern g1="i" g2="Igrave" k="14" />
+<hkern g1="i" g2="Iacute" k="14" />
+<hkern g1="i" g2="Icircumflex" k="14" />
+<hkern g1="i" g2="Idieresis" k="14" />
+<hkern g1="i" g2="Eth" k="14" />
+<hkern g1="i" g2="Ntilde" k="14" />
+<hkern g1="i" g2="Ograve" k="23" />
+<hkern g1="i" g2="Oacute" k="23" />
+<hkern g1="i" g2="Ocircumflex" k="23" />
+<hkern g1="i" g2="Otilde" k="23" />
+<hkern g1="i" g2="Odieresis" k="23" />
+<hkern g1="i" g2="Oslash" k="23" />
+<hkern g1="i" g2="Ugrave" k="25" />
+<hkern g1="i" g2="Uacute" k="25" />
+<hkern g1="i" g2="Ucircumflex" k="25" />
+<hkern g1="i" g2="Udieresis" k="25" />
+<hkern g1="i" g2="Yacute" k="12" />
+<hkern g1="i" g2="Thorn" k="14" />
+<hkern g1="i" g2="yacute" k="10" />
+<hkern g1="i" g2="ydieresis" k="10" />
+<hkern g1="i" g2="OE" k="23" />
+<hkern g1="j" g2="B" k="20" />
+<hkern g1="j" g2="C" k="10" />
+<hkern g1="j" g2="D" k="20" />
+<hkern g1="j" g2="E" k="20" />
+<hkern g1="j" g2="F" k="20" />
+<hkern g1="j" g2="G" k="10" />
+<hkern g1="j" g2="H" k="20" />
+<hkern g1="j" g2="I" k="20" />
+<hkern g1="j" g2="K" k="20" />
+<hkern g1="j" g2="L" k="20" />
+<hkern g1="j" g2="M" k="18" />
+<hkern g1="j" g2="N" k="20" />
+<hkern g1="j" g2="O" k="10" />
+<hkern g1="j" g2="P" k="20" />
+<hkern g1="j" g2="Q" k="10" />
+<hkern g1="j" g2="R" k="20" />
+<hkern g1="j" g2="S" k="10" />
+<hkern g1="j" g2="U" k="14" />
+<hkern g1="j" g2="a" k="-10" />
+<hkern g1="j" g2="j" k="-64" />
+<hkern g1="j" g2="Ccedilla" k="10" />
+<hkern g1="j" g2="Egrave" k="20" />
+<hkern g1="j" g2="Eacute" k="20" />
+<hkern g1="j" g2="Ecircumflex" k="20" />
+<hkern g1="j" g2="Edieresis" k="20" />
+<hkern g1="j" g2="Igrave" k="20" />
+<hkern g1="j" g2="Iacute" k="20" />
+<hkern g1="j" g2="Icircumflex" k="20" />
+<hkern g1="j" g2="Idieresis" k="20" />
+<hkern g1="j" g2="Eth" k="20" />
+<hkern g1="j" g2="Ntilde" k="20" />
+<hkern g1="j" g2="Ograve" k="10" />
+<hkern g1="j" g2="Oacute" k="10" />
+<hkern g1="j" g2="Ocircumflex" k="10" />
+<hkern g1="j" g2="Otilde" k="10" />
+<hkern g1="j" g2="Odieresis" k="10" />
+<hkern g1="j" g2="Oslash" k="10" />
+<hkern g1="j" g2="Ugrave" k="14" />
+<hkern g1="j" g2="Uacute" k="14" />
+<hkern g1="j" g2="Ucircumflex" k="14" />
+<hkern g1="j" g2="Udieresis" k="14" />
+<hkern g1="j" g2="Thorn" k="20" />
+<hkern g1="j" g2="agrave" k="-10" />
+<hkern g1="j" g2="aacute" k="-10" />
+<hkern g1="j" g2="acircumflex" k="-10" />
+<hkern g1="j" g2="atilde" k="-10" />
+<hkern g1="j" g2="adieresis" k="-10" />
+<hkern g1="j" g2="aring" k="-10" />
+<hkern g1="j" g2="ae" k="-10" />
+<hkern g1="j" g2="OE" k="10" />
+<hkern g1="k" g2="hyphen" k="47" />
+<hkern g1="k" g2="A" k="-50" />
+<hkern g1="k" g2="C" k="45" />
+<hkern g1="k" g2="G" k="45" />
+<hkern g1="k" g2="O" k="45" />
+<hkern g1="k" g2="Q" k="45" />
+<hkern g1="k" g2="V" k="31" />
+<hkern g1="k" g2="W" k="43" />
+<hkern g1="k" g2="Y" k="86" />
+<hkern g1="k" g2="bracketright" k="47" />
+<hkern g1="k" g2="c" k="15" />
+<hkern g1="k" g2="d" k="15" />
+<hkern g1="k" g2="e" k="15" />
+<hkern g1="k" g2="o" k="15" />
+<hkern g1="k" g2="q" k="15" />
+<hkern g1="k" g2="uni00AD" k="47" />
+<hkern g1="k" g2="Agrave" k="-50" />
+<hkern g1="k" g2="Aacute" k="-50" />
+<hkern g1="k" g2="Acircumflex" k="-50" />
+<hkern g1="k" g2="Atilde" k="-50" />
+<hkern g1="k" g2="Adieresis" k="-50" />
+<hkern g1="k" g2="Aring" k="-50" />
+<hkern g1="k" g2="Ccedilla" k="45" />
+<hkern g1="k" g2="Ograve" k="45" />
+<hkern g1="k" g2="Oacute" k="45" />
+<hkern g1="k" g2="Ocircumflex" k="45" />
+<hkern g1="k" g2="Otilde" k="45" />
+<hkern g1="k" g2="Odieresis" k="45" />
+<hkern g1="k" g2="Oslash" k="45" />
+<hkern g1="k" g2="Yacute" k="86" />
+<hkern g1="k" g2="ccedilla" k="15" />
+<hkern g1="k" g2="egrave" k="15" />
+<hkern g1="k" g2="eacute" k="15" />
+<hkern g1="k" g2="ecircumflex" k="15" />
+<hkern g1="k" g2="edieresis" k="15" />
+<hkern g1="k" g2="eth" k="57" />
+<hkern g1="k" g2="ograve" k="15" />
+<hkern g1="k" g2="oacute" k="15" />
+<hkern g1="k" g2="ocircumflex" k="15" />
+<hkern g1="k" g2="otilde" k="15" />
+<hkern g1="k" g2="odieresis" k="15" />
+<hkern g1="k" g2="oslash" k="15" />
+<hkern g1="k" g2="OE" k="45" />
+<hkern g1="k" g2="oe" k="15" />
+<hkern g1="k" g2="endash" k="47" />
+<hkern g1="k" g2="emdash" k="47" />
+<hkern g1="k" g2="quoteleft" k="23" />
+<hkern g1="k" g2="quotedblleft" k="23" />
+<hkern g1="l" g2="slash" k="43" />
+<hkern g1="l" g2="B" k="16" />
+<hkern g1="l" g2="C" k="23" />
+<hkern g1="l" g2="D" k="16" />
+<hkern g1="l" g2="E" k="16" />
+<hkern g1="l" g2="F" k="16" />
+<hkern g1="l" g2="G" k="20" />
+<hkern g1="l" g2="H" k="16" />
+<hkern g1="l" g2="I" k="16" />
+<hkern g1="l" g2="K" k="16" />
+<hkern g1="l" g2="L" k="16" />
+<hkern g1="l" g2="M" k="10" />
+<hkern g1="l" g2="N" k="16" />
+<hkern g1="l" g2="O" k="23" />
+<hkern g1="l" g2="P" k="16" />
+<hkern g1="l" g2="Q" k="23" />
+<hkern g1="l" g2="R" k="16" />
+<hkern g1="l" g2="T" k="12" />
+<hkern g1="l" g2="U" k="27" />
+<hkern g1="l" g2="W" k="20" />
+<hkern g1="l" g2="Y" k="12" />
+<hkern g1="l" g2="b" k="-64" />
+<hkern g1="l" g2="v" k="8" />
+<hkern g1="l" g2="w" k="10" />
+<hkern g1="l" g2="y" k="10" />
+<hkern g1="l" g2="middot" k="135" />
+<hkern g1="l" g2="Ccedilla" k="23" />
+<hkern g1="l" g2="Egrave" k="16" />
+<hkern g1="l" g2="Eacute" k="16" />
+<hkern g1="l" g2="Ecircumflex" k="16" />
+<hkern g1="l" g2="Edieresis" k="16" />
+<hkern g1="l" g2="Igrave" k="16" />
+<hkern g1="l" g2="Iacute" k="16" />
+<hkern g1="l" g2="Icircumflex" k="16" />
+<hkern g1="l" g2="Idieresis" k="16" />
+<hkern g1="l" g2="Eth" k="16" />
+<hkern g1="l" g2="Ntilde" k="16" />
+<hkern g1="l" g2="Ograve" k="23" />
+<hkern g1="l" g2="Oacute" k="23" />
+<hkern g1="l" g2="Ocircumflex" k="23" />
+<hkern g1="l" g2="Otilde" k="23" />
+<hkern g1="l" g2="Odieresis" k="23" />
+<hkern g1="l" g2="Oslash" k="23" />
+<hkern g1="l" g2="Ugrave" k="27" />
+<hkern g1="l" g2="Uacute" k="27" />
+<hkern g1="l" g2="Ucircumflex" k="27" />
+<hkern g1="l" g2="Udieresis" k="27" />
+<hkern g1="l" g2="Yacute" k="12" />
+<hkern g1="l" g2="Thorn" k="16" />
+<hkern g1="l" g2="yacute" k="10" />
+<hkern g1="l" g2="thorn" k="-64" />
+<hkern g1="l" g2="ydieresis" k="10" />
+<hkern g1="l" g2="OE" k="23" />
+<hkern g1="m" g2="quotedbl" k="27" />
+<hkern g1="m" g2="quotesingle" k="27" />
+<hkern g1="m" g2="parenright" k="51" />
+<hkern g1="m" g2="asterisk" k="18" />
+<hkern g1="m" g2="slash" k="39" />
+<hkern g1="m" g2="question" k="39" />
+<hkern g1="m" g2="B" k="12" />
+<hkern g1="m" g2="C" k="25" />
+<hkern g1="m" g2="D" k="12" />
+<hkern g1="m" g2="E" k="12" />
+<hkern g1="m" g2="F" k="12" />
+<hkern g1="m" g2="G" k="23" />
+<hkern g1="m" g2="H" k="12" />
+<hkern g1="m" g2="I" k="12" />
+<hkern g1="m" g2="K" k="12" />
+<hkern g1="m" g2="L" k="12" />
+<hkern g1="m" g2="N" k="12" />
+<hkern g1="m" g2="O" k="25" />
+<hkern g1="m" g2="P" k="12" />
+<hkern g1="m" g2="Q" k="25" />
+<hkern g1="m" g2="R" k="12" />
+<hkern g1="m" g2="T" k="100" />
+<hkern g1="m" g2="U" k="57" />
+<hkern g1="m" g2="V" k="80" />
+<hkern g1="m" g2="W" k="80" />
+<hkern g1="m" g2="Y" k="100" />
+<hkern g1="m" g2="backslash" k="113" />
+<hkern g1="m" g2="bracketright" k="96" />
+<hkern g1="m" g2="j" k="10" />
+<hkern g1="m" g2="t" k="18" />
+<hkern g1="m" g2="v" k="10" />
+<hkern g1="m" g2="w" k="10" />
+<hkern g1="m" g2="y" k="15" />
+<hkern g1="m" g2="braceright" k="45" />
+<hkern g1="m" g2="Ccedilla" k="25" />
+<hkern g1="m" g2="Egrave" k="12" />
+<hkern g1="m" g2="Eacute" k="12" />
+<hkern g1="m" g2="Ecircumflex" k="12" />
+<hkern g1="m" g2="Edieresis" k="12" />
+<hkern g1="m" g2="Igrave" k="12" />
+<hkern g1="m" g2="Iacute" k="12" />
+<hkern g1="m" g2="Icircumflex" k="12" />
+<hkern g1="m" g2="Idieresis" k="12" />
+<hkern g1="m" g2="Eth" k="12" />
+<hkern g1="m" g2="Ntilde" k="12" />
+<hkern g1="m" g2="Ograve" k="25" />
+<hkern g1="m" g2="Oacute" k="25" />
+<hkern g1="m" g2="Ocircumflex" k="25" />
+<hkern g1="m" g2="Otilde" k="25" />
+<hkern g1="m" g2="Odieresis" k="25" />
+<hkern g1="m" g2="Oslash" k="25" />
+<hkern g1="m" g2="Ugrave" k="57" />
+<hkern g1="m" g2="Uacute" k="57" />
+<hkern g1="m" g2="Ucircumflex" k="57" />
+<hkern g1="m" g2="Udieresis" k="57" />
+<hkern g1="m" g2="Yacute" k="100" />
+<hkern g1="m" g2="Thorn" k="12" />
+<hkern g1="m" g2="yacute" k="15" />
+<hkern g1="m" g2="ydieresis" k="15" />
+<hkern g1="m" g2="OE" k="25" />
+<hkern g1="m" g2="quoteleft" k="59" />
+<hkern g1="m" g2="quoteright" k="47" />
+<hkern g1="m" g2="quotedblleft" k="59" />
+<hkern g1="m" g2="quotedblright" k="47" />
+<hkern g1="n" g2="quotedbl" k="27" />
+<hkern g1="n" g2="quotesingle" k="27" />
+<hkern g1="n" g2="parenright" k="51" />
+<hkern g1="n" g2="asterisk" k="18" />
+<hkern g1="n" g2="slash" k="39" />
+<hkern g1="n" g2="question" k="39" />
+<hkern g1="n" g2="B" k="12" />
+<hkern g1="n" g2="C" k="25" />
+<hkern g1="n" g2="D" k="12" />
+<hkern g1="n" g2="E" k="12" />
+<hkern g1="n" g2="F" k="12" />
+<hkern g1="n" g2="G" k="23" />
+<hkern g1="n" g2="H" k="12" />
+<hkern g1="n" g2="I" k="12" />
+<hkern g1="n" g2="K" k="12" />
+<hkern g1="n" g2="L" k="12" />
+<hkern g1="n" g2="N" k="12" />
+<hkern g1="n" g2="O" k="25" />
+<hkern g1="n" g2="P" k="12" />
+<hkern g1="n" g2="Q" k="25" />
+<hkern g1="n" g2="R" k="12" />
+<hkern g1="n" g2="T" k="100" />
+<hkern g1="n" g2="U" k="57" />
+<hkern g1="n" g2="V" k="80" />
+<hkern g1="n" g2="W" k="80" />
+<hkern g1="n" g2="Y" k="100" />
+<hkern g1="n" g2="backslash" k="113" />
+<hkern g1="n" g2="bracketright" k="96" />
+<hkern g1="n" g2="j" k="10" />
+<hkern g1="n" g2="t" k="18" />
+<hkern g1="n" g2="v" k="30" />
+<hkern g1="n" g2="w" k="35" />
+<hkern g1="n" g2="y" k="15" />
+<hkern g1="n" g2="braceright" k="45" />
+<hkern g1="n" g2="Ccedilla" k="25" />
+<hkern g1="n" g2="Egrave" k="12" />
+<hkern g1="n" g2="Eacute" k="12" />
+<hkern g1="n" g2="Ecircumflex" k="12" />
+<hkern g1="n" g2="Edieresis" k="12" />
+<hkern g1="n" g2="Igrave" k="12" />
+<hkern g1="n" g2="Iacute" k="12" />
+<hkern g1="n" g2="Icircumflex" k="12" />
+<hkern g1="n" g2="Idieresis" k="12" />
+<hkern g1="n" g2="Eth" k="12" />
+<hkern g1="n" g2="Ntilde" k="12" />
+<hkern g1="n" g2="Ograve" k="25" />
+<hkern g1="n" g2="Oacute" k="25" />
+<hkern g1="n" g2="Ocircumflex" k="25" />
+<hkern g1="n" g2="Otilde" k="25" />
+<hkern g1="n" g2="Odieresis" k="25" />
+<hkern g1="n" g2="Oslash" k="25" />
+<hkern g1="n" g2="Ugrave" k="57" />
+<hkern g1="n" g2="Uacute" k="57" />
+<hkern g1="n" g2="Ucircumflex" k="57" />
+<hkern g1="n" g2="Udieresis" k="57" />
+<hkern g1="n" g2="Yacute" k="100" />
+<hkern g1="n" g2="Thorn" k="12" />
+<hkern g1="n" g2="yacute" k="15" />
+<hkern g1="n" g2="ydieresis" k="15" />
+<hkern g1="n" g2="OE" k="25" />
+<hkern g1="n" g2="quoteleft" k="59" />
+<hkern g1="n" g2="quoteright" k="47" />
+<hkern g1="n" g2="quotedblleft" k="59" />
+<hkern g1="n" g2="quotedblright" k="47" />
+<hkern g1="o" g2="quotedbl" k="29" />
+<hkern g1="o" g2="quotesingle" k="29" />
+<hkern g1="o" g2="parenright" k="100" />
+<hkern g1="o" g2="slash" k="98" />
+<hkern g1="o" g2="question" k="35" />
+<hkern g1="o" g2="A" k="15" />
+<hkern g1="o" g2="B" k="49" />
+<hkern g1="o" g2="D" k="49" />
+<hkern g1="o" g2="E" k="49" />
+<hkern g1="o" g2="F" k="49" />
+<hkern g1="o" g2="H" k="49" />
+<hkern g1="o" g2="I" k="49" />
+<hkern g1="o" g2="K" k="49" />
+<hkern g1="o" g2="L" k="49" />
+<hkern g1="o" g2="M" k="43" />
+<hkern g1="o" g2="N" k="49" />
+<hkern g1="o" g2="P" k="49" />
+<hkern g1="o" g2="R" k="49" />
+<hkern g1="o" g2="S" k="12" />
+<hkern g1="o" g2="T" k="100" />
+<hkern g1="o" g2="U" k="41" />
+<hkern g1="o" g2="V" k="70" />
+<hkern g1="o" g2="W" k="100" />
+<hkern g1="o" g2="X" k="94" />
+<hkern g1="o" g2="Y" k="115" />
+<hkern g1="o" g2="Z" k="43" />
+<hkern g1="o" g2="backslash" k="98" />
+<hkern g1="o" g2="bracketright" k="104" />
+<hkern g1="o" g2="f" k="10" />
+<hkern g1="o" g2="v" k="10" />
+<hkern g1="o" g2="w" k="20" />
+<hkern g1="o" g2="x" k="10" />
+<hkern g1="o" g2="y" k="16" />
+<hkern g1="o" g2="braceright" k="53" />
+<hkern g1="o" g2="Agrave" k="15" />
+<hkern g1="o" g2="Aacute" k="15" />
+<hkern g1="o" g2="Acircumflex" k="15" />
+<hkern g1="o" g2="Atilde" k="15" />
+<hkern g1="o" g2="Adieresis" k="15" />
+<hkern g1="o" g2="Aring" k="15" />
+<hkern g1="o" g2="Egrave" k="49" />
+<hkern g1="o" g2="Eacute" k="49" />
+<hkern g1="o" g2="Ecircumflex" k="49" />
+<hkern g1="o" g2="Edieresis" k="49" />
+<hkern g1="o" g2="Igrave" k="49" />
+<hkern g1="o" g2="Iacute" k="49" />
+<hkern g1="o" g2="Icircumflex" k="49" />
+<hkern g1="o" g2="Idieresis" k="49" />
+<hkern g1="o" g2="Eth" k="49" />
+<hkern g1="o" g2="Ntilde" k="49" />
+<hkern g1="o" g2="Ugrave" k="41" />
+<hkern g1="o" g2="Uacute" k="41" />
+<hkern g1="o" g2="Ucircumflex" k="41" />
+<hkern g1="o" g2="Udieresis" k="41" />
+<hkern g1="o" g2="Yacute" k="115" />
+<hkern g1="o" g2="Thorn" k="49" />
+<hkern g1="o" g2="germandbls" k="10" />
+<hkern g1="o" g2="yacute" k="16" />
+<hkern g1="o" g2="ydieresis" k="16" />
+<hkern g1="o" g2="quoteleft" k="70" />
+<hkern g1="o" g2="quoteright" k="53" />
+<hkern g1="o" g2="quotedblleft" k="70" />
+<hkern g1="o" g2="quotedblright" k="53" />
+<hkern g1="p" g2="quotedbl" k="29" />
+<hkern g1="p" g2="quotesingle" k="29" />
+<hkern g1="p" g2="parenright" k="100" />
+<hkern g1="p" g2="slash" k="98" />
+<hkern g1="p" g2="question" k="35" />
+<hkern g1="p" g2="A" k="15" />
+<hkern g1="p" g2="B" k="49" />
+<hkern g1="p" g2="D" k="49" />
+<hkern g1="p" g2="E" k="49" />
+<hkern g1="p" g2="F" k="49" />
+<hkern g1="p" g2="H" k="49" />
+<hkern g1="p" g2="I" k="49" />
+<hkern g1="p" g2="K" k="49" />
+<hkern g1="p" g2="L" k="49" />
+<hkern g1="p" g2="M" k="25" />
+<hkern g1="p" g2="N" k="49" />
+<hkern g1="p" g2="P" k="49" />
+<hkern g1="p" g2="R" k="49" />
+<hkern g1="p" g2="S" k="12" />
+<hkern g1="p" g2="T" k="100" />
+<hkern g1="p" g2="U" k="41" />
+<hkern g1="p" g2="V" k="70" />
+<hkern g1="p" g2="W" k="100" />
+<hkern g1="p" g2="X" k="94" />
+<hkern g1="p" g2="Y" k="100" />
+<hkern g1="p" g2="Z" k="43" />
+<hkern g1="p" g2="backslash" k="98" />
+<hkern g1="p" g2="bracketright" k="104" />
+<hkern g1="p" g2="f" k="10" />
+<hkern g1="p" g2="v" k="10" />
+<hkern g1="p" g2="w" k="10" />
+<hkern g1="p" g2="x" k="10" />
+<hkern g1="p" g2="y" k="10" />
+<hkern g1="p" g2="braceright" k="53" />
+<hkern g1="p" g2="Agrave" k="15" />
+<hkern g1="p" g2="Aacute" k="15" />
+<hkern g1="p" g2="Acircumflex" k="15" />
+<hkern g1="p" g2="Atilde" k="15" />
+<hkern g1="p" g2="Adieresis" k="15" />
+<hkern g1="p" g2="Aring" k="15" />
+<hkern g1="p" g2="Egrave" k="49" />
+<hkern g1="p" g2="Eacute" k="49" />
+<hkern g1="p" g2="Ecircumflex" k="49" />
+<hkern g1="p" g2="Edieresis" k="49" />
+<hkern g1="p" g2="Igrave" k="49" />
+<hkern g1="p" g2="Iacute" k="49" />
+<hkern g1="p" g2="Icircumflex" k="49" />
+<hkern g1="p" g2="Idieresis" k="49" />
+<hkern g1="p" g2="Eth" k="49" />
+<hkern g1="p" g2="Ntilde" k="49" />
+<hkern g1="p" g2="Ugrave" k="41" />
+<hkern g1="p" g2="Uacute" k="41" />
+<hkern g1="p" g2="Ucircumflex" k="41" />
+<hkern g1="p" g2="Udieresis" k="41" />
+<hkern g1="p" g2="Yacute" k="100" />
+<hkern g1="p" g2="Thorn" k="49" />
+<hkern g1="p" g2="germandbls" k="10" />
+<hkern g1="p" g2="yacute" k="10" />
+<hkern g1="p" g2="ydieresis" k="10" />
+<hkern g1="p" g2="quoteleft" k="70" />
+<hkern g1="p" g2="quoteright" k="53" />
+<hkern g1="p" g2="quotedblleft" k="70" />
+<hkern g1="p" g2="quotedblright" k="53" />
+<hkern g1="q" g2="B" k="33" />
+<hkern g1="q" g2="C" k="10" />
+<hkern g1="q" g2="D" k="33" />
+<hkern g1="q" g2="E" k="33" />
+<hkern g1="q" g2="F" k="33" />
+<hkern g1="q" g2="G" k="10" />
+<hkern g1="q" g2="H" k="33" />
+<hkern g1="q" g2="I" k="33" />
+<hkern g1="q" g2="K" k="33" />
+<hkern g1="q" g2="L" k="33" />
+<hkern g1="q" g2="M" k="31" />
+<hkern g1="q" g2="N" k="33" />
+<hkern g1="q" g2="O" k="10" />
+<hkern g1="q" g2="P" k="33" />
+<hkern g1="q" g2="Q" k="10" />
+<hkern g1="q" g2="R" k="33" />
+<hkern g1="q" g2="S" k="10" />
+<hkern g1="q" g2="T" k="25" />
+<hkern g1="q" g2="U" k="41" />
+<hkern g1="q" g2="V" k="80" />
+<hkern g1="q" g2="W" k="85" />
+<hkern g1="q" g2="Y" k="80" />
+<hkern g1="q" g2="Z" k="14" />
+<hkern g1="q" g2="backslash" k="70" />
+<hkern g1="q" g2="g" k="-48" />
+<hkern g1="q" g2="j" k="-205" />
+<hkern g1="q" g2="p" k="-64" />
+<hkern g1="q" g2="q" k="10" />
+<hkern g1="q" g2="s" k="15" />
+<hkern g1="q" g2="v" k="10" />
+<hkern g1="q" g2="braceright" k="-14" />
+<hkern g1="q" g2="Ccedilla" k="10" />
+<hkern g1="q" g2="Egrave" k="33" />
+<hkern g1="q" g2="Eacute" k="33" />
+<hkern g1="q" g2="Ecircumflex" k="33" />
+<hkern g1="q" g2="Edieresis" k="33" />
+<hkern g1="q" g2="Igrave" k="33" />
+<hkern g1="q" g2="Iacute" k="33" />
+<hkern g1="q" g2="Icircumflex" k="33" />
+<hkern g1="q" g2="Idieresis" k="33" />
+<hkern g1="q" g2="Eth" k="33" />
+<hkern g1="q" g2="Ntilde" k="33" />
+<hkern g1="q" g2="Ograve" k="10" />
+<hkern g1="q" g2="Oacute" k="10" />
+<hkern g1="q" g2="Ocircumflex" k="10" />
+<hkern g1="q" g2="Otilde" k="10" />
+<hkern g1="q" g2="Odieresis" k="10" />
+<hkern g1="q" g2="Oslash" k="10" />
+<hkern g1="q" g2="Ugrave" k="41" />
+<hkern g1="q" g2="Uacute" k="41" />
+<hkern g1="q" g2="Ucircumflex" k="41" />
+<hkern g1="q" g2="Udieresis" k="41" />
+<hkern g1="q" g2="Yacute" k="80" />
+<hkern g1="q" g2="Thorn" k="33" />
+<hkern g1="q" g2="OE" k="10" />
+<hkern g1="q" g2="quoteleft" k="27" />
+<hkern g1="q" g2="quoteright" k="16" />
+<hkern g1="q" g2="quotedblleft" k="27" />
+<hkern g1="q" g2="quotedblright" k="16" />
+<hkern g1="r" g2="ampersand" k="25" />
+<hkern g1="r" g2="parenright" k="49" />
+<hkern g1="r" g2="comma" k="86" />
+<hkern g1="r" g2="hyphen" k="16" />
+<hkern g1="r" g2="period" k="86" />
+<hkern g1="r" g2="slash" k="141" />
+<hkern g1="r" g2="A" k="60" />
+<hkern g1="r" g2="B" k="43" />
+<hkern g1="r" g2="D" k="43" />
+<hkern g1="r" g2="E" k="43" />
+<hkern g1="r" g2="F" k="43" />
+<hkern g1="r" g2="H" k="43" />
+<hkern g1="r" g2="I" k="43" />
+<hkern g1="r" g2="J" k="50" />
+<hkern g1="r" g2="K" k="43" />
+<hkern g1="r" g2="L" k="43" />
+<hkern g1="r" g2="M" k="45" />
+<hkern g1="r" g2="N" k="43" />
+<hkern g1="r" g2="P" k="43" />
+<hkern g1="r" g2="R" k="43" />
+<hkern g1="r" g2="U" k="18" />
+<hkern g1="r" g2="V" k="39" />
+<hkern g1="r" g2="W" k="49" />
+<hkern g1="r" g2="X" k="127" />
+<hkern g1="r" g2="Y" k="100" />
+<hkern g1="r" g2="Z" k="8" />
+<hkern g1="r" g2="backslash" k="39" />
+<hkern g1="r" g2="bracketright" k="94" />
+<hkern g1="r" g2="a" k="15" />
+<hkern g1="r" g2="c" k="15" />
+<hkern g1="r" g2="d" k="15" />
+<hkern g1="r" g2="e" k="15" />
+<hkern g1="r" g2="g" k="10" />
+<hkern g1="r" g2="h" k="8" />
+<hkern g1="r" g2="k" k="8" />
+<hkern g1="r" g2="l" k="8" />
+<hkern g1="r" g2="o" k="15" />
+<hkern g1="r" g2="q" k="15" />
+<hkern g1="r" g2="t" k="-15" />
+<hkern g1="r" g2="v" k="-15" />
+<hkern g1="r" g2="w" k="-15" />
+<hkern g1="r" g2="y" k="-35" />
+<hkern g1="r" g2="braceright" k="41" />
+<hkern g1="r" g2="guillemotleft" k="27" />
+<hkern g1="r" g2="uni00AD" k="16" />
+<hkern g1="r" g2="Agrave" k="60" />
+<hkern g1="r" g2="Aacute" k="60" />
+<hkern g1="r" g2="Acircumflex" k="60" />
+<hkern g1="r" g2="Atilde" k="60" />
+<hkern g1="r" g2="Adieresis" k="60" />
+<hkern g1="r" g2="Aring" k="60" />
+<hkern g1="r" g2="Egrave" k="43" />
+<hkern g1="r" g2="Eacute" k="43" />
+<hkern g1="r" g2="Ecircumflex" k="43" />
+<hkern g1="r" g2="Edieresis" k="43" />
+<hkern g1="r" g2="Igrave" k="43" />
+<hkern g1="r" g2="Iacute" k="43" />
+<hkern g1="r" g2="Icircumflex" k="43" />
+<hkern g1="r" g2="Idieresis" k="43" />
+<hkern g1="r" g2="Eth" k="43" />
+<hkern g1="r" g2="Ntilde" k="43" />
+<hkern g1="r" g2="Ugrave" k="18" />
+<hkern g1="r" g2="Uacute" k="18" />
+<hkern g1="r" g2="Ucircumflex" k="18" />
+<hkern g1="r" g2="Udieresis" k="18" />
+<hkern g1="r" g2="Yacute" k="100" />
+<hkern g1="r" g2="Thorn" k="43" />
+<hkern g1="r" g2="agrave" k="15" />
+<hkern g1="r" g2="aacute" k="15" />
+<hkern g1="r" g2="acircumflex" k="15" />
+<hkern g1="r" g2="atilde" k="15" />
+<hkern g1="r" g2="adieresis" k="15" />
+<hkern g1="r" g2="aring" k="15" />
+<hkern g1="r" g2="ae" k="15" />
+<hkern g1="r" g2="ccedilla" k="15" />
+<hkern g1="r" g2="egrave" k="15" />
+<hkern g1="r" g2="eacute" k="15" />
+<hkern g1="r" g2="ecircumflex" k="15" />
+<hkern g1="r" g2="edieresis" k="15" />
+<hkern g1="r" g2="eth" k="18" />
+<hkern g1="r" g2="ograve" k="15" />
+<hkern g1="r" g2="oacute" k="15" />
+<hkern g1="r" g2="ocircumflex" k="15" />
+<hkern g1="r" g2="otilde" k="15" />
+<hkern g1="r" g2="odieresis" k="15" />
+<hkern g1="r" g2="oslash" k="15" />
+<hkern g1="r" g2="yacute" k="-35" />
+<hkern g1="r" g2="ydieresis" k="-35" />
+<hkern g1="r" g2="oe" k="15" />
+<hkern g1="r" g2="endash" k="16" />
+<hkern g1="r" g2="emdash" k="16" />
+<hkern g1="r" g2="quoteleft" k="23" />
+<hkern g1="r" g2="quotesinglbase" k="86" />
+<hkern g1="r" g2="quotedblleft" k="23" />
+<hkern g1="r" g2="quotedblbase" k="86" />
+<hkern g1="r" g2="guilsinglleft" k="27" />
+<hkern g1="s" g2="parenright" k="53" />
+<hkern g1="s" g2="slash" k="72" />
+<hkern g1="s" g2="B" k="33" />
+<hkern g1="s" g2="C" k="10" />
+<hkern g1="s" g2="D" k="33" />
+<hkern g1="s" g2="E" k="33" />
+<hkern g1="s" g2="F" k="33" />
+<hkern g1="s" g2="G" k="8" />
+<hkern g1="s" g2="H" k="33" />
+<hkern g1="s" g2="I" k="33" />
+<hkern g1="s" g2="K" k="33" />
+<hkern g1="s" g2="L" k="33" />
+<hkern g1="s" g2="M" k="25" />
+<hkern g1="s" g2="N" k="33" />
+<hkern g1="s" g2="O" k="10" />
+<hkern g1="s" g2="P" k="33" />
+<hkern g1="s" g2="Q" k="10" />
+<hkern g1="s" g2="R" k="33" />
+<hkern g1="s" g2="T" k="23" />
+<hkern g1="s" g2="U" k="45" />
+<hkern g1="s" g2="V" k="70" />
+<hkern g1="s" g2="W" k="96" />
+<hkern g1="s" g2="X" k="14" />
+<hkern g1="s" g2="Y" k="120" />
+<hkern g1="s" g2="Z" k="8" />
+<hkern g1="s" g2="backslash" k="68" />
+<hkern g1="s" g2="bracketright" k="96" />
+<hkern g1="s" g2="braceright" k="43" />
+<hkern g1="s" g2="Ccedilla" k="10" />
+<hkern g1="s" g2="Egrave" k="33" />
+<hkern g1="s" g2="Eacute" k="33" />
+<hkern g1="s" g2="Ecircumflex" k="33" />
+<hkern g1="s" g2="Edieresis" k="33" />
+<hkern g1="s" g2="Igrave" k="33" />
+<hkern g1="s" g2="Iacute" k="33" />
+<hkern g1="s" g2="Icircumflex" k="33" />
+<hkern g1="s" g2="Idieresis" k="33" />
+<hkern g1="s" g2="Eth" k="33" />
+<hkern g1="s" g2="Ntilde" k="33" />
+<hkern g1="s" g2="Ograve" k="10" />
+<hkern g1="s" g2="Oacute" k="10" />
+<hkern g1="s" g2="Ocircumflex" k="10" />
+<hkern g1="s" g2="Otilde" k="10" />
+<hkern g1="s" g2="Odieresis" k="10" />
+<hkern g1="s" g2="Oslash" k="10" />
+<hkern g1="s" g2="Ugrave" k="45" />
+<hkern g1="s" g2="Uacute" k="45" />
+<hkern g1="s" g2="Ucircumflex" k="45" />
+<hkern g1="s" g2="Udieresis" k="45" />
+<hkern g1="s" g2="Yacute" k="120" />
+<hkern g1="s" g2="Thorn" k="33" />
+<hkern g1="s" g2="OE" k="10" />
+<hkern g1="s" g2="quoteleft" k="27" />
+<hkern g1="s" g2="quotedblleft" k="27" />
+<hkern g1="t" g2="parenright" k="33" />
+<hkern g1="t" g2="slash" k="49" />
+<hkern g1="t" g2="U" k="14" />
+<hkern g1="t" g2="V" k="41" />
+<hkern g1="t" g2="W" k="49" />
+<hkern g1="t" g2="Y" k="88" />
+<hkern g1="t" g2="backslash" k="43" />
+<hkern g1="t" g2="bracketright" k="72" />
+<hkern g1="t" g2="t" k="-20" />
+<hkern g1="t" g2="v" k="-35" />
+<hkern g1="t" g2="w" k="-35" />
+<hkern g1="t" g2="x" k="-25" />
+<hkern g1="t" g2="y" k="-5" />
+<hkern g1="t" g2="braceright" k="23" />
+<hkern g1="t" g2="Ugrave" k="14" />
+<hkern g1="t" g2="Uacute" k="14" />
+<hkern g1="t" g2="Ucircumflex" k="14" />
+<hkern g1="t" g2="Udieresis" k="14" />
+<hkern g1="t" g2="Yacute" k="88" />
+<hkern g1="t" g2="yacute" k="-5" />
+<hkern g1="t" g2="ydieresis" k="-5" />
+<hkern g1="u" g2="parenright" k="47" />
+<hkern g1="u" g2="slash" k="41" />
+<hkern g1="u" g2="question" k="20" />
+<hkern g1="u" g2="B" k="16" />
+<hkern g1="u" g2="C" k="25" />
+<hkern g1="u" g2="D" k="16" />
+<hkern g1="u" g2="E" k="16" />
+<hkern g1="u" g2="F" k="16" />
+<hkern g1="u" g2="G" k="23" />
+<hkern g1="u" g2="H" k="16" />
+<hkern g1="u" g2="I" k="16" />
+<hkern g1="u" g2="K" k="16" />
+<hkern g1="u" g2="L" k="16" />
+<hkern g1="u" g2="M" k="8" />
+<hkern g1="u" g2="N" k="16" />
+<hkern g1="u" g2="O" k="25" />
+<hkern g1="u" g2="P" k="16" />
+<hkern g1="u" g2="Q" k="25" />
+<hkern g1="u" g2="R" k="16" />
+<hkern g1="u" g2="T" k="47" />
+<hkern g1="u" g2="U" k="53" />
+<hkern g1="u" g2="V" k="80" />
+<hkern g1="u" g2="W" k="121" />
+<hkern g1="u" g2="Y" k="123" />
+<hkern g1="u" g2="backslash" k="86" />
+<hkern g1="u" g2="bracketright" k="94" />
+<hkern g1="u" g2="u" k="8" />
+<hkern g1="u" g2="v" k="10" />
+<hkern g1="u" g2="w" k="12" />
+<hkern g1="u" g2="y" k="12" />
+<hkern g1="u" g2="braceright" k="43" />
+<hkern g1="u" g2="Ccedilla" k="25" />
+<hkern g1="u" g2="Egrave" k="16" />
+<hkern g1="u" g2="Eacute" k="16" />
+<hkern g1="u" g2="Ecircumflex" k="16" />
+<hkern g1="u" g2="Edieresis" k="16" />
+<hkern g1="u" g2="Igrave" k="16" />
+<hkern g1="u" g2="Iacute" k="16" />
+<hkern g1="u" g2="Icircumflex" k="16" />
+<hkern g1="u" g2="Idieresis" k="16" />
+<hkern g1="u" g2="Eth" k="16" />
+<hkern g1="u" g2="Ntilde" k="16" />
+<hkern g1="u" g2="Ograve" k="25" />
+<hkern g1="u" g2="Oacute" k="25" />
+<hkern g1="u" g2="Ocircumflex" k="25" />
+<hkern g1="u" g2="Otilde" k="25" />
+<hkern g1="u" g2="Odieresis" k="25" />
+<hkern g1="u" g2="Oslash" k="25" />
+<hkern g1="u" g2="Ugrave" k="53" />
+<hkern g1="u" g2="Uacute" k="53" />
+<hkern g1="u" g2="Ucircumflex" k="53" />
+<hkern g1="u" g2="Udieresis" k="53" />
+<hkern g1="u" g2="Yacute" k="123" />
+<hkern g1="u" g2="Thorn" k="16" />
+<hkern g1="u" g2="eth" k="8" />
+<hkern g1="u" g2="ugrave" k="8" />
+<hkern g1="u" g2="uacute" k="8" />
+<hkern g1="u" g2="ucircumflex" k="8" />
+<hkern g1="u" g2="udieresis" k="8" />
+<hkern g1="u" g2="yacute" k="12" />
+<hkern g1="u" g2="ydieresis" k="12" />
+<hkern g1="u" g2="OE" k="25" />
+<hkern g1="u" g2="quoteleft" k="35" />
+<hkern g1="u" g2="quoteright" k="23" />
+<hkern g1="u" g2="quotedblleft" k="35" />
+<hkern g1="u" g2="quotedblright" k="23" />
+<hkern g1="v" g2="parenright" k="41" />
+<hkern g1="v" g2="asterisk" k="-55" />
+<hkern g1="v" g2="comma" k="80" />
+<hkern g1="v" g2="hyphen" k="16" />
+<hkern g1="v" g2="period" k="80" />
+<hkern g1="v" g2="slash" k="147" />
+<hkern g1="v" g2="A" k="78" />
+<hkern g1="v" g2="B" k="35" />
+<hkern g1="v" g2="D" k="35" />
+<hkern g1="v" g2="E" k="35" />
+<hkern g1="v" g2="F" k="35" />
+<hkern g1="v" g2="H" k="35" />
+<hkern g1="v" g2="I" k="35" />
+<hkern g1="v" g2="J" k="90" />
+<hkern g1="v" g2="K" k="35" />
+<hkern g1="v" g2="L" k="35" />
+<hkern g1="v" g2="M" k="39" />
+<hkern g1="v" g2="N" k="35" />
+<hkern g1="v" g2="P" k="35" />
+<hkern g1="v" g2="R" k="35" />
+<hkern g1="v" g2="U" k="16" />
+<hkern g1="v" g2="V" k="20" />
+<hkern g1="v" g2="W" k="33" />
+<hkern g1="v" g2="X" k="80" />
+<hkern g1="v" g2="Y" k="70" />
+<hkern g1="v" g2="backslash" k="23" />
+<hkern g1="v" g2="bracketright" k="88" />
+<hkern g1="v" g2="a" k="20" />
+<hkern g1="v" g2="c" k="10" />
+<hkern g1="v" g2="d" k="29" />
+<hkern g1="v" g2="e" k="10" />
+<hkern g1="v" g2="g" k="15" />
+<hkern g1="v" g2="o" k="10" />
+<hkern g1="v" g2="q" k="29" />
+<hkern g1="v" g2="t" k="-35" />
+<hkern g1="v" g2="v" k="-45" />
+<hkern g1="v" g2="w" k="-55" />
+<hkern g1="v" g2="x" k="-30" />
+<hkern g1="v" g2="braceright" k="37" />
+<hkern g1="v" g2="uni00AD" k="16" />
+<hkern g1="v" g2="Agrave" k="78" />
+<hkern g1="v" g2="Aacute" k="78" />
+<hkern g1="v" g2="Acircumflex" k="78" />
+<hkern g1="v" g2="Atilde" k="78" />
+<hkern g1="v" g2="Adieresis" k="78" />
+<hkern g1="v" g2="Aring" k="78" />
+<hkern g1="v" g2="Egrave" k="35" />
+<hkern g1="v" g2="Eacute" k="35" />
+<hkern g1="v" g2="Ecircumflex" k="35" />
+<hkern g1="v" g2="Edieresis" k="35" />
+<hkern g1="v" g2="Igrave" k="35" />
+<hkern g1="v" g2="Iacute" k="35" />
+<hkern g1="v" g2="Icircumflex" k="35" />
+<hkern g1="v" g2="Idieresis" k="35" />
+<hkern g1="v" g2="Eth" k="35" />
+<hkern g1="v" g2="Ntilde" k="35" />
+<hkern g1="v" g2="Ugrave" k="16" />
+<hkern g1="v" g2="Uacute" k="16" />
+<hkern g1="v" g2="Ucircumflex" k="16" />
+<hkern g1="v" g2="Udieresis" k="16" />
+<hkern g1="v" g2="Yacute" k="70" />
+<hkern g1="v" g2="Thorn" k="35" />
+<hkern g1="v" g2="agrave" k="20" />
+<hkern g1="v" g2="aacute" k="20" />
+<hkern g1="v" g2="acircumflex" k="20" />
+<hkern g1="v" g2="atilde" k="20" />
+<hkern g1="v" g2="adieresis" k="20" />
+<hkern g1="v" g2="aring" k="20" />
+<hkern g1="v" g2="ae" k="20" />
+<hkern g1="v" g2="ccedilla" k="10" />
+<hkern g1="v" g2="egrave" k="10" />
+<hkern g1="v" g2="eacute" k="10" />
+<hkern g1="v" g2="ecircumflex" k="10" />
+<hkern g1="v" g2="edieresis" k="10" />
+<hkern g1="v" g2="eth" k="27" />
+<hkern g1="v" g2="ograve" k="10" />
+<hkern g1="v" g2="oacute" k="10" />
+<hkern g1="v" g2="ocircumflex" k="10" />
+<hkern g1="v" g2="otilde" k="10" />
+<hkern g1="v" g2="odieresis" k="10" />
+<hkern g1="v" g2="oslash" k="10" />
+<hkern g1="v" g2="oe" k="10" />
+<hkern g1="v" g2="endash" k="16" />
+<hkern g1="v" g2="emdash" k="16" />
+<hkern g1="v" g2="quotesinglbase" k="120" />
+<hkern g1="v" g2="quotedblbase" k="80" />
+<hkern g1="w" g2="parenright" k="41" />
+<hkern g1="w" g2="asterisk" k="-45" />
+<hkern g1="w" g2="comma" k="96" />
+<hkern g1="w" g2="hyphen" k="35" />
+<hkern g1="w" g2="period" k="100" />
+<hkern g1="w" g2="slash" k="156" />
+<hkern g1="w" g2="A" k="94" />
+<hkern g1="w" g2="B" k="33" />
+<hkern g1="w" g2="D" k="33" />
+<hkern g1="w" g2="E" k="33" />
+<hkern g1="w" g2="F" k="33" />
+<hkern g1="w" g2="H" k="33" />
+<hkern g1="w" g2="I" k="33" />
+<hkern g1="w" g2="J" k="98" />
+<hkern g1="w" g2="K" k="33" />
+<hkern g1="w" g2="L" k="33" />
+<hkern g1="w" g2="M" k="37" />
+<hkern g1="w" g2="N" k="33" />
+<hkern g1="w" g2="P" k="33" />
+<hkern g1="w" g2="R" k="33" />
+<hkern g1="w" g2="U" k="14" />
+<hkern g1="w" g2="V" k="16" />
+<hkern g1="w" g2="W" k="31" />
+<hkern g1="w" g2="X" k="80" />
+<hkern g1="w" g2="Y" k="63" />
+<hkern g1="w" g2="bracketright" k="88" />
+<hkern g1="w" g2="a" k="20" />
+<hkern g1="w" g2="c" k="20" />
+<hkern g1="w" g2="d" k="35" />
+<hkern g1="w" g2="e" k="25" />
+<hkern g1="w" g2="g" k="25" />
+<hkern g1="w" g2="l" k="10" />
+<hkern g1="w" g2="o" k="25" />
+<hkern g1="w" g2="q" k="25" />
+<hkern g1="w" g2="v" k="-55" />
+<hkern g1="w" g2="w" k="-55" />
+<hkern g1="w" g2="x" k="-35" />
+<hkern g1="w" g2="z" k="25" />
+<hkern g1="w" g2="braceright" k="37" />
+<hkern g1="w" g2="guillemotleft" k="23" />
+<hkern g1="w" g2="uni00AD" k="35" />
+<hkern g1="w" g2="Agrave" k="94" />
+<hkern g1="w" g2="Aacute" k="94" />
+<hkern g1="w" g2="Acircumflex" k="94" />
+<hkern g1="w" g2="Atilde" k="94" />
+<hkern g1="w" g2="Adieresis" k="94" />
+<hkern g1="w" g2="Aring" k="94" />
+<hkern g1="w" g2="Egrave" k="33" />
+<hkern g1="w" g2="Eacute" k="33" />
+<hkern g1="w" g2="Ecircumflex" k="33" />
+<hkern g1="w" g2="Edieresis" k="33" />
+<hkern g1="w" g2="Igrave" k="33" />
+<hkern g1="w" g2="Iacute" k="33" />
+<hkern g1="w" g2="Icircumflex" k="33" />
+<hkern g1="w" g2="Idieresis" k="33" />
+<hkern g1="w" g2="Eth" k="33" />
+<hkern g1="w" g2="Ntilde" k="33" />
+<hkern g1="w" g2="Ugrave" k="14" />
+<hkern g1="w" g2="Uacute" k="14" />
+<hkern g1="w" g2="Ucircumflex" k="14" />
+<hkern g1="w" g2="Udieresis" k="14" />
+<hkern g1="w" g2="Yacute" k="63" />
+<hkern g1="w" g2="Thorn" k="33" />
+<hkern g1="w" g2="agrave" k="20" />
+<hkern g1="w" g2="aacute" k="20" />
+<hkern g1="w" g2="acircumflex" k="20" />
+<hkern g1="w" g2="atilde" k="20" />
+<hkern g1="w" g2="adieresis" k="20" />
+<hkern g1="w" g2="aring" k="20" />
+<hkern g1="w" g2="ae" k="20" />
+<hkern g1="w" g2="ccedilla" k="25" />
+<hkern g1="w" g2="egrave" k="25" />
+<hkern g1="w" g2="eacute" k="25" />
+<hkern g1="w" g2="ecircumflex" k="25" />
+<hkern g1="w" g2="edieresis" k="25" />
+<hkern g1="w" g2="eth" k="39" />
+<hkern g1="w" g2="ograve" k="25" />
+<hkern g1="w" g2="oacute" k="25" />
+<hkern g1="w" g2="ocircumflex" k="25" />
+<hkern g1="w" g2="otilde" k="25" />
+<hkern g1="w" g2="odieresis" k="25" />
+<hkern g1="w" g2="oslash" k="25" />
+<hkern g1="w" g2="oe" k="25" />
+<hkern g1="w" g2="endash" k="35" />
+<hkern g1="w" g2="emdash" k="35" />
+<hkern g1="w" g2="quotesinglbase" k="100" />
+<hkern g1="w" g2="quotedblbase" k="100" />
+<hkern g1="w" g2="guilsinglleft" k="23" />
+<hkern g1="x" g2="hyphen" k="20" />
+<hkern g1="x" g2="A" k="-65" />
+<hkern g1="x" g2="G" k="43" />
+<hkern g1="x" g2="U" k="16" />
+<hkern g1="x" g2="V" k="47" />
+<hkern g1="x" g2="W" k="59" />
+<hkern g1="x" g2="Y" k="102" />
+<hkern g1="x" g2="backslash" k="29" />
+<hkern g1="x" g2="bracketright" k="59" />
+<hkern g1="x" g2="c" k="10" />
+<hkern g1="x" g2="d" k="10" />
+<hkern g1="x" g2="e" k="10" />
+<hkern g1="x" g2="o" k="10" />
+<hkern g1="x" g2="q" k="10" />
+<hkern g1="x" g2="uni00AD" k="20" />
+<hkern g1="x" g2="Agrave" k="-65" />
+<hkern g1="x" g2="Aacute" k="-65" />
+<hkern g1="x" g2="Acircumflex" k="-65" />
+<hkern g1="x" g2="Atilde" k="-65" />
+<hkern g1="x" g2="Adieresis" k="-65" />
+<hkern g1="x" g2="Aring" k="-65" />
+<hkern g1="x" g2="Ugrave" k="16" />
+<hkern g1="x" g2="Uacute" k="16" />
+<hkern g1="x" g2="Ucircumflex" k="16" />
+<hkern g1="x" g2="Udieresis" k="16" />
+<hkern g1="x" g2="Yacute" k="102" />
+<hkern g1="x" g2="ccedilla" k="10" />
+<hkern g1="x" g2="egrave" k="10" />
+<hkern g1="x" g2="eacute" k="10" />
+<hkern g1="x" g2="ecircumflex" k="10" />
+<hkern g1="x" g2="edieresis" k="10" />
+<hkern g1="x" g2="eth" k="43" />
+<hkern g1="x" g2="ograve" k="10" />
+<hkern g1="x" g2="oacute" k="10" />
+<hkern g1="x" g2="ocircumflex" k="10" />
+<hkern g1="x" g2="otilde" k="10" />
+<hkern g1="x" g2="odieresis" k="10" />
+<hkern g1="x" g2="oslash" k="10" />
+<hkern g1="x" g2="oe" k="10" />
+<hkern g1="x" g2="endash" k="20" />
+<hkern g1="x" g2="emdash" k="20" />
+<hkern g1="y" g2="parenright" k="39" />
+<hkern g1="y" g2="asterisk" k="-35" />
+<hkern g1="y" g2="comma" k="112" />
+<hkern g1="y" g2="period" k="76" />
+<hkern g1="y" g2="slash" k="119" />
+<hkern g1="y" g2="A" k="80" />
+<hkern g1="y" g2="B" k="37" />
+<hkern g1="y" g2="D" k="37" />
+<hkern g1="y" g2="E" k="37" />
+<hkern g1="y" g2="F" k="37" />
+<hkern g1="y" g2="H" k="37" />
+<hkern g1="y" g2="I" k="37" />
+<hkern g1="y" g2="J" k="86" />
+<hkern g1="y" g2="K" k="37" />
+<hkern g1="y" g2="L" k="37" />
+<hkern g1="y" g2="M" k="39" />
+<hkern g1="y" g2="N" k="37" />
+<hkern g1="y" g2="P" k="37" />
+<hkern g1="y" g2="R" k="37" />
+<hkern g1="y" g2="U" k="16" />
+<hkern g1="y" g2="V" k="20" />
+<hkern g1="y" g2="W" k="35" />
+<hkern g1="y" g2="X" k="40" />
+<hkern g1="y" g2="Y" k="72" />
+<hkern g1="y" g2="backslash" k="23" />
+<hkern g1="y" g2="bracketright" k="82" />
+<hkern g1="y" g2="c" k="20" />
+<hkern g1="y" g2="d" k="20" />
+<hkern g1="y" g2="e" k="20" />
+<hkern g1="y" g2="g" k="25" />
+<hkern g1="y" g2="h" k="10" />
+<hkern g1="y" g2="k" k="10" />
+<hkern g1="y" g2="l" k="10" />
+<hkern g1="y" g2="o" k="20" />
+<hkern g1="y" g2="q" k="20" />
+<hkern g1="y" g2="t" k="-10" />
+<hkern g1="y" g2="y" k="-35" />
+<hkern g1="y" g2="braceright" k="37" />
+<hkern g1="y" g2="Agrave" k="80" />
+<hkern g1="y" g2="Aacute" k="80" />
+<hkern g1="y" g2="Acircumflex" k="80" />
+<hkern g1="y" g2="Atilde" k="80" />
+<hkern g1="y" g2="Adieresis" k="80" />
+<hkern g1="y" g2="Aring" k="80" />
+<hkern g1="y" g2="Egrave" k="37" />
+<hkern g1="y" g2="Eacute" k="37" />
+<hkern g1="y" g2="Ecircumflex" k="37" />
+<hkern g1="y" g2="Edieresis" k="37" />
+<hkern g1="y" g2="Igrave" k="37" />
+<hkern g1="y" g2="Iacute" k="37" />
+<hkern g1="y" g2="Icircumflex" k="37" />
+<hkern g1="y" g2="Idieresis" k="37" />
+<hkern g1="y" g2="Eth" k="37" />
+<hkern g1="y" g2="Ntilde" k="37" />
+<hkern g1="y" g2="Ugrave" k="16" />
+<hkern g1="y" g2="Uacute" k="16" />
+<hkern g1="y" g2="Ucircumflex" k="16" />
+<hkern g1="y" g2="Udieresis" k="16" />
+<hkern g1="y" g2="Yacute" k="72" />
+<hkern g1="y" g2="Thorn" k="37" />
+<hkern g1="y" g2="ccedilla" k="20" />
+<hkern g1="y" g2="egrave" k="20" />
+<hkern g1="y" g2="eacute" k="20" />
+<hkern g1="y" g2="ecircumflex" k="20" />
+<hkern g1="y" g2="edieresis" k="20" />
+<hkern g1="y" g2="eth" k="25" />
+<hkern g1="y" g2="ograve" k="20" />
+<hkern g1="y" g2="oacute" k="20" />
+<hkern g1="y" g2="ocircumflex" k="20" />
+<hkern g1="y" g2="otilde" k="20" />
+<hkern g1="y" g2="odieresis" k="20" />
+<hkern g1="y" g2="oslash" k="20" />
+<hkern g1="y" g2="yacute" k="-35" />
+<hkern g1="y" g2="ydieresis" k="-35" />
+<hkern g1="y" g2="oe" k="20" />
+<hkern g1="y" g2="quotesinglbase" k="76" />
+<hkern g1="y" g2="quotedblbase" k="76" />
+<hkern g1="z" g2="parenright" k="45" />
+<hkern g1="z" g2="hyphen" k="27" />
+<hkern g1="z" g2="slash" k="53" />
+<hkern g1="z" g2="B" k="20" />
+<hkern g1="z" g2="C" k="8" />
+<hkern g1="z" g2="D" k="20" />
+<hkern g1="z" g2="E" k="20" />
+<hkern g1="z" g2="F" k="20" />
+<hkern g1="z" g2="G" k="8" />
+<hkern g1="z" g2="H" k="20" />
+<hkern g1="z" g2="I" k="20" />
+<hkern g1="z" g2="K" k="20" />
+<hkern g1="z" g2="L" k="20" />
+<hkern g1="z" g2="M" k="14" />
+<hkern g1="z" g2="N" k="20" />
+<hkern g1="z" g2="O" k="8" />
+<hkern g1="z" g2="P" k="20" />
+<hkern g1="z" g2="Q" k="8" />
+<hkern g1="z" g2="R" k="20" />
+<hkern g1="z" g2="T" k="50" />
+<hkern g1="z" g2="U" k="37" />
+<hkern g1="z" g2="V" k="80" />
+<hkern g1="z" g2="W" k="90" />
+<hkern g1="z" g2="Y" k="117" />
+<hkern g1="z" g2="backslash" k="59" />
+<hkern g1="z" g2="bracketright" k="90" />
+<hkern g1="z" g2="c" k="15" />
+<hkern g1="z" g2="d" k="15" />
+<hkern g1="z" g2="e" k="10" />
+<hkern g1="z" g2="m" k="10" />
+<hkern g1="z" g2="n" k="10" />
+<hkern g1="z" g2="o" k="15" />
+<hkern g1="z" g2="q" k="15" />
+<hkern g1="z" g2="r" k="10" />
+<hkern g1="z" g2="z" k="10" />
+<hkern g1="z" g2="braceright" k="39" />
+<hkern g1="z" g2="uni00AD" k="27" />
+<hkern g1="z" g2="Ccedilla" k="8" />
+<hkern g1="z" g2="Egrave" k="20" />
+<hkern g1="z" g2="Eacute" k="20" />
+<hkern g1="z" g2="Ecircumflex" k="20" />
+<hkern g1="z" g2="Edieresis" k="20" />
+<hkern g1="z" g2="Igrave" k="20" />
+<hkern g1="z" g2="Iacute" k="20" />
+<hkern g1="z" g2="Icircumflex" k="20" />
+<hkern g1="z" g2="Idieresis" k="20" />
+<hkern g1="z" g2="Eth" k="20" />
+<hkern g1="z" g2="Ntilde" k="20" />
+<hkern g1="z" g2="Ograve" k="8" />
+<hkern g1="z" g2="Oacute" k="8" />
+<hkern g1="z" g2="Ocircumflex" k="8" />
+<hkern g1="z" g2="Otilde" k="8" />
+<hkern g1="z" g2="Odieresis" k="8" />
+<hkern g1="z" g2="Oslash" k="8" />
+<hkern g1="z" g2="Ugrave" k="37" />
+<hkern g1="z" g2="Uacute" k="37" />
+<hkern g1="z" g2="Ucircumflex" k="37" />
+<hkern g1="z" g2="Udieresis" k="37" />
+<hkern g1="z" g2="Yacute" k="117" />
+<hkern g1="z" g2="Thorn" k="20" />
+<hkern g1="z" g2="ccedilla" k="15" />
+<hkern g1="z" g2="egrave" k="15" />
+<hkern g1="z" g2="eacute" k="15" />
+<hkern g1="z" g2="ecircumflex" k="15" />
+<hkern g1="z" g2="edieresis" k="15" />
+<hkern g1="z" g2="ntilde" k="10" />
+<hkern g1="z" g2="ograve" k="15" />
+<hkern g1="z" g2="oacute" k="15" />
+<hkern g1="z" g2="ocircumflex" k="15" />
+<hkern g1="z" g2="otilde" k="15" />
+<hkern g1="z" g2="odieresis" k="15" />
+<hkern g1="z" g2="oslash" k="15" />
+<hkern g1="z" g2="OE" k="8" />
+<hkern g1="z" g2="oe" k="15" />
+<hkern g1="z" g2="endash" k="27" />
+<hkern g1="z" g2="emdash" k="27" />
+<hkern g1="z" g2="quoteleft" k="27" />
+<hkern g1="z" g2="quotedblleft" k="27" />
+<hkern g1="braceleft" g2="parenleft" k="27" />
+<hkern g1="braceleft" g2="zero" k="35" />
+<hkern g1="braceleft" g2="one" k="20" />
+<hkern g1="braceleft" g2="three" k="20" />
+<hkern g1="braceleft" g2="four" k="39" />
+<hkern g1="braceleft" g2="six" k="35" />
+<hkern g1="braceleft" g2="eight" k="25" />
+<hkern g1="braceleft" g2="nine" k="23" />
+<hkern g1="braceleft" g2="C" k="41" />
+<hkern g1="braceleft" g2="G" k="41" />
+<hkern g1="braceleft" g2="O" k="41" />
+<hkern g1="braceleft" g2="Q" k="41" />
+<hkern g1="braceleft" g2="S" k="20" />
+<hkern g1="braceleft" g2="V" k="-23" />
+<hkern g1="braceleft" g2="Y" k="-23" />
+<hkern g1="braceleft" g2="a" k="43" />
+<hkern g1="braceleft" g2="b" k="-27" />
+<hkern g1="braceleft" g2="c" k="53" />
+<hkern g1="braceleft" g2="d" k="51" />
+<hkern g1="braceleft" g2="e" k="53" />
+<hkern g1="braceleft" g2="j" k="-211" />
+<hkern g1="braceleft" g2="m" k="39" />
+<hkern g1="braceleft" g2="n" k="39" />
+<hkern g1="braceleft" g2="o" k="53" />
+<hkern g1="braceleft" g2="q" k="51" />
+<hkern g1="braceleft" g2="r" k="39" />
+<hkern g1="braceleft" g2="s" k="41" />
+<hkern g1="braceleft" g2="t" k="39" />
+<hkern g1="braceleft" g2="u" k="43" />
+<hkern g1="braceleft" g2="v" k="37" />
+<hkern g1="braceleft" g2="w" k="37" />
+<hkern g1="braceleft" g2="z" k="39" />
+<hkern g1="braceleft" g2="braceleft" k="25" />
+<hkern g1="braceleft" g2="Ccedilla" k="41" />
+<hkern g1="braceleft" g2="Ograve" k="41" />
+<hkern g1="braceleft" g2="Oacute" k="41" />
+<hkern g1="braceleft" g2="Ocircumflex" k="41" />
+<hkern g1="braceleft" g2="Otilde" k="41" />
+<hkern g1="braceleft" g2="Odieresis" k="41" />
+<hkern g1="braceleft" g2="Oslash" k="41" />
+<hkern g1="braceleft" g2="Yacute" k="-23" />
+<hkern g1="braceleft" g2="agrave" k="43" />
+<hkern g1="braceleft" g2="aacute" k="43" />
+<hkern g1="braceleft" g2="acircumflex" k="43" />
+<hkern g1="braceleft" g2="atilde" k="43" />
+<hkern g1="braceleft" g2="adieresis" k="43" />
+<hkern g1="braceleft" g2="aring" k="43" />
+<hkern g1="braceleft" g2="ae" k="43" />
+<hkern g1="braceleft" g2="ccedilla" k="53" />
+<hkern g1="braceleft" g2="egrave" k="53" />
+<hkern g1="braceleft" g2="eacute" k="53" />
+<hkern g1="braceleft" g2="ecircumflex" k="53" />
+<hkern g1="braceleft" g2="edieresis" k="53" />
+<hkern g1="braceleft" g2="igrave" k="-39" />
+<hkern g1="braceleft" g2="eth" k="23" />
+<hkern g1="braceleft" g2="ntilde" k="39" />
+<hkern g1="braceleft" g2="ograve" k="53" />
+<hkern g1="braceleft" g2="oacute" k="53" />
+<hkern g1="braceleft" g2="ocircumflex" k="53" />
+<hkern g1="braceleft" g2="otilde" k="53" />
+<hkern g1="braceleft" g2="odieresis" k="53" />
+<hkern g1="braceleft" g2="oslash" k="53" />
+<hkern g1="braceleft" g2="ugrave" k="43" />
+<hkern g1="braceleft" g2="uacute" k="43" />
+<hkern g1="braceleft" g2="ucircumflex" k="43" />
+<hkern g1="braceleft" g2="udieresis" k="43" />
+<hkern g1="braceleft" g2="thorn" k="-27" />
+<hkern g1="braceleft" g2="OE" k="41" />
+<hkern g1="braceleft" g2="oe" k="53" />
+<hkern g1="bar" g2="j" k="-76" />
+<hkern g1="braceright" g2="parenright" k="31" />
+<hkern g1="braceright" g2="bracketright" k="33" />
+<hkern g1="braceright" g2="braceright" k="23" />
+<hkern g1="exclamdown" g2="U" k="25" />
+<hkern g1="exclamdown" g2="V" k="41" />
+<hkern g1="exclamdown" g2="W" k="49" />
+<hkern g1="exclamdown" g2="Y" k="61" />
+<hkern g1="exclamdown" g2="j" k="-86" />
+<hkern g1="exclamdown" g2="Ugrave" k="25" />
+<hkern g1="exclamdown" g2="Uacute" k="25" />
+<hkern g1="exclamdown" g2="Ucircumflex" k="25" />
+<hkern g1="exclamdown" g2="Udieresis" k="25" />
+<hkern g1="exclamdown" g2="Yacute" k="61" />
+<hkern g1="ordfeminine" g2="A" k="30" />
+<hkern g1="ordfeminine" g2="Agrave" k="30" />
+<hkern g1="ordfeminine" g2="Aacute" k="30" />
+<hkern g1="ordfeminine" g2="Acircumflex" k="30" />
+<hkern g1="ordfeminine" g2="Atilde" k="30" />
+<hkern g1="ordfeminine" g2="Adieresis" k="30" />
+<hkern g1="ordfeminine" g2="Aring" k="30" />
+<hkern g1="guillemotleft" g2="W" k="23" />
+<hkern g1="guillemotleft" g2="Y" k="35" />
+<hkern g1="guillemotleft" g2="AE" k="-16" />
+<hkern g1="guillemotleft" g2="Yacute" k="35" />
+<hkern g1="registered" g2="W" k="20" />
+<hkern g1="registered" g2="Y" k="27" />
+<hkern g1="registered" g2="Yacute" k="27" />
+<hkern g1="degree" g2="four" k="66" />
+<hkern g1="middot" g2="one" k="61" />
+<hkern g1="middot" g2="two" k="68" />
+<hkern g1="middot" g2="three" k="55" />
+<hkern g1="middot" g2="seven" k="135" />
+<hkern g1="middot" g2="eight" k="29" />
+<hkern g1="middot" g2="L" k="41" />
+<hkern g1="middot" g2="l" k="135" />
+<hkern g1="guillemotright" g2="quotedbl" k="96" />
+<hkern g1="guillemotright" g2="quotesingle" k="96" />
+<hkern g1="guillemotright" g2="B" k="20" />
+<hkern g1="guillemotright" g2="D" k="20" />
+<hkern g1="guillemotright" g2="E" k="20" />
+<hkern g1="guillemotright" g2="F" k="20" />
+<hkern g1="guillemotright" g2="H" k="20" />
+<hkern g1="guillemotright" g2="I" k="20" />
+<hkern g1="guillemotright" g2="J" k="20" />
+<hkern g1="guillemotright" g2="K" k="20" />
+<hkern g1="guillemotright" g2="L" k="20" />
+<hkern g1="guillemotright" g2="N" k="20" />
+<hkern g1="guillemotright" g2="P" k="20" />
+<hkern g1="guillemotright" g2="R" k="20" />
+<hkern g1="guillemotright" g2="T" k="80" />
+<hkern g1="guillemotright" g2="V" k="59" />
+<hkern g1="guillemotright" g2="W" k="61" />
+<hkern g1="guillemotright" g2="X" k="37" />
+<hkern g1="guillemotright" g2="Y" k="106" />
+<hkern g1="guillemotright" g2="Z" k="41" />
+<hkern g1="guillemotright" g2="AE" k="29" />
+<hkern g1="guillemotright" g2="Egrave" k="20" />
+<hkern g1="guillemotright" g2="Eacute" k="20" />
+<hkern g1="guillemotright" g2="Ecircumflex" k="20" />
+<hkern g1="guillemotright" g2="Edieresis" k="20" />
+<hkern g1="guillemotright" g2="Igrave" k="20" />
+<hkern g1="guillemotright" g2="Iacute" k="20" />
+<hkern g1="guillemotright" g2="Icircumflex" k="20" />
+<hkern g1="guillemotright" g2="Idieresis" k="20" />
+<hkern g1="guillemotright" g2="Eth" k="20" />
+<hkern g1="guillemotright" g2="Ntilde" k="20" />
+<hkern g1="guillemotright" g2="Yacute" k="106" />
+<hkern g1="guillemotright" g2="Thorn" k="20" />
+<hkern g1="guillemotright" g2="quoteright" k="131" />
+<hkern g1="guillemotright" g2="quotedblright" k="131" />
+<hkern g1="questiondown" g2="C" k="45" />
+<hkern g1="questiondown" g2="G" k="43" />
+<hkern g1="questiondown" g2="O" k="45" />
+<hkern g1="questiondown" g2="Q" k="45" />
+<hkern g1="questiondown" g2="T" k="66" />
+<hkern g1="questiondown" g2="U" k="63" />
+<hkern g1="questiondown" g2="V" k="100" />
+<hkern g1="questiondown" g2="W" k="102" />
+<hkern g1="questiondown" g2="Y" k="104" />
+<hkern g1="questiondown" g2="a" k="25" />
+<hkern g1="questiondown" g2="c" k="39" />
+<hkern g1="questiondown" g2="d" k="37" />
+<hkern g1="questiondown" g2="e" k="39" />
+<hkern g1="questiondown" g2="j" k="-63" />
+<hkern g1="questiondown" g2="o" k="39" />
+<hkern g1="questiondown" g2="q" k="37" />
+<hkern g1="questiondown" g2="t" k="43" />
+<hkern g1="questiondown" g2="u" k="43" />
+<hkern g1="questiondown" g2="v" k="49" />
+<hkern g1="questiondown" g2="w" k="49" />
+<hkern g1="questiondown" g2="Ccedilla" k="45" />
+<hkern g1="questiondown" g2="Ograve" k="45" />
+<hkern g1="questiondown" g2="Oacute" k="45" />
+<hkern g1="questiondown" g2="Ocircumflex" k="45" />
+<hkern g1="questiondown" g2="Otilde" k="45" />
+<hkern g1="questiondown" g2="Odieresis" k="45" />
+<hkern g1="questiondown" g2="Oslash" k="45" />
+<hkern g1="questiondown" g2="Ugrave" k="63" />
+<hkern g1="questiondown" g2="Uacute" k="63" />
+<hkern g1="questiondown" g2="Ucircumflex" k="63" />
+<hkern g1="questiondown" g2="Udieresis" k="63" />
+<hkern g1="questiondown" g2="Yacute" k="104" />
+<hkern g1="questiondown" g2="agrave" k="25" />
+<hkern g1="questiondown" g2="aacute" k="25" />
+<hkern g1="questiondown" g2="acircumflex" k="25" />
+<hkern g1="questiondown" g2="atilde" k="25" />
+<hkern g1="questiondown" g2="adieresis" k="25" />
+<hkern g1="questiondown" g2="aring" k="25" />
+<hkern g1="questiondown" g2="ae" k="25" />
+<hkern g1="questiondown" g2="ccedilla" k="39" />
+<hkern g1="questiondown" g2="egrave" k="39" />
+<hkern g1="questiondown" g2="eacute" k="39" />
+<hkern g1="questiondown" g2="ecircumflex" k="39" />
+<hkern g1="questiondown" g2="edieresis" k="39" />
+<hkern g1="questiondown" g2="eth" k="37" />
+<hkern g1="questiondown" g2="ograve" k="39" />
+<hkern g1="questiondown" g2="oacute" k="39" />
+<hkern g1="questiondown" g2="ocircumflex" k="39" />
+<hkern g1="questiondown" g2="otilde" k="39" />
+<hkern g1="questiondown" g2="odieresis" k="39" />
+<hkern g1="questiondown" g2="oslash" k="39" />
+<hkern g1="questiondown" g2="ugrave" k="43" />
+<hkern g1="questiondown" g2="uacute" k="43" />
+<hkern g1="questiondown" g2="ucircumflex" k="43" />
+<hkern g1="questiondown" g2="udieresis" k="43" />
+<hkern g1="questiondown" g2="OE" k="45" />
+<hkern g1="questiondown" g2="oe" k="39" />
+<hkern g1="Agrave" g2="quotedbl" k="100" />
+<hkern g1="Agrave" g2="quotesingle" k="100" />
+<hkern g1="Agrave" g2="asterisk" k="57" />
+<hkern g1="Agrave" g2="hyphen" k="40" />
+<hkern g1="Agrave" g2="two" k="-10" />
+<hkern g1="Agrave" g2="seven" k="20" />
+<hkern g1="Agrave" g2="question" k="25" />
+<hkern g1="Agrave" g2="A" k="-95" />
+<hkern g1="Agrave" g2="C" k="10" />
+<hkern g1="Agrave" g2="G" k="12" />
+<hkern g1="Agrave" g2="J" k="-100" />
+<hkern g1="Agrave" g2="O" k="10" />
+<hkern g1="Agrave" g2="Q" k="10" />
+<hkern g1="Agrave" g2="T" k="50" />
+<hkern g1="Agrave" g2="U" k="39" />
+<hkern g1="Agrave" g2="V" k="80" />
+<hkern g1="Agrave" g2="W" k="94" />
+<hkern g1="Agrave" g2="X" k="-85" />
+<hkern g1="Agrave" g2="Y" k="70" />
+<hkern g1="Agrave" g2="Z" k="-20" />
+<hkern g1="Agrave" g2="backslash" k="100" />
+<hkern g1="Agrave" g2="bracketright" k="51" />
+<hkern g1="Agrave" g2="a" k="-55" />
+<hkern g1="Agrave" g2="t" k="14" />
+<hkern g1="Agrave" g2="v" k="40" />
+<hkern g1="Agrave" g2="w" k="40" />
+<hkern g1="Agrave" g2="x" k="-55" />
+<hkern g1="Agrave" g2="y" k="30" />
+<hkern g1="Agrave" g2="z" k="-60" />
+<hkern g1="Agrave" g2="uni00AD" k="40" />
+<hkern g1="Agrave" g2="acute" k="100" />
+<hkern g1="Agrave" g2="Agrave" k="-95" />
+<hkern g1="Agrave" g2="Aacute" k="-95" />
+<hkern g1="Agrave" g2="Acircumflex" k="-95" />
+<hkern g1="Agrave" g2="Atilde" k="-95" />
+<hkern g1="Agrave" g2="Adieresis" k="-95" />
+<hkern g1="Agrave" g2="Aring" k="-95" />
+<hkern g1="Agrave" g2="AE" k="-120" />
+<hkern g1="Agrave" g2="Ccedilla" k="10" />
+<hkern g1="Agrave" g2="Ograve" k="10" />
+<hkern g1="Agrave" g2="Oacute" k="10" />
+<hkern g1="Agrave" g2="Ocircumflex" k="10" />
+<hkern g1="Agrave" g2="Otilde" k="10" />
+<hkern g1="Agrave" g2="Odieresis" k="10" />
+<hkern g1="Agrave" g2="Oslash" k="10" />
+<hkern g1="Agrave" g2="Ugrave" k="39" />
+<hkern g1="Agrave" g2="Uacute" k="39" />
+<hkern g1="Agrave" g2="Ucircumflex" k="39" />
+<hkern g1="Agrave" g2="Udieresis" k="39" />
+<hkern g1="Agrave" g2="Yacute" k="70" />
+<hkern g1="Agrave" g2="agrave" k="-55" />
+<hkern g1="Agrave" g2="aacute" k="-55" />
+<hkern g1="Agrave" g2="acircumflex" k="-55" />
+<hkern g1="Agrave" g2="atilde" k="-55" />
+<hkern g1="Agrave" g2="adieresis" k="-55" />
+<hkern g1="Agrave" g2="aring" k="-55" />
+<hkern g1="Agrave" g2="ae" k="-55" />
+<hkern g1="Agrave" g2="yacute" k="30" />
+<hkern g1="Agrave" g2="ydieresis" k="30" />
+<hkern g1="Agrave" g2="OE" k="10" />
+<hkern g1="Agrave" g2="endash" k="40" />
+<hkern g1="Agrave" g2="emdash" k="40" />
+<hkern g1="Agrave" g2="quoteleft" k="120" />
+<hkern g1="Agrave" g2="quoteright" k="109" />
+<hkern g1="Agrave" g2="quotedblleft" k="120" />
+<hkern g1="Agrave" g2="quotedblright" k="109" />
+<hkern g1="Aacute" g2="quotedbl" k="100" />
+<hkern g1="Aacute" g2="quotesingle" k="100" />
+<hkern g1="Aacute" g2="asterisk" k="57" />
+<hkern g1="Aacute" g2="hyphen" k="40" />
+<hkern g1="Aacute" g2="two" k="-10" />
+<hkern g1="Aacute" g2="seven" k="20" />
+<hkern g1="Aacute" g2="question" k="25" />
+<hkern g1="Aacute" g2="A" k="-95" />
+<hkern g1="Aacute" g2="C" k="10" />
+<hkern g1="Aacute" g2="G" k="12" />
+<hkern g1="Aacute" g2="J" k="-100" />
+<hkern g1="Aacute" g2="O" k="10" />
+<hkern g1="Aacute" g2="Q" k="10" />
+<hkern g1="Aacute" g2="T" k="50" />
+<hkern g1="Aacute" g2="U" k="39" />
+<hkern g1="Aacute" g2="V" k="80" />
+<hkern g1="Aacute" g2="W" k="94" />
+<hkern g1="Aacute" g2="X" k="-85" />
+<hkern g1="Aacute" g2="Y" k="70" />
+<hkern g1="Aacute" g2="Z" k="-20" />
+<hkern g1="Aacute" g2="backslash" k="100" />
+<hkern g1="Aacute" g2="bracketright" k="51" />
+<hkern g1="Aacute" g2="a" k="-55" />
+<hkern g1="Aacute" g2="t" k="14" />
+<hkern g1="Aacute" g2="v" k="40" />
+<hkern g1="Aacute" g2="w" k="40" />
+<hkern g1="Aacute" g2="x" k="-55" />
+<hkern g1="Aacute" g2="y" k="30" />
+<hkern g1="Aacute" g2="z" k="-60" />
+<hkern g1="Aacute" g2="uni00AD" k="40" />
+<hkern g1="Aacute" g2="acute" k="100" />
+<hkern g1="Aacute" g2="Agrave" k="-95" />
+<hkern g1="Aacute" g2="Aacute" k="-95" />
+<hkern g1="Aacute" g2="Acircumflex" k="-95" />
+<hkern g1="Aacute" g2="Atilde" k="-95" />
+<hkern g1="Aacute" g2="Adieresis" k="-95" />
+<hkern g1="Aacute" g2="Aring" k="-95" />
+<hkern g1="Aacute" g2="AE" k="-120" />
+<hkern g1="Aacute" g2="Ccedilla" k="10" />
+<hkern g1="Aacute" g2="Ograve" k="10" />
+<hkern g1="Aacute" g2="Oacute" k="10" />
+<hkern g1="Aacute" g2="Ocircumflex" k="10" />
+<hkern g1="Aacute" g2="Otilde" k="10" />
+<hkern g1="Aacute" g2="Odieresis" k="10" />
+<hkern g1="Aacute" g2="Oslash" k="10" />
+<hkern g1="Aacute" g2="Ugrave" k="39" />
+<hkern g1="Aacute" g2="Uacute" k="39" />
+<hkern g1="Aacute" g2="Ucircumflex" k="39" />
+<hkern g1="Aacute" g2="Udieresis" k="39" />
+<hkern g1="Aacute" g2="Yacute" k="70" />
+<hkern g1="Aacute" g2="agrave" k="-55" />
+<hkern g1="Aacute" g2="aacute" k="-55" />
+<hkern g1="Aacute" g2="acircumflex" k="-55" />
+<hkern g1="Aacute" g2="atilde" k="-55" />
+<hkern g1="Aacute" g2="adieresis" k="-55" />
+<hkern g1="Aacute" g2="aring" k="-55" />
+<hkern g1="Aacute" g2="ae" k="-55" />
+<hkern g1="Aacute" g2="yacute" k="30" />
+<hkern g1="Aacute" g2="ydieresis" k="30" />
+<hkern g1="Aacute" g2="OE" k="10" />
+<hkern g1="Aacute" g2="endash" k="40" />
+<hkern g1="Aacute" g2="emdash" k="40" />
+<hkern g1="Aacute" g2="quoteleft" k="120" />
+<hkern g1="Aacute" g2="quoteright" k="109" />
+<hkern g1="Aacute" g2="quotedblleft" k="120" />
+<hkern g1="Aacute" g2="quotedblright" k="109" />
+<hkern g1="Acircumflex" g2="quotedbl" k="100" />
+<hkern g1="Acircumflex" g2="quotesingle" k="100" />
+<hkern g1="Acircumflex" g2="asterisk" k="57" />
+<hkern g1="Acircumflex" g2="hyphen" k="40" />
+<hkern g1="Acircumflex" g2="two" k="-10" />
+<hkern g1="Acircumflex" g2="seven" k="20" />
+<hkern g1="Acircumflex" g2="question" k="25" />
+<hkern g1="Acircumflex" g2="A" k="-95" />
+<hkern g1="Acircumflex" g2="C" k="10" />
+<hkern g1="Acircumflex" g2="G" k="12" />
+<hkern g1="Acircumflex" g2="J" k="-100" />
+<hkern g1="Acircumflex" g2="O" k="10" />
+<hkern g1="Acircumflex" g2="Q" k="10" />
+<hkern g1="Acircumflex" g2="T" k="50" />
+<hkern g1="Acircumflex" g2="U" k="39" />
+<hkern g1="Acircumflex" g2="V" k="80" />
+<hkern g1="Acircumflex" g2="W" k="94" />
+<hkern g1="Acircumflex" g2="X" k="-85" />
+<hkern g1="Acircumflex" g2="Y" k="70" />
+<hkern g1="Acircumflex" g2="Z" k="-20" />
+<hkern g1="Acircumflex" g2="backslash" k="100" />
+<hkern g1="Acircumflex" g2="bracketright" k="51" />
+<hkern g1="Acircumflex" g2="a" k="-55" />
+<hkern g1="Acircumflex" g2="t" k="14" />
+<hkern g1="Acircumflex" g2="v" k="40" />
+<hkern g1="Acircumflex" g2="w" k="40" />
+<hkern g1="Acircumflex" g2="x" k="-55" />
+<hkern g1="Acircumflex" g2="y" k="30" />
+<hkern g1="Acircumflex" g2="z" k="-60" />
+<hkern g1="Acircumflex" g2="uni00AD" k="40" />
+<hkern g1="Acircumflex" g2="acute" k="100" />
+<hkern g1="Acircumflex" g2="Agrave" k="-95" />
+<hkern g1="Acircumflex" g2="Aacute" k="-95" />
+<hkern g1="Acircumflex" g2="Acircumflex" k="-95" />
+<hkern g1="Acircumflex" g2="Atilde" k="-95" />
+<hkern g1="Acircumflex" g2="Adieresis" k="-95" />
+<hkern g1="Acircumflex" g2="Aring" k="-95" />
+<hkern g1="Acircumflex" g2="AE" k="-120" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="10" />
+<hkern g1="Acircumflex" g2="Ograve" k="10" />
+<hkern g1="Acircumflex" g2="Oacute" k="10" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="10" />
+<hkern g1="Acircumflex" g2="Otilde" k="10" />
+<hkern g1="Acircumflex" g2="Odieresis" k="10" />
+<hkern g1="Acircumflex" g2="Oslash" k="10" />
+<hkern g1="Acircumflex" g2="Ugrave" k="39" />
+<hkern g1="Acircumflex" g2="Uacute" k="39" />
+<hkern g1="Acircumflex" g2="Ucircumflex" k="39" />
+<hkern g1="Acircumflex" g2="Udieresis" k="39" />
+<hkern g1="Acircumflex" g2="Yacute" k="70" />
+<hkern g1="Acircumflex" g2="agrave" k="-55" />
+<hkern g1="Acircumflex" g2="aacute" k="-55" />
+<hkern g1="Acircumflex" g2="acircumflex" k="-55" />
+<hkern g1="Acircumflex" g2="atilde" k="-55" />
+<hkern g1="Acircumflex" g2="adieresis" k="-55" />
+<hkern g1="Acircumflex" g2="aring" k="-55" />
+<hkern g1="Acircumflex" g2="ae" k="-55" />
+<hkern g1="Acircumflex" g2="yacute" k="30" />
+<hkern g1="Acircumflex" g2="ydieresis" k="30" />
+<hkern g1="Acircumflex" g2="OE" k="10" />
+<hkern g1="Acircumflex" g2="endash" k="40" />
+<hkern g1="Acircumflex" g2="emdash" k="40" />
+<hkern g1="Acircumflex" g2="quoteleft" k="120" />
+<hkern g1="Acircumflex" g2="quoteright" k="109" />
+<hkern g1="Acircumflex" g2="quotedblleft" k="120" />
+<hkern g1="Acircumflex" g2="quotedblright" k="109" />
+<hkern g1="Atilde" g2="quotedbl" k="100" />
+<hkern g1="Atilde" g2="quotesingle" k="100" />
+<hkern g1="Atilde" g2="asterisk" k="57" />
+<hkern g1="Atilde" g2="hyphen" k="40" />
+<hkern g1="Atilde" g2="two" k="-10" />
+<hkern g1="Atilde" g2="seven" k="20" />
+<hkern g1="Atilde" g2="question" k="25" />
+<hkern g1="Atilde" g2="A" k="-95" />
+<hkern g1="Atilde" g2="C" k="10" />
+<hkern g1="Atilde" g2="G" k="12" />
+<hkern g1="Atilde" g2="J" k="-100" />
+<hkern g1="Atilde" g2="O" k="10" />
+<hkern g1="Atilde" g2="Q" k="10" />
+<hkern g1="Atilde" g2="T" k="50" />
+<hkern g1="Atilde" g2="U" k="39" />
+<hkern g1="Atilde" g2="V" k="80" />
+<hkern g1="Atilde" g2="W" k="94" />
+<hkern g1="Atilde" g2="X" k="-85" />
+<hkern g1="Atilde" g2="Y" k="70" />
+<hkern g1="Atilde" g2="Z" k="-20" />
+<hkern g1="Atilde" g2="backslash" k="100" />
+<hkern g1="Atilde" g2="bracketright" k="51" />
+<hkern g1="Atilde" g2="a" k="-55" />
+<hkern g1="Atilde" g2="t" k="14" />
+<hkern g1="Atilde" g2="v" k="40" />
+<hkern g1="Atilde" g2="w" k="40" />
+<hkern g1="Atilde" g2="x" k="-55" />
+<hkern g1="Atilde" g2="y" k="30" />
+<hkern g1="Atilde" g2="z" k="-60" />
+<hkern g1="Atilde" g2="uni00AD" k="40" />
+<hkern g1="Atilde" g2="acute" k="100" />
+<hkern g1="Atilde" g2="Agrave" k="-95" />
+<hkern g1="Atilde" g2="Aacute" k="-95" />
+<hkern g1="Atilde" g2="Acircumflex" k="-95" />
+<hkern g1="Atilde" g2="Atilde" k="-95" />
+<hkern g1="Atilde" g2="Adieresis" k="-95" />
+<hkern g1="Atilde" g2="Aring" k="-95" />
+<hkern g1="Atilde" g2="AE" k="-120" />
+<hkern g1="Atilde" g2="Ccedilla" k="10" />
+<hkern g1="Atilde" g2="Ograve" k="10" />
+<hkern g1="Atilde" g2="Oacute" k="10" />
+<hkern g1="Atilde" g2="Ocircumflex" k="10" />
+<hkern g1="Atilde" g2="Otilde" k="10" />
+<hkern g1="Atilde" g2="Odieresis" k="10" />
+<hkern g1="Atilde" g2="Oslash" k="10" />
+<hkern g1="Atilde" g2="Ugrave" k="39" />
+<hkern g1="Atilde" g2="Uacute" k="39" />
+<hkern g1="Atilde" g2="Ucircumflex" k="39" />
+<hkern g1="Atilde" g2="Udieresis" k="39" />
+<hkern g1="Atilde" g2="Yacute" k="70" />
+<hkern g1="Atilde" g2="agrave" k="-55" />
+<hkern g1="Atilde" g2="aacute" k="-55" />
+<hkern g1="Atilde" g2="acircumflex" k="-55" />
+<hkern g1="Atilde" g2="atilde" k="-55" />
+<hkern g1="Atilde" g2="adieresis" k="-55" />
+<hkern g1="Atilde" g2="aring" k="-55" />
+<hkern g1="Atilde" g2="ae" k="-55" />
+<hkern g1="Atilde" g2="yacute" k="30" />
+<hkern g1="Atilde" g2="ydieresis" k="30" />
+<hkern g1="Atilde" g2="OE" k="10" />
+<hkern g1="Atilde" g2="endash" k="40" />
+<hkern g1="Atilde" g2="emdash" k="40" />
+<hkern g1="Atilde" g2="quoteleft" k="120" />
+<hkern g1="Atilde" g2="quoteright" k="109" />
+<hkern g1="Atilde" g2="quotedblleft" k="120" />
+<hkern g1="Atilde" g2="quotedblright" k="109" />
+<hkern g1="Adieresis" g2="quotedbl" k="100" />
+<hkern g1="Adieresis" g2="quotesingle" k="100" />
+<hkern g1="Adieresis" g2="asterisk" k="57" />
+<hkern g1="Adieresis" g2="hyphen" k="40" />
+<hkern g1="Adieresis" g2="two" k="-10" />
+<hkern g1="Adieresis" g2="seven" k="20" />
+<hkern g1="Adieresis" g2="question" k="25" />
+<hkern g1="Adieresis" g2="A" k="-95" />
+<hkern g1="Adieresis" g2="C" k="10" />
+<hkern g1="Adieresis" g2="G" k="12" />
+<hkern g1="Adieresis" g2="J" k="-100" />
+<hkern g1="Adieresis" g2="O" k="10" />
+<hkern g1="Adieresis" g2="Q" k="10" />
+<hkern g1="Adieresis" g2="T" k="50" />
+<hkern g1="Adieresis" g2="U" k="39" />
+<hkern g1="Adieresis" g2="V" k="80" />
+<hkern g1="Adieresis" g2="W" k="94" />
+<hkern g1="Adieresis" g2="X" k="-85" />
+<hkern g1="Adieresis" g2="Y" k="70" />
+<hkern g1="Adieresis" g2="Z" k="-20" />
+<hkern g1="Adieresis" g2="backslash" k="100" />
+<hkern g1="Adieresis" g2="bracketright" k="51" />
+<hkern g1="Adieresis" g2="a" k="-55" />
+<hkern g1="Adieresis" g2="t" k="14" />
+<hkern g1="Adieresis" g2="v" k="40" />
+<hkern g1="Adieresis" g2="w" k="40" />
+<hkern g1="Adieresis" g2="x" k="-55" />
+<hkern g1="Adieresis" g2="y" k="30" />
+<hkern g1="Adieresis" g2="z" k="-60" />
+<hkern g1="Adieresis" g2="uni00AD" k="40" />
+<hkern g1="Adieresis" g2="acute" k="100" />
+<hkern g1="Adieresis" g2="Agrave" k="-95" />
+<hkern g1="Adieresis" g2="Aacute" k="-95" />
+<hkern g1="Adieresis" g2="Acircumflex" k="-95" />
+<hkern g1="Adieresis" g2="Atilde" k="-95" />
+<hkern g1="Adieresis" g2="Adieresis" k="-95" />
+<hkern g1="Adieresis" g2="Aring" k="-95" />
+<hkern g1="Adieresis" g2="AE" k="-120" />
+<hkern g1="Adieresis" g2="Ccedilla" k="10" />
+<hkern g1="Adieresis" g2="Ograve" k="10" />
+<hkern g1="Adieresis" g2="Oacute" k="10" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="10" />
+<hkern g1="Adieresis" g2="Otilde" k="10" />
+<hkern g1="Adieresis" g2="Odieresis" k="10" />
+<hkern g1="Adieresis" g2="Oslash" k="10" />
+<hkern g1="Adieresis" g2="Ugrave" k="39" />
+<hkern g1="Adieresis" g2="Uacute" k="39" />
+<hkern g1="Adieresis" g2="Ucircumflex" k="39" />
+<hkern g1="Adieresis" g2="Udieresis" k="39" />
+<hkern g1="Adieresis" g2="Yacute" k="70" />
+<hkern g1="Adieresis" g2="agrave" k="-55" />
+<hkern g1="Adieresis" g2="aacute" k="-55" />
+<hkern g1="Adieresis" g2="acircumflex" k="-55" />
+<hkern g1="Adieresis" g2="atilde" k="-55" />
+<hkern g1="Adieresis" g2="adieresis" k="-55" />
+<hkern g1="Adieresis" g2="aring" k="-55" />
+<hkern g1="Adieresis" g2="ae" k="-55" />
+<hkern g1="Adieresis" g2="yacute" k="30" />
+<hkern g1="Adieresis" g2="ydieresis" k="30" />
+<hkern g1="Adieresis" g2="OE" k="10" />
+<hkern g1="Adieresis" g2="endash" k="40" />
+<hkern g1="Adieresis" g2="emdash" k="40" />
+<hkern g1="Adieresis" g2="quoteleft" k="120" />
+<hkern g1="Adieresis" g2="quoteright" k="109" />
+<hkern g1="Adieresis" g2="quotedblleft" k="120" />
+<hkern g1="Adieresis" g2="quotedblright" k="109" />
+<hkern g1="Aring" g2="quotedbl" k="100" />
+<hkern g1="Aring" g2="quotesingle" k="100" />
+<hkern g1="Aring" g2="asterisk" k="57" />
+<hkern g1="Aring" g2="hyphen" k="40" />
+<hkern g1="Aring" g2="two" k="-10" />
+<hkern g1="Aring" g2="seven" k="20" />
+<hkern g1="Aring" g2="question" k="25" />
+<hkern g1="Aring" g2="A" k="-95" />
+<hkern g1="Aring" g2="C" k="10" />
+<hkern g1="Aring" g2="G" k="12" />
+<hkern g1="Aring" g2="J" k="-100" />
+<hkern g1="Aring" g2="O" k="10" />
+<hkern g1="Aring" g2="Q" k="10" />
+<hkern g1="Aring" g2="T" k="50" />
+<hkern g1="Aring" g2="U" k="39" />
+<hkern g1="Aring" g2="V" k="80" />
+<hkern g1="Aring" g2="W" k="94" />
+<hkern g1="Aring" g2="X" k="-85" />
+<hkern g1="Aring" g2="Y" k="70" />
+<hkern g1="Aring" g2="Z" k="-20" />
+<hkern g1="Aring" g2="backslash" k="100" />
+<hkern g1="Aring" g2="bracketright" k="51" />
+<hkern g1="Aring" g2="a" k="-55" />
+<hkern g1="Aring" g2="t" k="14" />
+<hkern g1="Aring" g2="v" k="40" />
+<hkern g1="Aring" g2="w" k="40" />
+<hkern g1="Aring" g2="x" k="-55" />
+<hkern g1="Aring" g2="y" k="30" />
+<hkern g1="Aring" g2="z" k="-60" />
+<hkern g1="Aring" g2="uni00AD" k="40" />
+<hkern g1="Aring" g2="acute" k="100" />
+<hkern g1="Aring" g2="Agrave" k="-95" />
+<hkern g1="Aring" g2="Aacute" k="-95" />
+<hkern g1="Aring" g2="Acircumflex" k="-95" />
+<hkern g1="Aring" g2="Atilde" k="-95" />
+<hkern g1="Aring" g2="Adieresis" k="-95" />
+<hkern g1="Aring" g2="Aring" k="-95" />
+<hkern g1="Aring" g2="AE" k="-120" />
+<hkern g1="Aring" g2="Ccedilla" k="10" />
+<hkern g1="Aring" g2="Ograve" k="10" />
+<hkern g1="Aring" g2="Oacute" k="10" />
+<hkern g1="Aring" g2="Ocircumflex" k="10" />
+<hkern g1="Aring" g2="Otilde" k="10" />
+<hkern g1="Aring" g2="Odieresis" k="10" />
+<hkern g1="Aring" g2="Oslash" k="10" />
+<hkern g1="Aring" g2="Ugrave" k="39" />
+<hkern g1="Aring" g2="Uacute" k="39" />
+<hkern g1="Aring" g2="Ucircumflex" k="39" />
+<hkern g1="Aring" g2="Udieresis" k="39" />
+<hkern g1="Aring" g2="Yacute" k="70" />
+<hkern g1="Aring" g2="agrave" k="-55" />
+<hkern g1="Aring" g2="aacute" k="-55" />
+<hkern g1="Aring" g2="acircumflex" k="-55" />
+<hkern g1="Aring" g2="atilde" k="-55" />
+<hkern g1="Aring" g2="adieresis" k="-55" />
+<hkern g1="Aring" g2="aring" k="-55" />
+<hkern g1="Aring" g2="ae" k="-55" />
+<hkern g1="Aring" g2="yacute" k="30" />
+<hkern g1="Aring" g2="ydieresis" k="30" />
+<hkern g1="Aring" g2="OE" k="10" />
+<hkern g1="Aring" g2="endash" k="40" />
+<hkern g1="Aring" g2="emdash" k="40" />
+<hkern g1="Aring" g2="quoteleft" k="120" />
+<hkern g1="Aring" g2="quoteright" k="109" />
+<hkern g1="Aring" g2="quotedblleft" k="120" />
+<hkern g1="Aring" g2="quotedblright" k="109" />
+<hkern g1="Ccedilla" g2="hyphen" k="39" />
+<hkern g1="Ccedilla" g2="slash" k="72" />
+<hkern g1="Ccedilla" g2="A" k="20" />
+<hkern g1="Ccedilla" g2="g" k="10" />
+<hkern g1="Ccedilla" g2="z" k="10" />
+<hkern g1="Ccedilla" g2="uni00AD" k="39" />
+<hkern g1="Ccedilla" g2="Agrave" k="20" />
+<hkern g1="Ccedilla" g2="Aacute" k="20" />
+<hkern g1="Ccedilla" g2="Acircumflex" k="20" />
+<hkern g1="Ccedilla" g2="Atilde" k="20" />
+<hkern g1="Ccedilla" g2="Adieresis" k="20" />
+<hkern g1="Ccedilla" g2="Aring" k="20" />
+<hkern g1="Ccedilla" g2="AE" k="57" />
+<hkern g1="Ccedilla" g2="endash" k="39" />
+<hkern g1="Ccedilla" g2="emdash" k="39" />
+<hkern g1="Igrave" g2="asterisk" k="16" />
+<hkern g1="Igrave" g2="hyphen" k="33" />
+<hkern g1="Igrave" g2="slash" k="49" />
+<hkern g1="Igrave" g2="G" k="18" />
+<hkern g1="Igrave" g2="a" k="16" />
+<hkern g1="Igrave" g2="c" k="45" />
+<hkern g1="Igrave" g2="d" k="43" />
+<hkern g1="Igrave" g2="e" k="45" />
+<hkern g1="Igrave" g2="f" k="18" />
+<hkern g1="Igrave" g2="g" k="29" />
+<hkern g1="Igrave" g2="i" k="14" />
+<hkern g1="Igrave" g2="j" k="20" />
+<hkern g1="Igrave" g2="m" k="16" />
+<hkern g1="Igrave" g2="n" k="16" />
+<hkern g1="Igrave" g2="o" k="45" />
+<hkern g1="Igrave" g2="p" k="33" />
+<hkern g1="Igrave" g2="q" k="43" />
+<hkern g1="Igrave" g2="r" k="16" />
+<hkern g1="Igrave" g2="s" k="18" />
+<hkern g1="Igrave" g2="t" k="35" />
+<hkern g1="Igrave" g2="u" k="39" />
+<hkern g1="Igrave" g2="v" k="35" />
+<hkern g1="Igrave" g2="w" k="35" />
+<hkern g1="Igrave" g2="y" k="35" />
+<hkern g1="Igrave" g2="z" k="12" />
+<hkern g1="Igrave" g2="guillemotleft" k="20" />
+<hkern g1="Igrave" g2="uni00AD" k="33" />
+<hkern g1="Igrave" g2="germandbls" k="18" />
+<hkern g1="Igrave" g2="agrave" k="16" />
+<hkern g1="Igrave" g2="aacute" k="16" />
+<hkern g1="Igrave" g2="acircumflex" k="16" />
+<hkern g1="Igrave" g2="atilde" k="16" />
+<hkern g1="Igrave" g2="adieresis" k="16" />
+<hkern g1="Igrave" g2="aring" k="16" />
+<hkern g1="Igrave" g2="ae" k="16" />
+<hkern g1="Igrave" g2="ccedilla" k="45" />
+<hkern g1="Igrave" g2="egrave" k="45" />
+<hkern g1="Igrave" g2="eacute" k="45" />
+<hkern g1="Igrave" g2="ecircumflex" k="45" />
+<hkern g1="Igrave" g2="edieresis" k="45" />
+<hkern g1="Igrave" g2="igrave" k="14" />
+<hkern g1="Igrave" g2="iacute" k="14" />
+<hkern g1="Igrave" g2="icircumflex" k="14" />
+<hkern g1="Igrave" g2="idieresis" k="14" />
+<hkern g1="Igrave" g2="eth" k="43" />
+<hkern g1="Igrave" g2="ntilde" k="16" />
+<hkern g1="Igrave" g2="ograve" k="45" />
+<hkern g1="Igrave" g2="oacute" k="45" />
+<hkern g1="Igrave" g2="ocircumflex" k="45" />
+<hkern g1="Igrave" g2="otilde" k="45" />
+<hkern g1="Igrave" g2="odieresis" k="45" />
+<hkern g1="Igrave" g2="oslash" k="45" />
+<hkern g1="Igrave" g2="ugrave" k="39" />
+<hkern g1="Igrave" g2="uacute" k="39" />
+<hkern g1="Igrave" g2="ucircumflex" k="39" />
+<hkern g1="Igrave" g2="udieresis" k="39" />
+<hkern g1="Igrave" g2="yacute" k="35" />
+<hkern g1="Igrave" g2="ydieresis" k="35" />
+<hkern g1="Igrave" g2="dotlessi" k="14" />
+<hkern g1="Igrave" g2="oe" k="45" />
+<hkern g1="Igrave" g2="endash" k="33" />
+<hkern g1="Igrave" g2="emdash" k="33" />
+<hkern g1="Igrave" g2="guilsinglleft" k="20" />
+<hkern g1="Iacute" g2="asterisk" k="16" />
+<hkern g1="Iacute" g2="hyphen" k="33" />
+<hkern g1="Iacute" g2="slash" k="49" />
+<hkern g1="Iacute" g2="G" k="18" />
+<hkern g1="Iacute" g2="a" k="16" />
+<hkern g1="Iacute" g2="c" k="45" />
+<hkern g1="Iacute" g2="d" k="43" />
+<hkern g1="Iacute" g2="e" k="45" />
+<hkern g1="Iacute" g2="f" k="18" />
+<hkern g1="Iacute" g2="g" k="29" />
+<hkern g1="Iacute" g2="i" k="14" />
+<hkern g1="Iacute" g2="j" k="20" />
+<hkern g1="Iacute" g2="m" k="16" />
+<hkern g1="Iacute" g2="n" k="16" />
+<hkern g1="Iacute" g2="o" k="45" />
+<hkern g1="Iacute" g2="p" k="33" />
+<hkern g1="Iacute" g2="q" k="43" />
+<hkern g1="Iacute" g2="r" k="16" />
+<hkern g1="Iacute" g2="s" k="18" />
+<hkern g1="Iacute" g2="t" k="35" />
+<hkern g1="Iacute" g2="u" k="39" />
+<hkern g1="Iacute" g2="v" k="35" />
+<hkern g1="Iacute" g2="w" k="35" />
+<hkern g1="Iacute" g2="y" k="35" />
+<hkern g1="Iacute" g2="z" k="12" />
+<hkern g1="Iacute" g2="guillemotleft" k="20" />
+<hkern g1="Iacute" g2="uni00AD" k="33" />
+<hkern g1="Iacute" g2="germandbls" k="18" />
+<hkern g1="Iacute" g2="agrave" k="16" />
+<hkern g1="Iacute" g2="aacute" k="16" />
+<hkern g1="Iacute" g2="acircumflex" k="16" />
+<hkern g1="Iacute" g2="atilde" k="16" />
+<hkern g1="Iacute" g2="adieresis" k="16" />
+<hkern g1="Iacute" g2="aring" k="16" />
+<hkern g1="Iacute" g2="ae" k="16" />
+<hkern g1="Iacute" g2="ccedilla" k="45" />
+<hkern g1="Iacute" g2="egrave" k="45" />
+<hkern g1="Iacute" g2="eacute" k="45" />
+<hkern g1="Iacute" g2="ecircumflex" k="45" />
+<hkern g1="Iacute" g2="edieresis" k="45" />
+<hkern g1="Iacute" g2="igrave" k="14" />
+<hkern g1="Iacute" g2="iacute" k="14" />
+<hkern g1="Iacute" g2="icircumflex" k="14" />
+<hkern g1="Iacute" g2="idieresis" k="14" />
+<hkern g1="Iacute" g2="eth" k="43" />
+<hkern g1="Iacute" g2="ntilde" k="16" />
+<hkern g1="Iacute" g2="ograve" k="45" />
+<hkern g1="Iacute" g2="oacute" k="45" />
+<hkern g1="Iacute" g2="ocircumflex" k="45" />
+<hkern g1="Iacute" g2="otilde" k="45" />
+<hkern g1="Iacute" g2="odieresis" k="45" />
+<hkern g1="Iacute" g2="oslash" k="45" />
+<hkern g1="Iacute" g2="ugrave" k="39" />
+<hkern g1="Iacute" g2="uacute" k="39" />
+<hkern g1="Iacute" g2="ucircumflex" k="39" />
+<hkern g1="Iacute" g2="udieresis" k="39" />
+<hkern g1="Iacute" g2="yacute" k="35" />
+<hkern g1="Iacute" g2="ydieresis" k="35" />
+<hkern g1="Iacute" g2="dotlessi" k="14" />
+<hkern g1="Iacute" g2="oe" k="45" />
+<hkern g1="Iacute" g2="endash" k="33" />
+<hkern g1="Iacute" g2="emdash" k="33" />
+<hkern g1="Iacute" g2="guilsinglleft" k="20" />
+<hkern g1="Icircumflex" g2="asterisk" k="16" />
+<hkern g1="Icircumflex" g2="hyphen" k="33" />
+<hkern g1="Icircumflex" g2="slash" k="49" />
+<hkern g1="Icircumflex" g2="G" k="18" />
+<hkern g1="Icircumflex" g2="a" k="16" />
+<hkern g1="Icircumflex" g2="c" k="45" />
+<hkern g1="Icircumflex" g2="d" k="43" />
+<hkern g1="Icircumflex" g2="e" k="45" />
+<hkern g1="Icircumflex" g2="f" k="18" />
+<hkern g1="Icircumflex" g2="g" k="29" />
+<hkern g1="Icircumflex" g2="i" k="14" />
+<hkern g1="Icircumflex" g2="j" k="20" />
+<hkern g1="Icircumflex" g2="m" k="16" />
+<hkern g1="Icircumflex" g2="n" k="16" />
+<hkern g1="Icircumflex" g2="o" k="45" />
+<hkern g1="Icircumflex" g2="p" k="33" />
+<hkern g1="Icircumflex" g2="q" k="43" />
+<hkern g1="Icircumflex" g2="r" k="16" />
+<hkern g1="Icircumflex" g2="s" k="18" />
+<hkern g1="Icircumflex" g2="t" k="35" />
+<hkern g1="Icircumflex" g2="u" k="39" />
+<hkern g1="Icircumflex" g2="v" k="35" />
+<hkern g1="Icircumflex" g2="w" k="35" />
+<hkern g1="Icircumflex" g2="y" k="35" />
+<hkern g1="Icircumflex" g2="z" k="12" />
+<hkern g1="Icircumflex" g2="guillemotleft" k="20" />
+<hkern g1="Icircumflex" g2="uni00AD" k="33" />
+<hkern g1="Icircumflex" g2="germandbls" k="18" />
+<hkern g1="Icircumflex" g2="agrave" k="16" />
+<hkern g1="Icircumflex" g2="aacute" k="16" />
+<hkern g1="Icircumflex" g2="acircumflex" k="16" />
+<hkern g1="Icircumflex" g2="atilde" k="16" />
+<hkern g1="Icircumflex" g2="adieresis" k="16" />
+<hkern g1="Icircumflex" g2="aring" k="16" />
+<hkern g1="Icircumflex" g2="ae" k="16" />
+<hkern g1="Icircumflex" g2="ccedilla" k="45" />
+<hkern g1="Icircumflex" g2="egrave" k="45" />
+<hkern g1="Icircumflex" g2="eacute" k="45" />
+<hkern g1="Icircumflex" g2="ecircumflex" k="45" />
+<hkern g1="Icircumflex" g2="edieresis" k="45" />
+<hkern g1="Icircumflex" g2="igrave" k="14" />
+<hkern g1="Icircumflex" g2="iacute" k="14" />
+<hkern g1="Icircumflex" g2="icircumflex" k="14" />
+<hkern g1="Icircumflex" g2="idieresis" k="14" />
+<hkern g1="Icircumflex" g2="eth" k="43" />
+<hkern g1="Icircumflex" g2="ntilde" k="16" />
+<hkern g1="Icircumflex" g2="ograve" k="45" />
+<hkern g1="Icircumflex" g2="oacute" k="45" />
+<hkern g1="Icircumflex" g2="ocircumflex" k="45" />
+<hkern g1="Icircumflex" g2="otilde" k="45" />
+<hkern g1="Icircumflex" g2="odieresis" k="45" />
+<hkern g1="Icircumflex" g2="oslash" k="45" />
+<hkern g1="Icircumflex" g2="ugrave" k="39" />
+<hkern g1="Icircumflex" g2="uacute" k="39" />
+<hkern g1="Icircumflex" g2="ucircumflex" k="39" />
+<hkern g1="Icircumflex" g2="udieresis" k="39" />
+<hkern g1="Icircumflex" g2="yacute" k="35" />
+<hkern g1="Icircumflex" g2="ydieresis" k="35" />
+<hkern g1="Icircumflex" g2="dotlessi" k="14" />
+<hkern g1="Icircumflex" g2="oe" k="45" />
+<hkern g1="Icircumflex" g2="endash" k="33" />
+<hkern g1="Icircumflex" g2="emdash" k="33" />
+<hkern g1="Icircumflex" g2="quoteright" k="-51" />
+<hkern g1="Icircumflex" g2="quotedblright" k="-51" />
+<hkern g1="Icircumflex" g2="guilsinglleft" k="20" />
+<hkern g1="Idieresis" g2="asterisk" k="16" />
+<hkern g1="Idieresis" g2="hyphen" k="33" />
+<hkern g1="Idieresis" g2="slash" k="49" />
+<hkern g1="Idieresis" g2="G" k="18" />
+<hkern g1="Idieresis" g2="a" k="16" />
+<hkern g1="Idieresis" g2="c" k="45" />
+<hkern g1="Idieresis" g2="d" k="43" />
+<hkern g1="Idieresis" g2="e" k="45" />
+<hkern g1="Idieresis" g2="f" k="18" />
+<hkern g1="Idieresis" g2="g" k="29" />
+<hkern g1="Idieresis" g2="i" k="14" />
+<hkern g1="Idieresis" g2="j" k="20" />
+<hkern g1="Idieresis" g2="m" k="16" />
+<hkern g1="Idieresis" g2="n" k="16" />
+<hkern g1="Idieresis" g2="o" k="45" />
+<hkern g1="Idieresis" g2="p" k="33" />
+<hkern g1="Idieresis" g2="q" k="43" />
+<hkern g1="Idieresis" g2="r" k="16" />
+<hkern g1="Idieresis" g2="s" k="18" />
+<hkern g1="Idieresis" g2="t" k="35" />
+<hkern g1="Idieresis" g2="u" k="39" />
+<hkern g1="Idieresis" g2="v" k="35" />
+<hkern g1="Idieresis" g2="w" k="35" />
+<hkern g1="Idieresis" g2="y" k="35" />
+<hkern g1="Idieresis" g2="z" k="12" />
+<hkern g1="Idieresis" g2="guillemotleft" k="20" />
+<hkern g1="Idieresis" g2="uni00AD" k="33" />
+<hkern g1="Idieresis" g2="germandbls" k="18" />
+<hkern g1="Idieresis" g2="agrave" k="16" />
+<hkern g1="Idieresis" g2="aacute" k="16" />
+<hkern g1="Idieresis" g2="acircumflex" k="16" />
+<hkern g1="Idieresis" g2="atilde" k="16" />
+<hkern g1="Idieresis" g2="adieresis" k="16" />
+<hkern g1="Idieresis" g2="aring" k="16" />
+<hkern g1="Idieresis" g2="ae" k="16" />
+<hkern g1="Idieresis" g2="ccedilla" k="45" />
+<hkern g1="Idieresis" g2="egrave" k="45" />
+<hkern g1="Idieresis" g2="eacute" k="45" />
+<hkern g1="Idieresis" g2="ecircumflex" k="45" />
+<hkern g1="Idieresis" g2="edieresis" k="45" />
+<hkern g1="Idieresis" g2="igrave" k="14" />
+<hkern g1="Idieresis" g2="iacute" k="14" />
+<hkern g1="Idieresis" g2="icircumflex" k="14" />
+<hkern g1="Idieresis" g2="idieresis" k="14" />
+<hkern g1="Idieresis" g2="eth" k="43" />
+<hkern g1="Idieresis" g2="ntilde" k="16" />
+<hkern g1="Idieresis" g2="ograve" k="45" />
+<hkern g1="Idieresis" g2="oacute" k="45" />
+<hkern g1="Idieresis" g2="ocircumflex" k="45" />
+<hkern g1="Idieresis" g2="otilde" k="45" />
+<hkern g1="Idieresis" g2="odieresis" k="45" />
+<hkern g1="Idieresis" g2="oslash" k="45" />
+<hkern g1="Idieresis" g2="ugrave" k="39" />
+<hkern g1="Idieresis" g2="uacute" k="39" />
+<hkern g1="Idieresis" g2="ucircumflex" k="39" />
+<hkern g1="Idieresis" g2="udieresis" k="39" />
+<hkern g1="Idieresis" g2="yacute" k="35" />
+<hkern g1="Idieresis" g2="ydieresis" k="35" />
+<hkern g1="Idieresis" g2="dotlessi" k="14" />
+<hkern g1="Idieresis" g2="oe" k="45" />
+<hkern g1="Idieresis" g2="endash" k="33" />
+<hkern g1="Idieresis" g2="emdash" k="33" />
+<hkern g1="Idieresis" g2="guilsinglleft" k="20" />
+<hkern g1="Eth" g2="parenright" k="47" />
+<hkern g1="Eth" g2="comma" k="49" />
+<hkern g1="Eth" g2="period" k="49" />
+<hkern g1="Eth" g2="slash" k="121" />
+<hkern g1="Eth" g2="A" k="33" />
+<hkern g1="Eth" g2="B" k="20" />
+<hkern g1="Eth" g2="D" k="20" />
+<hkern g1="Eth" g2="E" k="20" />
+<hkern g1="Eth" g2="F" k="20" />
+<hkern g1="Eth" g2="H" k="20" />
+<hkern g1="Eth" g2="I" k="20" />
+<hkern g1="Eth" g2="J" k="55" />
+<hkern g1="Eth" g2="K" k="20" />
+<hkern g1="Eth" g2="L" k="20" />
+<hkern g1="Eth" g2="M" k="20" />
+<hkern g1="Eth" g2="N" k="20" />
+<hkern g1="Eth" g2="P" k="20" />
+<hkern g1="Eth" g2="R" k="20" />
+<hkern g1="Eth" g2="U" k="10" />
+<hkern g1="Eth" g2="V" k="27" />
+<hkern g1="Eth" g2="W" k="30" />
+<hkern g1="Eth" g2="X" k="55" />
+<hkern g1="Eth" g2="Y" k="30" />
+<hkern g1="Eth" g2="Z" k="10" />
+<hkern g1="Eth" g2="backslash" k="41" />
+<hkern g1="Eth" g2="bracketright" k="78" />
+<hkern g1="Eth" g2="a" k="10" />
+<hkern g1="Eth" g2="b" k="10" />
+<hkern g1="Eth" g2="g" k="10" />
+<hkern g1="Eth" g2="h" k="23" />
+<hkern g1="Eth" g2="k" k="23" />
+<hkern g1="Eth" g2="l" k="23" />
+<hkern g1="Eth" g2="x" k="16" />
+<hkern g1="Eth" g2="braceright" k="41" />
+<hkern g1="Eth" g2="Agrave" k="33" />
+<hkern g1="Eth" g2="Aacute" k="33" />
+<hkern g1="Eth" g2="Acircumflex" k="33" />
+<hkern g1="Eth" g2="Atilde" k="33" />
+<hkern g1="Eth" g2="Adieresis" k="33" />
+<hkern g1="Eth" g2="Aring" k="33" />
+<hkern g1="Eth" g2="AE" k="113" />
+<hkern g1="Eth" g2="Egrave" k="20" />
+<hkern g1="Eth" g2="Eacute" k="20" />
+<hkern g1="Eth" g2="Ecircumflex" k="20" />
+<hkern g1="Eth" g2="Edieresis" k="20" />
+<hkern g1="Eth" g2="Igrave" k="20" />
+<hkern g1="Eth" g2="Iacute" k="20" />
+<hkern g1="Eth" g2="Icircumflex" k="20" />
+<hkern g1="Eth" g2="Idieresis" k="20" />
+<hkern g1="Eth" g2="Eth" k="20" />
+<hkern g1="Eth" g2="Ntilde" k="20" />
+<hkern g1="Eth" g2="Ugrave" k="10" />
+<hkern g1="Eth" g2="Uacute" k="10" />
+<hkern g1="Eth" g2="Ucircumflex" k="10" />
+<hkern g1="Eth" g2="Udieresis" k="10" />
+<hkern g1="Eth" g2="Yacute" k="30" />
+<hkern g1="Eth" g2="Thorn" k="20" />
+<hkern g1="Eth" g2="agrave" k="10" />
+<hkern g1="Eth" g2="aacute" k="10" />
+<hkern g1="Eth" g2="acircumflex" k="10" />
+<hkern g1="Eth" g2="atilde" k="10" />
+<hkern g1="Eth" g2="adieresis" k="10" />
+<hkern g1="Eth" g2="aring" k="10" />
+<hkern g1="Eth" g2="ae" k="10" />
+<hkern g1="Eth" g2="thorn" k="10" />
+<hkern g1="Eth" g2="quoteleft" k="31" />
+<hkern g1="Eth" g2="quoteright" k="18" />
+<hkern g1="Eth" g2="quotesinglbase" k="49" />
+<hkern g1="Eth" g2="quotedblleft" k="31" />
+<hkern g1="Eth" g2="quotedblright" k="18" />
+<hkern g1="Eth" g2="quotedblbase" k="49" />
+<hkern g1="Ntilde" g2="comma" k="29" />
+<hkern g1="Ntilde" g2="hyphen" k="23" />
+<hkern g1="Ntilde" g2="period" k="29" />
+<hkern g1="Ntilde" g2="slash" k="78" />
+<hkern g1="Ntilde" g2="C" k="10" />
+<hkern g1="Ntilde" g2="a" k="10" />
+<hkern g1="Ntilde" g2="c" k="20" />
+<hkern g1="Ntilde" g2="d" k="20" />
+<hkern g1="Ntilde" g2="e" k="20" />
+<hkern g1="Ntilde" g2="f" k="10" />
+<hkern g1="Ntilde" g2="g" k="10" />
+<hkern g1="Ntilde" g2="o" k="20" />
+<hkern g1="Ntilde" g2="q" k="20" />
+<hkern g1="Ntilde" g2="s" k="15" />
+<hkern g1="Ntilde" g2="t" k="10" />
+<hkern g1="Ntilde" g2="v" k="15" />
+<hkern g1="Ntilde" g2="w" k="15" />
+<hkern g1="Ntilde" g2="x" k="10" />
+<hkern g1="Ntilde" g2="y" k="15" />
+<hkern g1="Ntilde" g2="z" k="20" />
+<hkern g1="Ntilde" g2="uni00AD" k="23" />
+<hkern g1="Ntilde" g2="germandbls" k="10" />
+<hkern g1="Ntilde" g2="agrave" k="10" />
+<hkern g1="Ntilde" g2="aacute" k="10" />
+<hkern g1="Ntilde" g2="acircumflex" k="10" />
+<hkern g1="Ntilde" g2="atilde" k="10" />
+<hkern g1="Ntilde" g2="adieresis" k="10" />
+<hkern g1="Ntilde" g2="aring" k="10" />
+<hkern g1="Ntilde" g2="ae" k="10" />
+<hkern g1="Ntilde" g2="ccedilla" k="20" />
+<hkern g1="Ntilde" g2="egrave" k="20" />
+<hkern g1="Ntilde" g2="eacute" k="20" />
+<hkern g1="Ntilde" g2="ecircumflex" k="20" />
+<hkern g1="Ntilde" g2="edieresis" k="20" />
+<hkern g1="Ntilde" g2="eth" k="41" />
+<hkern g1="Ntilde" g2="ograve" k="20" />
+<hkern g1="Ntilde" g2="oacute" k="20" />
+<hkern g1="Ntilde" g2="ocircumflex" k="20" />
+<hkern g1="Ntilde" g2="otilde" k="20" />
+<hkern g1="Ntilde" g2="odieresis" k="20" />
+<hkern g1="Ntilde" g2="oslash" k="20" />
+<hkern g1="Ntilde" g2="yacute" k="15" />
+<hkern g1="Ntilde" g2="ydieresis" k="15" />
+<hkern g1="Ntilde" g2="oe" k="20" />
+<hkern g1="Ntilde" g2="endash" k="23" />
+<hkern g1="Ntilde" g2="emdash" k="23" />
+<hkern g1="Ntilde" g2="quotesinglbase" k="29" />
+<hkern g1="Ntilde" g2="quotedblbase" k="29" />
+<hkern g1="Ograve" g2="parenright" k="70" />
+<hkern g1="Ograve" g2="comma" k="45" />
+<hkern g1="Ograve" g2="period" k="45" />
+<hkern g1="Ograve" g2="slash" k="115" />
+<hkern g1="Ograve" g2="A" k="27" />
+<hkern g1="Ograve" g2="B" k="18" />
+<hkern g1="Ograve" g2="D" k="18" />
+<hkern g1="Ograve" g2="E" k="18" />
+<hkern g1="Ograve" g2="F" k="18" />
+<hkern g1="Ograve" g2="H" k="18" />
+<hkern g1="Ograve" g2="I" k="18" />
+<hkern g1="Ograve" g2="J" k="45" />
+<hkern g1="Ograve" g2="K" k="18" />
+<hkern g1="Ograve" g2="L" k="18" />
+<hkern g1="Ograve" g2="M" k="10" />
+<hkern g1="Ograve" g2="N" k="18" />
+<hkern g1="Ograve" g2="P" k="18" />
+<hkern g1="Ograve" g2="R" k="18" />
+<hkern g1="Ograve" g2="T" k="45" />
+<hkern g1="Ograve" g2="U" k="10" />
+<hkern g1="Ograve" g2="V" k="25" />
+<hkern g1="Ograve" g2="W" k="30" />
+<hkern g1="Ograve" g2="X" k="50" />
+<hkern g1="Ograve" g2="Y" k="40" />
+<hkern g1="Ograve" g2="backslash" k="39" />
+<hkern g1="Ograve" g2="bracketright" k="74" />
+<hkern g1="Ograve" g2="c" k="10" />
+<hkern g1="Ograve" g2="d" k="10" />
+<hkern g1="Ograve" g2="e" k="10" />
+<hkern g1="Ograve" g2="g" k="10" />
+<hkern g1="Ograve" g2="o" k="10" />
+<hkern g1="Ograve" g2="q" k="10" />
+<hkern g1="Ograve" g2="x" k="15" />
+<hkern g1="Ograve" g2="braceright" k="41" />
+<hkern g1="Ograve" g2="Agrave" k="27" />
+<hkern g1="Ograve" g2="Aacute" k="27" />
+<hkern g1="Ograve" g2="Acircumflex" k="27" />
+<hkern g1="Ograve" g2="Atilde" k="27" />
+<hkern g1="Ograve" g2="Adieresis" k="27" />
+<hkern g1="Ograve" g2="Aring" k="27" />
+<hkern g1="Ograve" g2="AE" k="92" />
+<hkern g1="Ograve" g2="Egrave" k="18" />
+<hkern g1="Ograve" g2="Eacute" k="18" />
+<hkern g1="Ograve" g2="Ecircumflex" k="18" />
+<hkern g1="Ograve" g2="Edieresis" k="18" />
+<hkern g1="Ograve" g2="Igrave" k="18" />
+<hkern g1="Ograve" g2="Iacute" k="18" />
+<hkern g1="Ograve" g2="Icircumflex" k="18" />
+<hkern g1="Ograve" g2="Idieresis" k="18" />
+<hkern g1="Ograve" g2="Eth" k="18" />
+<hkern g1="Ograve" g2="Ntilde" k="18" />
+<hkern g1="Ograve" g2="Ugrave" k="10" />
+<hkern g1="Ograve" g2="Uacute" k="10" />
+<hkern g1="Ograve" g2="Ucircumflex" k="10" />
+<hkern g1="Ograve" g2="Udieresis" k="10" />
+<hkern g1="Ograve" g2="Yacute" k="40" />
+<hkern g1="Ograve" g2="Thorn" k="18" />
+<hkern g1="Ograve" g2="ccedilla" k="10" />
+<hkern g1="Ograve" g2="egrave" k="10" />
+<hkern g1="Ograve" g2="eacute" k="10" />
+<hkern g1="Ograve" g2="ecircumflex" k="10" />
+<hkern g1="Ograve" g2="edieresis" k="10" />
+<hkern g1="Ograve" g2="ograve" k="10" />
+<hkern g1="Ograve" g2="oacute" k="10" />
+<hkern g1="Ograve" g2="ocircumflex" k="10" />
+<hkern g1="Ograve" g2="otilde" k="10" />
+<hkern g1="Ograve" g2="odieresis" k="10" />
+<hkern g1="Ograve" g2="oslash" k="10" />
+<hkern g1="Ograve" g2="oe" k="10" />
+<hkern g1="Ograve" g2="quoteleft" k="31" />
+<hkern g1="Ograve" g2="quoteright" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="45" />
+<hkern g1="Ograve" g2="quotedblleft" k="31" />
+<hkern g1="Ograve" g2="quotedblright" k="20" />
+<hkern g1="Ograve" g2="quotedblbase" k="45" />
+<hkern g1="Oacute" g2="parenright" k="70" />
+<hkern g1="Oacute" g2="comma" k="45" />
+<hkern g1="Oacute" g2="period" k="45" />
+<hkern g1="Oacute" g2="slash" k="115" />
+<hkern g1="Oacute" g2="A" k="27" />
+<hkern g1="Oacute" g2="B" k="18" />
+<hkern g1="Oacute" g2="D" k="18" />
+<hkern g1="Oacute" g2="E" k="18" />
+<hkern g1="Oacute" g2="F" k="18" />
+<hkern g1="Oacute" g2="H" k="18" />
+<hkern g1="Oacute" g2="I" k="18" />
+<hkern g1="Oacute" g2="J" k="45" />
+<hkern g1="Oacute" g2="K" k="18" />
+<hkern g1="Oacute" g2="L" k="18" />
+<hkern g1="Oacute" g2="M" k="10" />
+<hkern g1="Oacute" g2="N" k="18" />
+<hkern g1="Oacute" g2="P" k="18" />
+<hkern g1="Oacute" g2="R" k="18" />
+<hkern g1="Oacute" g2="T" k="45" />
+<hkern g1="Oacute" g2="U" k="10" />
+<hkern g1="Oacute" g2="V" k="25" />
+<hkern g1="Oacute" g2="W" k="30" />
+<hkern g1="Oacute" g2="X" k="50" />
+<hkern g1="Oacute" g2="Y" k="40" />
+<hkern g1="Oacute" g2="backslash" k="39" />
+<hkern g1="Oacute" g2="bracketright" k="74" />
+<hkern g1="Oacute" g2="c" k="10" />
+<hkern g1="Oacute" g2="d" k="10" />
+<hkern g1="Oacute" g2="e" k="10" />
+<hkern g1="Oacute" g2="g" k="10" />
+<hkern g1="Oacute" g2="o" k="10" />
+<hkern g1="Oacute" g2="q" k="10" />
+<hkern g1="Oacute" g2="x" k="15" />
+<hkern g1="Oacute" g2="braceright" k="41" />
+<hkern g1="Oacute" g2="Agrave" k="27" />
+<hkern g1="Oacute" g2="Aacute" k="27" />
+<hkern g1="Oacute" g2="Acircumflex" k="27" />
+<hkern g1="Oacute" g2="Atilde" k="27" />
+<hkern g1="Oacute" g2="Adieresis" k="27" />
+<hkern g1="Oacute" g2="Aring" k="27" />
+<hkern g1="Oacute" g2="AE" k="92" />
+<hkern g1="Oacute" g2="Egrave" k="18" />
+<hkern g1="Oacute" g2="Eacute" k="18" />
+<hkern g1="Oacute" g2="Ecircumflex" k="18" />
+<hkern g1="Oacute" g2="Edieresis" k="18" />
+<hkern g1="Oacute" g2="Igrave" k="18" />
+<hkern g1="Oacute" g2="Iacute" k="18" />
+<hkern g1="Oacute" g2="Icircumflex" k="18" />
+<hkern g1="Oacute" g2="Idieresis" k="18" />
+<hkern g1="Oacute" g2="Eth" k="18" />
+<hkern g1="Oacute" g2="Ntilde" k="18" />
+<hkern g1="Oacute" g2="Ugrave" k="10" />
+<hkern g1="Oacute" g2="Uacute" k="10" />
+<hkern g1="Oacute" g2="Ucircumflex" k="10" />
+<hkern g1="Oacute" g2="Udieresis" k="10" />
+<hkern g1="Oacute" g2="Yacute" k="40" />
+<hkern g1="Oacute" g2="Thorn" k="18" />
+<hkern g1="Oacute" g2="ccedilla" k="10" />
+<hkern g1="Oacute" g2="egrave" k="10" />
+<hkern g1="Oacute" g2="eacute" k="10" />
+<hkern g1="Oacute" g2="ecircumflex" k="10" />
+<hkern g1="Oacute" g2="edieresis" k="10" />
+<hkern g1="Oacute" g2="ograve" k="10" />
+<hkern g1="Oacute" g2="oacute" k="10" />
+<hkern g1="Oacute" g2="ocircumflex" k="10" />
+<hkern g1="Oacute" g2="otilde" k="10" />
+<hkern g1="Oacute" g2="odieresis" k="10" />
+<hkern g1="Oacute" g2="oslash" k="10" />
+<hkern g1="Oacute" g2="oe" k="10" />
+<hkern g1="Oacute" g2="quoteleft" k="31" />
+<hkern g1="Oacute" g2="quoteright" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="45" />
+<hkern g1="Oacute" g2="quotedblleft" k="31" />
+<hkern g1="Oacute" g2="quotedblright" k="20" />
+<hkern g1="Oacute" g2="quotedblbase" k="45" />
+<hkern g1="Ocircumflex" g2="parenright" k="70" />
+<hkern g1="Ocircumflex" g2="comma" k="45" />
+<hkern g1="Ocircumflex" g2="period" k="45" />
+<hkern g1="Ocircumflex" g2="slash" k="115" />
+<hkern g1="Ocircumflex" g2="A" k="27" />
+<hkern g1="Ocircumflex" g2="B" k="18" />
+<hkern g1="Ocircumflex" g2="D" k="18" />
+<hkern g1="Ocircumflex" g2="E" k="18" />
+<hkern g1="Ocircumflex" g2="F" k="18" />
+<hkern g1="Ocircumflex" g2="H" k="18" />
+<hkern g1="Ocircumflex" g2="I" k="18" />
+<hkern g1="Ocircumflex" g2="J" k="45" />
+<hkern g1="Ocircumflex" g2="K" k="18" />
+<hkern g1="Ocircumflex" g2="L" k="18" />
+<hkern g1="Ocircumflex" g2="M" k="10" />
+<hkern g1="Ocircumflex" g2="N" k="18" />
+<hkern g1="Ocircumflex" g2="P" k="18" />
+<hkern g1="Ocircumflex" g2="R" k="18" />
+<hkern g1="Ocircumflex" g2="T" k="45" />
+<hkern g1="Ocircumflex" g2="U" k="10" />
+<hkern g1="Ocircumflex" g2="V" k="25" />
+<hkern g1="Ocircumflex" g2="W" k="30" />
+<hkern g1="Ocircumflex" g2="X" k="50" />
+<hkern g1="Ocircumflex" g2="Y" k="40" />
+<hkern g1="Ocircumflex" g2="backslash" k="39" />
+<hkern g1="Ocircumflex" g2="bracketright" k="74" />
+<hkern g1="Ocircumflex" g2="c" k="10" />
+<hkern g1="Ocircumflex" g2="d" k="10" />
+<hkern g1="Ocircumflex" g2="e" k="10" />
+<hkern g1="Ocircumflex" g2="g" k="10" />
+<hkern g1="Ocircumflex" g2="o" k="10" />
+<hkern g1="Ocircumflex" g2="q" k="10" />
+<hkern g1="Ocircumflex" g2="x" k="15" />
+<hkern g1="Ocircumflex" g2="braceright" k="41" />
+<hkern g1="Ocircumflex" g2="Agrave" k="27" />
+<hkern g1="Ocircumflex" g2="Aacute" k="27" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="27" />
+<hkern g1="Ocircumflex" g2="Atilde" k="27" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="27" />
+<hkern g1="Ocircumflex" g2="Aring" k="27" />
+<hkern g1="Ocircumflex" g2="AE" k="92" />
+<hkern g1="Ocircumflex" g2="Egrave" k="18" />
+<hkern g1="Ocircumflex" g2="Eacute" k="18" />
+<hkern g1="Ocircumflex" g2="Ecircumflex" k="18" />
+<hkern g1="Ocircumflex" g2="Edieresis" k="18" />
+<hkern g1="Ocircumflex" g2="Igrave" k="18" />
+<hkern g1="Ocircumflex" g2="Iacute" k="18" />
+<hkern g1="Ocircumflex" g2="Icircumflex" k="18" />
+<hkern g1="Ocircumflex" g2="Idieresis" k="18" />
+<hkern g1="Ocircumflex" g2="Eth" k="18" />
+<hkern g1="Ocircumflex" g2="Ntilde" k="18" />
+<hkern g1="Ocircumflex" g2="Ugrave" k="10" />
+<hkern g1="Ocircumflex" g2="Uacute" k="10" />
+<hkern g1="Ocircumflex" g2="Ucircumflex" k="10" />
+<hkern g1="Ocircumflex" g2="Udieresis" k="10" />
+<hkern g1="Ocircumflex" g2="Yacute" k="40" />
+<hkern g1="Ocircumflex" g2="Thorn" k="18" />
+<hkern g1="Ocircumflex" g2="ccedilla" k="10" />
+<hkern g1="Ocircumflex" g2="egrave" k="10" />
+<hkern g1="Ocircumflex" g2="eacute" k="10" />
+<hkern g1="Ocircumflex" g2="ecircumflex" k="10" />
+<hkern g1="Ocircumflex" g2="edieresis" k="10" />
+<hkern g1="Ocircumflex" g2="ograve" k="10" />
+<hkern g1="Ocircumflex" g2="oacute" k="10" />
+<hkern g1="Ocircumflex" g2="ocircumflex" k="10" />
+<hkern g1="Ocircumflex" g2="otilde" k="10" />
+<hkern g1="Ocircumflex" g2="odieresis" k="10" />
+<hkern g1="Ocircumflex" g2="oslash" k="10" />
+<hkern g1="Ocircumflex" g2="oe" k="10" />
+<hkern g1="Ocircumflex" g2="quoteleft" k="31" />
+<hkern g1="Ocircumflex" g2="quoteright" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="45" />
+<hkern g1="Ocircumflex" g2="quotedblleft" k="31" />
+<hkern g1="Ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="45" />
+<hkern g1="Otilde" g2="parenright" k="70" />
+<hkern g1="Otilde" g2="comma" k="45" />
+<hkern g1="Otilde" g2="period" k="45" />
+<hkern g1="Otilde" g2="slash" k="115" />
+<hkern g1="Otilde" g2="A" k="27" />
+<hkern g1="Otilde" g2="B" k="18" />
+<hkern g1="Otilde" g2="D" k="18" />
+<hkern g1="Otilde" g2="E" k="18" />
+<hkern g1="Otilde" g2="F" k="18" />
+<hkern g1="Otilde" g2="H" k="18" />
+<hkern g1="Otilde" g2="I" k="18" />
+<hkern g1="Otilde" g2="J" k="45" />
+<hkern g1="Otilde" g2="K" k="18" />
+<hkern g1="Otilde" g2="L" k="18" />
+<hkern g1="Otilde" g2="M" k="10" />
+<hkern g1="Otilde" g2="N" k="18" />
+<hkern g1="Otilde" g2="P" k="18" />
+<hkern g1="Otilde" g2="R" k="18" />
+<hkern g1="Otilde" g2="T" k="45" />
+<hkern g1="Otilde" g2="U" k="10" />
+<hkern g1="Otilde" g2="V" k="25" />
+<hkern g1="Otilde" g2="W" k="30" />
+<hkern g1="Otilde" g2="X" k="50" />
+<hkern g1="Otilde" g2="Y" k="40" />
+<hkern g1="Otilde" g2="backslash" k="39" />
+<hkern g1="Otilde" g2="bracketright" k="74" />
+<hkern g1="Otilde" g2="c" k="10" />
+<hkern g1="Otilde" g2="d" k="10" />
+<hkern g1="Otilde" g2="e" k="10" />
+<hkern g1="Otilde" g2="g" k="10" />
+<hkern g1="Otilde" g2="o" k="10" />
+<hkern g1="Otilde" g2="q" k="10" />
+<hkern g1="Otilde" g2="x" k="15" />
+<hkern g1="Otilde" g2="braceright" k="41" />
+<hkern g1="Otilde" g2="Agrave" k="27" />
+<hkern g1="Otilde" g2="Aacute" k="27" />
+<hkern g1="Otilde" g2="Acircumflex" k="27" />
+<hkern g1="Otilde" g2="Atilde" k="27" />
+<hkern g1="Otilde" g2="Adieresis" k="27" />
+<hkern g1="Otilde" g2="Aring" k="27" />
+<hkern g1="Otilde" g2="AE" k="92" />
+<hkern g1="Otilde" g2="Egrave" k="18" />
+<hkern g1="Otilde" g2="Eacute" k="18" />
+<hkern g1="Otilde" g2="Ecircumflex" k="18" />
+<hkern g1="Otilde" g2="Edieresis" k="18" />
+<hkern g1="Otilde" g2="Igrave" k="18" />
+<hkern g1="Otilde" g2="Iacute" k="18" />
+<hkern g1="Otilde" g2="Icircumflex" k="18" />
+<hkern g1="Otilde" g2="Idieresis" k="18" />
+<hkern g1="Otilde" g2="Eth" k="18" />
+<hkern g1="Otilde" g2="Ntilde" k="18" />
+<hkern g1="Otilde" g2="Ugrave" k="10" />
+<hkern g1="Otilde" g2="Uacute" k="10" />
+<hkern g1="Otilde" g2="Ucircumflex" k="10" />
+<hkern g1="Otilde" g2="Udieresis" k="10" />
+<hkern g1="Otilde" g2="Yacute" k="40" />
+<hkern g1="Otilde" g2="Thorn" k="18" />
+<hkern g1="Otilde" g2="ccedilla" k="10" />
+<hkern g1="Otilde" g2="egrave" k="10" />
+<hkern g1="Otilde" g2="eacute" k="10" />
+<hkern g1="Otilde" g2="ecircumflex" k="10" />
+<hkern g1="Otilde" g2="edieresis" k="10" />
+<hkern g1="Otilde" g2="ograve" k="10" />
+<hkern g1="Otilde" g2="oacute" k="10" />
+<hkern g1="Otilde" g2="ocircumflex" k="10" />
+<hkern g1="Otilde" g2="otilde" k="10" />
+<hkern g1="Otilde" g2="odieresis" k="10" />
+<hkern g1="Otilde" g2="oslash" k="10" />
+<hkern g1="Otilde" g2="oe" k="10" />
+<hkern g1="Otilde" g2="quoteleft" k="31" />
+<hkern g1="Otilde" g2="quoteright" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="45" />
+<hkern g1="Otilde" g2="quotedblleft" k="31" />
+<hkern g1="Otilde" g2="quotedblright" k="20" />
+<hkern g1="Otilde" g2="quotedblbase" k="45" />
+<hkern g1="Odieresis" g2="parenright" k="70" />
+<hkern g1="Odieresis" g2="comma" k="45" />
+<hkern g1="Odieresis" g2="period" k="45" />
+<hkern g1="Odieresis" g2="slash" k="115" />
+<hkern g1="Odieresis" g2="A" k="27" />
+<hkern g1="Odieresis" g2="B" k="18" />
+<hkern g1="Odieresis" g2="D" k="18" />
+<hkern g1="Odieresis" g2="E" k="18" />
+<hkern g1="Odieresis" g2="F" k="18" />
+<hkern g1="Odieresis" g2="H" k="18" />
+<hkern g1="Odieresis" g2="I" k="18" />
+<hkern g1="Odieresis" g2="J" k="45" />
+<hkern g1="Odieresis" g2="K" k="18" />
+<hkern g1="Odieresis" g2="L" k="18" />
+<hkern g1="Odieresis" g2="M" k="10" />
+<hkern g1="Odieresis" g2="N" k="18" />
+<hkern g1="Odieresis" g2="P" k="18" />
+<hkern g1="Odieresis" g2="R" k="18" />
+<hkern g1="Odieresis" g2="T" k="45" />
+<hkern g1="Odieresis" g2="U" k="10" />
+<hkern g1="Odieresis" g2="V" k="25" />
+<hkern g1="Odieresis" g2="W" k="30" />
+<hkern g1="Odieresis" g2="X" k="50" />
+<hkern g1="Odieresis" g2="Y" k="40" />
+<hkern g1="Odieresis" g2="backslash" k="39" />
+<hkern g1="Odieresis" g2="bracketright" k="74" />
+<hkern g1="Odieresis" g2="c" k="10" />
+<hkern g1="Odieresis" g2="d" k="10" />
+<hkern g1="Odieresis" g2="e" k="10" />
+<hkern g1="Odieresis" g2="g" k="10" />
+<hkern g1="Odieresis" g2="o" k="10" />
+<hkern g1="Odieresis" g2="q" k="10" />
+<hkern g1="Odieresis" g2="x" k="15" />
+<hkern g1="Odieresis" g2="braceright" k="41" />
+<hkern g1="Odieresis" g2="Agrave" k="27" />
+<hkern g1="Odieresis" g2="Aacute" k="27" />
+<hkern g1="Odieresis" g2="Acircumflex" k="27" />
+<hkern g1="Odieresis" g2="Atilde" k="27" />
+<hkern g1="Odieresis" g2="Adieresis" k="27" />
+<hkern g1="Odieresis" g2="Aring" k="27" />
+<hkern g1="Odieresis" g2="AE" k="92" />
+<hkern g1="Odieresis" g2="Egrave" k="18" />
+<hkern g1="Odieresis" g2="Eacute" k="18" />
+<hkern g1="Odieresis" g2="Ecircumflex" k="18" />
+<hkern g1="Odieresis" g2="Edieresis" k="18" />
+<hkern g1="Odieresis" g2="Igrave" k="18" />
+<hkern g1="Odieresis" g2="Iacute" k="18" />
+<hkern g1="Odieresis" g2="Icircumflex" k="18" />
+<hkern g1="Odieresis" g2="Idieresis" k="18" />
+<hkern g1="Odieresis" g2="Eth" k="18" />
+<hkern g1="Odieresis" g2="Ntilde" k="18" />
+<hkern g1="Odieresis" g2="Ugrave" k="10" />
+<hkern g1="Odieresis" g2="Uacute" k="10" />
+<hkern g1="Odieresis" g2="Ucircumflex" k="10" />
+<hkern g1="Odieresis" g2="Udieresis" k="10" />
+<hkern g1="Odieresis" g2="Yacute" k="40" />
+<hkern g1="Odieresis" g2="Thorn" k="18" />
+<hkern g1="Odieresis" g2="ccedilla" k="10" />
+<hkern g1="Odieresis" g2="egrave" k="10" />
+<hkern g1="Odieresis" g2="eacute" k="10" />
+<hkern g1="Odieresis" g2="ecircumflex" k="10" />
+<hkern g1="Odieresis" g2="edieresis" k="10" />
+<hkern g1="Odieresis" g2="ograve" k="10" />
+<hkern g1="Odieresis" g2="oacute" k="10" />
+<hkern g1="Odieresis" g2="ocircumflex" k="10" />
+<hkern g1="Odieresis" g2="otilde" k="10" />
+<hkern g1="Odieresis" g2="odieresis" k="10" />
+<hkern g1="Odieresis" g2="oslash" k="10" />
+<hkern g1="Odieresis" g2="oe" k="10" />
+<hkern g1="Odieresis" g2="quoteleft" k="31" />
+<hkern g1="Odieresis" g2="quoteright" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="45" />
+<hkern g1="Odieresis" g2="quotedblleft" k="31" />
+<hkern g1="Odieresis" g2="quotedblright" k="20" />
+<hkern g1="Odieresis" g2="quotedblbase" k="45" />
+<hkern g1="Oslash" g2="parenright" k="70" />
+<hkern g1="Oslash" g2="comma" k="45" />
+<hkern g1="Oslash" g2="period" k="45" />
+<hkern g1="Oslash" g2="slash" k="115" />
+<hkern g1="Oslash" g2="A" k="27" />
+<hkern g1="Oslash" g2="B" k="18" />
+<hkern g1="Oslash" g2="D" k="18" />
+<hkern g1="Oslash" g2="E" k="18" />
+<hkern g1="Oslash" g2="F" k="18" />
+<hkern g1="Oslash" g2="H" k="18" />
+<hkern g1="Oslash" g2="I" k="18" />
+<hkern g1="Oslash" g2="J" k="45" />
+<hkern g1="Oslash" g2="K" k="18" />
+<hkern g1="Oslash" g2="L" k="18" />
+<hkern g1="Oslash" g2="M" k="10" />
+<hkern g1="Oslash" g2="N" k="18" />
+<hkern g1="Oslash" g2="P" k="18" />
+<hkern g1="Oslash" g2="R" k="18" />
+<hkern g1="Oslash" g2="T" k="45" />
+<hkern g1="Oslash" g2="U" k="10" />
+<hkern g1="Oslash" g2="V" k="25" />
+<hkern g1="Oslash" g2="W" k="30" />
+<hkern g1="Oslash" g2="X" k="50" />
+<hkern g1="Oslash" g2="Y" k="40" />
+<hkern g1="Oslash" g2="backslash" k="39" />
+<hkern g1="Oslash" g2="bracketright" k="74" />
+<hkern g1="Oslash" g2="c" k="10" />
+<hkern g1="Oslash" g2="d" k="10" />
+<hkern g1="Oslash" g2="e" k="10" />
+<hkern g1="Oslash" g2="g" k="10" />
+<hkern g1="Oslash" g2="o" k="10" />
+<hkern g1="Oslash" g2="q" k="10" />
+<hkern g1="Oslash" g2="x" k="15" />
+<hkern g1="Oslash" g2="braceright" k="41" />
+<hkern g1="Oslash" g2="Agrave" k="27" />
+<hkern g1="Oslash" g2="Aacute" k="27" />
+<hkern g1="Oslash" g2="Acircumflex" k="27" />
+<hkern g1="Oslash" g2="Atilde" k="27" />
+<hkern g1="Oslash" g2="Adieresis" k="27" />
+<hkern g1="Oslash" g2="Aring" k="27" />
+<hkern g1="Oslash" g2="AE" k="92" />
+<hkern g1="Oslash" g2="Egrave" k="18" />
+<hkern g1="Oslash" g2="Eacute" k="18" />
+<hkern g1="Oslash" g2="Ecircumflex" k="18" />
+<hkern g1="Oslash" g2="Edieresis" k="18" />
+<hkern g1="Oslash" g2="Igrave" k="18" />
+<hkern g1="Oslash" g2="Iacute" k="18" />
+<hkern g1="Oslash" g2="Icircumflex" k="18" />
+<hkern g1="Oslash" g2="Idieresis" k="18" />
+<hkern g1="Oslash" g2="Eth" k="18" />
+<hkern g1="Oslash" g2="Ntilde" k="18" />
+<hkern g1="Oslash" g2="Ugrave" k="10" />
+<hkern g1="Oslash" g2="Uacute" k="10" />
+<hkern g1="Oslash" g2="Ucircumflex" k="10" />
+<hkern g1="Oslash" g2="Udieresis" k="10" />
+<hkern g1="Oslash" g2="Yacute" k="40" />
+<hkern g1="Oslash" g2="Thorn" k="18" />
+<hkern g1="Oslash" g2="ccedilla" k="10" />
+<hkern g1="Oslash" g2="egrave" k="10" />
+<hkern g1="Oslash" g2="eacute" k="10" />
+<hkern g1="Oslash" g2="ecircumflex" k="10" />
+<hkern g1="Oslash" g2="edieresis" k="10" />
+<hkern g1="Oslash" g2="ograve" k="10" />
+<hkern g1="Oslash" g2="oacute" k="10" />
+<hkern g1="Oslash" g2="ocircumflex" k="10" />
+<hkern g1="Oslash" g2="otilde" k="10" />
+<hkern g1="Oslash" g2="odieresis" k="10" />
+<hkern g1="Oslash" g2="oslash" k="10" />
+<hkern g1="Oslash" g2="oe" k="10" />
+<hkern g1="Oslash" g2="quoteleft" k="31" />
+<hkern g1="Oslash" g2="quoteright" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="45" />
+<hkern g1="Oslash" g2="quotedblleft" k="31" />
+<hkern g1="Oslash" g2="quotedblright" k="20" />
+<hkern g1="Oslash" g2="quotedblbase" k="45" />
+<hkern g1="Ugrave" g2="comma" k="80" />
+<hkern g1="Ugrave" g2="hyphen" k="18" />
+<hkern g1="Ugrave" g2="period" k="59" />
+<hkern g1="Ugrave" g2="slash" k="133" />
+<hkern g1="Ugrave" g2="semicolon" k="16" />
+<hkern g1="Ugrave" g2="A" k="50" />
+<hkern g1="Ugrave" g2="C" k="12" />
+<hkern g1="Ugrave" g2="G" k="20" />
+<hkern g1="Ugrave" g2="O" k="12" />
+<hkern g1="Ugrave" g2="Q" k="12" />
+<hkern g1="Ugrave" g2="a" k="50" />
+<hkern g1="Ugrave" g2="c" k="40" />
+<hkern g1="Ugrave" g2="d" k="40" />
+<hkern g1="Ugrave" g2="e" k="40" />
+<hkern g1="Ugrave" g2="f" k="20" />
+<hkern g1="Ugrave" g2="g" k="57" />
+<hkern g1="Ugrave" g2="q" k="30" />
+<hkern g1="Ugrave" g2="s" k="15" />
+<hkern g1="Ugrave" g2="t" k="10" />
+<hkern g1="Ugrave" g2="v" k="10" />
+<hkern g1="Ugrave" g2="w" k="10" />
+<hkern g1="Ugrave" g2="x" k="10" />
+<hkern g1="Ugrave" g2="y" k="10" />
+<hkern g1="Ugrave" g2="z" k="45" />
+<hkern g1="Ugrave" g2="uni00AD" k="18" />
+<hkern g1="Ugrave" g2="Agrave" k="50" />
+<hkern g1="Ugrave" g2="Aacute" k="50" />
+<hkern g1="Ugrave" g2="Acircumflex" k="50" />
+<hkern g1="Ugrave" g2="Atilde" k="50" />
+<hkern g1="Ugrave" g2="Adieresis" k="50" />
+<hkern g1="Ugrave" g2="Aring" k="50" />
+<hkern g1="Ugrave" g2="AE" k="80" />
+<hkern g1="Ugrave" g2="Ccedilla" k="12" />
+<hkern g1="Ugrave" g2="Ograve" k="12" />
+<hkern g1="Ugrave" g2="Oacute" k="12" />
+<hkern g1="Ugrave" g2="Ocircumflex" k="12" />
+<hkern g1="Ugrave" g2="Otilde" k="12" />
+<hkern g1="Ugrave" g2="Odieresis" k="12" />
+<hkern g1="Ugrave" g2="Oslash" k="12" />
+<hkern g1="Ugrave" g2="germandbls" k="20" />
+<hkern g1="Ugrave" g2="agrave" k="50" />
+<hkern g1="Ugrave" g2="aacute" k="50" />
+<hkern g1="Ugrave" g2="acircumflex" k="50" />
+<hkern g1="Ugrave" g2="atilde" k="50" />
+<hkern g1="Ugrave" g2="adieresis" k="50" />
+<hkern g1="Ugrave" g2="aring" k="50" />
+<hkern g1="Ugrave" g2="ae" k="50" />
+<hkern g1="Ugrave" g2="eth" k="47" />
+<hkern g1="Ugrave" g2="yacute" k="10" />
+<hkern g1="Ugrave" g2="ydieresis" k="10" />
+<hkern g1="Ugrave" g2="OE" k="12" />
+<hkern g1="Ugrave" g2="endash" k="18" />
+<hkern g1="Ugrave" g2="emdash" k="18" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="59" />
+<hkern g1="Ugrave" g2="quotedblbase" k="59" />
+<hkern g1="Uacute" g2="comma" k="80" />
+<hkern g1="Uacute" g2="hyphen" k="18" />
+<hkern g1="Uacute" g2="period" k="59" />
+<hkern g1="Uacute" g2="slash" k="133" />
+<hkern g1="Uacute" g2="semicolon" k="16" />
+<hkern g1="Uacute" g2="A" k="50" />
+<hkern g1="Uacute" g2="C" k="12" />
+<hkern g1="Uacute" g2="G" k="20" />
+<hkern g1="Uacute" g2="O" k="12" />
+<hkern g1="Uacute" g2="Q" k="12" />
+<hkern g1="Uacute" g2="a" k="50" />
+<hkern g1="Uacute" g2="c" k="40" />
+<hkern g1="Uacute" g2="d" k="40" />
+<hkern g1="Uacute" g2="e" k="40" />
+<hkern g1="Uacute" g2="f" k="20" />
+<hkern g1="Uacute" g2="g" k="57" />
+<hkern g1="Uacute" g2="q" k="30" />
+<hkern g1="Uacute" g2="s" k="15" />
+<hkern g1="Uacute" g2="t" k="10" />
+<hkern g1="Uacute" g2="v" k="10" />
+<hkern g1="Uacute" g2="w" k="10" />
+<hkern g1="Uacute" g2="x" k="10" />
+<hkern g1="Uacute" g2="y" k="10" />
+<hkern g1="Uacute" g2="z" k="45" />
+<hkern g1="Uacute" g2="uni00AD" k="18" />
+<hkern g1="Uacute" g2="Agrave" k="50" />
+<hkern g1="Uacute" g2="Aacute" k="50" />
+<hkern g1="Uacute" g2="Acircumflex" k="50" />
+<hkern g1="Uacute" g2="Atilde" k="50" />
+<hkern g1="Uacute" g2="Adieresis" k="50" />
+<hkern g1="Uacute" g2="Aring" k="50" />
+<hkern g1="Uacute" g2="AE" k="80" />
+<hkern g1="Uacute" g2="Ccedilla" k="12" />
+<hkern g1="Uacute" g2="Ograve" k="12" />
+<hkern g1="Uacute" g2="Oacute" k="12" />
+<hkern g1="Uacute" g2="Ocircumflex" k="12" />
+<hkern g1="Uacute" g2="Otilde" k="12" />
+<hkern g1="Uacute" g2="Odieresis" k="12" />
+<hkern g1="Uacute" g2="Oslash" k="12" />
+<hkern g1="Uacute" g2="germandbls" k="20" />
+<hkern g1="Uacute" g2="agrave" k="50" />
+<hkern g1="Uacute" g2="aacute" k="50" />
+<hkern g1="Uacute" g2="acircumflex" k="50" />
+<hkern g1="Uacute" g2="atilde" k="50" />
+<hkern g1="Uacute" g2="adieresis" k="50" />
+<hkern g1="Uacute" g2="aring" k="50" />
+<hkern g1="Uacute" g2="ae" k="50" />
+<hkern g1="Uacute" g2="eth" k="47" />
+<hkern g1="Uacute" g2="yacute" k="10" />
+<hkern g1="Uacute" g2="ydieresis" k="10" />
+<hkern g1="Uacute" g2="OE" k="12" />
+<hkern g1="Uacute" g2="endash" k="18" />
+<hkern g1="Uacute" g2="emdash" k="18" />
+<hkern g1="Uacute" g2="quotesinglbase" k="59" />
+<hkern g1="Uacute" g2="quotedblbase" k="59" />
+<hkern g1="Ucircumflex" g2="comma" k="80" />
+<hkern g1="Ucircumflex" g2="hyphen" k="18" />
+<hkern g1="Ucircumflex" g2="period" k="59" />
+<hkern g1="Ucircumflex" g2="slash" k="133" />
+<hkern g1="Ucircumflex" g2="semicolon" k="16" />
+<hkern g1="Ucircumflex" g2="A" k="50" />
+<hkern g1="Ucircumflex" g2="C" k="12" />
+<hkern g1="Ucircumflex" g2="G" k="20" />
+<hkern g1="Ucircumflex" g2="O" k="12" />
+<hkern g1="Ucircumflex" g2="Q" k="12" />
+<hkern g1="Ucircumflex" g2="a" k="50" />
+<hkern g1="Ucircumflex" g2="c" k="40" />
+<hkern g1="Ucircumflex" g2="d" k="40" />
+<hkern g1="Ucircumflex" g2="e" k="40" />
+<hkern g1="Ucircumflex" g2="f" k="20" />
+<hkern g1="Ucircumflex" g2="g" k="57" />
+<hkern g1="Ucircumflex" g2="q" k="30" />
+<hkern g1="Ucircumflex" g2="s" k="15" />
+<hkern g1="Ucircumflex" g2="t" k="10" />
+<hkern g1="Ucircumflex" g2="v" k="10" />
+<hkern g1="Ucircumflex" g2="w" k="10" />
+<hkern g1="Ucircumflex" g2="x" k="10" />
+<hkern g1="Ucircumflex" g2="y" k="10" />
+<hkern g1="Ucircumflex" g2="z" k="45" />
+<hkern g1="Ucircumflex" g2="uni00AD" k="18" />
+<hkern g1="Ucircumflex" g2="Agrave" k="50" />
+<hkern g1="Ucircumflex" g2="Aacute" k="50" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="50" />
+<hkern g1="Ucircumflex" g2="Atilde" k="50" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="50" />
+<hkern g1="Ucircumflex" g2="Aring" k="50" />
+<hkern g1="Ucircumflex" g2="AE" k="80" />
+<hkern g1="Ucircumflex" g2="Ccedilla" k="12" />
+<hkern g1="Ucircumflex" g2="Ograve" k="12" />
+<hkern g1="Ucircumflex" g2="Oacute" k="12" />
+<hkern g1="Ucircumflex" g2="Ocircumflex" k="12" />
+<hkern g1="Ucircumflex" g2="Otilde" k="12" />
+<hkern g1="Ucircumflex" g2="Odieresis" k="12" />
+<hkern g1="Ucircumflex" g2="Oslash" k="12" />
+<hkern g1="Ucircumflex" g2="germandbls" k="20" />
+<hkern g1="Ucircumflex" g2="agrave" k="50" />
+<hkern g1="Ucircumflex" g2="aacute" k="50" />
+<hkern g1="Ucircumflex" g2="acircumflex" k="50" />
+<hkern g1="Ucircumflex" g2="atilde" k="50" />
+<hkern g1="Ucircumflex" g2="adieresis" k="50" />
+<hkern g1="Ucircumflex" g2="aring" k="50" />
+<hkern g1="Ucircumflex" g2="ae" k="50" />
+<hkern g1="Ucircumflex" g2="eth" k="47" />
+<hkern g1="Ucircumflex" g2="yacute" k="10" />
+<hkern g1="Ucircumflex" g2="ydieresis" k="10" />
+<hkern g1="Ucircumflex" g2="OE" k="12" />
+<hkern g1="Ucircumflex" g2="endash" k="18" />
+<hkern g1="Ucircumflex" g2="emdash" k="18" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="59" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="59" />
+<hkern g1="Udieresis" g2="comma" k="80" />
+<hkern g1="Udieresis" g2="hyphen" k="18" />
+<hkern g1="Udieresis" g2="period" k="59" />
+<hkern g1="Udieresis" g2="slash" k="133" />
+<hkern g1="Udieresis" g2="semicolon" k="16" />
+<hkern g1="Udieresis" g2="A" k="50" />
+<hkern g1="Udieresis" g2="C" k="12" />
+<hkern g1="Udieresis" g2="G" k="20" />
+<hkern g1="Udieresis" g2="O" k="12" />
+<hkern g1="Udieresis" g2="Q" k="12" />
+<hkern g1="Udieresis" g2="a" k="50" />
+<hkern g1="Udieresis" g2="c" k="40" />
+<hkern g1="Udieresis" g2="d" k="40" />
+<hkern g1="Udieresis" g2="e" k="40" />
+<hkern g1="Udieresis" g2="f" k="20" />
+<hkern g1="Udieresis" g2="g" k="57" />
+<hkern g1="Udieresis" g2="q" k="30" />
+<hkern g1="Udieresis" g2="s" k="15" />
+<hkern g1="Udieresis" g2="t" k="10" />
+<hkern g1="Udieresis" g2="v" k="10" />
+<hkern g1="Udieresis" g2="w" k="10" />
+<hkern g1="Udieresis" g2="x" k="10" />
+<hkern g1="Udieresis" g2="y" k="10" />
+<hkern g1="Udieresis" g2="z" k="45" />
+<hkern g1="Udieresis" g2="uni00AD" k="18" />
+<hkern g1="Udieresis" g2="Agrave" k="50" />
+<hkern g1="Udieresis" g2="Aacute" k="50" />
+<hkern g1="Udieresis" g2="Acircumflex" k="50" />
+<hkern g1="Udieresis" g2="Atilde" k="50" />
+<hkern g1="Udieresis" g2="Adieresis" k="50" />
+<hkern g1="Udieresis" g2="Aring" k="50" />
+<hkern g1="Udieresis" g2="AE" k="80" />
+<hkern g1="Udieresis" g2="Ccedilla" k="12" />
+<hkern g1="Udieresis" g2="Ograve" k="12" />
+<hkern g1="Udieresis" g2="Oacute" k="12" />
+<hkern g1="Udieresis" g2="Ocircumflex" k="12" />
+<hkern g1="Udieresis" g2="Otilde" k="12" />
+<hkern g1="Udieresis" g2="Odieresis" k="12" />
+<hkern g1="Udieresis" g2="Oslash" k="12" />
+<hkern g1="Udieresis" g2="germandbls" k="20" />
+<hkern g1="Udieresis" g2="agrave" k="50" />
+<hkern g1="Udieresis" g2="aacute" k="50" />
+<hkern g1="Udieresis" g2="acircumflex" k="50" />
+<hkern g1="Udieresis" g2="atilde" k="50" />
+<hkern g1="Udieresis" g2="adieresis" k="50" />
+<hkern g1="Udieresis" g2="aring" k="50" />
+<hkern g1="Udieresis" g2="ae" k="50" />
+<hkern g1="Udieresis" g2="eth" k="47" />
+<hkern g1="Udieresis" g2="yacute" k="10" />
+<hkern g1="Udieresis" g2="ydieresis" k="10" />
+<hkern g1="Udieresis" g2="OE" k="12" />
+<hkern g1="Udieresis" g2="endash" k="18" />
+<hkern g1="Udieresis" g2="emdash" k="18" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="59" />
+<hkern g1="Udieresis" g2="quotedblbase" k="59" />
+<hkern g1="Yacute" g2="ampersand" k="29" />
+<hkern g1="Yacute" g2="asterisk" k="23" />
+<hkern g1="Yacute" g2="comma" k="96" />
+<hkern g1="Yacute" g2="hyphen" k="115" />
+<hkern g1="Yacute" g2="period" k="110" />
+<hkern g1="Yacute" g2="slash" k="143" />
+<hkern g1="Yacute" g2="zero" k="23" />
+<hkern g1="Yacute" g2="four" k="80" />
+<hkern g1="Yacute" g2="six" k="27" />
+<hkern g1="Yacute" g2="seven" k="-53" />
+<hkern g1="Yacute" g2="colon" k="55" />
+<hkern g1="Yacute" g2="semicolon" k="57" />
+<hkern g1="Yacute" g2="at" k="72" />
+<hkern g1="Yacute" g2="A" k="70" />
+<hkern g1="Yacute" g2="C" k="30" />
+<hkern g1="Yacute" g2="G" k="30" />
+<hkern g1="Yacute" g2="O" k="40" />
+<hkern g1="Yacute" g2="Q" k="30" />
+<hkern g1="Yacute" g2="T" k="-45" />
+<hkern g1="Yacute" g2="V" k="-110" />
+<hkern g1="Yacute" g2="W" k="-80" />
+<hkern g1="Yacute" g2="X" k="-55" />
+<hkern g1="Yacute" g2="Y" k="-120" />
+<hkern g1="Yacute" g2="backslash" k="-20" />
+<hkern g1="Yacute" g2="bracketright" k="-70" />
+<hkern g1="Yacute" g2="a" k="100" />
+<hkern g1="Yacute" g2="b" k="-63" />
+<hkern g1="Yacute" g2="c" k="100" />
+<hkern g1="Yacute" g2="d" k="100" />
+<hkern g1="Yacute" g2="e" k="100" />
+<hkern g1="Yacute" g2="f" k="33" />
+<hkern g1="Yacute" g2="g" k="120" />
+<hkern g1="Yacute" g2="h" k="-45" />
+<hkern g1="Yacute" g2="i" k="12" />
+<hkern g1="Yacute" g2="k" k="-45" />
+<hkern g1="Yacute" g2="l" k="-31" />
+<hkern g1="Yacute" g2="m" k="100" />
+<hkern g1="Yacute" g2="n" k="100" />
+<hkern g1="Yacute" g2="o" k="144" />
+<hkern g1="Yacute" g2="p" k="100" />
+<hkern g1="Yacute" g2="q" k="100" />
+<hkern g1="Yacute" g2="r" k="100" />
+<hkern g1="Yacute" g2="s" k="135" />
+<hkern g1="Yacute" g2="t" k="60" />
+<hkern g1="Yacute" g2="u" k="100" />
+<hkern g1="Yacute" g2="v" k="80" />
+<hkern g1="Yacute" g2="w" k="80" />
+<hkern g1="Yacute" g2="x" k="100" />
+<hkern g1="Yacute" g2="y" k="80" />
+<hkern g1="Yacute" g2="z" k="100" />
+<hkern g1="Yacute" g2="braceright" k="-27" />
+<hkern g1="Yacute" g2="guillemotleft" k="106" />
+<hkern g1="Yacute" g2="uni00AD" k="115" />
+<hkern g1="Yacute" g2="registered" k="33" />
+<hkern g1="Yacute" g2="guillemotright" k="43" />
+<hkern g1="Yacute" g2="Agrave" k="70" />
+<hkern g1="Yacute" g2="Aacute" k="70" />
+<hkern g1="Yacute" g2="Acircumflex" k="70" />
+<hkern g1="Yacute" g2="Atilde" k="70" />
+<hkern g1="Yacute" g2="Adieresis" k="70" />
+<hkern g1="Yacute" g2="Aring" k="70" />
+<hkern g1="Yacute" g2="AE" k="111" />
+<hkern g1="Yacute" g2="Ccedilla" k="40" />
+<hkern g1="Yacute" g2="Ograve" k="40" />
+<hkern g1="Yacute" g2="Oacute" k="40" />
+<hkern g1="Yacute" g2="Ocircumflex" k="40" />
+<hkern g1="Yacute" g2="Otilde" k="40" />
+<hkern g1="Yacute" g2="Odieresis" k="40" />
+<hkern g1="Yacute" g2="Oslash" k="40" />
+<hkern g1="Yacute" g2="Yacute" k="-120" />
+<hkern g1="Yacute" g2="germandbls" k="33" />
+<hkern g1="Yacute" g2="agrave" k="100" />
+<hkern g1="Yacute" g2="aacute" k="100" />
+<hkern g1="Yacute" g2="acircumflex" k="100" />
+<hkern g1="Yacute" g2="atilde" k="100" />
+<hkern g1="Yacute" g2="adieresis" k="145" />
+<hkern g1="Yacute" g2="aring" k="100" />
+<hkern g1="Yacute" g2="ae" k="100" />
+<hkern g1="Yacute" g2="ccedilla" k="144" />
+<hkern g1="Yacute" g2="egrave" k="144" />
+<hkern g1="Yacute" g2="eacute" k="144" />
+<hkern g1="Yacute" g2="ecircumflex" k="144" />
+<hkern g1="Yacute" g2="edieresis" k="144" />
+<hkern g1="Yacute" g2="igrave" k="-57" />
+<hkern g1="Yacute" g2="iacute" k="12" />
+<hkern g1="Yacute" g2="icircumflex" k="12" />
+<hkern g1="Yacute" g2="idieresis" k="-43" />
+<hkern g1="Yacute" g2="eth" k="102" />
+<hkern g1="Yacute" g2="ntilde" k="100" />
+<hkern g1="Yacute" g2="ograve" k="144" />
+<hkern g1="Yacute" g2="oacute" k="144" />
+<hkern g1="Yacute" g2="ocircumflex" k="144" />
+<hkern g1="Yacute" g2="otilde" k="144" />
+<hkern g1="Yacute" g2="odieresis" k="144" />
+<hkern g1="Yacute" g2="oslash" k="144" />
+<hkern g1="Yacute" g2="ugrave" k="100" />
+<hkern g1="Yacute" g2="uacute" k="100" />
+<hkern g1="Yacute" g2="ucircumflex" k="100" />
+<hkern g1="Yacute" g2="udieresis" k="100" />
+<hkern g1="Yacute" g2="yacute" k="80" />
+<hkern g1="Yacute" g2="thorn" k="-63" />
+<hkern g1="Yacute" g2="ydieresis" k="80" />
+<hkern g1="Yacute" g2="dotlessi" k="12" />
+<hkern g1="Yacute" g2="OE" k="40" />
+<hkern g1="Yacute" g2="oe" k="144" />
+<hkern g1="Yacute" g2="endash" k="115" />
+<hkern g1="Yacute" g2="emdash" k="115" />
+<hkern g1="Yacute" g2="quoteleft" k="-100" />
+<hkern g1="Yacute" g2="quotesinglbase" k="110" />
+<hkern g1="Yacute" g2="quotedblleft" k="-100" />
+<hkern g1="Yacute" g2="quotedblbase" k="110" />
+<hkern g1="Yacute" g2="guilsinglleft" k="106" />
+<hkern g1="Yacute" g2="guilsinglright" k="43" />
+<hkern g1="Thorn" g2="parenright" k="45" />
+<hkern g1="Thorn" g2="comma" k="129" />
+<hkern g1="Thorn" g2="period" k="129" />
+<hkern g1="Thorn" g2="slash" k="137" />
+<hkern g1="Thorn" g2="A" k="51" />
+<hkern g1="Thorn" g2="B" k="20" />
+<hkern g1="Thorn" g2="D" k="20" />
+<hkern g1="Thorn" g2="E" k="20" />
+<hkern g1="Thorn" g2="F" k="20" />
+<hkern g1="Thorn" g2="H" k="20" />
+<hkern g1="Thorn" g2="I" k="20" />
+<hkern g1="Thorn" g2="J" k="98" />
+<hkern g1="Thorn" g2="K" k="20" />
+<hkern g1="Thorn" g2="L" k="20" />
+<hkern g1="Thorn" g2="M" k="20" />
+<hkern g1="Thorn" g2="N" k="20" />
+<hkern g1="Thorn" g2="P" k="20" />
+<hkern g1="Thorn" g2="R" k="20" />
+<hkern g1="Thorn" g2="V" k="25" />
+<hkern g1="Thorn" g2="W" k="35" />
+<hkern g1="Thorn" g2="X" k="135" />
+<hkern g1="Thorn" g2="Y" k="61" />
+<hkern g1="Thorn" g2="backslash" k="37" />
+<hkern g1="Thorn" g2="bracketright" k="74" />
+<hkern g1="Thorn" g2="h" k="18" />
+<hkern g1="Thorn" g2="k" k="18" />
+<hkern g1="Thorn" g2="l" k="16" />
+<hkern g1="Thorn" g2="braceright" k="37" />
+<hkern g1="Thorn" g2="Agrave" k="51" />
+<hkern g1="Thorn" g2="Aacute" k="51" />
+<hkern g1="Thorn" g2="Acircumflex" k="51" />
+<hkern g1="Thorn" g2="Atilde" k="51" />
+<hkern g1="Thorn" g2="Adieresis" k="51" />
+<hkern g1="Thorn" g2="Aring" k="51" />
+<hkern g1="Thorn" g2="AE" k="190" />
+<hkern g1="Thorn" g2="Egrave" k="20" />
+<hkern g1="Thorn" g2="Eacute" k="20" />
+<hkern g1="Thorn" g2="Ecircumflex" k="20" />
+<hkern g1="Thorn" g2="Edieresis" k="20" />
+<hkern g1="Thorn" g2="Igrave" k="20" />
+<hkern g1="Thorn" g2="Iacute" k="20" />
+<hkern g1="Thorn" g2="Icircumflex" k="20" />
+<hkern g1="Thorn" g2="Idieresis" k="20" />
+<hkern g1="Thorn" g2="Eth" k="20" />
+<hkern g1="Thorn" g2="Ntilde" k="20" />
+<hkern g1="Thorn" g2="Yacute" k="61" />
+<hkern g1="Thorn" g2="Thorn" k="20" />
+<hkern g1="Thorn" g2="quoteleft" k="59" />
+<hkern g1="Thorn" g2="quoteright" k="45" />
+<hkern g1="Thorn" g2="quotesinglbase" k="129" />
+<hkern g1="Thorn" g2="quotedblleft" k="59" />
+<hkern g1="Thorn" g2="quotedblright" k="45" />
+<hkern g1="Thorn" g2="quotedblbase" k="129" />
+<hkern g1="germandbls" g2="parenright" k="39" />
+<hkern g1="germandbls" g2="hyphen" k="29" />
+<hkern g1="germandbls" g2="slash" k="57" />
+<hkern g1="germandbls" g2="backslash" k="35" />
+<hkern g1="germandbls" g2="bracketright" k="51" />
+<hkern g1="germandbls" g2="t" k="8" />
+<hkern g1="germandbls" g2="u" k="8" />
+<hkern g1="germandbls" g2="v" k="20" />
+<hkern g1="germandbls" g2="w" k="23" />
+<hkern g1="germandbls" g2="y" k="25" />
+<hkern g1="germandbls" g2="braceright" k="29" />
+<hkern g1="germandbls" g2="uni00AD" k="29" />
+<hkern g1="germandbls" g2="ugrave" k="8" />
+<hkern g1="germandbls" g2="uacute" k="8" />
+<hkern g1="germandbls" g2="ucircumflex" k="8" />
+<hkern g1="germandbls" g2="udieresis" k="8" />
+<hkern g1="germandbls" g2="yacute" k="25" />
+<hkern g1="germandbls" g2="ydieresis" k="25" />
+<hkern g1="germandbls" g2="endash" k="29" />
+<hkern g1="germandbls" g2="emdash" k="29" />
+<hkern g1="germandbls" g2="quoteleft" k="16" />
+<hkern g1="germandbls" g2="quotedblleft" k="16" />
+<hkern g1="agrave" g2="quotedbl" k="23" />
+<hkern g1="agrave" g2="quotesingle" k="23" />
+<hkern g1="agrave" g2="parenright" k="47" />
+<hkern g1="agrave" g2="slash" k="37" />
+<hkern g1="agrave" g2="question" k="35" />
+<hkern g1="agrave" g2="B" k="10" />
+<hkern g1="agrave" g2="C" k="23" />
+<hkern g1="agrave" g2="D" k="10" />
+<hkern g1="agrave" g2="E" k="10" />
+<hkern g1="agrave" g2="F" k="10" />
+<hkern g1="agrave" g2="G" k="15" />
+<hkern g1="agrave" g2="H" k="10" />
+<hkern g1="agrave" g2="I" k="10" />
+<hkern g1="agrave" g2="J" k="-40" />
+<hkern g1="agrave" g2="K" k="10" />
+<hkern g1="agrave" g2="L" k="10" />
+<hkern g1="agrave" g2="N" k="10" />
+<hkern g1="agrave" g2="O" k="23" />
+<hkern g1="agrave" g2="P" k="10" />
+<hkern g1="agrave" g2="Q" k="23" />
+<hkern g1="agrave" g2="R" k="10" />
+<hkern g1="agrave" g2="T" k="84" />
+<hkern g1="agrave" g2="U" k="55" />
+<hkern g1="agrave" g2="V" k="100" />
+<hkern g1="agrave" g2="W" k="100" />
+<hkern g1="agrave" g2="Y" k="125" />
+<hkern g1="agrave" g2="backslash" k="106" />
+<hkern g1="agrave" g2="bracketright" k="92" />
+<hkern g1="agrave" g2="q" k="15" />
+<hkern g1="agrave" g2="t" k="15" />
+<hkern g1="agrave" g2="u" k="12" />
+<hkern g1="agrave" g2="v" k="25" />
+<hkern g1="agrave" g2="w" k="30" />
+<hkern g1="agrave" g2="y" k="20" />
+<hkern g1="agrave" g2="braceright" k="43" />
+<hkern g1="agrave" g2="Ccedilla" k="23" />
+<hkern g1="agrave" g2="Egrave" k="10" />
+<hkern g1="agrave" g2="Eacute" k="10" />
+<hkern g1="agrave" g2="Ecircumflex" k="10" />
+<hkern g1="agrave" g2="Edieresis" k="10" />
+<hkern g1="agrave" g2="Igrave" k="10" />
+<hkern g1="agrave" g2="Iacute" k="10" />
+<hkern g1="agrave" g2="Icircumflex" k="10" />
+<hkern g1="agrave" g2="Idieresis" k="10" />
+<hkern g1="agrave" g2="Eth" k="10" />
+<hkern g1="agrave" g2="Ntilde" k="10" />
+<hkern g1="agrave" g2="Ograve" k="23" />
+<hkern g1="agrave" g2="Oacute" k="23" />
+<hkern g1="agrave" g2="Ocircumflex" k="23" />
+<hkern g1="agrave" g2="Otilde" k="23" />
+<hkern g1="agrave" g2="Odieresis" k="23" />
+<hkern g1="agrave" g2="Oslash" k="23" />
+<hkern g1="agrave" g2="Ugrave" k="55" />
+<hkern g1="agrave" g2="Uacute" k="55" />
+<hkern g1="agrave" g2="Ucircumflex" k="55" />
+<hkern g1="agrave" g2="Udieresis" k="55" />
+<hkern g1="agrave" g2="Yacute" k="125" />
+<hkern g1="agrave" g2="Thorn" k="10" />
+<hkern g1="agrave" g2="ugrave" k="12" />
+<hkern g1="agrave" g2="uacute" k="12" />
+<hkern g1="agrave" g2="ucircumflex" k="12" />
+<hkern g1="agrave" g2="udieresis" k="12" />
+<hkern g1="agrave" g2="yacute" k="20" />
+<hkern g1="agrave" g2="ydieresis" k="20" />
+<hkern g1="agrave" g2="OE" k="23" />
+<hkern g1="agrave" g2="quoteleft" k="55" />
+<hkern g1="agrave" g2="quoteright" k="43" />
+<hkern g1="agrave" g2="quotedblleft" k="55" />
+<hkern g1="agrave" g2="quotedblright" k="43" />
+<hkern g1="aacute" g2="quotedbl" k="23" />
+<hkern g1="aacute" g2="quotesingle" k="23" />
+<hkern g1="aacute" g2="parenright" k="47" />
+<hkern g1="aacute" g2="slash" k="37" />
+<hkern g1="aacute" g2="question" k="35" />
+<hkern g1="aacute" g2="B" k="10" />
+<hkern g1="aacute" g2="C" k="23" />
+<hkern g1="aacute" g2="D" k="10" />
+<hkern g1="aacute" g2="E" k="10" />
+<hkern g1="aacute" g2="F" k="10" />
+<hkern g1="aacute" g2="G" k="15" />
+<hkern g1="aacute" g2="H" k="10" />
+<hkern g1="aacute" g2="I" k="10" />
+<hkern g1="aacute" g2="J" k="-40" />
+<hkern g1="aacute" g2="K" k="10" />
+<hkern g1="aacute" g2="L" k="10" />
+<hkern g1="aacute" g2="N" k="10" />
+<hkern g1="aacute" g2="O" k="23" />
+<hkern g1="aacute" g2="P" k="10" />
+<hkern g1="aacute" g2="Q" k="23" />
+<hkern g1="aacute" g2="R" k="10" />
+<hkern g1="aacute" g2="T" k="84" />
+<hkern g1="aacute" g2="U" k="55" />
+<hkern g1="aacute" g2="V" k="100" />
+<hkern g1="aacute" g2="W" k="100" />
+<hkern g1="aacute" g2="Y" k="125" />
+<hkern g1="aacute" g2="backslash" k="106" />
+<hkern g1="aacute" g2="bracketright" k="92" />
+<hkern g1="aacute" g2="q" k="15" />
+<hkern g1="aacute" g2="t" k="15" />
+<hkern g1="aacute" g2="u" k="12" />
+<hkern g1="aacute" g2="v" k="25" />
+<hkern g1="aacute" g2="w" k="30" />
+<hkern g1="aacute" g2="y" k="20" />
+<hkern g1="aacute" g2="braceright" k="43" />
+<hkern g1="aacute" g2="Ccedilla" k="23" />
+<hkern g1="aacute" g2="Egrave" k="10" />
+<hkern g1="aacute" g2="Eacute" k="10" />
+<hkern g1="aacute" g2="Ecircumflex" k="10" />
+<hkern g1="aacute" g2="Edieresis" k="10" />
+<hkern g1="aacute" g2="Igrave" k="10" />
+<hkern g1="aacute" g2="Iacute" k="10" />
+<hkern g1="aacute" g2="Icircumflex" k="10" />
+<hkern g1="aacute" g2="Idieresis" k="10" />
+<hkern g1="aacute" g2="Eth" k="10" />
+<hkern g1="aacute" g2="Ntilde" k="10" />
+<hkern g1="aacute" g2="Ograve" k="23" />
+<hkern g1="aacute" g2="Oacute" k="23" />
+<hkern g1="aacute" g2="Ocircumflex" k="23" />
+<hkern g1="aacute" g2="Otilde" k="23" />
+<hkern g1="aacute" g2="Odieresis" k="23" />
+<hkern g1="aacute" g2="Oslash" k="23" />
+<hkern g1="aacute" g2="Ugrave" k="55" />
+<hkern g1="aacute" g2="Uacute" k="55" />
+<hkern g1="aacute" g2="Ucircumflex" k="55" />
+<hkern g1="aacute" g2="Udieresis" k="55" />
+<hkern g1="aacute" g2="Yacute" k="125" />
+<hkern g1="aacute" g2="Thorn" k="10" />
+<hkern g1="aacute" g2="ugrave" k="12" />
+<hkern g1="aacute" g2="uacute" k="12" />
+<hkern g1="aacute" g2="ucircumflex" k="12" />
+<hkern g1="aacute" g2="udieresis" k="12" />
+<hkern g1="aacute" g2="yacute" k="20" />
+<hkern g1="aacute" g2="ydieresis" k="20" />
+<hkern g1="aacute" g2="OE" k="23" />
+<hkern g1="aacute" g2="quoteleft" k="55" />
+<hkern g1="aacute" g2="quoteright" k="43" />
+<hkern g1="aacute" g2="quotedblleft" k="55" />
+<hkern g1="aacute" g2="quotedblright" k="43" />
+<hkern g1="acircumflex" g2="quotedbl" k="23" />
+<hkern g1="acircumflex" g2="quotesingle" k="23" />
+<hkern g1="acircumflex" g2="parenright" k="47" />
+<hkern g1="acircumflex" g2="slash" k="37" />
+<hkern g1="acircumflex" g2="question" k="35" />
+<hkern g1="acircumflex" g2="B" k="10" />
+<hkern g1="acircumflex" g2="C" k="23" />
+<hkern g1="acircumflex" g2="D" k="10" />
+<hkern g1="acircumflex" g2="E" k="10" />
+<hkern g1="acircumflex" g2="F" k="10" />
+<hkern g1="acircumflex" g2="G" k="15" />
+<hkern g1="acircumflex" g2="H" k="10" />
+<hkern g1="acircumflex" g2="I" k="10" />
+<hkern g1="acircumflex" g2="J" k="-40" />
+<hkern g1="acircumflex" g2="K" k="10" />
+<hkern g1="acircumflex" g2="L" k="10" />
+<hkern g1="acircumflex" g2="N" k="10" />
+<hkern g1="acircumflex" g2="O" k="23" />
+<hkern g1="acircumflex" g2="P" k="10" />
+<hkern g1="acircumflex" g2="Q" k="23" />
+<hkern g1="acircumflex" g2="R" k="10" />
+<hkern g1="acircumflex" g2="T" k="84" />
+<hkern g1="acircumflex" g2="U" k="55" />
+<hkern g1="acircumflex" g2="V" k="100" />
+<hkern g1="acircumflex" g2="W" k="100" />
+<hkern g1="acircumflex" g2="Y" k="125" />
+<hkern g1="acircumflex" g2="backslash" k="106" />
+<hkern g1="acircumflex" g2="bracketright" k="92" />
+<hkern g1="acircumflex" g2="q" k="15" />
+<hkern g1="acircumflex" g2="t" k="15" />
+<hkern g1="acircumflex" g2="u" k="12" />
+<hkern g1="acircumflex" g2="v" k="25" />
+<hkern g1="acircumflex" g2="w" k="30" />
+<hkern g1="acircumflex" g2="y" k="20" />
+<hkern g1="acircumflex" g2="braceright" k="43" />
+<hkern g1="acircumflex" g2="Ccedilla" k="23" />
+<hkern g1="acircumflex" g2="Egrave" k="10" />
+<hkern g1="acircumflex" g2="Eacute" k="10" />
+<hkern g1="acircumflex" g2="Ecircumflex" k="10" />
+<hkern g1="acircumflex" g2="Edieresis" k="10" />
+<hkern g1="acircumflex" g2="Igrave" k="10" />
+<hkern g1="acircumflex" g2="Iacute" k="10" />
+<hkern g1="acircumflex" g2="Icircumflex" k="10" />
+<hkern g1="acircumflex" g2="Idieresis" k="10" />
+<hkern g1="acircumflex" g2="Eth" k="10" />
+<hkern g1="acircumflex" g2="Ntilde" k="10" />
+<hkern g1="acircumflex" g2="Ograve" k="23" />
+<hkern g1="acircumflex" g2="Oacute" k="23" />
+<hkern g1="acircumflex" g2="Ocircumflex" k="23" />
+<hkern g1="acircumflex" g2="Otilde" k="23" />
+<hkern g1="acircumflex" g2="Odieresis" k="23" />
+<hkern g1="acircumflex" g2="Oslash" k="23" />
+<hkern g1="acircumflex" g2="Ugrave" k="55" />
+<hkern g1="acircumflex" g2="Uacute" k="55" />
+<hkern g1="acircumflex" g2="Ucircumflex" k="55" />
+<hkern g1="acircumflex" g2="Udieresis" k="55" />
+<hkern g1="acircumflex" g2="Yacute" k="125" />
+<hkern g1="acircumflex" g2="Thorn" k="10" />
+<hkern g1="acircumflex" g2="ugrave" k="12" />
+<hkern g1="acircumflex" g2="uacute" k="12" />
+<hkern g1="acircumflex" g2="ucircumflex" k="12" />
+<hkern g1="acircumflex" g2="udieresis" k="12" />
+<hkern g1="acircumflex" g2="yacute" k="20" />
+<hkern g1="acircumflex" g2="ydieresis" k="20" />
+<hkern g1="acircumflex" g2="OE" k="23" />
+<hkern g1="acircumflex" g2="quoteleft" k="55" />
+<hkern g1="acircumflex" g2="quoteright" k="43" />
+<hkern g1="acircumflex" g2="quotedblleft" k="55" />
+<hkern g1="acircumflex" g2="quotedblright" k="43" />
+<hkern g1="atilde" g2="quotedbl" k="23" />
+<hkern g1="atilde" g2="quotesingle" k="23" />
+<hkern g1="atilde" g2="parenright" k="47" />
+<hkern g1="atilde" g2="slash" k="37" />
+<hkern g1="atilde" g2="question" k="35" />
+<hkern g1="atilde" g2="B" k="10" />
+<hkern g1="atilde" g2="C" k="23" />
+<hkern g1="atilde" g2="D" k="10" />
+<hkern g1="atilde" g2="E" k="10" />
+<hkern g1="atilde" g2="F" k="10" />
+<hkern g1="atilde" g2="G" k="15" />
+<hkern g1="atilde" g2="H" k="10" />
+<hkern g1="atilde" g2="I" k="10" />
+<hkern g1="atilde" g2="J" k="-40" />
+<hkern g1="atilde" g2="K" k="10" />
+<hkern g1="atilde" g2="L" k="10" />
+<hkern g1="atilde" g2="N" k="10" />
+<hkern g1="atilde" g2="O" k="23" />
+<hkern g1="atilde" g2="P" k="10" />
+<hkern g1="atilde" g2="Q" k="23" />
+<hkern g1="atilde" g2="R" k="10" />
+<hkern g1="atilde" g2="T" k="84" />
+<hkern g1="atilde" g2="U" k="55" />
+<hkern g1="atilde" g2="V" k="100" />
+<hkern g1="atilde" g2="W" k="100" />
+<hkern g1="atilde" g2="Y" k="125" />
+<hkern g1="atilde" g2="backslash" k="106" />
+<hkern g1="atilde" g2="bracketright" k="92" />
+<hkern g1="atilde" g2="q" k="15" />
+<hkern g1="atilde" g2="t" k="15" />
+<hkern g1="atilde" g2="u" k="12" />
+<hkern g1="atilde" g2="v" k="25" />
+<hkern g1="atilde" g2="w" k="30" />
+<hkern g1="atilde" g2="y" k="20" />
+<hkern g1="atilde" g2="braceright" k="43" />
+<hkern g1="atilde" g2="Ccedilla" k="23" />
+<hkern g1="atilde" g2="Egrave" k="10" />
+<hkern g1="atilde" g2="Eacute" k="10" />
+<hkern g1="atilde" g2="Ecircumflex" k="10" />
+<hkern g1="atilde" g2="Edieresis" k="10" />
+<hkern g1="atilde" g2="Igrave" k="10" />
+<hkern g1="atilde" g2="Iacute" k="10" />
+<hkern g1="atilde" g2="Icircumflex" k="10" />
+<hkern g1="atilde" g2="Idieresis" k="10" />
+<hkern g1="atilde" g2="Eth" k="10" />
+<hkern g1="atilde" g2="Ntilde" k="10" />
+<hkern g1="atilde" g2="Ograve" k="23" />
+<hkern g1="atilde" g2="Oacute" k="23" />
+<hkern g1="atilde" g2="Ocircumflex" k="23" />
+<hkern g1="atilde" g2="Otilde" k="23" />
+<hkern g1="atilde" g2="Odieresis" k="23" />
+<hkern g1="atilde" g2="Oslash" k="23" />
+<hkern g1="atilde" g2="Ugrave" k="55" />
+<hkern g1="atilde" g2="Uacute" k="55" />
+<hkern g1="atilde" g2="Ucircumflex" k="55" />
+<hkern g1="atilde" g2="Udieresis" k="55" />
+<hkern g1="atilde" g2="Yacute" k="125" />
+<hkern g1="atilde" g2="Thorn" k="10" />
+<hkern g1="atilde" g2="ugrave" k="12" />
+<hkern g1="atilde" g2="uacute" k="12" />
+<hkern g1="atilde" g2="ucircumflex" k="12" />
+<hkern g1="atilde" g2="udieresis" k="12" />
+<hkern g1="atilde" g2="yacute" k="20" />
+<hkern g1="atilde" g2="ydieresis" k="20" />
+<hkern g1="atilde" g2="OE" k="23" />
+<hkern g1="atilde" g2="quoteleft" k="55" />
+<hkern g1="atilde" g2="quoteright" k="43" />
+<hkern g1="atilde" g2="quotedblleft" k="55" />
+<hkern g1="atilde" g2="quotedblright" k="43" />
+<hkern g1="adieresis" g2="quotedbl" k="23" />
+<hkern g1="adieresis" g2="quotesingle" k="23" />
+<hkern g1="adieresis" g2="parenright" k="47" />
+<hkern g1="adieresis" g2="slash" k="37" />
+<hkern g1="adieresis" g2="question" k="35" />
+<hkern g1="adieresis" g2="B" k="10" />
+<hkern g1="adieresis" g2="C" k="23" />
+<hkern g1="adieresis" g2="D" k="10" />
+<hkern g1="adieresis" g2="E" k="10" />
+<hkern g1="adieresis" g2="F" k="10" />
+<hkern g1="adieresis" g2="G" k="15" />
+<hkern g1="adieresis" g2="H" k="10" />
+<hkern g1="adieresis" g2="I" k="10" />
+<hkern g1="adieresis" g2="J" k="-40" />
+<hkern g1="adieresis" g2="K" k="10" />
+<hkern g1="adieresis" g2="L" k="10" />
+<hkern g1="adieresis" g2="N" k="10" />
+<hkern g1="adieresis" g2="O" k="23" />
+<hkern g1="adieresis" g2="P" k="10" />
+<hkern g1="adieresis" g2="Q" k="23" />
+<hkern g1="adieresis" g2="R" k="10" />
+<hkern g1="adieresis" g2="T" k="84" />
+<hkern g1="adieresis" g2="U" k="55" />
+<hkern g1="adieresis" g2="V" k="100" />
+<hkern g1="adieresis" g2="W" k="100" />
+<hkern g1="adieresis" g2="Y" k="125" />
+<hkern g1="adieresis" g2="backslash" k="106" />
+<hkern g1="adieresis" g2="bracketright" k="92" />
+<hkern g1="adieresis" g2="q" k="15" />
+<hkern g1="adieresis" g2="t" k="15" />
+<hkern g1="adieresis" g2="u" k="12" />
+<hkern g1="adieresis" g2="v" k="25" />
+<hkern g1="adieresis" g2="w" k="30" />
+<hkern g1="adieresis" g2="y" k="20" />
+<hkern g1="adieresis" g2="braceright" k="43" />
+<hkern g1="adieresis" g2="Ccedilla" k="23" />
+<hkern g1="adieresis" g2="Egrave" k="10" />
+<hkern g1="adieresis" g2="Eacute" k="10" />
+<hkern g1="adieresis" g2="Ecircumflex" k="10" />
+<hkern g1="adieresis" g2="Edieresis" k="10" />
+<hkern g1="adieresis" g2="Igrave" k="10" />
+<hkern g1="adieresis" g2="Iacute" k="10" />
+<hkern g1="adieresis" g2="Icircumflex" k="10" />
+<hkern g1="adieresis" g2="Idieresis" k="10" />
+<hkern g1="adieresis" g2="Eth" k="10" />
+<hkern g1="adieresis" g2="Ntilde" k="10" />
+<hkern g1="adieresis" g2="Ograve" k="23" />
+<hkern g1="adieresis" g2="Oacute" k="23" />
+<hkern g1="adieresis" g2="Ocircumflex" k="23" />
+<hkern g1="adieresis" g2="Otilde" k="23" />
+<hkern g1="adieresis" g2="Odieresis" k="23" />
+<hkern g1="adieresis" g2="Oslash" k="23" />
+<hkern g1="adieresis" g2="Ugrave" k="55" />
+<hkern g1="adieresis" g2="Uacute" k="55" />
+<hkern g1="adieresis" g2="Ucircumflex" k="55" />
+<hkern g1="adieresis" g2="Udieresis" k="55" />
+<hkern g1="adieresis" g2="Yacute" k="125" />
+<hkern g1="adieresis" g2="Thorn" k="10" />
+<hkern g1="adieresis" g2="ugrave" k="12" />
+<hkern g1="adieresis" g2="uacute" k="12" />
+<hkern g1="adieresis" g2="ucircumflex" k="12" />
+<hkern g1="adieresis" g2="udieresis" k="12" />
+<hkern g1="adieresis" g2="yacute" k="20" />
+<hkern g1="adieresis" g2="ydieresis" k="20" />
+<hkern g1="adieresis" g2="OE" k="23" />
+<hkern g1="adieresis" g2="quoteleft" k="55" />
+<hkern g1="adieresis" g2="quoteright" k="43" />
+<hkern g1="adieresis" g2="quotedblleft" k="55" />
+<hkern g1="adieresis" g2="quotedblright" k="43" />
+<hkern g1="aring" g2="quotedbl" k="23" />
+<hkern g1="aring" g2="quotesingle" k="23" />
+<hkern g1="aring" g2="parenright" k="47" />
+<hkern g1="aring" g2="slash" k="37" />
+<hkern g1="aring" g2="question" k="35" />
+<hkern g1="aring" g2="B" k="10" />
+<hkern g1="aring" g2="C" k="23" />
+<hkern g1="aring" g2="D" k="10" />
+<hkern g1="aring" g2="E" k="10" />
+<hkern g1="aring" g2="F" k="10" />
+<hkern g1="aring" g2="G" k="15" />
+<hkern g1="aring" g2="H" k="10" />
+<hkern g1="aring" g2="I" k="10" />
+<hkern g1="aring" g2="J" k="-40" />
+<hkern g1="aring" g2="K" k="10" />
+<hkern g1="aring" g2="L" k="10" />
+<hkern g1="aring" g2="N" k="10" />
+<hkern g1="aring" g2="O" k="23" />
+<hkern g1="aring" g2="P" k="10" />
+<hkern g1="aring" g2="Q" k="23" />
+<hkern g1="aring" g2="R" k="10" />
+<hkern g1="aring" g2="T" k="84" />
+<hkern g1="aring" g2="U" k="55" />
+<hkern g1="aring" g2="V" k="100" />
+<hkern g1="aring" g2="W" k="100" />
+<hkern g1="aring" g2="Y" k="125" />
+<hkern g1="aring" g2="backslash" k="106" />
+<hkern g1="aring" g2="bracketright" k="92" />
+<hkern g1="aring" g2="q" k="15" />
+<hkern g1="aring" g2="t" k="15" />
+<hkern g1="aring" g2="u" k="12" />
+<hkern g1="aring" g2="v" k="25" />
+<hkern g1="aring" g2="w" k="30" />
+<hkern g1="aring" g2="y" k="20" />
+<hkern g1="aring" g2="braceright" k="43" />
+<hkern g1="aring" g2="Ccedilla" k="23" />
+<hkern g1="aring" g2="Egrave" k="10" />
+<hkern g1="aring" g2="Eacute" k="10" />
+<hkern g1="aring" g2="Ecircumflex" k="10" />
+<hkern g1="aring" g2="Edieresis" k="10" />
+<hkern g1="aring" g2="Igrave" k="10" />
+<hkern g1="aring" g2="Iacute" k="10" />
+<hkern g1="aring" g2="Icircumflex" k="10" />
+<hkern g1="aring" g2="Idieresis" k="10" />
+<hkern g1="aring" g2="Eth" k="10" />
+<hkern g1="aring" g2="Ntilde" k="10" />
+<hkern g1="aring" g2="Ograve" k="23" />
+<hkern g1="aring" g2="Oacute" k="23" />
+<hkern g1="aring" g2="Ocircumflex" k="23" />
+<hkern g1="aring" g2="Otilde" k="23" />
+<hkern g1="aring" g2="Odieresis" k="23" />
+<hkern g1="aring" g2="Oslash" k="23" />
+<hkern g1="aring" g2="Ugrave" k="55" />
+<hkern g1="aring" g2="Uacute" k="55" />
+<hkern g1="aring" g2="Ucircumflex" k="55" />
+<hkern g1="aring" g2="Udieresis" k="55" />
+<hkern g1="aring" g2="Yacute" k="125" />
+<hkern g1="aring" g2="Thorn" k="10" />
+<hkern g1="aring" g2="ugrave" k="12" />
+<hkern g1="aring" g2="uacute" k="12" />
+<hkern g1="aring" g2="ucircumflex" k="12" />
+<hkern g1="aring" g2="udieresis" k="12" />
+<hkern g1="aring" g2="yacute" k="20" />
+<hkern g1="aring" g2="ydieresis" k="20" />
+<hkern g1="aring" g2="OE" k="23" />
+<hkern g1="aring" g2="quoteleft" k="55" />
+<hkern g1="aring" g2="quoteright" k="43" />
+<hkern g1="aring" g2="quotedblleft" k="55" />
+<hkern g1="aring" g2="quotedblright" k="43" />
+<hkern g1="ae" g2="quotedbl" k="20" />
+<hkern g1="ae" g2="quotesingle" k="20" />
+<hkern g1="ae" g2="parenright" k="61" />
+<hkern g1="ae" g2="slash" k="78" />
+<hkern g1="ae" g2="question" k="29" />
+<hkern g1="ae" g2="B" k="33" />
+<hkern g1="ae" g2="D" k="33" />
+<hkern g1="ae" g2="E" k="33" />
+<hkern g1="ae" g2="F" k="33" />
+<hkern g1="ae" g2="H" k="33" />
+<hkern g1="ae" g2="I" k="33" />
+<hkern g1="ae" g2="K" k="33" />
+<hkern g1="ae" g2="L" k="33" />
+<hkern g1="ae" g2="M" k="25" />
+<hkern g1="ae" g2="N" k="33" />
+<hkern g1="ae" g2="P" k="33" />
+<hkern g1="ae" g2="R" k="33" />
+<hkern g1="ae" g2="S" k="10" />
+<hkern g1="ae" g2="T" k="88" />
+<hkern g1="ae" g2="U" k="41" />
+<hkern g1="ae" g2="V" k="80" />
+<hkern g1="ae" g2="W" k="70" />
+<hkern g1="ae" g2="X" k="27" />
+<hkern g1="ae" g2="Y" k="100" />
+<hkern g1="ae" g2="Z" k="16" />
+<hkern g1="ae" g2="backslash" k="88" />
+<hkern g1="ae" g2="bracketright" k="100" />
+<hkern g1="ae" g2="a" k="5" />
+<hkern g1="ae" g2="c" k="10" />
+<hkern g1="ae" g2="d" k="10" />
+<hkern g1="ae" g2="e" k="10" />
+<hkern g1="ae" g2="o" k="10" />
+<hkern g1="ae" g2="q" k="10" />
+<hkern g1="ae" g2="t" k="15" />
+<hkern g1="ae" g2="v" k="10" />
+<hkern g1="ae" g2="w" k="8" />
+<hkern g1="ae" g2="x" k="10" />
+<hkern g1="ae" g2="y" k="10" />
+<hkern g1="ae" g2="braceright" k="47" />
+<hkern g1="ae" g2="Egrave" k="33" />
+<hkern g1="ae" g2="Eacute" k="33" />
+<hkern g1="ae" g2="Ecircumflex" k="33" />
+<hkern g1="ae" g2="Edieresis" k="33" />
+<hkern g1="ae" g2="Igrave" k="33" />
+<hkern g1="ae" g2="Iacute" k="33" />
+<hkern g1="ae" g2="Icircumflex" k="33" />
+<hkern g1="ae" g2="Idieresis" k="33" />
+<hkern g1="ae" g2="Eth" k="33" />
+<hkern g1="ae" g2="Ntilde" k="33" />
+<hkern g1="ae" g2="Ugrave" k="41" />
+<hkern g1="ae" g2="Uacute" k="41" />
+<hkern g1="ae" g2="Ucircumflex" k="41" />
+<hkern g1="ae" g2="Udieresis" k="41" />
+<hkern g1="ae" g2="Yacute" k="100" />
+<hkern g1="ae" g2="Thorn" k="33" />
+<hkern g1="ae" g2="agrave" k="5" />
+<hkern g1="ae" g2="aacute" k="5" />
+<hkern g1="ae" g2="acircumflex" k="5" />
+<hkern g1="ae" g2="atilde" k="5" />
+<hkern g1="ae" g2="adieresis" k="5" />
+<hkern g1="ae" g2="aring" k="5" />
+<hkern g1="ae" g2="ae" k="5" />
+<hkern g1="ae" g2="ccedilla" k="10" />
+<hkern g1="ae" g2="egrave" k="10" />
+<hkern g1="ae" g2="eacute" k="10" />
+<hkern g1="ae" g2="ecircumflex" k="10" />
+<hkern g1="ae" g2="edieresis" k="10" />
+<hkern g1="ae" g2="ograve" k="10" />
+<hkern g1="ae" g2="oacute" k="10" />
+<hkern g1="ae" g2="ocircumflex" k="10" />
+<hkern g1="ae" g2="otilde" k="10" />
+<hkern g1="ae" g2="odieresis" k="10" />
+<hkern g1="ae" g2="oslash" k="10" />
+<hkern g1="ae" g2="yacute" k="10" />
+<hkern g1="ae" g2="ydieresis" k="10" />
+<hkern g1="ae" g2="oe" k="10" />
+<hkern g1="ae" g2="quoteleft" k="55" />
+<hkern g1="ae" g2="quoteright" k="41" />
+<hkern g1="ae" g2="quotedblleft" k="55" />
+<hkern g1="ae" g2="quotedblright" k="41" />
+<hkern g1="ccedilla" g2="parenright" k="51" />
+<hkern g1="ccedilla" g2="slash" k="70" />
+<hkern g1="ccedilla" g2="B" k="39" />
+<hkern g1="ccedilla" g2="C" k="12" />
+<hkern g1="ccedilla" g2="D" k="39" />
+<hkern g1="ccedilla" g2="E" k="39" />
+<hkern g1="ccedilla" g2="F" k="39" />
+<hkern g1="ccedilla" g2="G" k="12" />
+<hkern g1="ccedilla" g2="H" k="39" />
+<hkern g1="ccedilla" g2="I" k="39" />
+<hkern g1="ccedilla" g2="K" k="39" />
+<hkern g1="ccedilla" g2="L" k="39" />
+<hkern g1="ccedilla" g2="M" k="31" />
+<hkern g1="ccedilla" g2="N" k="39" />
+<hkern g1="ccedilla" g2="O" k="12" />
+<hkern g1="ccedilla" g2="P" k="39" />
+<hkern g1="ccedilla" g2="Q" k="12" />
+<hkern g1="ccedilla" g2="R" k="39" />
+<hkern g1="ccedilla" g2="T" k="43" />
+<hkern g1="ccedilla" g2="U" k="37" />
+<hkern g1="ccedilla" g2="V" k="80" />
+<hkern g1="ccedilla" g2="W" k="70" />
+<hkern g1="ccedilla" g2="X" k="33" />
+<hkern g1="ccedilla" g2="Y" k="100" />
+<hkern g1="ccedilla" g2="backslash" k="72" />
+<hkern g1="ccedilla" g2="bracketright" k="92" />
+<hkern g1="ccedilla" g2="a" k="5" />
+<hkern g1="ccedilla" g2="c" k="10" />
+<hkern g1="ccedilla" g2="d" k="10" />
+<hkern g1="ccedilla" g2="e" k="10" />
+<hkern g1="ccedilla" g2="o" k="10" />
+<hkern g1="ccedilla" g2="q" k="10" />
+<hkern g1="ccedilla" g2="t" k="10" />
+<hkern g1="ccedilla" g2="v" k="10" />
+<hkern g1="ccedilla" g2="w" k="10" />
+<hkern g1="ccedilla" g2="x" k="15" />
+<hkern g1="ccedilla" g2="y" k="10" />
+<hkern g1="ccedilla" g2="z" k="10" />
+<hkern g1="ccedilla" g2="braceright" k="39" />
+<hkern g1="ccedilla" g2="Ccedilla" k="12" />
+<hkern g1="ccedilla" g2="Egrave" k="39" />
+<hkern g1="ccedilla" g2="Eacute" k="39" />
+<hkern g1="ccedilla" g2="Ecircumflex" k="39" />
+<hkern g1="ccedilla" g2="Edieresis" k="39" />
+<hkern g1="ccedilla" g2="Igrave" k="39" />
+<hkern g1="ccedilla" g2="Iacute" k="39" />
+<hkern g1="ccedilla" g2="Icircumflex" k="39" />
+<hkern g1="ccedilla" g2="Idieresis" k="39" />
+<hkern g1="ccedilla" g2="Eth" k="39" />
+<hkern g1="ccedilla" g2="Ntilde" k="39" />
+<hkern g1="ccedilla" g2="Ograve" k="12" />
+<hkern g1="ccedilla" g2="Oacute" k="12" />
+<hkern g1="ccedilla" g2="Ocircumflex" k="12" />
+<hkern g1="ccedilla" g2="Otilde" k="12" />
+<hkern g1="ccedilla" g2="Odieresis" k="12" />
+<hkern g1="ccedilla" g2="Oslash" k="12" />
+<hkern g1="ccedilla" g2="Ugrave" k="37" />
+<hkern g1="ccedilla" g2="Uacute" k="37" />
+<hkern g1="ccedilla" g2="Ucircumflex" k="37" />
+<hkern g1="ccedilla" g2="Udieresis" k="37" />
+<hkern g1="ccedilla" g2="Yacute" k="100" />
+<hkern g1="ccedilla" g2="Thorn" k="39" />
+<hkern g1="ccedilla" g2="agrave" k="5" />
+<hkern g1="ccedilla" g2="aacute" k="5" />
+<hkern g1="ccedilla" g2="acircumflex" k="5" />
+<hkern g1="ccedilla" g2="atilde" k="5" />
+<hkern g1="ccedilla" g2="adieresis" k="5" />
+<hkern g1="ccedilla" g2="aring" k="5" />
+<hkern g1="ccedilla" g2="ae" k="5" />
+<hkern g1="ccedilla" g2="ccedilla" k="10" />
+<hkern g1="ccedilla" g2="egrave" k="10" />
+<hkern g1="ccedilla" g2="eacute" k="10" />
+<hkern g1="ccedilla" g2="ecircumflex" k="10" />
+<hkern g1="ccedilla" g2="edieresis" k="10" />
+<hkern g1="ccedilla" g2="ograve" k="10" />
+<hkern g1="ccedilla" g2="oacute" k="10" />
+<hkern g1="ccedilla" g2="ocircumflex" k="10" />
+<hkern g1="ccedilla" g2="otilde" k="10" />
+<hkern g1="ccedilla" g2="odieresis" k="10" />
+<hkern g1="ccedilla" g2="oslash" k="10" />
+<hkern g1="ccedilla" g2="yacute" k="10" />
+<hkern g1="ccedilla" g2="ydieresis" k="10" />
+<hkern g1="ccedilla" g2="OE" k="12" />
+<hkern g1="ccedilla" g2="oe" k="10" />
+<hkern g1="ccedilla" g2="quoteleft" k="41" />
+<hkern g1="ccedilla" g2="quoteright" k="27" />
+<hkern g1="ccedilla" g2="quotedblleft" k="41" />
+<hkern g1="ccedilla" g2="quotedblright" k="27" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="parenright" k="61" />
+<hkern g1="egrave" g2="slash" k="78" />
+<hkern g1="egrave" g2="question" k="29" />
+<hkern g1="egrave" g2="B" k="33" />
+<hkern g1="egrave" g2="D" k="33" />
+<hkern g1="egrave" g2="E" k="33" />
+<hkern g1="egrave" g2="F" k="33" />
+<hkern g1="egrave" g2="H" k="33" />
+<hkern g1="egrave" g2="I" k="33" />
+<hkern g1="egrave" g2="K" k="33" />
+<hkern g1="egrave" g2="L" k="33" />
+<hkern g1="egrave" g2="M" k="25" />
+<hkern g1="egrave" g2="N" k="33" />
+<hkern g1="egrave" g2="P" k="33" />
+<hkern g1="egrave" g2="R" k="33" />
+<hkern g1="egrave" g2="S" k="10" />
+<hkern g1="egrave" g2="T" k="88" />
+<hkern g1="egrave" g2="U" k="41" />
+<hkern g1="egrave" g2="V" k="80" />
+<hkern g1="egrave" g2="W" k="70" />
+<hkern g1="egrave" g2="X" k="27" />
+<hkern g1="egrave" g2="Y" k="100" />
+<hkern g1="egrave" g2="Z" k="16" />
+<hkern g1="egrave" g2="backslash" k="88" />
+<hkern g1="egrave" g2="bracketright" k="100" />
+<hkern g1="egrave" g2="a" k="5" />
+<hkern g1="egrave" g2="c" k="10" />
+<hkern g1="egrave" g2="d" k="10" />
+<hkern g1="egrave" g2="e" k="10" />
+<hkern g1="egrave" g2="o" k="10" />
+<hkern g1="egrave" g2="q" k="10" />
+<hkern g1="egrave" g2="t" k="15" />
+<hkern g1="egrave" g2="v" k="10" />
+<hkern g1="egrave" g2="w" k="8" />
+<hkern g1="egrave" g2="x" k="10" />
+<hkern g1="egrave" g2="y" k="10" />
+<hkern g1="egrave" g2="braceright" k="47" />
+<hkern g1="egrave" g2="Egrave" k="33" />
+<hkern g1="egrave" g2="Eacute" k="33" />
+<hkern g1="egrave" g2="Ecircumflex" k="33" />
+<hkern g1="egrave" g2="Edieresis" k="33" />
+<hkern g1="egrave" g2="Igrave" k="33" />
+<hkern g1="egrave" g2="Iacute" k="33" />
+<hkern g1="egrave" g2="Icircumflex" k="33" />
+<hkern g1="egrave" g2="Idieresis" k="33" />
+<hkern g1="egrave" g2="Eth" k="33" />
+<hkern g1="egrave" g2="Ntilde" k="33" />
+<hkern g1="egrave" g2="Ugrave" k="41" />
+<hkern g1="egrave" g2="Uacute" k="41" />
+<hkern g1="egrave" g2="Ucircumflex" k="41" />
+<hkern g1="egrave" g2="Udieresis" k="41" />
+<hkern g1="egrave" g2="Yacute" k="100" />
+<hkern g1="egrave" g2="Thorn" k="33" />
+<hkern g1="egrave" g2="agrave" k="5" />
+<hkern g1="egrave" g2="aacute" k="5" />
+<hkern g1="egrave" g2="acircumflex" k="5" />
+<hkern g1="egrave" g2="atilde" k="5" />
+<hkern g1="egrave" g2="adieresis" k="5" />
+<hkern g1="egrave" g2="aring" k="5" />
+<hkern g1="egrave" g2="ae" k="5" />
+<hkern g1="egrave" g2="ccedilla" k="10" />
+<hkern g1="egrave" g2="egrave" k="10" />
+<hkern g1="egrave" g2="eacute" k="10" />
+<hkern g1="egrave" g2="ecircumflex" k="10" />
+<hkern g1="egrave" g2="edieresis" k="10" />
+<hkern g1="egrave" g2="ograve" k="10" />
+<hkern g1="egrave" g2="oacute" k="10" />
+<hkern g1="egrave" g2="ocircumflex" k="10" />
+<hkern g1="egrave" g2="otilde" k="10" />
+<hkern g1="egrave" g2="odieresis" k="10" />
+<hkern g1="egrave" g2="oslash" k="10" />
+<hkern g1="egrave" g2="yacute" k="10" />
+<hkern g1="egrave" g2="ydieresis" k="10" />
+<hkern g1="egrave" g2="oe" k="10" />
+<hkern g1="egrave" g2="quoteleft" k="55" />
+<hkern g1="egrave" g2="quoteright" k="41" />
+<hkern g1="egrave" g2="quotedblleft" k="55" />
+<hkern g1="egrave" g2="quotedblright" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="parenright" k="61" />
+<hkern g1="eacute" g2="slash" k="78" />
+<hkern g1="eacute" g2="question" k="29" />
+<hkern g1="eacute" g2="B" k="33" />
+<hkern g1="eacute" g2="D" k="33" />
+<hkern g1="eacute" g2="E" k="33" />
+<hkern g1="eacute" g2="F" k="33" />
+<hkern g1="eacute" g2="H" k="33" />
+<hkern g1="eacute" g2="I" k="33" />
+<hkern g1="eacute" g2="K" k="33" />
+<hkern g1="eacute" g2="L" k="33" />
+<hkern g1="eacute" g2="M" k="25" />
+<hkern g1="eacute" g2="N" k="33" />
+<hkern g1="eacute" g2="P" k="33" />
+<hkern g1="eacute" g2="R" k="33" />
+<hkern g1="eacute" g2="S" k="10" />
+<hkern g1="eacute" g2="T" k="88" />
+<hkern g1="eacute" g2="U" k="41" />
+<hkern g1="eacute" g2="V" k="80" />
+<hkern g1="eacute" g2="W" k="70" />
+<hkern g1="eacute" g2="X" k="27" />
+<hkern g1="eacute" g2="Y" k="100" />
+<hkern g1="eacute" g2="Z" k="16" />
+<hkern g1="eacute" g2="backslash" k="88" />
+<hkern g1="eacute" g2="bracketright" k="100" />
+<hkern g1="eacute" g2="a" k="5" />
+<hkern g1="eacute" g2="c" k="10" />
+<hkern g1="eacute" g2="d" k="10" />
+<hkern g1="eacute" g2="e" k="10" />
+<hkern g1="eacute" g2="o" k="10" />
+<hkern g1="eacute" g2="q" k="10" />
+<hkern g1="eacute" g2="t" k="15" />
+<hkern g1="eacute" g2="v" k="10" />
+<hkern g1="eacute" g2="w" k="8" />
+<hkern g1="eacute" g2="x" k="10" />
+<hkern g1="eacute" g2="y" k="10" />
+<hkern g1="eacute" g2="braceright" k="47" />
+<hkern g1="eacute" g2="Egrave" k="33" />
+<hkern g1="eacute" g2="Eacute" k="33" />
+<hkern g1="eacute" g2="Ecircumflex" k="33" />
+<hkern g1="eacute" g2="Edieresis" k="33" />
+<hkern g1="eacute" g2="Igrave" k="33" />
+<hkern g1="eacute" g2="Iacute" k="33" />
+<hkern g1="eacute" g2="Icircumflex" k="33" />
+<hkern g1="eacute" g2="Idieresis" k="33" />
+<hkern g1="eacute" g2="Eth" k="33" />
+<hkern g1="eacute" g2="Ntilde" k="33" />
+<hkern g1="eacute" g2="Ugrave" k="41" />
+<hkern g1="eacute" g2="Uacute" k="41" />
+<hkern g1="eacute" g2="Ucircumflex" k="41" />
+<hkern g1="eacute" g2="Udieresis" k="41" />
+<hkern g1="eacute" g2="Yacute" k="100" />
+<hkern g1="eacute" g2="Thorn" k="33" />
+<hkern g1="eacute" g2="agrave" k="5" />
+<hkern g1="eacute" g2="aacute" k="5" />
+<hkern g1="eacute" g2="acircumflex" k="5" />
+<hkern g1="eacute" g2="atilde" k="5" />
+<hkern g1="eacute" g2="adieresis" k="5" />
+<hkern g1="eacute" g2="aring" k="5" />
+<hkern g1="eacute" g2="ae" k="5" />
+<hkern g1="eacute" g2="ccedilla" k="10" />
+<hkern g1="eacute" g2="egrave" k="10" />
+<hkern g1="eacute" g2="eacute" k="10" />
+<hkern g1="eacute" g2="ecircumflex" k="10" />
+<hkern g1="eacute" g2="edieresis" k="10" />
+<hkern g1="eacute" g2="ograve" k="10" />
+<hkern g1="eacute" g2="oacute" k="10" />
+<hkern g1="eacute" g2="ocircumflex" k="10" />
+<hkern g1="eacute" g2="otilde" k="10" />
+<hkern g1="eacute" g2="odieresis" k="10" />
+<hkern g1="eacute" g2="oslash" k="10" />
+<hkern g1="eacute" g2="yacute" k="10" />
+<hkern g1="eacute" g2="ydieresis" k="10" />
+<hkern g1="eacute" g2="oe" k="10" />
+<hkern g1="eacute" g2="quoteleft" k="55" />
+<hkern g1="eacute" g2="quoteright" k="41" />
+<hkern g1="eacute" g2="quotedblleft" k="55" />
+<hkern g1="eacute" g2="quotedblright" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="parenright" k="61" />
+<hkern g1="ecircumflex" g2="slash" k="78" />
+<hkern g1="ecircumflex" g2="question" k="29" />
+<hkern g1="ecircumflex" g2="B" k="33" />
+<hkern g1="ecircumflex" g2="D" k="33" />
+<hkern g1="ecircumflex" g2="E" k="33" />
+<hkern g1="ecircumflex" g2="F" k="33" />
+<hkern g1="ecircumflex" g2="H" k="33" />
+<hkern g1="ecircumflex" g2="I" k="33" />
+<hkern g1="ecircumflex" g2="K" k="33" />
+<hkern g1="ecircumflex" g2="L" k="33" />
+<hkern g1="ecircumflex" g2="M" k="25" />
+<hkern g1="ecircumflex" g2="N" k="33" />
+<hkern g1="ecircumflex" g2="P" k="33" />
+<hkern g1="ecircumflex" g2="R" k="33" />
+<hkern g1="ecircumflex" g2="S" k="10" />
+<hkern g1="ecircumflex" g2="T" k="88" />
+<hkern g1="ecircumflex" g2="U" k="41" />
+<hkern g1="ecircumflex" g2="V" k="80" />
+<hkern g1="ecircumflex" g2="W" k="70" />
+<hkern g1="ecircumflex" g2="X" k="27" />
+<hkern g1="ecircumflex" g2="Y" k="100" />
+<hkern g1="ecircumflex" g2="Z" k="16" />
+<hkern g1="ecircumflex" g2="backslash" k="88" />
+<hkern g1="ecircumflex" g2="bracketright" k="100" />
+<hkern g1="ecircumflex" g2="a" k="5" />
+<hkern g1="ecircumflex" g2="c" k="10" />
+<hkern g1="ecircumflex" g2="d" k="10" />
+<hkern g1="ecircumflex" g2="e" k="10" />
+<hkern g1="ecircumflex" g2="o" k="10" />
+<hkern g1="ecircumflex" g2="q" k="10" />
+<hkern g1="ecircumflex" g2="t" k="15" />
+<hkern g1="ecircumflex" g2="v" k="10" />
+<hkern g1="ecircumflex" g2="w" k="8" />
+<hkern g1="ecircumflex" g2="x" k="10" />
+<hkern g1="ecircumflex" g2="y" k="10" />
+<hkern g1="ecircumflex" g2="braceright" k="47" />
+<hkern g1="ecircumflex" g2="Egrave" k="33" />
+<hkern g1="ecircumflex" g2="Eacute" k="33" />
+<hkern g1="ecircumflex" g2="Ecircumflex" k="33" />
+<hkern g1="ecircumflex" g2="Edieresis" k="33" />
+<hkern g1="ecircumflex" g2="Igrave" k="33" />
+<hkern g1="ecircumflex" g2="Iacute" k="33" />
+<hkern g1="ecircumflex" g2="Icircumflex" k="33" />
+<hkern g1="ecircumflex" g2="Idieresis" k="33" />
+<hkern g1="ecircumflex" g2="Eth" k="33" />
+<hkern g1="ecircumflex" g2="Ntilde" k="33" />
+<hkern g1="ecircumflex" g2="Ugrave" k="41" />
+<hkern g1="ecircumflex" g2="Uacute" k="41" />
+<hkern g1="ecircumflex" g2="Ucircumflex" k="41" />
+<hkern g1="ecircumflex" g2="Udieresis" k="41" />
+<hkern g1="ecircumflex" g2="Yacute" k="100" />
+<hkern g1="ecircumflex" g2="Thorn" k="33" />
+<hkern g1="ecircumflex" g2="agrave" k="5" />
+<hkern g1="ecircumflex" g2="aacute" k="5" />
+<hkern g1="ecircumflex" g2="acircumflex" k="5" />
+<hkern g1="ecircumflex" g2="atilde" k="5" />
+<hkern g1="ecircumflex" g2="adieresis" k="5" />
+<hkern g1="ecircumflex" g2="aring" k="5" />
+<hkern g1="ecircumflex" g2="ae" k="5" />
+<hkern g1="ecircumflex" g2="ccedilla" k="10" />
+<hkern g1="ecircumflex" g2="egrave" k="10" />
+<hkern g1="ecircumflex" g2="eacute" k="10" />
+<hkern g1="ecircumflex" g2="ecircumflex" k="10" />
+<hkern g1="ecircumflex" g2="edieresis" k="10" />
+<hkern g1="ecircumflex" g2="ograve" k="10" />
+<hkern g1="ecircumflex" g2="oacute" k="10" />
+<hkern g1="ecircumflex" g2="ocircumflex" k="10" />
+<hkern g1="ecircumflex" g2="otilde" k="10" />
+<hkern g1="ecircumflex" g2="odieresis" k="10" />
+<hkern g1="ecircumflex" g2="oslash" k="10" />
+<hkern g1="ecircumflex" g2="yacute" k="10" />
+<hkern g1="ecircumflex" g2="ydieresis" k="10" />
+<hkern g1="ecircumflex" g2="oe" k="10" />
+<hkern g1="ecircumflex" g2="quoteleft" k="55" />
+<hkern g1="ecircumflex" g2="quoteright" k="41" />
+<hkern g1="ecircumflex" g2="quotedblleft" k="55" />
+<hkern g1="ecircumflex" g2="quotedblright" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="parenright" k="61" />
+<hkern g1="edieresis" g2="slash" k="78" />
+<hkern g1="edieresis" g2="question" k="29" />
+<hkern g1="edieresis" g2="B" k="33" />
+<hkern g1="edieresis" g2="D" k="33" />
+<hkern g1="edieresis" g2="E" k="33" />
+<hkern g1="edieresis" g2="F" k="33" />
+<hkern g1="edieresis" g2="H" k="33" />
+<hkern g1="edieresis" g2="I" k="33" />
+<hkern g1="edieresis" g2="K" k="33" />
+<hkern g1="edieresis" g2="L" k="33" />
+<hkern g1="edieresis" g2="M" k="25" />
+<hkern g1="edieresis" g2="N" k="33" />
+<hkern g1="edieresis" g2="P" k="33" />
+<hkern g1="edieresis" g2="R" k="33" />
+<hkern g1="edieresis" g2="S" k="10" />
+<hkern g1="edieresis" g2="T" k="88" />
+<hkern g1="edieresis" g2="U" k="41" />
+<hkern g1="edieresis" g2="V" k="80" />
+<hkern g1="edieresis" g2="W" k="70" />
+<hkern g1="edieresis" g2="X" k="27" />
+<hkern g1="edieresis" g2="Y" k="100" />
+<hkern g1="edieresis" g2="Z" k="16" />
+<hkern g1="edieresis" g2="backslash" k="88" />
+<hkern g1="edieresis" g2="bracketright" k="100" />
+<hkern g1="edieresis" g2="a" k="5" />
+<hkern g1="edieresis" g2="c" k="10" />
+<hkern g1="edieresis" g2="d" k="10" />
+<hkern g1="edieresis" g2="e" k="10" />
+<hkern g1="edieresis" g2="o" k="10" />
+<hkern g1="edieresis" g2="q" k="10" />
+<hkern g1="edieresis" g2="t" k="15" />
+<hkern g1="edieresis" g2="v" k="10" />
+<hkern g1="edieresis" g2="w" k="8" />
+<hkern g1="edieresis" g2="x" k="10" />
+<hkern g1="edieresis" g2="y" k="10" />
+<hkern g1="edieresis" g2="braceright" k="47" />
+<hkern g1="edieresis" g2="Egrave" k="33" />
+<hkern g1="edieresis" g2="Eacute" k="33" />
+<hkern g1="edieresis" g2="Ecircumflex" k="33" />
+<hkern g1="edieresis" g2="Edieresis" k="33" />
+<hkern g1="edieresis" g2="Igrave" k="33" />
+<hkern g1="edieresis" g2="Iacute" k="33" />
+<hkern g1="edieresis" g2="Icircumflex" k="33" />
+<hkern g1="edieresis" g2="Idieresis" k="33" />
+<hkern g1="edieresis" g2="Eth" k="33" />
+<hkern g1="edieresis" g2="Ntilde" k="33" />
+<hkern g1="edieresis" g2="Ugrave" k="41" />
+<hkern g1="edieresis" g2="Uacute" k="41" />
+<hkern g1="edieresis" g2="Ucircumflex" k="41" />
+<hkern g1="edieresis" g2="Udieresis" k="41" />
+<hkern g1="edieresis" g2="Yacute" k="100" />
+<hkern g1="edieresis" g2="Thorn" k="33" />
+<hkern g1="edieresis" g2="agrave" k="5" />
+<hkern g1="edieresis" g2="aacute" k="5" />
+<hkern g1="edieresis" g2="acircumflex" k="5" />
+<hkern g1="edieresis" g2="atilde" k="5" />
+<hkern g1="edieresis" g2="adieresis" k="5" />
+<hkern g1="edieresis" g2="aring" k="5" />
+<hkern g1="edieresis" g2="ae" k="5" />
+<hkern g1="edieresis" g2="ccedilla" k="10" />
+<hkern g1="edieresis" g2="egrave" k="10" />
+<hkern g1="edieresis" g2="eacute" k="10" />
+<hkern g1="edieresis" g2="ecircumflex" k="10" />
+<hkern g1="edieresis" g2="edieresis" k="10" />
+<hkern g1="edieresis" g2="ograve" k="10" />
+<hkern g1="edieresis" g2="oacute" k="10" />
+<hkern g1="edieresis" g2="ocircumflex" k="10" />
+<hkern g1="edieresis" g2="otilde" k="10" />
+<hkern g1="edieresis" g2="odieresis" k="10" />
+<hkern g1="edieresis" g2="oslash" k="10" />
+<hkern g1="edieresis" g2="yacute" k="10" />
+<hkern g1="edieresis" g2="ydieresis" k="10" />
+<hkern g1="edieresis" g2="oe" k="10" />
+<hkern g1="edieresis" g2="quoteleft" k="55" />
+<hkern g1="edieresis" g2="quoteright" k="41" />
+<hkern g1="edieresis" g2="quotedblleft" k="55" />
+<hkern g1="edieresis" g2="quotedblright" k="41" />
+<hkern g1="igrave" g2="slash" k="43" />
+<hkern g1="igrave" g2="B" k="14" />
+<hkern g1="igrave" g2="C" k="23" />
+<hkern g1="igrave" g2="D" k="14" />
+<hkern g1="igrave" g2="E" k="14" />
+<hkern g1="igrave" g2="F" k="14" />
+<hkern g1="igrave" g2="G" k="20" />
+<hkern g1="igrave" g2="H" k="14" />
+<hkern g1="igrave" g2="I" k="14" />
+<hkern g1="igrave" g2="K" k="14" />
+<hkern g1="igrave" g2="L" k="14" />
+<hkern g1="igrave" g2="M" k="10" />
+<hkern g1="igrave" g2="N" k="14" />
+<hkern g1="igrave" g2="O" k="23" />
+<hkern g1="igrave" g2="P" k="14" />
+<hkern g1="igrave" g2="Q" k="23" />
+<hkern g1="igrave" g2="R" k="14" />
+<hkern g1="igrave" g2="T" k="14" />
+<hkern g1="igrave" g2="U" k="25" />
+<hkern g1="igrave" g2="W" k="18" />
+<hkern g1="igrave" g2="Y" k="12" />
+<hkern g1="igrave" g2="t" k="8" />
+<hkern g1="igrave" g2="w" k="10" />
+<hkern g1="igrave" g2="y" k="10" />
+<hkern g1="igrave" g2="Ccedilla" k="23" />
+<hkern g1="igrave" g2="Egrave" k="14" />
+<hkern g1="igrave" g2="Eacute" k="14" />
+<hkern g1="igrave" g2="Ecircumflex" k="14" />
+<hkern g1="igrave" g2="Edieresis" k="14" />
+<hkern g1="igrave" g2="Igrave" k="14" />
+<hkern g1="igrave" g2="Iacute" k="14" />
+<hkern g1="igrave" g2="Icircumflex" k="14" />
+<hkern g1="igrave" g2="Idieresis" k="14" />
+<hkern g1="igrave" g2="Eth" k="14" />
+<hkern g1="igrave" g2="Ntilde" k="14" />
+<hkern g1="igrave" g2="Ograve" k="23" />
+<hkern g1="igrave" g2="Oacute" k="23" />
+<hkern g1="igrave" g2="Ocircumflex" k="23" />
+<hkern g1="igrave" g2="Otilde" k="23" />
+<hkern g1="igrave" g2="Odieresis" k="23" />
+<hkern g1="igrave" g2="Oslash" k="23" />
+<hkern g1="igrave" g2="Ugrave" k="25" />
+<hkern g1="igrave" g2="Uacute" k="25" />
+<hkern g1="igrave" g2="Ucircumflex" k="25" />
+<hkern g1="igrave" g2="Udieresis" k="25" />
+<hkern g1="igrave" g2="Yacute" k="12" />
+<hkern g1="igrave" g2="Thorn" k="14" />
+<hkern g1="igrave" g2="yacute" k="10" />
+<hkern g1="igrave" g2="ydieresis" k="10" />
+<hkern g1="igrave" g2="OE" k="23" />
+<hkern g1="iacute" g2="parenright" k="-45" />
+<hkern g1="iacute" g2="slash" k="43" />
+<hkern g1="iacute" g2="B" k="14" />
+<hkern g1="iacute" g2="C" k="23" />
+<hkern g1="iacute" g2="D" k="14" />
+<hkern g1="iacute" g2="E" k="14" />
+<hkern g1="iacute" g2="F" k="14" />
+<hkern g1="iacute" g2="G" k="20" />
+<hkern g1="iacute" g2="H" k="14" />
+<hkern g1="iacute" g2="I" k="14" />
+<hkern g1="iacute" g2="K" k="14" />
+<hkern g1="iacute" g2="L" k="14" />
+<hkern g1="iacute" g2="M" k="10" />
+<hkern g1="iacute" g2="N" k="14" />
+<hkern g1="iacute" g2="O" k="23" />
+<hkern g1="iacute" g2="P" k="14" />
+<hkern g1="iacute" g2="Q" k="23" />
+<hkern g1="iacute" g2="R" k="14" />
+<hkern g1="iacute" g2="T" k="14" />
+<hkern g1="iacute" g2="U" k="25" />
+<hkern g1="iacute" g2="W" k="18" />
+<hkern g1="iacute" g2="Y" k="12" />
+<hkern g1="iacute" g2="backslash" k="-43" />
+<hkern g1="iacute" g2="bracketright" k="-59" />
+<hkern g1="iacute" g2="b" k="-33" />
+<hkern g1="iacute" g2="t" k="8" />
+<hkern g1="iacute" g2="w" k="10" />
+<hkern g1="iacute" g2="y" k="10" />
+<hkern g1="iacute" g2="braceright" k="-59" />
+<hkern g1="iacute" g2="Ccedilla" k="23" />
+<hkern g1="iacute" g2="Egrave" k="14" />
+<hkern g1="iacute" g2="Eacute" k="14" />
+<hkern g1="iacute" g2="Ecircumflex" k="14" />
+<hkern g1="iacute" g2="Edieresis" k="14" />
+<hkern g1="iacute" g2="Igrave" k="14" />
+<hkern g1="iacute" g2="Iacute" k="14" />
+<hkern g1="iacute" g2="Icircumflex" k="14" />
+<hkern g1="iacute" g2="Idieresis" k="14" />
+<hkern g1="iacute" g2="Eth" k="14" />
+<hkern g1="iacute" g2="Ntilde" k="14" />
+<hkern g1="iacute" g2="Ograve" k="23" />
+<hkern g1="iacute" g2="Oacute" k="23" />
+<hkern g1="iacute" g2="Ocircumflex" k="23" />
+<hkern g1="iacute" g2="Otilde" k="23" />
+<hkern g1="iacute" g2="Odieresis" k="23" />
+<hkern g1="iacute" g2="Oslash" k="23" />
+<hkern g1="iacute" g2="Ugrave" k="25" />
+<hkern g1="iacute" g2="Uacute" k="25" />
+<hkern g1="iacute" g2="Ucircumflex" k="25" />
+<hkern g1="iacute" g2="Udieresis" k="25" />
+<hkern g1="iacute" g2="Yacute" k="12" />
+<hkern g1="iacute" g2="Thorn" k="14" />
+<hkern g1="iacute" g2="yacute" k="10" />
+<hkern g1="iacute" g2="thorn" k="-33" />
+<hkern g1="iacute" g2="ydieresis" k="10" />
+<hkern g1="iacute" g2="OE" k="23" />
+<hkern g1="icircumflex" g2="slash" k="43" />
+<hkern g1="icircumflex" g2="B" k="14" />
+<hkern g1="icircumflex" g2="C" k="23" />
+<hkern g1="icircumflex" g2="D" k="14" />
+<hkern g1="icircumflex" g2="E" k="14" />
+<hkern g1="icircumflex" g2="F" k="14" />
+<hkern g1="icircumflex" g2="G" k="20" />
+<hkern g1="icircumflex" g2="H" k="14" />
+<hkern g1="icircumflex" g2="I" k="14" />
+<hkern g1="icircumflex" g2="K" k="14" />
+<hkern g1="icircumflex" g2="L" k="14" />
+<hkern g1="icircumflex" g2="M" k="10" />
+<hkern g1="icircumflex" g2="N" k="14" />
+<hkern g1="icircumflex" g2="O" k="23" />
+<hkern g1="icircumflex" g2="P" k="14" />
+<hkern g1="icircumflex" g2="Q" k="23" />
+<hkern g1="icircumflex" g2="R" k="14" />
+<hkern g1="icircumflex" g2="T" k="14" />
+<hkern g1="icircumflex" g2="U" k="25" />
+<hkern g1="icircumflex" g2="V" k="-80" />
+<hkern g1="icircumflex" g2="W" k="-55" />
+<hkern g1="icircumflex" g2="Y" k="12" />
+<hkern g1="icircumflex" g2="t" k="8" />
+<hkern g1="icircumflex" g2="w" k="10" />
+<hkern g1="icircumflex" g2="y" k="10" />
+<hkern g1="icircumflex" g2="Ccedilla" k="23" />
+<hkern g1="icircumflex" g2="Egrave" k="14" />
+<hkern g1="icircumflex" g2="Eacute" k="14" />
+<hkern g1="icircumflex" g2="Ecircumflex" k="14" />
+<hkern g1="icircumflex" g2="Edieresis" k="14" />
+<hkern g1="icircumflex" g2="Igrave" k="14" />
+<hkern g1="icircumflex" g2="Iacute" k="14" />
+<hkern g1="icircumflex" g2="Icircumflex" k="14" />
+<hkern g1="icircumflex" g2="Idieresis" k="14" />
+<hkern g1="icircumflex" g2="Eth" k="14" />
+<hkern g1="icircumflex" g2="Ntilde" k="14" />
+<hkern g1="icircumflex" g2="Ograve" k="23" />
+<hkern g1="icircumflex" g2="Oacute" k="23" />
+<hkern g1="icircumflex" g2="Ocircumflex" k="23" />
+<hkern g1="icircumflex" g2="Otilde" k="23" />
+<hkern g1="icircumflex" g2="Odieresis" k="23" />
+<hkern g1="icircumflex" g2="Oslash" k="23" />
+<hkern g1="icircumflex" g2="Ugrave" k="25" />
+<hkern g1="icircumflex" g2="Uacute" k="25" />
+<hkern g1="icircumflex" g2="Ucircumflex" k="25" />
+<hkern g1="icircumflex" g2="Udieresis" k="25" />
+<hkern g1="icircumflex" g2="Yacute" k="12" />
+<hkern g1="icircumflex" g2="Thorn" k="14" />
+<hkern g1="icircumflex" g2="yacute" k="10" />
+<hkern g1="icircumflex" g2="ydieresis" k="10" />
+<hkern g1="icircumflex" g2="OE" k="23" />
+<hkern g1="idieresis" g2="slash" k="43" />
+<hkern g1="idieresis" g2="B" k="14" />
+<hkern g1="idieresis" g2="C" k="23" />
+<hkern g1="idieresis" g2="D" k="14" />
+<hkern g1="idieresis" g2="E" k="14" />
+<hkern g1="idieresis" g2="F" k="14" />
+<hkern g1="idieresis" g2="G" k="20" />
+<hkern g1="idieresis" g2="H" k="14" />
+<hkern g1="idieresis" g2="I" k="14" />
+<hkern g1="idieresis" g2="K" k="14" />
+<hkern g1="idieresis" g2="L" k="14" />
+<hkern g1="idieresis" g2="M" k="10" />
+<hkern g1="idieresis" g2="N" k="14" />
+<hkern g1="idieresis" g2="O" k="23" />
+<hkern g1="idieresis" g2="P" k="14" />
+<hkern g1="idieresis" g2="Q" k="23" />
+<hkern g1="idieresis" g2="R" k="14" />
+<hkern g1="idieresis" g2="T" k="14" />
+<hkern g1="idieresis" g2="U" k="25" />
+<hkern g1="idieresis" g2="V" k="-57" />
+<hkern g1="idieresis" g2="W" k="-35" />
+<hkern g1="idieresis" g2="Y" k="12" />
+<hkern g1="idieresis" g2="t" k="8" />
+<hkern g1="idieresis" g2="w" k="10" />
+<hkern g1="idieresis" g2="y" k="10" />
+<hkern g1="idieresis" g2="Ccedilla" k="23" />
+<hkern g1="idieresis" g2="Egrave" k="14" />
+<hkern g1="idieresis" g2="Eacute" k="14" />
+<hkern g1="idieresis" g2="Ecircumflex" k="14" />
+<hkern g1="idieresis" g2="Edieresis" k="14" />
+<hkern g1="idieresis" g2="Igrave" k="14" />
+<hkern g1="idieresis" g2="Iacute" k="14" />
+<hkern g1="idieresis" g2="Icircumflex" k="14" />
+<hkern g1="idieresis" g2="Idieresis" k="14" />
+<hkern g1="idieresis" g2="Eth" k="14" />
+<hkern g1="idieresis" g2="Ntilde" k="14" />
+<hkern g1="idieresis" g2="Ograve" k="23" />
+<hkern g1="idieresis" g2="Oacute" k="23" />
+<hkern g1="idieresis" g2="Ocircumflex" k="23" />
+<hkern g1="idieresis" g2="Otilde" k="23" />
+<hkern g1="idieresis" g2="Odieresis" k="23" />
+<hkern g1="idieresis" g2="Oslash" k="23" />
+<hkern g1="idieresis" g2="Ugrave" k="25" />
+<hkern g1="idieresis" g2="Uacute" k="25" />
+<hkern g1="idieresis" g2="Ucircumflex" k="25" />
+<hkern g1="idieresis" g2="Udieresis" k="25" />
+<hkern g1="idieresis" g2="Yacute" k="12" />
+<hkern g1="idieresis" g2="Thorn" k="14" />
+<hkern g1="idieresis" g2="yacute" k="10" />
+<hkern g1="idieresis" g2="ydieresis" k="10" />
+<hkern g1="idieresis" g2="OE" k="23" />
+<hkern g1="eth" g2="quotedbl" k="16" />
+<hkern g1="eth" g2="quotesingle" k="16" />
+<hkern g1="eth" g2="parenright" k="55" />
+<hkern g1="eth" g2="comma" k="16" />
+<hkern g1="eth" g2="period" k="16" />
+<hkern g1="eth" g2="slash" k="98" />
+<hkern g1="eth" g2="backslash" k="51" />
+<hkern g1="eth" g2="bracketright" k="80" />
+<hkern g1="eth" g2="h" k="14" />
+<hkern g1="eth" g2="k" k="14" />
+<hkern g1="eth" g2="l" k="12" />
+<hkern g1="eth" g2="x" k="20" />
+<hkern g1="eth" g2="braceright" k="45" />
+<hkern g1="eth" g2="quoteleft" k="27" />
+<hkern g1="eth" g2="quoteright" k="23" />
+<hkern g1="eth" g2="quotesinglbase" k="16" />
+<hkern g1="eth" g2="quotedblleft" k="27" />
+<hkern g1="eth" g2="quotedblright" k="23" />
+<hkern g1="eth" g2="quotedblbase" k="16" />
+<hkern g1="ntilde" g2="quotedbl" k="27" />
+<hkern g1="ntilde" g2="quotesingle" k="27" />
+<hkern g1="ntilde" g2="parenright" k="51" />
+<hkern g1="ntilde" g2="asterisk" k="18" />
+<hkern g1="ntilde" g2="slash" k="39" />
+<hkern g1="ntilde" g2="question" k="39" />
+<hkern g1="ntilde" g2="B" k="12" />
+<hkern g1="ntilde" g2="C" k="25" />
+<hkern g1="ntilde" g2="D" k="12" />
+<hkern g1="ntilde" g2="E" k="12" />
+<hkern g1="ntilde" g2="F" k="12" />
+<hkern g1="ntilde" g2="G" k="23" />
+<hkern g1="ntilde" g2="H" k="12" />
+<hkern g1="ntilde" g2="I" k="12" />
+<hkern g1="ntilde" g2="K" k="12" />
+<hkern g1="ntilde" g2="L" k="12" />
+<hkern g1="ntilde" g2="N" k="12" />
+<hkern g1="ntilde" g2="O" k="25" />
+<hkern g1="ntilde" g2="P" k="12" />
+<hkern g1="ntilde" g2="Q" k="25" />
+<hkern g1="ntilde" g2="R" k="12" />
+<hkern g1="ntilde" g2="T" k="100" />
+<hkern g1="ntilde" g2="U" k="57" />
+<hkern g1="ntilde" g2="V" k="80" />
+<hkern g1="ntilde" g2="W" k="80" />
+<hkern g1="ntilde" g2="Y" k="100" />
+<hkern g1="ntilde" g2="backslash" k="113" />
+<hkern g1="ntilde" g2="bracketright" k="96" />
+<hkern g1="ntilde" g2="j" k="10" />
+<hkern g1="ntilde" g2="t" k="18" />
+<hkern g1="ntilde" g2="v" k="30" />
+<hkern g1="ntilde" g2="w" k="35" />
+<hkern g1="ntilde" g2="y" k="15" />
+<hkern g1="ntilde" g2="braceright" k="45" />
+<hkern g1="ntilde" g2="Ccedilla" k="25" />
+<hkern g1="ntilde" g2="Egrave" k="12" />
+<hkern g1="ntilde" g2="Eacute" k="12" />
+<hkern g1="ntilde" g2="Ecircumflex" k="12" />
+<hkern g1="ntilde" g2="Edieresis" k="12" />
+<hkern g1="ntilde" g2="Igrave" k="12" />
+<hkern g1="ntilde" g2="Iacute" k="12" />
+<hkern g1="ntilde" g2="Icircumflex" k="12" />
+<hkern g1="ntilde" g2="Idieresis" k="12" />
+<hkern g1="ntilde" g2="Eth" k="12" />
+<hkern g1="ntilde" g2="Ntilde" k="12" />
+<hkern g1="ntilde" g2="Ograve" k="25" />
+<hkern g1="ntilde" g2="Oacute" k="25" />
+<hkern g1="ntilde" g2="Ocircumflex" k="25" />
+<hkern g1="ntilde" g2="Otilde" k="25" />
+<hkern g1="ntilde" g2="Odieresis" k="25" />
+<hkern g1="ntilde" g2="Oslash" k="25" />
+<hkern g1="ntilde" g2="Ugrave" k="57" />
+<hkern g1="ntilde" g2="Uacute" k="57" />
+<hkern g1="ntilde" g2="Ucircumflex" k="57" />
+<hkern g1="ntilde" g2="Udieresis" k="57" />
+<hkern g1="ntilde" g2="Yacute" k="100" />
+<hkern g1="ntilde" g2="Thorn" k="12" />
+<hkern g1="ntilde" g2="yacute" k="15" />
+<hkern g1="ntilde" g2="ydieresis" k="15" />
+<hkern g1="ntilde" g2="OE" k="25" />
+<hkern g1="ntilde" g2="quoteleft" k="59" />
+<hkern g1="ntilde" g2="quoteright" k="47" />
+<hkern g1="ntilde" g2="quotedblleft" k="59" />
+<hkern g1="ntilde" g2="quotedblright" k="47" />
+<hkern g1="ograve" g2="quotedbl" k="29" />
+<hkern g1="ograve" g2="quotesingle" k="29" />
+<hkern g1="ograve" g2="parenright" k="100" />
+<hkern g1="ograve" g2="slash" k="98" />
+<hkern g1="ograve" g2="question" k="35" />
+<hkern g1="ograve" g2="A" k="15" />
+<hkern g1="ograve" g2="B" k="49" />
+<hkern g1="ograve" g2="D" k="49" />
+<hkern g1="ograve" g2="E" k="49" />
+<hkern g1="ograve" g2="F" k="49" />
+<hkern g1="ograve" g2="H" k="49" />
+<hkern g1="ograve" g2="I" k="49" />
+<hkern g1="ograve" g2="K" k="49" />
+<hkern g1="ograve" g2="L" k="49" />
+<hkern g1="ograve" g2="M" k="43" />
+<hkern g1="ograve" g2="N" k="49" />
+<hkern g1="ograve" g2="P" k="49" />
+<hkern g1="ograve" g2="R" k="49" />
+<hkern g1="ograve" g2="S" k="12" />
+<hkern g1="ograve" g2="T" k="100" />
+<hkern g1="ograve" g2="U" k="41" />
+<hkern g1="ograve" g2="V" k="70" />
+<hkern g1="ograve" g2="W" k="100" />
+<hkern g1="ograve" g2="X" k="94" />
+<hkern g1="ograve" g2="Y" k="115" />
+<hkern g1="ograve" g2="Z" k="43" />
+<hkern g1="ograve" g2="backslash" k="98" />
+<hkern g1="ograve" g2="bracketright" k="104" />
+<hkern g1="ograve" g2="f" k="10" />
+<hkern g1="ograve" g2="v" k="10" />
+<hkern g1="ograve" g2="w" k="20" />
+<hkern g1="ograve" g2="x" k="10" />
+<hkern g1="ograve" g2="y" k="16" />
+<hkern g1="ograve" g2="braceright" k="53" />
+<hkern g1="ograve" g2="Agrave" k="15" />
+<hkern g1="ograve" g2="Aacute" k="15" />
+<hkern g1="ograve" g2="Acircumflex" k="15" />
+<hkern g1="ograve" g2="Atilde" k="15" />
+<hkern g1="ograve" g2="Adieresis" k="15" />
+<hkern g1="ograve" g2="Aring" k="15" />
+<hkern g1="ograve" g2="Egrave" k="49" />
+<hkern g1="ograve" g2="Eacute" k="49" />
+<hkern g1="ograve" g2="Ecircumflex" k="49" />
+<hkern g1="ograve" g2="Edieresis" k="49" />
+<hkern g1="ograve" g2="Igrave" k="49" />
+<hkern g1="ograve" g2="Iacute" k="49" />
+<hkern g1="ograve" g2="Icircumflex" k="49" />
+<hkern g1="ograve" g2="Idieresis" k="49" />
+<hkern g1="ograve" g2="Eth" k="49" />
+<hkern g1="ograve" g2="Ntilde" k="49" />
+<hkern g1="ograve" g2="Ugrave" k="41" />
+<hkern g1="ograve" g2="Uacute" k="41" />
+<hkern g1="ograve" g2="Ucircumflex" k="41" />
+<hkern g1="ograve" g2="Udieresis" k="41" />
+<hkern g1="ograve" g2="Yacute" k="115" />
+<hkern g1="ograve" g2="Thorn" k="49" />
+<hkern g1="ograve" g2="germandbls" k="10" />
+<hkern g1="ograve" g2="yacute" k="16" />
+<hkern g1="ograve" g2="ydieresis" k="16" />
+<hkern g1="ograve" g2="quoteleft" k="70" />
+<hkern g1="ograve" g2="quoteright" k="53" />
+<hkern g1="ograve" g2="quotedblleft" k="70" />
+<hkern g1="ograve" g2="quotedblright" k="53" />
+<hkern g1="oacute" g2="quotedbl" k="29" />
+<hkern g1="oacute" g2="quotesingle" k="29" />
+<hkern g1="oacute" g2="parenright" k="100" />
+<hkern g1="oacute" g2="slash" k="98" />
+<hkern g1="oacute" g2="question" k="35" />
+<hkern g1="oacute" g2="A" k="15" />
+<hkern g1="oacute" g2="B" k="49" />
+<hkern g1="oacute" g2="D" k="49" />
+<hkern g1="oacute" g2="E" k="49" />
+<hkern g1="oacute" g2="F" k="49" />
+<hkern g1="oacute" g2="H" k="49" />
+<hkern g1="oacute" g2="I" k="49" />
+<hkern g1="oacute" g2="K" k="49" />
+<hkern g1="oacute" g2="L" k="49" />
+<hkern g1="oacute" g2="M" k="43" />
+<hkern g1="oacute" g2="N" k="49" />
+<hkern g1="oacute" g2="P" k="49" />
+<hkern g1="oacute" g2="R" k="49" />
+<hkern g1="oacute" g2="S" k="12" />
+<hkern g1="oacute" g2="T" k="100" />
+<hkern g1="oacute" g2="U" k="41" />
+<hkern g1="oacute" g2="V" k="70" />
+<hkern g1="oacute" g2="W" k="100" />
+<hkern g1="oacute" g2="X" k="94" />
+<hkern g1="oacute" g2="Y" k="115" />
+<hkern g1="oacute" g2="Z" k="43" />
+<hkern g1="oacute" g2="backslash" k="98" />
+<hkern g1="oacute" g2="bracketright" k="104" />
+<hkern g1="oacute" g2="f" k="10" />
+<hkern g1="oacute" g2="v" k="10" />
+<hkern g1="oacute" g2="w" k="20" />
+<hkern g1="oacute" g2="x" k="10" />
+<hkern g1="oacute" g2="y" k="16" />
+<hkern g1="oacute" g2="braceright" k="53" />
+<hkern g1="oacute" g2="Agrave" k="15" />
+<hkern g1="oacute" g2="Aacute" k="15" />
+<hkern g1="oacute" g2="Acircumflex" k="15" />
+<hkern g1="oacute" g2="Atilde" k="15" />
+<hkern g1="oacute" g2="Adieresis" k="15" />
+<hkern g1="oacute" g2="Aring" k="15" />
+<hkern g1="oacute" g2="Egrave" k="49" />
+<hkern g1="oacute" g2="Eacute" k="49" />
+<hkern g1="oacute" g2="Ecircumflex" k="49" />
+<hkern g1="oacute" g2="Edieresis" k="49" />
+<hkern g1="oacute" g2="Igrave" k="49" />
+<hkern g1="oacute" g2="Iacute" k="49" />
+<hkern g1="oacute" g2="Icircumflex" k="49" />
+<hkern g1="oacute" g2="Idieresis" k="49" />
+<hkern g1="oacute" g2="Eth" k="49" />
+<hkern g1="oacute" g2="Ntilde" k="49" />
+<hkern g1="oacute" g2="Ugrave" k="41" />
+<hkern g1="oacute" g2="Uacute" k="41" />
+<hkern g1="oacute" g2="Ucircumflex" k="41" />
+<hkern g1="oacute" g2="Udieresis" k="41" />
+<hkern g1="oacute" g2="Yacute" k="115" />
+<hkern g1="oacute" g2="Thorn" k="49" />
+<hkern g1="oacute" g2="germandbls" k="10" />
+<hkern g1="oacute" g2="yacute" k="16" />
+<hkern g1="oacute" g2="ydieresis" k="16" />
+<hkern g1="oacute" g2="quoteleft" k="70" />
+<hkern g1="oacute" g2="quoteright" k="53" />
+<hkern g1="oacute" g2="quotedblleft" k="70" />
+<hkern g1="oacute" g2="quotedblright" k="53" />
+<hkern g1="ocircumflex" g2="quotedbl" k="29" />
+<hkern g1="ocircumflex" g2="quotesingle" k="29" />
+<hkern g1="ocircumflex" g2="parenright" k="100" />
+<hkern g1="ocircumflex" g2="slash" k="98" />
+<hkern g1="ocircumflex" g2="question" k="35" />
+<hkern g1="ocircumflex" g2="A" k="15" />
+<hkern g1="ocircumflex" g2="B" k="49" />
+<hkern g1="ocircumflex" g2="D" k="49" />
+<hkern g1="ocircumflex" g2="E" k="49" />
+<hkern g1="ocircumflex" g2="F" k="49" />
+<hkern g1="ocircumflex" g2="H" k="49" />
+<hkern g1="ocircumflex" g2="I" k="49" />
+<hkern g1="ocircumflex" g2="K" k="49" />
+<hkern g1="ocircumflex" g2="L" k="49" />
+<hkern g1="ocircumflex" g2="M" k="43" />
+<hkern g1="ocircumflex" g2="N" k="49" />
+<hkern g1="ocircumflex" g2="P" k="49" />
+<hkern g1="ocircumflex" g2="R" k="49" />
+<hkern g1="ocircumflex" g2="S" k="12" />
+<hkern g1="ocircumflex" g2="T" k="100" />
+<hkern g1="ocircumflex" g2="U" k="41" />
+<hkern g1="ocircumflex" g2="V" k="70" />
+<hkern g1="ocircumflex" g2="W" k="100" />
+<hkern g1="ocircumflex" g2="X" k="94" />
+<hkern g1="ocircumflex" g2="Y" k="115" />
+<hkern g1="ocircumflex" g2="Z" k="43" />
+<hkern g1="ocircumflex" g2="backslash" k="98" />
+<hkern g1="ocircumflex" g2="bracketright" k="104" />
+<hkern g1="ocircumflex" g2="f" k="10" />
+<hkern g1="ocircumflex" g2="v" k="10" />
+<hkern g1="ocircumflex" g2="w" k="20" />
+<hkern g1="ocircumflex" g2="x" k="10" />
+<hkern g1="ocircumflex" g2="y" k="16" />
+<hkern g1="ocircumflex" g2="braceright" k="53" />
+<hkern g1="ocircumflex" g2="Agrave" k="15" />
+<hkern g1="ocircumflex" g2="Aacute" k="15" />
+<hkern g1="ocircumflex" g2="Acircumflex" k="15" />
+<hkern g1="ocircumflex" g2="Atilde" k="15" />
+<hkern g1="ocircumflex" g2="Adieresis" k="15" />
+<hkern g1="ocircumflex" g2="Aring" k="15" />
+<hkern g1="ocircumflex" g2="Egrave" k="49" />
+<hkern g1="ocircumflex" g2="Eacute" k="49" />
+<hkern g1="ocircumflex" g2="Ecircumflex" k="49" />
+<hkern g1="ocircumflex" g2="Edieresis" k="49" />
+<hkern g1="ocircumflex" g2="Igrave" k="49" />
+<hkern g1="ocircumflex" g2="Iacute" k="49" />
+<hkern g1="ocircumflex" g2="Icircumflex" k="49" />
+<hkern g1="ocircumflex" g2="Idieresis" k="49" />
+<hkern g1="ocircumflex" g2="Eth" k="49" />
+<hkern g1="ocircumflex" g2="Ntilde" k="49" />
+<hkern g1="ocircumflex" g2="Ugrave" k="41" />
+<hkern g1="ocircumflex" g2="Uacute" k="41" />
+<hkern g1="ocircumflex" g2="Ucircumflex" k="41" />
+<hkern g1="ocircumflex" g2="Udieresis" k="41" />
+<hkern g1="ocircumflex" g2="Yacute" k="115" />
+<hkern g1="ocircumflex" g2="Thorn" k="49" />
+<hkern g1="ocircumflex" g2="germandbls" k="10" />
+<hkern g1="ocircumflex" g2="yacute" k="16" />
+<hkern g1="ocircumflex" g2="ydieresis" k="16" />
+<hkern g1="ocircumflex" g2="quoteleft" k="70" />
+<hkern g1="ocircumflex" g2="quoteright" k="53" />
+<hkern g1="ocircumflex" g2="quotedblleft" k="70" />
+<hkern g1="ocircumflex" g2="quotedblright" k="53" />
+<hkern g1="otilde" g2="quotedbl" k="29" />
+<hkern g1="otilde" g2="quotesingle" k="29" />
+<hkern g1="otilde" g2="parenright" k="100" />
+<hkern g1="otilde" g2="slash" k="98" />
+<hkern g1="otilde" g2="question" k="35" />
+<hkern g1="otilde" g2="A" k="15" />
+<hkern g1="otilde" g2="B" k="49" />
+<hkern g1="otilde" g2="D" k="49" />
+<hkern g1="otilde" g2="E" k="49" />
+<hkern g1="otilde" g2="F" k="49" />
+<hkern g1="otilde" g2="H" k="49" />
+<hkern g1="otilde" g2="I" k="49" />
+<hkern g1="otilde" g2="K" k="49" />
+<hkern g1="otilde" g2="L" k="49" />
+<hkern g1="otilde" g2="M" k="43" />
+<hkern g1="otilde" g2="N" k="49" />
+<hkern g1="otilde" g2="P" k="49" />
+<hkern g1="otilde" g2="R" k="49" />
+<hkern g1="otilde" g2="S" k="12" />
+<hkern g1="otilde" g2="T" k="100" />
+<hkern g1="otilde" g2="U" k="41" />
+<hkern g1="otilde" g2="V" k="70" />
+<hkern g1="otilde" g2="W" k="100" />
+<hkern g1="otilde" g2="X" k="94" />
+<hkern g1="otilde" g2="Y" k="115" />
+<hkern g1="otilde" g2="Z" k="43" />
+<hkern g1="otilde" g2="backslash" k="98" />
+<hkern g1="otilde" g2="bracketright" k="104" />
+<hkern g1="otilde" g2="f" k="10" />
+<hkern g1="otilde" g2="v" k="10" />
+<hkern g1="otilde" g2="w" k="20" />
+<hkern g1="otilde" g2="x" k="10" />
+<hkern g1="otilde" g2="y" k="16" />
+<hkern g1="otilde" g2="braceright" k="53" />
+<hkern g1="otilde" g2="Agrave" k="15" />
+<hkern g1="otilde" g2="Aacute" k="15" />
+<hkern g1="otilde" g2="Acircumflex" k="15" />
+<hkern g1="otilde" g2="Atilde" k="15" />
+<hkern g1="otilde" g2="Adieresis" k="15" />
+<hkern g1="otilde" g2="Aring" k="15" />
+<hkern g1="otilde" g2="Egrave" k="49" />
+<hkern g1="otilde" g2="Eacute" k="49" />
+<hkern g1="otilde" g2="Ecircumflex" k="49" />
+<hkern g1="otilde" g2="Edieresis" k="49" />
+<hkern g1="otilde" g2="Igrave" k="49" />
+<hkern g1="otilde" g2="Iacute" k="49" />
+<hkern g1="otilde" g2="Icircumflex" k="49" />
+<hkern g1="otilde" g2="Idieresis" k="49" />
+<hkern g1="otilde" g2="Eth" k="49" />
+<hkern g1="otilde" g2="Ntilde" k="49" />
+<hkern g1="otilde" g2="Ugrave" k="41" />
+<hkern g1="otilde" g2="Uacute" k="41" />
+<hkern g1="otilde" g2="Ucircumflex" k="41" />
+<hkern g1="otilde" g2="Udieresis" k="41" />
+<hkern g1="otilde" g2="Yacute" k="115" />
+<hkern g1="otilde" g2="Thorn" k="49" />
+<hkern g1="otilde" g2="germandbls" k="10" />
+<hkern g1="otilde" g2="yacute" k="16" />
+<hkern g1="otilde" g2="ydieresis" k="16" />
+<hkern g1="otilde" g2="quoteleft" k="70" />
+<hkern g1="otilde" g2="quoteright" k="53" />
+<hkern g1="otilde" g2="quotedblleft" k="70" />
+<hkern g1="otilde" g2="quotedblright" k="53" />
+<hkern g1="odieresis" g2="quotedbl" k="29" />
+<hkern g1="odieresis" g2="quotesingle" k="29" />
+<hkern g1="odieresis" g2="parenright" k="100" />
+<hkern g1="odieresis" g2="slash" k="98" />
+<hkern g1="odieresis" g2="question" k="35" />
+<hkern g1="odieresis" g2="A" k="15" />
+<hkern g1="odieresis" g2="B" k="49" />
+<hkern g1="odieresis" g2="D" k="49" />
+<hkern g1="odieresis" g2="E" k="49" />
+<hkern g1="odieresis" g2="F" k="49" />
+<hkern g1="odieresis" g2="H" k="49" />
+<hkern g1="odieresis" g2="I" k="49" />
+<hkern g1="odieresis" g2="K" k="49" />
+<hkern g1="odieresis" g2="L" k="49" />
+<hkern g1="odieresis" g2="M" k="43" />
+<hkern g1="odieresis" g2="N" k="49" />
+<hkern g1="odieresis" g2="P" k="49" />
+<hkern g1="odieresis" g2="R" k="49" />
+<hkern g1="odieresis" g2="S" k="12" />
+<hkern g1="odieresis" g2="T" k="100" />
+<hkern g1="odieresis" g2="U" k="41" />
+<hkern g1="odieresis" g2="V" k="70" />
+<hkern g1="odieresis" g2="W" k="100" />
+<hkern g1="odieresis" g2="X" k="94" />
+<hkern g1="odieresis" g2="Y" k="115" />
+<hkern g1="odieresis" g2="Z" k="43" />
+<hkern g1="odieresis" g2="backslash" k="98" />
+<hkern g1="odieresis" g2="bracketright" k="104" />
+<hkern g1="odieresis" g2="f" k="10" />
+<hkern g1="odieresis" g2="v" k="10" />
+<hkern g1="odieresis" g2="w" k="20" />
+<hkern g1="odieresis" g2="x" k="10" />
+<hkern g1="odieresis" g2="y" k="16" />
+<hkern g1="odieresis" g2="braceright" k="53" />
+<hkern g1="odieresis" g2="Agrave" k="15" />
+<hkern g1="odieresis" g2="Aacute" k="15" />
+<hkern g1="odieresis" g2="Acircumflex" k="15" />
+<hkern g1="odieresis" g2="Atilde" k="15" />
+<hkern g1="odieresis" g2="Adieresis" k="15" />
+<hkern g1="odieresis" g2="Aring" k="15" />
+<hkern g1="odieresis" g2="Egrave" k="49" />
+<hkern g1="odieresis" g2="Eacute" k="49" />
+<hkern g1="odieresis" g2="Ecircumflex" k="49" />
+<hkern g1="odieresis" g2="Edieresis" k="49" />
+<hkern g1="odieresis" g2="Igrave" k="49" />
+<hkern g1="odieresis" g2="Iacute" k="49" />
+<hkern g1="odieresis" g2="Icircumflex" k="49" />
+<hkern g1="odieresis" g2="Idieresis" k="49" />
+<hkern g1="odieresis" g2="Eth" k="49" />
+<hkern g1="odieresis" g2="Ntilde" k="49" />
+<hkern g1="odieresis" g2="Ugrave" k="41" />
+<hkern g1="odieresis" g2="Uacute" k="41" />
+<hkern g1="odieresis" g2="Ucircumflex" k="41" />
+<hkern g1="odieresis" g2="Udieresis" k="41" />
+<hkern g1="odieresis" g2="Yacute" k="115" />
+<hkern g1="odieresis" g2="Thorn" k="49" />
+<hkern g1="odieresis" g2="germandbls" k="10" />
+<hkern g1="odieresis" g2="yacute" k="16" />
+<hkern g1="odieresis" g2="ydieresis" k="16" />
+<hkern g1="odieresis" g2="quoteleft" k="70" />
+<hkern g1="odieresis" g2="quoteright" k="53" />
+<hkern g1="odieresis" g2="quotedblleft" k="70" />
+<hkern g1="odieresis" g2="quotedblright" k="53" />
+<hkern g1="oslash" g2="quotedbl" k="29" />
+<hkern g1="oslash" g2="quotesingle" k="29" />
+<hkern g1="oslash" g2="parenright" k="100" />
+<hkern g1="oslash" g2="slash" k="98" />
+<hkern g1="oslash" g2="question" k="35" />
+<hkern g1="oslash" g2="A" k="15" />
+<hkern g1="oslash" g2="B" k="49" />
+<hkern g1="oslash" g2="D" k="49" />
+<hkern g1="oslash" g2="E" k="49" />
+<hkern g1="oslash" g2="F" k="49" />
+<hkern g1="oslash" g2="H" k="49" />
+<hkern g1="oslash" g2="I" k="49" />
+<hkern g1="oslash" g2="K" k="49" />
+<hkern g1="oslash" g2="L" k="49" />
+<hkern g1="oslash" g2="M" k="43" />
+<hkern g1="oslash" g2="N" k="49" />
+<hkern g1="oslash" g2="P" k="49" />
+<hkern g1="oslash" g2="R" k="49" />
+<hkern g1="oslash" g2="S" k="12" />
+<hkern g1="oslash" g2="T" k="100" />
+<hkern g1="oslash" g2="U" k="41" />
+<hkern g1="oslash" g2="V" k="70" />
+<hkern g1="oslash" g2="W" k="100" />
+<hkern g1="oslash" g2="X" k="94" />
+<hkern g1="oslash" g2="Y" k="115" />
+<hkern g1="oslash" g2="Z" k="43" />
+<hkern g1="oslash" g2="backslash" k="98" />
+<hkern g1="oslash" g2="bracketright" k="104" />
+<hkern g1="oslash" g2="f" k="10" />
+<hkern g1="oslash" g2="v" k="10" />
+<hkern g1="oslash" g2="w" k="20" />
+<hkern g1="oslash" g2="x" k="10" />
+<hkern g1="oslash" g2="y" k="16" />
+<hkern g1="oslash" g2="braceright" k="53" />
+<hkern g1="oslash" g2="Agrave" k="15" />
+<hkern g1="oslash" g2="Aacute" k="15" />
+<hkern g1="oslash" g2="Acircumflex" k="15" />
+<hkern g1="oslash" g2="Atilde" k="15" />
+<hkern g1="oslash" g2="Adieresis" k="15" />
+<hkern g1="oslash" g2="Aring" k="15" />
+<hkern g1="oslash" g2="Egrave" k="49" />
+<hkern g1="oslash" g2="Eacute" k="49" />
+<hkern g1="oslash" g2="Ecircumflex" k="49" />
+<hkern g1="oslash" g2="Edieresis" k="49" />
+<hkern g1="oslash" g2="Igrave" k="49" />
+<hkern g1="oslash" g2="Iacute" k="49" />
+<hkern g1="oslash" g2="Icircumflex" k="49" />
+<hkern g1="oslash" g2="Idieresis" k="49" />
+<hkern g1="oslash" g2="Eth" k="49" />
+<hkern g1="oslash" g2="Ntilde" k="49" />
+<hkern g1="oslash" g2="Ugrave" k="41" />
+<hkern g1="oslash" g2="Uacute" k="41" />
+<hkern g1="oslash" g2="Ucircumflex" k="41" />
+<hkern g1="oslash" g2="Udieresis" k="41" />
+<hkern g1="oslash" g2="Yacute" k="115" />
+<hkern g1="oslash" g2="Thorn" k="49" />
+<hkern g1="oslash" g2="germandbls" k="10" />
+<hkern g1="oslash" g2="yacute" k="16" />
+<hkern g1="oslash" g2="ydieresis" k="16" />
+<hkern g1="oslash" g2="quoteleft" k="70" />
+<hkern g1="oslash" g2="quoteright" k="53" />
+<hkern g1="oslash" g2="quotedblleft" k="70" />
+<hkern g1="oslash" g2="quotedblright" k="53" />
+<hkern g1="ugrave" g2="parenright" k="47" />
+<hkern g1="ugrave" g2="slash" k="41" />
+<hkern g1="ugrave" g2="question" k="20" />
+<hkern g1="ugrave" g2="B" k="16" />
+<hkern g1="ugrave" g2="C" k="25" />
+<hkern g1="ugrave" g2="D" k="16" />
+<hkern g1="ugrave" g2="E" k="16" />
+<hkern g1="ugrave" g2="F" k="16" />
+<hkern g1="ugrave" g2="G" k="23" />
+<hkern g1="ugrave" g2="H" k="16" />
+<hkern g1="ugrave" g2="I" k="16" />
+<hkern g1="ugrave" g2="K" k="16" />
+<hkern g1="ugrave" g2="L" k="16" />
+<hkern g1="ugrave" g2="M" k="8" />
+<hkern g1="ugrave" g2="N" k="16" />
+<hkern g1="ugrave" g2="O" k="25" />
+<hkern g1="ugrave" g2="P" k="16" />
+<hkern g1="ugrave" g2="Q" k="25" />
+<hkern g1="ugrave" g2="R" k="16" />
+<hkern g1="ugrave" g2="T" k="47" />
+<hkern g1="ugrave" g2="U" k="53" />
+<hkern g1="ugrave" g2="V" k="80" />
+<hkern g1="ugrave" g2="W" k="121" />
+<hkern g1="ugrave" g2="Y" k="123" />
+<hkern g1="ugrave" g2="backslash" k="86" />
+<hkern g1="ugrave" g2="bracketright" k="94" />
+<hkern g1="ugrave" g2="u" k="8" />
+<hkern g1="ugrave" g2="v" k="10" />
+<hkern g1="ugrave" g2="w" k="12" />
+<hkern g1="ugrave" g2="y" k="12" />
+<hkern g1="ugrave" g2="braceright" k="43" />
+<hkern g1="ugrave" g2="Ccedilla" k="25" />
+<hkern g1="ugrave" g2="Egrave" k="16" />
+<hkern g1="ugrave" g2="Eacute" k="16" />
+<hkern g1="ugrave" g2="Ecircumflex" k="16" />
+<hkern g1="ugrave" g2="Edieresis" k="16" />
+<hkern g1="ugrave" g2="Igrave" k="16" />
+<hkern g1="ugrave" g2="Iacute" k="16" />
+<hkern g1="ugrave" g2="Icircumflex" k="16" />
+<hkern g1="ugrave" g2="Idieresis" k="16" />
+<hkern g1="ugrave" g2="Eth" k="16" />
+<hkern g1="ugrave" g2="Ntilde" k="16" />
+<hkern g1="ugrave" g2="Ograve" k="25" />
+<hkern g1="ugrave" g2="Oacute" k="25" />
+<hkern g1="ugrave" g2="Ocircumflex" k="25" />
+<hkern g1="ugrave" g2="Otilde" k="25" />
+<hkern g1="ugrave" g2="Odieresis" k="25" />
+<hkern g1="ugrave" g2="Oslash" k="25" />
+<hkern g1="ugrave" g2="Ugrave" k="53" />
+<hkern g1="ugrave" g2="Uacute" k="53" />
+<hkern g1="ugrave" g2="Ucircumflex" k="53" />
+<hkern g1="ugrave" g2="Udieresis" k="53" />
+<hkern g1="ugrave" g2="Yacute" k="123" />
+<hkern g1="ugrave" g2="Thorn" k="16" />
+<hkern g1="ugrave" g2="eth" k="8" />
+<hkern g1="ugrave" g2="ugrave" k="8" />
+<hkern g1="ugrave" g2="uacute" k="8" />
+<hkern g1="ugrave" g2="ucircumflex" k="8" />
+<hkern g1="ugrave" g2="udieresis" k="8" />
+<hkern g1="ugrave" g2="yacute" k="12" />
+<hkern g1="ugrave" g2="ydieresis" k="12" />
+<hkern g1="ugrave" g2="OE" k="25" />
+<hkern g1="ugrave" g2="quoteleft" k="35" />
+<hkern g1="ugrave" g2="quoteright" k="23" />
+<hkern g1="ugrave" g2="quotedblleft" k="35" />
+<hkern g1="ugrave" g2="quotedblright" k="23" />
+<hkern g1="uacute" g2="parenright" k="47" />
+<hkern g1="uacute" g2="slash" k="41" />
+<hkern g1="uacute" g2="question" k="20" />
+<hkern g1="uacute" g2="B" k="16" />
+<hkern g1="uacute" g2="C" k="25" />
+<hkern g1="uacute" g2="D" k="16" />
+<hkern g1="uacute" g2="E" k="16" />
+<hkern g1="uacute" g2="F" k="16" />
+<hkern g1="uacute" g2="G" k="23" />
+<hkern g1="uacute" g2="H" k="16" />
+<hkern g1="uacute" g2="I" k="16" />
+<hkern g1="uacute" g2="K" k="16" />
+<hkern g1="uacute" g2="L" k="16" />
+<hkern g1="uacute" g2="M" k="8" />
+<hkern g1="uacute" g2="N" k="16" />
+<hkern g1="uacute" g2="O" k="25" />
+<hkern g1="uacute" g2="P" k="16" />
+<hkern g1="uacute" g2="Q" k="25" />
+<hkern g1="uacute" g2="R" k="16" />
+<hkern g1="uacute" g2="T" k="47" />
+<hkern g1="uacute" g2="U" k="53" />
+<hkern g1="uacute" g2="V" k="80" />
+<hkern g1="uacute" g2="W" k="121" />
+<hkern g1="uacute" g2="Y" k="123" />
+<hkern g1="uacute" g2="backslash" k="86" />
+<hkern g1="uacute" g2="bracketright" k="94" />
+<hkern g1="uacute" g2="u" k="8" />
+<hkern g1="uacute" g2="v" k="10" />
+<hkern g1="uacute" g2="w" k="12" />
+<hkern g1="uacute" g2="y" k="12" />
+<hkern g1="uacute" g2="braceright" k="43" />
+<hkern g1="uacute" g2="Ccedilla" k="25" />
+<hkern g1="uacute" g2="Egrave" k="16" />
+<hkern g1="uacute" g2="Eacute" k="16" />
+<hkern g1="uacute" g2="Ecircumflex" k="16" />
+<hkern g1="uacute" g2="Edieresis" k="16" />
+<hkern g1="uacute" g2="Igrave" k="16" />
+<hkern g1="uacute" g2="Iacute" k="16" />
+<hkern g1="uacute" g2="Icircumflex" k="16" />
+<hkern g1="uacute" g2="Idieresis" k="16" />
+<hkern g1="uacute" g2="Eth" k="16" />
+<hkern g1="uacute" g2="Ntilde" k="16" />
+<hkern g1="uacute" g2="Ograve" k="25" />
+<hkern g1="uacute" g2="Oacute" k="25" />
+<hkern g1="uacute" g2="Ocircumflex" k="25" />
+<hkern g1="uacute" g2="Otilde" k="25" />
+<hkern g1="uacute" g2="Odieresis" k="25" />
+<hkern g1="uacute" g2="Oslash" k="25" />
+<hkern g1="uacute" g2="Ugrave" k="53" />
+<hkern g1="uacute" g2="Uacute" k="53" />
+<hkern g1="uacute" g2="Ucircumflex" k="53" />
+<hkern g1="uacute" g2="Udieresis" k="53" />
+<hkern g1="uacute" g2="Yacute" k="123" />
+<hkern g1="uacute" g2="Thorn" k="16" />
+<hkern g1="uacute" g2="eth" k="8" />
+<hkern g1="uacute" g2="ugrave" k="8" />
+<hkern g1="uacute" g2="uacute" k="8" />
+<hkern g1="uacute" g2="ucircumflex" k="8" />
+<hkern g1="uacute" g2="udieresis" k="8" />
+<hkern g1="uacute" g2="yacute" k="12" />
+<hkern g1="uacute" g2="ydieresis" k="12" />
+<hkern g1="uacute" g2="OE" k="25" />
+<hkern g1="uacute" g2="quoteleft" k="35" />
+<hkern g1="uacute" g2="quoteright" k="23" />
+<hkern g1="uacute" g2="quotedblleft" k="35" />
+<hkern g1="uacute" g2="quotedblright" k="23" />
+<hkern g1="ucircumflex" g2="parenright" k="47" />
+<hkern g1="ucircumflex" g2="slash" k="41" />
+<hkern g1="ucircumflex" g2="question" k="20" />
+<hkern g1="ucircumflex" g2="B" k="16" />
+<hkern g1="ucircumflex" g2="C" k="25" />
+<hkern g1="ucircumflex" g2="D" k="16" />
+<hkern g1="ucircumflex" g2="E" k="16" />
+<hkern g1="ucircumflex" g2="F" k="16" />
+<hkern g1="ucircumflex" g2="G" k="23" />
+<hkern g1="ucircumflex" g2="H" k="16" />
+<hkern g1="ucircumflex" g2="I" k="16" />
+<hkern g1="ucircumflex" g2="K" k="16" />
+<hkern g1="ucircumflex" g2="L" k="16" />
+<hkern g1="ucircumflex" g2="M" k="8" />
+<hkern g1="ucircumflex" g2="N" k="16" />
+<hkern g1="ucircumflex" g2="O" k="25" />
+<hkern g1="ucircumflex" g2="P" k="16" />
+<hkern g1="ucircumflex" g2="Q" k="25" />
+<hkern g1="ucircumflex" g2="R" k="16" />
+<hkern g1="ucircumflex" g2="T" k="47" />
+<hkern g1="ucircumflex" g2="U" k="53" />
+<hkern g1="ucircumflex" g2="V" k="80" />
+<hkern g1="ucircumflex" g2="W" k="121" />
+<hkern g1="ucircumflex" g2="Y" k="123" />
+<hkern g1="ucircumflex" g2="backslash" k="86" />
+<hkern g1="ucircumflex" g2="bracketright" k="94" />
+<hkern g1="ucircumflex" g2="u" k="8" />
+<hkern g1="ucircumflex" g2="v" k="10" />
+<hkern g1="ucircumflex" g2="w" k="12" />
+<hkern g1="ucircumflex" g2="y" k="12" />
+<hkern g1="ucircumflex" g2="braceright" k="43" />
+<hkern g1="ucircumflex" g2="Ccedilla" k="25" />
+<hkern g1="ucircumflex" g2="Egrave" k="16" />
+<hkern g1="ucircumflex" g2="Eacute" k="16" />
+<hkern g1="ucircumflex" g2="Ecircumflex" k="16" />
+<hkern g1="ucircumflex" g2="Edieresis" k="16" />
+<hkern g1="ucircumflex" g2="Igrave" k="16" />
+<hkern g1="ucircumflex" g2="Iacute" k="16" />
+<hkern g1="ucircumflex" g2="Icircumflex" k="16" />
+<hkern g1="ucircumflex" g2="Idieresis" k="16" />
+<hkern g1="ucircumflex" g2="Eth" k="16" />
+<hkern g1="ucircumflex" g2="Ntilde" k="16" />
+<hkern g1="ucircumflex" g2="Ograve" k="25" />
+<hkern g1="ucircumflex" g2="Oacute" k="25" />
+<hkern g1="ucircumflex" g2="Ocircumflex" k="25" />
+<hkern g1="ucircumflex" g2="Otilde" k="25" />
+<hkern g1="ucircumflex" g2="Odieresis" k="25" />
+<hkern g1="ucircumflex" g2="Oslash" k="25" />
+<hkern g1="ucircumflex" g2="Ugrave" k="53" />
+<hkern g1="ucircumflex" g2="Uacute" k="53" />
+<hkern g1="ucircumflex" g2="Ucircumflex" k="53" />
+<hkern g1="ucircumflex" g2="Udieresis" k="53" />
+<hkern g1="ucircumflex" g2="Yacute" k="123" />
+<hkern g1="ucircumflex" g2="Thorn" k="16" />
+<hkern g1="ucircumflex" g2="eth" k="8" />
+<hkern g1="ucircumflex" g2="ugrave" k="8" />
+<hkern g1="ucircumflex" g2="uacute" k="8" />
+<hkern g1="ucircumflex" g2="ucircumflex" k="8" />
+<hkern g1="ucircumflex" g2="udieresis" k="8" />
+<hkern g1="ucircumflex" g2="yacute" k="12" />
+<hkern g1="ucircumflex" g2="ydieresis" k="12" />
+<hkern g1="ucircumflex" g2="OE" k="25" />
+<hkern g1="ucircumflex" g2="quoteleft" k="35" />
+<hkern g1="ucircumflex" g2="quoteright" k="23" />
+<hkern g1="ucircumflex" g2="quotedblleft" k="35" />
+<hkern g1="ucircumflex" g2="quotedblright" k="23" />
+<hkern g1="udieresis" g2="parenright" k="47" />
+<hkern g1="udieresis" g2="slash" k="41" />
+<hkern g1="udieresis" g2="question" k="20" />
+<hkern g1="udieresis" g2="B" k="16" />
+<hkern g1="udieresis" g2="C" k="25" />
+<hkern g1="udieresis" g2="D" k="16" />
+<hkern g1="udieresis" g2="E" k="16" />
+<hkern g1="udieresis" g2="F" k="16" />
+<hkern g1="udieresis" g2="G" k="23" />
+<hkern g1="udieresis" g2="H" k="16" />
+<hkern g1="udieresis" g2="I" k="16" />
+<hkern g1="udieresis" g2="K" k="16" />
+<hkern g1="udieresis" g2="L" k="16" />
+<hkern g1="udieresis" g2="M" k="8" />
+<hkern g1="udieresis" g2="N" k="16" />
+<hkern g1="udieresis" g2="O" k="25" />
+<hkern g1="udieresis" g2="P" k="16" />
+<hkern g1="udieresis" g2="Q" k="25" />
+<hkern g1="udieresis" g2="R" k="16" />
+<hkern g1="udieresis" g2="T" k="47" />
+<hkern g1="udieresis" g2="U" k="53" />
+<hkern g1="udieresis" g2="V" k="80" />
+<hkern g1="udieresis" g2="W" k="121" />
+<hkern g1="udieresis" g2="Y" k="123" />
+<hkern g1="udieresis" g2="backslash" k="86" />
+<hkern g1="udieresis" g2="bracketright" k="94" />
+<hkern g1="udieresis" g2="u" k="8" />
+<hkern g1="udieresis" g2="v" k="10" />
+<hkern g1="udieresis" g2="w" k="12" />
+<hkern g1="udieresis" g2="y" k="12" />
+<hkern g1="udieresis" g2="braceright" k="43" />
+<hkern g1="udieresis" g2="Ccedilla" k="25" />
+<hkern g1="udieresis" g2="Egrave" k="16" />
+<hkern g1="udieresis" g2="Eacute" k="16" />
+<hkern g1="udieresis" g2="Ecircumflex" k="16" />
+<hkern g1="udieresis" g2="Edieresis" k="16" />
+<hkern g1="udieresis" g2="Igrave" k="16" />
+<hkern g1="udieresis" g2="Iacute" k="16" />
+<hkern g1="udieresis" g2="Icircumflex" k="16" />
+<hkern g1="udieresis" g2="Idieresis" k="16" />
+<hkern g1="udieresis" g2="Eth" k="16" />
+<hkern g1="udieresis" g2="Ntilde" k="16" />
+<hkern g1="udieresis" g2="Ograve" k="25" />
+<hkern g1="udieresis" g2="Oacute" k="25" />
+<hkern g1="udieresis" g2="Ocircumflex" k="25" />
+<hkern g1="udieresis" g2="Otilde" k="25" />
+<hkern g1="udieresis" g2="Odieresis" k="25" />
+<hkern g1="udieresis" g2="Oslash" k="25" />
+<hkern g1="udieresis" g2="Ugrave" k="53" />
+<hkern g1="udieresis" g2="Uacute" k="53" />
+<hkern g1="udieresis" g2="Ucircumflex" k="53" />
+<hkern g1="udieresis" g2="Udieresis" k="53" />
+<hkern g1="udieresis" g2="Yacute" k="123" />
+<hkern g1="udieresis" g2="Thorn" k="16" />
+<hkern g1="udieresis" g2="eth" k="8" />
+<hkern g1="udieresis" g2="ugrave" k="8" />
+<hkern g1="udieresis" g2="uacute" k="8" />
+<hkern g1="udieresis" g2="ucircumflex" k="8" />
+<hkern g1="udieresis" g2="udieresis" k="8" />
+<hkern g1="udieresis" g2="yacute" k="12" />
+<hkern g1="udieresis" g2="ydieresis" k="12" />
+<hkern g1="udieresis" g2="OE" k="25" />
+<hkern g1="udieresis" g2="quoteleft" k="35" />
+<hkern g1="udieresis" g2="quoteright" k="23" />
+<hkern g1="udieresis" g2="quotedblleft" k="35" />
+<hkern g1="udieresis" g2="quotedblright" k="23" />
+<hkern g1="yacute" g2="parenright" k="39" />
+<hkern g1="yacute" g2="asterisk" k="-35" />
+<hkern g1="yacute" g2="comma" k="112" />
+<hkern g1="yacute" g2="period" k="76" />
+<hkern g1="yacute" g2="slash" k="119" />
+<hkern g1="yacute" g2="A" k="80" />
+<hkern g1="yacute" g2="B" k="37" />
+<hkern g1="yacute" g2="D" k="37" />
+<hkern g1="yacute" g2="E" k="37" />
+<hkern g1="yacute" g2="F" k="37" />
+<hkern g1="yacute" g2="H" k="37" />
+<hkern g1="yacute" g2="I" k="37" />
+<hkern g1="yacute" g2="J" k="86" />
+<hkern g1="yacute" g2="K" k="37" />
+<hkern g1="yacute" g2="L" k="37" />
+<hkern g1="yacute" g2="M" k="39" />
+<hkern g1="yacute" g2="N" k="37" />
+<hkern g1="yacute" g2="P" k="37" />
+<hkern g1="yacute" g2="R" k="37" />
+<hkern g1="yacute" g2="U" k="16" />
+<hkern g1="yacute" g2="V" k="20" />
+<hkern g1="yacute" g2="W" k="35" />
+<hkern g1="yacute" g2="X" k="40" />
+<hkern g1="yacute" g2="Y" k="72" />
+<hkern g1="yacute" g2="backslash" k="23" />
+<hkern g1="yacute" g2="bracketright" k="82" />
+<hkern g1="yacute" g2="c" k="20" />
+<hkern g1="yacute" g2="d" k="20" />
+<hkern g1="yacute" g2="e" k="20" />
+<hkern g1="yacute" g2="g" k="25" />
+<hkern g1="yacute" g2="h" k="10" />
+<hkern g1="yacute" g2="k" k="10" />
+<hkern g1="yacute" g2="l" k="10" />
+<hkern g1="yacute" g2="o" k="20" />
+<hkern g1="yacute" g2="q" k="20" />
+<hkern g1="yacute" g2="t" k="-10" />
+<hkern g1="yacute" g2="y" k="-35" />
+<hkern g1="yacute" g2="braceright" k="37" />
+<hkern g1="yacute" g2="Agrave" k="80" />
+<hkern g1="yacute" g2="Aacute" k="80" />
+<hkern g1="yacute" g2="Acircumflex" k="80" />
+<hkern g1="yacute" g2="Atilde" k="80" />
+<hkern g1="yacute" g2="Adieresis" k="80" />
+<hkern g1="yacute" g2="Aring" k="80" />
+<hkern g1="yacute" g2="Egrave" k="37" />
+<hkern g1="yacute" g2="Eacute" k="37" />
+<hkern g1="yacute" g2="Ecircumflex" k="37" />
+<hkern g1="yacute" g2="Edieresis" k="37" />
+<hkern g1="yacute" g2="Igrave" k="37" />
+<hkern g1="yacute" g2="Iacute" k="37" />
+<hkern g1="yacute" g2="Icircumflex" k="37" />
+<hkern g1="yacute" g2="Idieresis" k="37" />
+<hkern g1="yacute" g2="Eth" k="37" />
+<hkern g1="yacute" g2="Ntilde" k="37" />
+<hkern g1="yacute" g2="Ugrave" k="16" />
+<hkern g1="yacute" g2="Uacute" k="16" />
+<hkern g1="yacute" g2="Ucircumflex" k="16" />
+<hkern g1="yacute" g2="Udieresis" k="16" />
+<hkern g1="yacute" g2="Yacute" k="72" />
+<hkern g1="yacute" g2="Thorn" k="37" />
+<hkern g1="yacute" g2="ccedilla" k="20" />
+<hkern g1="yacute" g2="egrave" k="20" />
+<hkern g1="yacute" g2="eacute" k="20" />
+<hkern g1="yacute" g2="ecircumflex" k="20" />
+<hkern g1="yacute" g2="edieresis" k="20" />
+<hkern g1="yacute" g2="eth" k="25" />
+<hkern g1="yacute" g2="ograve" k="20" />
+<hkern g1="yacute" g2="oacute" k="20" />
+<hkern g1="yacute" g2="ocircumflex" k="20" />
+<hkern g1="yacute" g2="otilde" k="20" />
+<hkern g1="yacute" g2="odieresis" k="20" />
+<hkern g1="yacute" g2="oslash" k="20" />
+<hkern g1="yacute" g2="yacute" k="-35" />
+<hkern g1="yacute" g2="ydieresis" k="-35" />
+<hkern g1="yacute" g2="oe" k="20" />
+<hkern g1="yacute" g2="quotesinglbase" k="76" />
+<hkern g1="yacute" g2="quotedblbase" k="76" />
+<hkern g1="thorn" g2="quotedbl" k="29" />
+<hkern g1="thorn" g2="quotesingle" k="29" />
+<hkern g1="thorn" g2="parenright" k="100" />
+<hkern g1="thorn" g2="slash" k="98" />
+<hkern g1="thorn" g2="question" k="35" />
+<hkern g1="thorn" g2="A" k="15" />
+<hkern g1="thorn" g2="B" k="49" />
+<hkern g1="thorn" g2="D" k="49" />
+<hkern g1="thorn" g2="E" k="49" />
+<hkern g1="thorn" g2="F" k="49" />
+<hkern g1="thorn" g2="H" k="49" />
+<hkern g1="thorn" g2="I" k="49" />
+<hkern g1="thorn" g2="K" k="49" />
+<hkern g1="thorn" g2="L" k="49" />
+<hkern g1="thorn" g2="M" k="43" />
+<hkern g1="thorn" g2="N" k="49" />
+<hkern g1="thorn" g2="P" k="49" />
+<hkern g1="thorn" g2="R" k="49" />
+<hkern g1="thorn" g2="S" k="12" />
+<hkern g1="thorn" g2="T" k="100" />
+<hkern g1="thorn" g2="U" k="41" />
+<hkern g1="thorn" g2="V" k="70" />
+<hkern g1="thorn" g2="W" k="100" />
+<hkern g1="thorn" g2="X" k="94" />
+<hkern g1="thorn" g2="Y" k="115" />
+<hkern g1="thorn" g2="Z" k="43" />
+<hkern g1="thorn" g2="backslash" k="98" />
+<hkern g1="thorn" g2="bracketright" k="104" />
+<hkern g1="thorn" g2="f" k="10" />
+<hkern g1="thorn" g2="v" k="10" />
+<hkern g1="thorn" g2="w" k="20" />
+<hkern g1="thorn" g2="x" k="10" />
+<hkern g1="thorn" g2="y" k="16" />
+<hkern g1="thorn" g2="braceright" k="53" />
+<hkern g1="thorn" g2="Agrave" k="15" />
+<hkern g1="thorn" g2="Aacute" k="15" />
+<hkern g1="thorn" g2="Acircumflex" k="15" />
+<hkern g1="thorn" g2="Atilde" k="15" />
+<hkern g1="thorn" g2="Adieresis" k="15" />
+<hkern g1="thorn" g2="Aring" k="15" />
+<hkern g1="thorn" g2="Egrave" k="49" />
+<hkern g1="thorn" g2="Eacute" k="49" />
+<hkern g1="thorn" g2="Ecircumflex" k="49" />
+<hkern g1="thorn" g2="Edieresis" k="49" />
+<hkern g1="thorn" g2="Igrave" k="49" />
+<hkern g1="thorn" g2="Iacute" k="49" />
+<hkern g1="thorn" g2="Icircumflex" k="49" />
+<hkern g1="thorn" g2="Idieresis" k="49" />
+<hkern g1="thorn" g2="Eth" k="49" />
+<hkern g1="thorn" g2="Ntilde" k="49" />
+<hkern g1="thorn" g2="Ugrave" k="41" />
+<hkern g1="thorn" g2="Uacute" k="41" />
+<hkern g1="thorn" g2="Ucircumflex" k="41" />
+<hkern g1="thorn" g2="Udieresis" k="41" />
+<hkern g1="thorn" g2="Yacute" k="115" />
+<hkern g1="thorn" g2="Thorn" k="49" />
+<hkern g1="thorn" g2="germandbls" k="10" />
+<hkern g1="thorn" g2="yacute" k="16" />
+<hkern g1="thorn" g2="ydieresis" k="16" />
+<hkern g1="thorn" g2="quoteleft" k="70" />
+<hkern g1="thorn" g2="quoteright" k="53" />
+<hkern g1="thorn" g2="quotedblleft" k="70" />
+<hkern g1="thorn" g2="quotedblright" k="53" />
+<hkern g1="ydieresis" g2="parenright" k="39" />
+<hkern g1="ydieresis" g2="asterisk" k="-35" />
+<hkern g1="ydieresis" g2="comma" k="112" />
+<hkern g1="ydieresis" g2="period" k="76" />
+<hkern g1="ydieresis" g2="slash" k="119" />
+<hkern g1="ydieresis" g2="A" k="80" />
+<hkern g1="ydieresis" g2="B" k="37" />
+<hkern g1="ydieresis" g2="D" k="37" />
+<hkern g1="ydieresis" g2="E" k="37" />
+<hkern g1="ydieresis" g2="F" k="37" />
+<hkern g1="ydieresis" g2="H" k="37" />
+<hkern g1="ydieresis" g2="I" k="37" />
+<hkern g1="ydieresis" g2="J" k="86" />
+<hkern g1="ydieresis" g2="K" k="37" />
+<hkern g1="ydieresis" g2="L" k="37" />
+<hkern g1="ydieresis" g2="M" k="39" />
+<hkern g1="ydieresis" g2="N" k="37" />
+<hkern g1="ydieresis" g2="P" k="37" />
+<hkern g1="ydieresis" g2="R" k="37" />
+<hkern g1="ydieresis" g2="U" k="16" />
+<hkern g1="ydieresis" g2="V" k="20" />
+<hkern g1="ydieresis" g2="W" k="35" />
+<hkern g1="ydieresis" g2="X" k="40" />
+<hkern g1="ydieresis" g2="Y" k="72" />
+<hkern g1="ydieresis" g2="backslash" k="23" />
+<hkern g1="ydieresis" g2="bracketright" k="82" />
+<hkern g1="ydieresis" g2="c" k="20" />
+<hkern g1="ydieresis" g2="d" k="20" />
+<hkern g1="ydieresis" g2="e" k="20" />
+<hkern g1="ydieresis" g2="g" k="25" />
+<hkern g1="ydieresis" g2="h" k="10" />
+<hkern g1="ydieresis" g2="k" k="10" />
+<hkern g1="ydieresis" g2="l" k="10" />
+<hkern g1="ydieresis" g2="o" k="20" />
+<hkern g1="ydieresis" g2="q" k="20" />
+<hkern g1="ydieresis" g2="t" k="-10" />
+<hkern g1="ydieresis" g2="y" k="-35" />
+<hkern g1="ydieresis" g2="braceright" k="37" />
+<hkern g1="ydieresis" g2="Agrave" k="80" />
+<hkern g1="ydieresis" g2="Aacute" k="80" />
+<hkern g1="ydieresis" g2="Acircumflex" k="80" />
+<hkern g1="ydieresis" g2="Atilde" k="80" />
+<hkern g1="ydieresis" g2="Adieresis" k="80" />
+<hkern g1="ydieresis" g2="Aring" k="80" />
+<hkern g1="ydieresis" g2="Egrave" k="37" />
+<hkern g1="ydieresis" g2="Eacute" k="37" />
+<hkern g1="ydieresis" g2="Ecircumflex" k="37" />
+<hkern g1="ydieresis" g2="Edieresis" k="37" />
+<hkern g1="ydieresis" g2="Igrave" k="37" />
+<hkern g1="ydieresis" g2="Iacute" k="37" />
+<hkern g1="ydieresis" g2="Icircumflex" k="37" />
+<hkern g1="ydieresis" g2="Idieresis" k="37" />
+<hkern g1="ydieresis" g2="Eth" k="37" />
+<hkern g1="ydieresis" g2="Ntilde" k="37" />
+<hkern g1="ydieresis" g2="Ugrave" k="16" />
+<hkern g1="ydieresis" g2="Uacute" k="16" />
+<hkern g1="ydieresis" g2="Ucircumflex" k="16" />
+<hkern g1="ydieresis" g2="Udieresis" k="16" />
+<hkern g1="ydieresis" g2="Yacute" k="72" />
+<hkern g1="ydieresis" g2="Thorn" k="37" />
+<hkern g1="ydieresis" g2="ccedilla" k="20" />
+<hkern g1="ydieresis" g2="egrave" k="20" />
+<hkern g1="ydieresis" g2="eacute" k="20" />
+<hkern g1="ydieresis" g2="ecircumflex" k="20" />
+<hkern g1="ydieresis" g2="edieresis" k="20" />
+<hkern g1="ydieresis" g2="eth" k="25" />
+<hkern g1="ydieresis" g2="ograve" k="20" />
+<hkern g1="ydieresis" g2="oacute" k="20" />
+<hkern g1="ydieresis" g2="ocircumflex" k="20" />
+<hkern g1="ydieresis" g2="otilde" k="20" />
+<hkern g1="ydieresis" g2="odieresis" k="20" />
+<hkern g1="ydieresis" g2="oslash" k="20" />
+<hkern g1="ydieresis" g2="yacute" k="-35" />
+<hkern g1="ydieresis" g2="ydieresis" k="-35" />
+<hkern g1="ydieresis" g2="oe" k="20" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="76" />
+<hkern g1="ydieresis" g2="quotedblbase" k="76" />
+<hkern g1="dotlessi" g2="slash" k="43" />
+<hkern g1="dotlessi" g2="B" k="14" />
+<hkern g1="dotlessi" g2="C" k="23" />
+<hkern g1="dotlessi" g2="D" k="14" />
+<hkern g1="dotlessi" g2="E" k="14" />
+<hkern g1="dotlessi" g2="F" k="14" />
+<hkern g1="dotlessi" g2="G" k="20" />
+<hkern g1="dotlessi" g2="H" k="14" />
+<hkern g1="dotlessi" g2="I" k="14" />
+<hkern g1="dotlessi" g2="K" k="14" />
+<hkern g1="dotlessi" g2="L" k="14" />
+<hkern g1="dotlessi" g2="M" k="10" />
+<hkern g1="dotlessi" g2="N" k="14" />
+<hkern g1="dotlessi" g2="O" k="23" />
+<hkern g1="dotlessi" g2="P" k="14" />
+<hkern g1="dotlessi" g2="Q" k="23" />
+<hkern g1="dotlessi" g2="R" k="14" />
+<hkern g1="dotlessi" g2="T" k="14" />
+<hkern g1="dotlessi" g2="U" k="25" />
+<hkern g1="dotlessi" g2="W" k="18" />
+<hkern g1="dotlessi" g2="Y" k="12" />
+<hkern g1="dotlessi" g2="t" k="8" />
+<hkern g1="dotlessi" g2="w" k="10" />
+<hkern g1="dotlessi" g2="y" k="10" />
+<hkern g1="dotlessi" g2="Ccedilla" k="23" />
+<hkern g1="dotlessi" g2="Egrave" k="14" />
+<hkern g1="dotlessi" g2="Eacute" k="14" />
+<hkern g1="dotlessi" g2="Ecircumflex" k="14" />
+<hkern g1="dotlessi" g2="Edieresis" k="14" />
+<hkern g1="dotlessi" g2="Igrave" k="14" />
+<hkern g1="dotlessi" g2="Iacute" k="14" />
+<hkern g1="dotlessi" g2="Icircumflex" k="14" />
+<hkern g1="dotlessi" g2="Idieresis" k="14" />
+<hkern g1="dotlessi" g2="Eth" k="14" />
+<hkern g1="dotlessi" g2="Ntilde" k="14" />
+<hkern g1="dotlessi" g2="Ograve" k="23" />
+<hkern g1="dotlessi" g2="Oacute" k="23" />
+<hkern g1="dotlessi" g2="Ocircumflex" k="23" />
+<hkern g1="dotlessi" g2="Otilde" k="23" />
+<hkern g1="dotlessi" g2="Odieresis" k="23" />
+<hkern g1="dotlessi" g2="Oslash" k="23" />
+<hkern g1="dotlessi" g2="Ugrave" k="25" />
+<hkern g1="dotlessi" g2="Uacute" k="25" />
+<hkern g1="dotlessi" g2="Ucircumflex" k="25" />
+<hkern g1="dotlessi" g2="Udieresis" k="25" />
+<hkern g1="dotlessi" g2="Yacute" k="12" />
+<hkern g1="dotlessi" g2="Thorn" k="14" />
+<hkern g1="dotlessi" g2="yacute" k="10" />
+<hkern g1="dotlessi" g2="ydieresis" k="10" />
+<hkern g1="dotlessi" g2="OE" k="23" />
+<hkern g1="oe" g2="quotedbl" k="20" />
+<hkern g1="oe" g2="quotesingle" k="20" />
+<hkern g1="oe" g2="parenright" k="61" />
+<hkern g1="oe" g2="slash" k="78" />
+<hkern g1="oe" g2="question" k="29" />
+<hkern g1="oe" g2="B" k="33" />
+<hkern g1="oe" g2="D" k="33" />
+<hkern g1="oe" g2="E" k="33" />
+<hkern g1="oe" g2="F" k="33" />
+<hkern g1="oe" g2="H" k="33" />
+<hkern g1="oe" g2="I" k="33" />
+<hkern g1="oe" g2="K" k="33" />
+<hkern g1="oe" g2="L" k="33" />
+<hkern g1="oe" g2="M" k="25" />
+<hkern g1="oe" g2="N" k="33" />
+<hkern g1="oe" g2="P" k="33" />
+<hkern g1="oe" g2="R" k="33" />
+<hkern g1="oe" g2="S" k="10" />
+<hkern g1="oe" g2="T" k="88" />
+<hkern g1="oe" g2="U" k="41" />
+<hkern g1="oe" g2="V" k="80" />
+<hkern g1="oe" g2="W" k="70" />
+<hkern g1="oe" g2="X" k="27" />
+<hkern g1="oe" g2="Y" k="100" />
+<hkern g1="oe" g2="Z" k="16" />
+<hkern g1="oe" g2="backslash" k="88" />
+<hkern g1="oe" g2="bracketright" k="100" />
+<hkern g1="oe" g2="a" k="5" />
+<hkern g1="oe" g2="c" k="10" />
+<hkern g1="oe" g2="d" k="10" />
+<hkern g1="oe" g2="e" k="10" />
+<hkern g1="oe" g2="o" k="10" />
+<hkern g1="oe" g2="q" k="10" />
+<hkern g1="oe" g2="t" k="15" />
+<hkern g1="oe" g2="v" k="10" />
+<hkern g1="oe" g2="w" k="8" />
+<hkern g1="oe" g2="x" k="10" />
+<hkern g1="oe" g2="y" k="10" />
+<hkern g1="oe" g2="braceright" k="47" />
+<hkern g1="oe" g2="Egrave" k="33" />
+<hkern g1="oe" g2="Eacute" k="33" />
+<hkern g1="oe" g2="Ecircumflex" k="33" />
+<hkern g1="oe" g2="Edieresis" k="33" />
+<hkern g1="oe" g2="Igrave" k="33" />
+<hkern g1="oe" g2="Iacute" k="33" />
+<hkern g1="oe" g2="Icircumflex" k="33" />
+<hkern g1="oe" g2="Idieresis" k="33" />
+<hkern g1="oe" g2="Eth" k="33" />
+<hkern g1="oe" g2="Ntilde" k="33" />
+<hkern g1="oe" g2="Ugrave" k="41" />
+<hkern g1="oe" g2="Uacute" k="41" />
+<hkern g1="oe" g2="Ucircumflex" k="41" />
+<hkern g1="oe" g2="Udieresis" k="41" />
+<hkern g1="oe" g2="Yacute" k="100" />
+<hkern g1="oe" g2="Thorn" k="33" />
+<hkern g1="oe" g2="agrave" k="5" />
+<hkern g1="oe" g2="aacute" k="5" />
+<hkern g1="oe" g2="acircumflex" k="5" />
+<hkern g1="oe" g2="atilde" k="5" />
+<hkern g1="oe" g2="adieresis" k="5" />
+<hkern g1="oe" g2="aring" k="5" />
+<hkern g1="oe" g2="ae" k="5" />
+<hkern g1="oe" g2="ccedilla" k="10" />
+<hkern g1="oe" g2="egrave" k="10" />
+<hkern g1="oe" g2="eacute" k="10" />
+<hkern g1="oe" g2="ecircumflex" k="10" />
+<hkern g1="oe" g2="edieresis" k="10" />
+<hkern g1="oe" g2="ograve" k="10" />
+<hkern g1="oe" g2="oacute" k="10" />
+<hkern g1="oe" g2="ocircumflex" k="10" />
+<hkern g1="oe" g2="otilde" k="10" />
+<hkern g1="oe" g2="odieresis" k="10" />
+<hkern g1="oe" g2="oslash" k="10" />
+<hkern g1="oe" g2="yacute" k="10" />
+<hkern g1="oe" g2="ydieresis" k="10" />
+<hkern g1="oe" g2="oe" k="10" />
+<hkern g1="oe" g2="quoteleft" k="55" />
+<hkern g1="oe" g2="quoteright" k="41" />
+<hkern g1="oe" g2="quotedblleft" k="55" />
+<hkern g1="oe" g2="quotedblright" k="41" />
+<hkern g1="endash" g2="one" k="53" />
+<hkern g1="endash" g2="two" k="66" />
+<hkern g1="endash" g2="three" k="49" />
+<hkern g1="endash" g2="seven" k="125" />
+<hkern g1="endash" g2="A" k="40" />
+<hkern g1="endash" g2="B" k="33" />
+<hkern g1="endash" g2="D" k="33" />
+<hkern g1="endash" g2="E" k="33" />
+<hkern g1="endash" g2="F" k="33" />
+<hkern g1="endash" g2="H" k="33" />
+<hkern g1="endash" g2="I" k="33" />
+<hkern g1="endash" g2="J" k="59" />
+<hkern g1="endash" g2="K" k="33" />
+<hkern g1="endash" g2="L" k="33" />
+<hkern g1="endash" g2="M" k="31" />
+<hkern g1="endash" g2="N" k="33" />
+<hkern g1="endash" g2="P" k="33" />
+<hkern g1="endash" g2="R" k="33" />
+<hkern g1="endash" g2="S" k="29" />
+<hkern g1="endash" g2="T" k="131" />
+<hkern g1="endash" g2="U" k="16" />
+<hkern g1="endash" g2="V" k="61" />
+<hkern g1="endash" g2="W" k="63" />
+<hkern g1="endash" g2="X" k="86" />
+<hkern g1="endash" g2="Y" k="111" />
+<hkern g1="endash" g2="Z" k="68" />
+<hkern g1="endash" g2="f" k="18" />
+<hkern g1="endash" g2="v" k="-55" />
+<hkern g1="endash" g2="w" k="16" />
+<hkern g1="endash" g2="y" k="16" />
+<hkern g1="endash" g2="Agrave" k="40" />
+<hkern g1="endash" g2="Aacute" k="40" />
+<hkern g1="endash" g2="Acircumflex" k="40" />
+<hkern g1="endash" g2="Atilde" k="40" />
+<hkern g1="endash" g2="Adieresis" k="40" />
+<hkern g1="endash" g2="Aring" k="40" />
+<hkern g1="endash" g2="AE" k="84" />
+<hkern g1="endash" g2="Egrave" k="33" />
+<hkern g1="endash" g2="Eacute" k="33" />
+<hkern g1="endash" g2="Ecircumflex" k="33" />
+<hkern g1="endash" g2="Edieresis" k="33" />
+<hkern g1="endash" g2="Igrave" k="33" />
+<hkern g1="endash" g2="Iacute" k="33" />
+<hkern g1="endash" g2="Icircumflex" k="33" />
+<hkern g1="endash" g2="Idieresis" k="33" />
+<hkern g1="endash" g2="Eth" k="33" />
+<hkern g1="endash" g2="Ntilde" k="33" />
+<hkern g1="endash" g2="Ugrave" k="16" />
+<hkern g1="endash" g2="Uacute" k="16" />
+<hkern g1="endash" g2="Ucircumflex" k="16" />
+<hkern g1="endash" g2="Udieresis" k="16" />
+<hkern g1="endash" g2="Yacute" k="111" />
+<hkern g1="endash" g2="Thorn" k="33" />
+<hkern g1="endash" g2="germandbls" k="18" />
+<hkern g1="endash" g2="yacute" k="16" />
+<hkern g1="endash" g2="ydieresis" k="16" />
+<hkern g1="emdash" g2="one" k="53" />
+<hkern g1="emdash" g2="two" k="66" />
+<hkern g1="emdash" g2="three" k="49" />
+<hkern g1="emdash" g2="seven" k="125" />
+<hkern g1="emdash" g2="A" k="40" />
+<hkern g1="emdash" g2="B" k="33" />
+<hkern g1="emdash" g2="D" k="33" />
+<hkern g1="emdash" g2="E" k="33" />
+<hkern g1="emdash" g2="F" k="33" />
+<hkern g1="emdash" g2="H" k="33" />
+<hkern g1="emdash" g2="I" k="33" />
+<hkern g1="emdash" g2="J" k="59" />
+<hkern g1="emdash" g2="K" k="33" />
+<hkern g1="emdash" g2="L" k="33" />
+<hkern g1="emdash" g2="M" k="31" />
+<hkern g1="emdash" g2="N" k="33" />
+<hkern g1="emdash" g2="P" k="33" />
+<hkern g1="emdash" g2="R" k="33" />
+<hkern g1="emdash" g2="S" k="29" />
+<hkern g1="emdash" g2="T" k="131" />
+<hkern g1="emdash" g2="U" k="16" />
+<hkern g1="emdash" g2="V" k="61" />
+<hkern g1="emdash" g2="W" k="63" />
+<hkern g1="emdash" g2="X" k="86" />
+<hkern g1="emdash" g2="Y" k="111" />
+<hkern g1="emdash" g2="Z" k="68" />
+<hkern g1="emdash" g2="f" k="18" />
+<hkern g1="emdash" g2="v" k="-55" />
+<hkern g1="emdash" g2="w" k="16" />
+<hkern g1="emdash" g2="y" k="16" />
+<hkern g1="emdash" g2="Agrave" k="40" />
+<hkern g1="emdash" g2="Aacute" k="40" />
+<hkern g1="emdash" g2="Acircumflex" k="40" />
+<hkern g1="emdash" g2="Atilde" k="40" />
+<hkern g1="emdash" g2="Adieresis" k="40" />
+<hkern g1="emdash" g2="Aring" k="40" />
+<hkern g1="emdash" g2="AE" k="84" />
+<hkern g1="emdash" g2="Egrave" k="33" />
+<hkern g1="emdash" g2="Eacute" k="33" />
+<hkern g1="emdash" g2="Ecircumflex" k="33" />
+<hkern g1="emdash" g2="Edieresis" k="33" />
+<hkern g1="emdash" g2="Igrave" k="33" />
+<hkern g1="emdash" g2="Iacute" k="33" />
+<hkern g1="emdash" g2="Icircumflex" k="33" />
+<hkern g1="emdash" g2="Idieresis" k="33" />
+<hkern g1="emdash" g2="Eth" k="33" />
+<hkern g1="emdash" g2="Ntilde" k="33" />
+<hkern g1="emdash" g2="Ugrave" k="16" />
+<hkern g1="emdash" g2="Uacute" k="16" />
+<hkern g1="emdash" g2="Ucircumflex" k="16" />
+<hkern g1="emdash" g2="Udieresis" k="16" />
+<hkern g1="emdash" g2="Yacute" k="111" />
+<hkern g1="emdash" g2="Thorn" k="33" />
+<hkern g1="emdash" g2="germandbls" k="18" />
+<hkern g1="emdash" g2="yacute" k="16" />
+<hkern g1="emdash" g2="ydieresis" k="16" />
+<hkern g1="quoteleft" g2="comma" k="227" />
+<hkern g1="quoteleft" g2="period" k="227" />
+<hkern g1="quoteleft" g2="A" k="120" />
+<hkern g1="quoteleft" g2="C" k="31" />
+<hkern g1="quoteleft" g2="G" k="33" />
+<hkern g1="quoteleft" g2="O" k="31" />
+<hkern g1="quoteleft" g2="Q" k="31" />
+<hkern g1="quoteleft" g2="T" k="-45" />
+<hkern g1="quoteleft" g2="V" k="-70" />
+<hkern g1="quoteleft" g2="W" k="-50" />
+<hkern g1="quoteleft" g2="X" k="-35" />
+<hkern g1="quoteleft" g2="Y" k="-70" />
+<hkern g1="quoteleft" g2="a" k="50" />
+<hkern g1="quoteleft" g2="c" k="68" />
+<hkern g1="quoteleft" g2="d" k="84" />
+<hkern g1="quoteleft" g2="e" k="68" />
+<hkern g1="quoteleft" g2="g" k="63" />
+<hkern g1="quoteleft" g2="m" k="45" />
+<hkern g1="quoteleft" g2="n" k="45" />
+<hkern g1="quoteleft" g2="o" k="68" />
+<hkern g1="quoteleft" g2="p" k="43" />
+<hkern g1="quoteleft" g2="q" k="84" />
+<hkern g1="quoteleft" g2="r" k="45" />
+<hkern g1="quoteleft" g2="s" k="43" />
+<hkern g1="quoteleft" g2="u" k="41" />
+<hkern g1="quoteleft" g2="z" k="25" />
+<hkern g1="quoteleft" g2="Agrave" k="120" />
+<hkern g1="quoteleft" g2="Aacute" k="120" />
+<hkern g1="quoteleft" g2="Acircumflex" k="120" />
+<hkern g1="quoteleft" g2="Atilde" k="120" />
+<hkern g1="quoteleft" g2="Adieresis" k="120" />
+<hkern g1="quoteleft" g2="Aring" k="120" />
+<hkern g1="quoteleft" g2="AE" k="172" />
+<hkern g1="quoteleft" g2="Ccedilla" k="31" />
+<hkern g1="quoteleft" g2="Ograve" k="31" />
+<hkern g1="quoteleft" g2="Oacute" k="31" />
+<hkern g1="quoteleft" g2="Ocircumflex" k="31" />
+<hkern g1="quoteleft" g2="Otilde" k="31" />
+<hkern g1="quoteleft" g2="Odieresis" k="31" />
+<hkern g1="quoteleft" g2="Oslash" k="31" />
+<hkern g1="quoteleft" g2="Yacute" k="-70" />
+<hkern g1="quoteleft" g2="agrave" k="50" />
+<hkern g1="quoteleft" g2="aacute" k="50" />
+<hkern g1="quoteleft" g2="acircumflex" k="50" />
+<hkern g1="quoteleft" g2="atilde" k="50" />
+<hkern g1="quoteleft" g2="adieresis" k="50" />
+<hkern g1="quoteleft" g2="aring" k="50" />
+<hkern g1="quoteleft" g2="ae" k="50" />
+<hkern g1="quoteleft" g2="ccedilla" k="68" />
+<hkern g1="quoteleft" g2="egrave" k="68" />
+<hkern g1="quoteleft" g2="eacute" k="68" />
+<hkern g1="quoteleft" g2="ecircumflex" k="68" />
+<hkern g1="quoteleft" g2="edieresis" k="68" />
+<hkern g1="quoteleft" g2="eth" k="27" />
+<hkern g1="quoteleft" g2="ntilde" k="45" />
+<hkern g1="quoteleft" g2="ograve" k="68" />
+<hkern g1="quoteleft" g2="oacute" k="68" />
+<hkern g1="quoteleft" g2="ocircumflex" k="68" />
+<hkern g1="quoteleft" g2="otilde" k="68" />
+<hkern g1="quoteleft" g2="odieresis" k="68" />
+<hkern g1="quoteleft" g2="oslash" k="68" />
+<hkern g1="quoteleft" g2="ugrave" k="41" />
+<hkern g1="quoteleft" g2="uacute" k="41" />
+<hkern g1="quoteleft" g2="ucircumflex" k="41" />
+<hkern g1="quoteleft" g2="udieresis" k="41" />
+<hkern g1="quoteleft" g2="OE" k="31" />
+<hkern g1="quoteleft" g2="oe" k="68" />
+<hkern g1="quoteleft" g2="quotesinglbase" k="227" />
+<hkern g1="quoteleft" g2="quotedblbase" k="227" />
+<hkern g1="quoteright" g2="ampersand" k="35" />
+<hkern g1="quoteright" g2="comma" k="178" />
+<hkern g1="quoteright" g2="period" k="178" />
+<hkern g1="quoteright" g2="slash" k="178" />
+<hkern g1="quoteright" g2="at" k="80" />
+<hkern g1="quoteright" g2="A" k="109" />
+<hkern g1="quoteright" g2="C" k="33" />
+<hkern g1="quoteright" g2="G" k="35" />
+<hkern g1="quoteright" g2="O" k="33" />
+<hkern g1="quoteright" g2="Q" k="33" />
+<hkern g1="quoteright" g2="V" k="-12" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="43" />
+<hkern g1="quoteright" g2="c" k="59" />
+<hkern g1="quoteright" g2="d" k="82" />
+<hkern g1="quoteright" g2="e" k="59" />
+<hkern g1="quoteright" g2="g" k="59" />
+<hkern g1="quoteright" g2="m" k="31" />
+<hkern g1="quoteright" g2="n" k="31" />
+<hkern g1="quoteright" g2="o" k="59" />
+<hkern g1="quoteright" g2="p" k="29" />
+<hkern g1="quoteright" g2="q" k="82" />
+<hkern g1="quoteright" g2="r" k="31" />
+<hkern g1="quoteright" g2="s" k="37" />
+<hkern g1="quoteright" g2="u" k="29" />
+<hkern g1="quoteright" g2="z" k="20" />
+<hkern g1="quoteright" g2="guillemotleft" k="141" />
+<hkern g1="quoteright" g2="registered" k="25" />
+<hkern g1="quoteright" g2="Agrave" k="109" />
+<hkern g1="quoteright" g2="Aacute" k="109" />
+<hkern g1="quoteright" g2="Acircumflex" k="109" />
+<hkern g1="quoteright" g2="Atilde" k="109" />
+<hkern g1="quoteright" g2="Adieresis" k="109" />
+<hkern g1="quoteright" g2="Aring" k="109" />
+<hkern g1="quoteright" g2="AE" k="170" />
+<hkern g1="quoteright" g2="Ccedilla" k="33" />
+<hkern g1="quoteright" g2="Icircumflex" k="-43" />
+<hkern g1="quoteright" g2="Ograve" k="33" />
+<hkern g1="quoteright" g2="Oacute" k="33" />
+<hkern g1="quoteright" g2="Ocircumflex" k="33" />
+<hkern g1="quoteright" g2="Otilde" k="33" />
+<hkern g1="quoteright" g2="Odieresis" k="33" />
+<hkern g1="quoteright" g2="Oslash" k="33" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="43" />
+<hkern g1="quoteright" g2="aacute" k="43" />
+<hkern g1="quoteright" g2="acircumflex" k="43" />
+<hkern g1="quoteright" g2="atilde" k="43" />
+<hkern g1="quoteright" g2="adieresis" k="43" />
+<hkern g1="quoteright" g2="aring" k="43" />
+<hkern g1="quoteright" g2="ae" k="43" />
+<hkern g1="quoteright" g2="ccedilla" k="59" />
+<hkern g1="quoteright" g2="egrave" k="59" />
+<hkern g1="quoteright" g2="eacute" k="59" />
+<hkern g1="quoteright" g2="ecircumflex" k="59" />
+<hkern g1="quoteright" g2="edieresis" k="59" />
+<hkern g1="quoteright" g2="eth" k="27" />
+<hkern g1="quoteright" g2="ntilde" k="31" />
+<hkern g1="quoteright" g2="ograve" k="59" />
+<hkern g1="quoteright" g2="oacute" k="59" />
+<hkern g1="quoteright" g2="ocircumflex" k="59" />
+<hkern g1="quoteright" g2="otilde" k="59" />
+<hkern g1="quoteright" g2="odieresis" k="59" />
+<hkern g1="quoteright" g2="oslash" k="59" />
+<hkern g1="quoteright" g2="ugrave" k="29" />
+<hkern g1="quoteright" g2="uacute" k="29" />
+<hkern g1="quoteright" g2="ucircumflex" k="29" />
+<hkern g1="quoteright" g2="udieresis" k="29" />
+<hkern g1="quoteright" g2="OE" k="33" />
+<hkern g1="quoteright" g2="oe" k="59" />
+<hkern g1="quoteright" g2="quotesinglbase" k="178" />
+<hkern g1="quoteright" g2="quotedblbase" k="178" />
+<hkern g1="quoteright" g2="guilsinglleft" k="141" />
+<hkern g1="quotesinglbase" g2="quotedbl" k="258" />
+<hkern g1="quotesinglbase" g2="quotesingle" k="213" />
+<hkern g1="quotesinglbase" g2="zero" k="31" />
+<hkern g1="quotesinglbase" g2="six" k="20" />
+<hkern g1="quotesinglbase" g2="seven" k="66" />
+<hkern g1="quotesinglbase" g2="C" k="45" />
+<hkern g1="quotesinglbase" g2="G" k="39" />
+<hkern g1="quotesinglbase" g2="O" k="45" />
+<hkern g1="quotesinglbase" g2="Q" k="45" />
+<hkern g1="quotesinglbase" g2="T" k="170" />
+<hkern g1="quotesinglbase" g2="U" k="55" />
+<hkern g1="quotesinglbase" g2="V" k="150" />
+<hkern g1="quotesinglbase" g2="W" k="180" />
+<hkern g1="quotesinglbase" g2="Y" k="125" />
+<hkern g1="quotesinglbase" g2="t" k="25" />
+<hkern g1="quotesinglbase" g2="u" k="23" />
+<hkern g1="quotesinglbase" g2="v" k="120" />
+<hkern g1="quotesinglbase" g2="w" k="100" />
+<hkern g1="quotesinglbase" g2="y" k="94" />
+<hkern g1="quotesinglbase" g2="AE" k="-55" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="45" />
+<hkern g1="quotesinglbase" g2="Ograve" k="45" />
+<hkern g1="quotesinglbase" g2="Oacute" k="45" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="45" />
+<hkern g1="quotesinglbase" g2="Otilde" k="45" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="45" />
+<hkern g1="quotesinglbase" g2="Oslash" k="45" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="55" />
+<hkern g1="quotesinglbase" g2="Uacute" k="55" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="55" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="55" />
+<hkern g1="quotesinglbase" g2="Yacute" k="125" />
+<hkern g1="quotesinglbase" g2="ugrave" k="23" />
+<hkern g1="quotesinglbase" g2="uacute" k="23" />
+<hkern g1="quotesinglbase" g2="ucircumflex" k="23" />
+<hkern g1="quotesinglbase" g2="udieresis" k="23" />
+<hkern g1="quotesinglbase" g2="yacute" k="94" />
+<hkern g1="quotesinglbase" g2="ydieresis" k="94" />
+<hkern g1="quotesinglbase" g2="OE" k="45" />
+<hkern g1="quotesinglbase" g2="quoteleft" k="227" />
+<hkern g1="quotesinglbase" g2="quoteright" k="178" />
+<hkern g1="quotesinglbase" g2="quotedblleft" k="252" />
+<hkern g1="quotesinglbase" g2="quotedblright" k="252" />
+<hkern g1="quotedblleft" g2="comma" k="258" />
+<hkern g1="quotedblleft" g2="period" k="252" />
+<hkern g1="quotedblleft" g2="A" k="120" />
+<hkern g1="quotedblleft" g2="C" k="31" />
+<hkern g1="quotedblleft" g2="G" k="33" />
+<hkern g1="quotedblleft" g2="O" k="31" />
+<hkern g1="quotedblleft" g2="Q" k="31" />
+<hkern g1="quotedblleft" g2="T" k="-45" />
+<hkern g1="quotedblleft" g2="V" k="-70" />
+<hkern g1="quotedblleft" g2="W" k="-50" />
+<hkern g1="quotedblleft" g2="X" k="-35" />
+<hkern g1="quotedblleft" g2="Y" k="-70" />
+<hkern g1="quotedblleft" g2="a" k="50" />
+<hkern g1="quotedblleft" g2="c" k="68" />
+<hkern g1="quotedblleft" g2="d" k="84" />
+<hkern g1="quotedblleft" g2="e" k="68" />
+<hkern g1="quotedblleft" g2="g" k="63" />
+<hkern g1="quotedblleft" g2="m" k="45" />
+<hkern g1="quotedblleft" g2="n" k="45" />
+<hkern g1="quotedblleft" g2="o" k="68" />
+<hkern g1="quotedblleft" g2="p" k="43" />
+<hkern g1="quotedblleft" g2="q" k="84" />
+<hkern g1="quotedblleft" g2="r" k="45" />
+<hkern g1="quotedblleft" g2="s" k="43" />
+<hkern g1="quotedblleft" g2="u" k="41" />
+<hkern g1="quotedblleft" g2="z" k="25" />
+<hkern g1="quotedblleft" g2="Agrave" k="120" />
+<hkern g1="quotedblleft" g2="Aacute" k="120" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="120" />
+<hkern g1="quotedblleft" g2="Atilde" k="120" />
+<hkern g1="quotedblleft" g2="Adieresis" k="120" />
+<hkern g1="quotedblleft" g2="Aring" k="120" />
+<hkern g1="quotedblleft" g2="AE" k="172" />
+<hkern g1="quotedblleft" g2="Ccedilla" k="31" />
+<hkern g1="quotedblleft" g2="Ograve" k="31" />
+<hkern g1="quotedblleft" g2="Oacute" k="31" />
+<hkern g1="quotedblleft" g2="Ocircumflex" k="31" />
+<hkern g1="quotedblleft" g2="Otilde" k="31" />
+<hkern g1="quotedblleft" g2="Odieresis" k="31" />
+<hkern g1="quotedblleft" g2="Oslash" k="31" />
+<hkern g1="quotedblleft" g2="Yacute" k="-70" />
+<hkern g1="quotedblleft" g2="agrave" k="50" />
+<hkern g1="quotedblleft" g2="aacute" k="50" />
+<hkern g1="quotedblleft" g2="acircumflex" k="50" />
+<hkern g1="quotedblleft" g2="atilde" k="50" />
+<hkern g1="quotedblleft" g2="adieresis" k="50" />
+<hkern g1="quotedblleft" g2="aring" k="50" />
+<hkern g1="quotedblleft" g2="ae" k="50" />
+<hkern g1="quotedblleft" g2="ccedilla" k="68" />
+<hkern g1="quotedblleft" g2="egrave" k="68" />
+<hkern g1="quotedblleft" g2="eacute" k="68" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="68" />
+<hkern g1="quotedblleft" g2="edieresis" k="68" />
+<hkern g1="quotedblleft" g2="eth" k="27" />
+<hkern g1="quotedblleft" g2="ntilde" k="45" />
+<hkern g1="quotedblleft" g2="ograve" k="68" />
+<hkern g1="quotedblleft" g2="oacute" k="68" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="68" />
+<hkern g1="quotedblleft" g2="otilde" k="68" />
+<hkern g1="quotedblleft" g2="odieresis" k="68" />
+<hkern g1="quotedblleft" g2="oslash" k="68" />
+<hkern g1="quotedblleft" g2="ugrave" k="41" />
+<hkern g1="quotedblleft" g2="uacute" k="41" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="41" />
+<hkern g1="quotedblleft" g2="udieresis" k="41" />
+<hkern g1="quotedblleft" g2="OE" k="31" />
+<hkern g1="quotedblleft" g2="oe" k="68" />
+<hkern g1="quotedblleft" g2="quotesinglbase" k="252" />
+<hkern g1="quotedblleft" g2="quotedblbase" k="252" />
+<hkern g1="quotedblright" g2="ampersand" k="35" />
+<hkern g1="quotedblright" g2="comma" k="258" />
+<hkern g1="quotedblright" g2="period" k="252" />
+<hkern g1="quotedblright" g2="slash" k="178" />
+<hkern g1="quotedblright" g2="at" k="80" />
+<hkern g1="quotedblright" g2="A" k="109" />
+<hkern g1="quotedblright" g2="C" k="33" />
+<hkern g1="quotedblright" g2="G" k="35" />
+<hkern g1="quotedblright" g2="O" k="33" />
+<hkern g1="quotedblright" g2="Q" k="33" />
+<hkern g1="quotedblright" g2="V" k="-12" />
+<hkern g1="quotedblright" g2="Y" k="-20" />
+<hkern g1="quotedblright" g2="a" k="43" />
+<hkern g1="quotedblright" g2="c" k="59" />
+<hkern g1="quotedblright" g2="d" k="82" />
+<hkern g1="quotedblright" g2="e" k="59" />
+<hkern g1="quotedblright" g2="g" k="59" />
+<hkern g1="quotedblright" g2="m" k="31" />
+<hkern g1="quotedblright" g2="n" k="31" />
+<hkern g1="quotedblright" g2="o" k="59" />
+<hkern g1="quotedblright" g2="p" k="29" />
+<hkern g1="quotedblright" g2="q" k="82" />
+<hkern g1="quotedblright" g2="r" k="31" />
+<hkern g1="quotedblright" g2="s" k="37" />
+<hkern g1="quotedblright" g2="u" k="29" />
+<hkern g1="quotedblright" g2="z" k="20" />
+<hkern g1="quotedblright" g2="guillemotleft" k="141" />
+<hkern g1="quotedblright" g2="registered" k="25" />
+<hkern g1="quotedblright" g2="Agrave" k="109" />
+<hkern g1="quotedblright" g2="Aacute" k="109" />
+<hkern g1="quotedblright" g2="Acircumflex" k="109" />
+<hkern g1="quotedblright" g2="Atilde" k="109" />
+<hkern g1="quotedblright" g2="Adieresis" k="109" />
+<hkern g1="quotedblright" g2="Aring" k="109" />
+<hkern g1="quotedblright" g2="AE" k="170" />
+<hkern g1="quotedblright" g2="Ccedilla" k="33" />
+<hkern g1="quotedblright" g2="Icircumflex" k="-43" />
+<hkern g1="quotedblright" g2="Ograve" k="33" />
+<hkern g1="quotedblright" g2="Oacute" k="33" />
+<hkern g1="quotedblright" g2="Ocircumflex" k="33" />
+<hkern g1="quotedblright" g2="Otilde" k="33" />
+<hkern g1="quotedblright" g2="Odieresis" k="33" />
+<hkern g1="quotedblright" g2="Oslash" k="33" />
+<hkern g1="quotedblright" g2="Yacute" k="-20" />
+<hkern g1="quotedblright" g2="agrave" k="43" />
+<hkern g1="quotedblright" g2="aacute" k="43" />
+<hkern g1="quotedblright" g2="acircumflex" k="43" />
+<hkern g1="quotedblright" g2="atilde" k="43" />
+<hkern g1="quotedblright" g2="adieresis" k="43" />
+<hkern g1="quotedblright" g2="aring" k="43" />
+<hkern g1="quotedblright" g2="ae" k="43" />
+<hkern g1="quotedblright" g2="ccedilla" k="59" />
+<hkern g1="quotedblright" g2="egrave" k="59" />
+<hkern g1="quotedblright" g2="eacute" k="59" />
+<hkern g1="quotedblright" g2="ecircumflex" k="59" />
+<hkern g1="quotedblright" g2="edieresis" k="59" />
+<hkern g1="quotedblright" g2="eth" k="27" />
+<hkern g1="quotedblright" g2="ntilde" k="31" />
+<hkern g1="quotedblright" g2="ograve" k="59" />
+<hkern g1="quotedblright" g2="oacute" k="59" />
+<hkern g1="quotedblright" g2="ocircumflex" k="59" />
+<hkern g1="quotedblright" g2="otilde" k="59" />
+<hkern g1="quotedblright" g2="odieresis" k="59" />
+<hkern g1="quotedblright" g2="oslash" k="59" />
+<hkern g1="quotedblright" g2="ugrave" k="29" />
+<hkern g1="quotedblright" g2="uacute" k="29" />
+<hkern g1="quotedblright" g2="ucircumflex" k="29" />
+<hkern g1="quotedblright" g2="udieresis" k="29" />
+<hkern g1="quotedblright" g2="OE" k="33" />
+<hkern g1="quotedblright" g2="oe" k="59" />
+<hkern g1="quotedblright" g2="quotesinglbase" k="252" />
+<hkern g1="quotedblright" g2="quotedblbase" k="252" />
+<hkern g1="quotedblright" g2="guilsinglleft" k="141" />
+<hkern g1="quotedblbase" g2="quotedbl" k="281" />
+<hkern g1="quotedblbase" g2="quotesingle" k="213" />
+<hkern g1="quotedblbase" g2="zero" k="31" />
+<hkern g1="quotedblbase" g2="six" k="20" />
+<hkern g1="quotedblbase" g2="seven" k="66" />
+<hkern g1="quotedblbase" g2="C" k="45" />
+<hkern g1="quotedblbase" g2="G" k="39" />
+<hkern g1="quotedblbase" g2="O" k="45" />
+<hkern g1="quotedblbase" g2="Q" k="45" />
+<hkern g1="quotedblbase" g2="T" k="113" />
+<hkern g1="quotedblbase" g2="U" k="55" />
+<hkern g1="quotedblbase" g2="V" k="139" />
+<hkern g1="quotedblbase" g2="W" k="133" />
+<hkern g1="quotedblbase" g2="Y" k="125" />
+<hkern g1="quotedblbase" g2="t" k="25" />
+<hkern g1="quotedblbase" g2="u" k="23" />
+<hkern g1="quotedblbase" g2="v" k="80" />
+<hkern g1="quotedblbase" g2="w" k="100" />
+<hkern g1="quotedblbase" g2="y" k="94" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="45" />
+<hkern g1="quotedblbase" g2="Ograve" k="45" />
+<hkern g1="quotedblbase" g2="Oacute" k="45" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="45" />
+<hkern g1="quotedblbase" g2="Otilde" k="45" />
+<hkern g1="quotedblbase" g2="Odieresis" k="45" />
+<hkern g1="quotedblbase" g2="Oslash" k="45" />
+<hkern g1="quotedblbase" g2="Ugrave" k="55" />
+<hkern g1="quotedblbase" g2="Uacute" k="55" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="55" />
+<hkern g1="quotedblbase" g2="Udieresis" k="55" />
+<hkern g1="quotedblbase" g2="Yacute" k="125" />
+<hkern g1="quotedblbase" g2="ugrave" k="23" />
+<hkern g1="quotedblbase" g2="uacute" k="23" />
+<hkern g1="quotedblbase" g2="ucircumflex" k="23" />
+<hkern g1="quotedblbase" g2="udieresis" k="23" />
+<hkern g1="quotedblbase" g2="yacute" k="94" />
+<hkern g1="quotedblbase" g2="ydieresis" k="94" />
+<hkern g1="quotedblbase" g2="OE" k="45" />
+<hkern g1="quotedblbase" g2="quoteleft" k="227" />
+<hkern g1="quotedblbase" g2="quoteright" k="178" />
+<hkern g1="quotedblbase" g2="quotedblleft" k="252" />
+<hkern g1="quotedblbase" g2="quotedblright" k="252" />
+<hkern g1="guilsinglleft" g2="W" k="23" />
+<hkern g1="guilsinglleft" g2="Y" k="35" />
+<hkern g1="guilsinglleft" g2="AE" k="-16" />
+<hkern g1="guilsinglleft" g2="Yacute" k="35" />
+<hkern g1="guilsinglright" g2="quotedbl" k="96" />
+<hkern g1="guilsinglright" g2="quotesingle" k="96" />
+<hkern g1="guilsinglright" g2="B" k="20" />
+<hkern g1="guilsinglright" g2="D" k="20" />
+<hkern g1="guilsinglright" g2="E" k="20" />
+<hkern g1="guilsinglright" g2="F" k="20" />
+<hkern g1="guilsinglright" g2="H" k="20" />
+<hkern g1="guilsinglright" g2="I" k="20" />
+<hkern g1="guilsinglright" g2="J" k="20" />
+<hkern g1="guilsinglright" g2="K" k="20" />
+<hkern g1="guilsinglright" g2="L" k="20" />
+<hkern g1="guilsinglright" g2="N" k="20" />
+<hkern g1="guilsinglright" g2="P" k="20" />
+<hkern g1="guilsinglright" g2="R" k="20" />
+<hkern g1="guilsinglright" g2="T" k="80" />
+<hkern g1="guilsinglright" g2="V" k="59" />
+<hkern g1="guilsinglright" g2="W" k="61" />
+<hkern g1="guilsinglright" g2="X" k="37" />
+<hkern g1="guilsinglright" g2="Y" k="106" />
+<hkern g1="guilsinglright" g2="Z" k="41" />
+<hkern g1="guilsinglright" g2="AE" k="29" />
+<hkern g1="guilsinglright" g2="Egrave" k="20" />
+<hkern g1="guilsinglright" g2="Eacute" k="20" />
+<hkern g1="guilsinglright" g2="Ecircumflex" k="20" />
+<hkern g1="guilsinglright" g2="Edieresis" k="20" />
+<hkern g1="guilsinglright" g2="Igrave" k="20" />
+<hkern g1="guilsinglright" g2="Iacute" k="20" />
+<hkern g1="guilsinglright" g2="Icircumflex" k="20" />
+<hkern g1="guilsinglright" g2="Idieresis" k="20" />
+<hkern g1="guilsinglright" g2="Eth" k="20" />
+<hkern g1="guilsinglright" g2="Ntilde" k="20" />
+<hkern g1="guilsinglright" g2="Yacute" k="106" />
+<hkern g1="guilsinglright" g2="Thorn" k="20" />
+<hkern g1="guilsinglright" g2="quoteright" k="131" />
+<hkern g1="guilsinglright" g2="quotedblright" k="131" />
+<hkern g1="fraction" g2="four" k="82" />
+<hkern g1="fraction" g2="seven" k="-63" />
+<hkern g1="minus" g2="one" k="53" />
+<hkern g1="minus" g2="two" k="53" />
+<hkern g1="minus" g2="three" k="37" />
+<hkern g1="minus" g2="seven" k="115" />
+</font>
+</defs>
+</svg>
diff --git a/static/fonts/lora-v9-latin-regular.ttf b/static/fonts/lora-v9-latin-regular.ttf
new file mode 100644
index 0000000..8705329
Binary files /dev/null and b/static/fonts/lora-v9-latin-regular.ttf differ
diff --git a/static/fonts/lora-v9-latin-regular.woff b/static/fonts/lora-v9-latin-regular.woff
new file mode 100644
index 0000000..9bcd77e
Binary files /dev/null and b/static/fonts/lora-v9-latin-regular.woff differ
diff --git a/static/fonts/lora-v9-latin-regular.woff2 b/static/fonts/lora-v9-latin-regular.woff2
new file mode 100644
index 0000000..a3ef64d
Binary files /dev/null and b/static/fonts/lora-v9-latin-regular.woff2 differ
diff --git a/static/fonts/open-sans-v13-latin-700.eot b/static/fonts/open-sans-v13-latin-700.eot
new file mode 100644
index 0000000..a78a2a9
Binary files /dev/null and b/static/fonts/open-sans-v13-latin-700.eot differ
diff --git a/static/fonts/open-sans-v13-latin-700.svg b/static/fonts/open-sans-v13-latin-700.svg
new file mode 100644
index 0000000..a294c81
--- /dev/null
+++ b/static/fonts/open-sans-v13-latin-700.svg
@@ -0,0 +1,1635 @@
+<?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">
+<defs >
+<font id="OpenSans" horiz-adv-x="1295" ><font-face
+ font-family="Open Sans"
+ units-per-em="2048"
+ panose-1="2 11 8 6 3 5 4 2 2 4"
+ ascent="2189"
+ descent="-600"
+ alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="586" d="M416 485H172L121 1462H467L416 485ZM117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="967" d="M412 1462L371 934H174L133 1462H412ZM834 1462L793 934H596L555 1462H834Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M999 844L952 612H1210V406H913L836 0H616L694 406H500L424 0H209L283 406H45V612H322L369 844H117V1053H406L483 1460H702L625 1053H823L901 1460H1116L1038 1053H1278V844H999ZM539 612H735L782
+844H586L539 612Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1169" d="M1092 457Q1092 298 977 202T655 86V-119H518V82Q274 87 90 168V432Q177 389 299 356T518 317V627L451 653Q253 731 171 822T88 1049Q88 1194 201 1287T518 1401V1554H655V1405Q884 1395 1069 1313L975
+1079Q819 1143 655 1157V862Q850 787 932 732T1053 611T1092 457ZM791 442Q791 484 757 513T655 573V324Q791 347 791 442ZM389 1049Q389 1005 419 977T518 918V1153Q389 1134 389 1049Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1845" d="M315 1024Q315 897 337 835T410 772Q506 772 506 1024Q506 1274 410 1274Q360 1274 338 1213T315 1024ZM758 1026Q758 796 669 681T408 565Q243 565 153 683T63 1026Q63 1483 408 1483Q577 1483
+667 1365T758 1026ZM1446 1462L635 0H395L1206 1462H1446ZM1339 440Q1339 313 1361 251T1434 188Q1530 188 1530 440Q1530 690 1434 690Q1384 690 1362 629T1339 440ZM1782 442Q1782 213 1693 98T1432 -18Q1267 -18 1177 100T1087 442Q1087 899 1432 899Q1601 899
+1691 781T1782 442Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1536" d="M1536 0H1159L1044 113Q853 -20 612 -20Q368 -20 225 92T82 395Q82 532 142 628T350 809Q275 895 241 973T207 1145Q207 1297 323 1390T635 1483Q821 1483 932 1397T1044 1165Q1044 1046
+975 948T752 760L1036 483Q1107 600 1159 784H1477Q1441 649 1378 521T1235 293L1536 0ZM403 424Q403 338 467 287T633 236Q759 236 860 297L528 627Q470 583 437 535T403 424ZM762 1133Q762 1186 726 1216T633 1247Q566 1247 528 1215T489 1124Q489 1036 584 930Q670
+978 716 1024T762 1133Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="545" d="M412 1462L371 934H174L133 1462H412Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="694" d="M82 561Q82 826 159 1057T383 1462H633Q492 1269 420 1038T348 563Q348 318 421 90T631 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="694" d="M612 561Q612 298 535 71T311 -324H63Q198 -140 272 88T346 563Q346 807 274 1038T61 1462H311Q458 1287 535 1056T612 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1116" d="M688 1556L647 1188L1020 1292L1053 1040L713 1016L936 719L709 598L553 911L416 600L180 719L401 1016L63 1042L102 1292L467 1188L426 1556H688Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1169" d="M475 612H88V831H475V1221H694V831H1081V612H694V227H475V612Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="594" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M61 424V674H598V424H61Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="584" d="M117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="846" d="M836 1462L291 0H14L559 1462H836Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1169" d="M1096 731Q1096 348 971 164T584 -20Q331 -20 203 170T74 731Q74 1118 199 1301T584 1485Q837 1485 966 1293T1096 731ZM381 731Q381 462 427 346T584 229Q692 229 740 347T788 731Q788 1000 740 1117T584
+1235Q475 1235 428 1118T381 731Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1169" d="M846 0H537V846L540 985L545 1137Q468 1060 438 1036L270 901L121 1087L592 1462H846V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1169" d="M1104 0H82V215L449 586Q612 753 662 817T734 937T756 1051Q756 1139 708 1182T578 1225Q493 1225 413 1186T246 1075L78 1274Q186 1366 257 1404T412 1462T600 1483Q737 1483 842 1433T1005 1293T1063
+1087Q1063 986 1028 898T918 716T655 451L467 274V260H1104V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1169" d="M1047 1135Q1047 998 964 902T731 770V764Q908 742 999 657T1090 426Q1090 215 937 98T500 -20Q262 -20 78 59V322Q163 279 265 252T467 225Q620 225 693 277T766 444Q766 547 682 590T414 633H303V870H416Q586
+870 664 914T743 1067Q743 1233 535 1233Q463 1233 389 1209T223 1126L80 1339Q280 1483 557 1483Q784 1483 915 1391T1047 1135Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1169" d="M1137 303H961V0H659V303H35V518L676 1462H961V543H1137V303ZM659 543V791Q659 853 664 971T672 1108H664Q627 1026 575 948L307 543H659Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1169" d="M614 934Q826 934 951 815T1077 489Q1077 244 926 112T494 -20Q250 -20 100 59V326Q179 284 284 258T483 231Q766 231 766 463Q766 684 473 684Q420 684 356 674T252 651L129 717L184 1462H977V1200H455L428
+913L463 920Q524 934 614 934Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1169" d="M72 621Q72 1055 255 1267T805 1479Q930 1479 1001 1464V1217Q912 1237 825 1237Q666 1237 566 1189T415 1047T356 780H369Q468 950 686 950Q882 950 993 827T1104 487Q1104 253 972 117T606 -20Q444
+-20 324 55T138 274T72 621ZM600 227Q699 227 752 293T805 483Q805 590 756 651T606 713Q512 713 446 652T379 510Q379 391 441 309T600 227Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1169" d="M227 0L776 1200H55V1460H1104V1266L551 0H227Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1169" d="M586 1481Q796 1481 924 1386T1053 1128Q1053 1016 991 929T791 772Q955 684 1026 589T1098 379Q1098 199 957 90T586 -20Q346 -20 209 82T72 371Q72 496 138 593T352 764Q227 843 172 933T117 1130Q117
+1287 247 1384T586 1481ZM358 389Q358 303 418 255T582 207Q697 207 754 256T811 387Q811 454 755 512T571 637Q358 539 358 389ZM584 1255Q505 1255 457 1215T408 1106Q408 1046 446 999T586 901Q684 947 723 995T762 1106Q762 1175 712 1215T584 1255Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1169" d="M1098 838Q1098 406 916 193T365 -20Q235 -20 168 -6V242Q252 221 344 221Q499 221 599 266T752 409T813 678H801Q743 584 667 546T477 508Q286 508 176 630T66 971Q66 1206 199 1342T563 1479Q725
+1479 846 1403T1033 1183T1098 838ZM569 1231Q473 1231 419 1165T365 975Q365 869 414 807T563 745Q657 745 724 806T791 948Q791 1067 729 1149T569 1231Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="584" d="M117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143ZM117 969Q117 1053 162 1096T293 1139Q376 1139 421 1095T467 969Q467 888 421 844T293
+799Q209 799 163 843T117 969Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="594" d="M444 238L459 215Q407 13 283 -264H63Q128 2 164 238H444ZM117 969Q117 1053 162 1096T293 1139Q376 1139 421 1095T467 969Q467 888 421 844T293 799Q209 799 163 843T117 969Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1169" d="M1081 203L88 641V784L1081 1280V1040L397 723L1081 442V203Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1169" d="M88 805V1024H1081V805H88ZM88 418V637H1081V418H88Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1169" d="M88 442L772 723L88 1040V1280L1081 784V641L88 203V442Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="977" d="M276 485V559Q276 655 317 726T467 877Q572 952 605 999T639 1104Q639 1169 591 1203T457 1237Q307 1237 115 1139L6 1358Q229 1483 479 1483Q685 1483 806 1384T928 1120Q928 1010 878 930T688
+750Q592 679 567 642T541 545V485H276ZM244 143Q244 227 289 270T420 313Q503 313 548 269T594 143Q594 64 548 19T420 -27Q336 -27 290 17T244 143Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1837" d="M1735 752Q1735 608 1689 489T1559 301T1364 233Q1290 233 1233 268T1151 362H1135Q1027 233 860 233Q683 233 581 339T479 631Q479 842 613 971T963 1100Q1049 1100 1152 1084T1323 1044L1300 555Q1300
+416 1376 416Q1440 416 1478 509T1516 754Q1516 915 1449 1038T1261 1227T983 1292Q781 1292 632 1209T404 970T324 608Q324 332 471 185T899 37Q1005 37 1132 60T1382 129V-63Q1168 -154 907 -154Q527 -154 315 46T102 602Q102 849 210 1050T519 1366T981 1481Q1201
+1481 1374 1391T1641 1135T1735 752ZM711 627Q711 416 883 416Q973 416 1020 479T1077 686L1090 907Q1039 918 975 918Q850 918 781 840T711 627Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1376" d="M184 1462H639Q950 1462 1090 1374T1231 1092Q1231 961 1170 877T1006 776V766Q1145 735 1206 650T1268 424Q1268 224 1124 112T731 0H184V1462ZM494 883H674Q800 883 856 922T913 1051Q913 1135 852
+1171T657 1208H494V883ZM494 637V256H696Q824 256 885 305T946 455Q946 637 686 637H494Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1305" d="M805 1225Q630 1225 534 1094T438 727Q438 238 805 238Q959 238 1178 315V55Q998 -20 776 -20Q457 -20 288 173T119 729Q119 957 202 1128T440 1391T805 1483Q1018 1483 1233 1380L1133 1128Q1051 1167
+968 1196T805 1225Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1516" d="M1397 745Q1397 384 1192 192T598 0H184V1462H643Q1001 1462 1199 1273T1397 745ZM1075 737Q1075 1208 659 1208H494V256H627Q1075 256 1075 737Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1124" d="M489 0H184V1462H1022V1208H489V831H985V578H489V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1483" d="M739 821H1319V63Q1178 17 1054 -1T799 -20Q468 -20 294 174T119 733Q119 1087 321 1285T883 1483Q1108 1483 1317 1393L1214 1145Q1054 1225 881 1225Q680 1225 559 1090T438 727Q438 489 535 364T819
+238Q916 238 1016 258V563H739V821Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1567" d="M1382 0H1073V631H494V0H184V1462H494V889H1073V1462H1382V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="678" d="M184 0V1462H494V0H184Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="678" d="M31 -430Q-74 -430 -152 -408V-150Q-72 -170 -6 -170Q96 -170 140 -107T184 92V1462H494V94Q494 -162 377 -296T31 -430Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1360" d="M1360 0H1008L625 616L494 522V0H184V1462H494V793L616 965L1012 1462H1356L846 815L1360 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1157" d="M184 0V1462H494V256H1087V0H184Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1931" d="M803 0L451 1147H442Q461 797 461 680V0H184V1462H606L952 344H958L1325 1462H1747V0H1458V692Q1458 741 1459 805T1473 1145H1464L1087 0H803Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1665" d="M1481 0H1087L451 1106H442Q461 813 461 688V0H184V1462H575L1210 367H1217Q1202 652 1202 770V1462H1481V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227 817 1227Q632
+1227 538 1103T444 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1286" d="M494 774H596Q739 774 810 830T881 995Q881 1104 822 1156T635 1208H494V774ZM1194 1006Q1194 770 1047 645T627 520H494V0H184V1462H651Q917 1462 1055 1348T1194 1006Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1630" d="M1511 733Q1511 475 1420 301T1151 45L1503 -348H1106L838 -20H815Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240
+1186 733Q1186 1227 817 1227Q632 1227 538 1103T444 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1352" d="M494 813H594Q741 813 811 862T881 1016Q881 1120 810 1164T588 1208H494V813ZM494 561V0H184V1462H610Q908 1462 1051 1354T1194 1024Q1194 895 1123 795T922 637Q1252 144 1352 0H1008L659 561H494Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1128" d="M1047 406Q1047 208 905 94T508 -20Q274 -20 94 68V356Q242 290 344 263T532 236Q634 236 688 275T743 391Q743 434 719 467T649 532T459 631Q325 694 258 752T151 887T111 1067Q111 1261 242 1372T606
+1483Q720 1483 823 1456T1040 1380L940 1139Q823 1187 747 1206T596 1225Q508 1225 461 1184T414 1077Q414 1036 433 1006T493 947T690 844Q895 746 971 648T1047 406Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1186" d="M748 0H438V1204H41V1462H1145V1204H748V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1331" d="M1018 1462H1331L834 0H496L0 1462H313L588 592Q611 515 635 413T666 270Q677 362 741 592L1018 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1980" d="M1608 0H1255L1057 768Q1046 809 1020 937T989 1110Q983 1056 959 937T922 766L725 0H373L0 1462H305L492 664Q541 443 563 281Q569 338 590 457T631 643L844 1462H1137L1350 643Q1364 588 1385 475T1417
+281Q1427 359 1449 475T1489 664L1675 1462H1980L1608 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1366" d="M1366 0H1012L672 553L332 0H0L485 754L31 1462H373L688 936L997 1462H1331L872 737L1366 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1278" d="M639 860L944 1462H1278L793 569V0H485V559L0 1462H336L639 860Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1186" d="M1137 0H49V201L750 1206H68V1462H1118V1262L418 256H1137V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="678" d="M627 -324H143V1462H627V1251H403V-113H627V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="846" d="M289 1462L834 0H557L12 1462H289Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="678" d="M51 -113H274V1251H51V1462H535V-324H51V-113Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1090" d="M8 520L446 1470H590L1085 520H846L524 1163L244 520H8Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="842" d="M846 -324H-4V-184H846V-324Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1243" d="M707 1241Q644 1285 522 1383T332 1548V1569H674Q737 1468 909 1268V1241H707Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083 745V0H870ZM780
+518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1296" d="M782 1139Q980 1139 1092 985T1204 561Q1204 284 1089 132T774 -20Q577 -20 465 123H444L393 0H160V1556H465V1194Q465 1125 453 973H465Q572 1139 782 1139ZM684 895Q571 895 519 826T465 596V563Q465
+383 518 305T688 227Q782 227 837 313T893 565Q893 730 837 812T684 895Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1053" d="M614 -20Q92 -20 92 553Q92 838 234 988T641 1139Q835 1139 989 1063L899 827Q827 856 765 874T641 893Q403 893 403 555Q403 227 641 227Q729 227 804 250T954 324V63Q880 16 805 -2T614 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1296" d="M514 -20Q317 -20 205 133T92 557Q92 832 206 985T522 1139Q733 1139 844 975H854Q831 1100 831 1198V1556H1137V0H903L844 145H831Q727 -20 514 -20ZM621 223Q738 223 792 291T852 522V555Q852 735 797
+813T616 891Q514 891 458 805T401 553Q401 388 458 306T621 223Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781 207 871
+228T1059 295V59Q979 19 888 0T666 -20Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="793" d="M778 889H514V0H209V889H41V1036L209 1118V1200Q209 1391 303 1479T604 1567Q762 1567 885 1520L807 1296Q715 1325 637 1325Q572 1325 543 1287T514 1188V1118H778V889Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1157" d="M1133 1118V963L958 918Q1006 843 1006 750Q1006 570 881 470T532 369L477 372L432 377Q385 341 385 297Q385 231 553 231H743Q927 231 1023 152T1120 -80Q1120 -276 957 -384T487 -492Q253 -492 130
+-411T6 -182Q6 -81 69 -13T254 84Q207 104 172 149T137 246Q137 310 174 352T281 436Q193 474 142 558T90 756Q90 939 209 1039T549 1139Q596 1139 660 1131T743 1118H1133ZM270 -158Q270 -221 330 -257T500 -293Q664 -293 757 -248T850 -125Q850 -62 795 -38T625
+-14H467Q383 -14 327 -53T270 -158ZM381 752Q381 661 422 608T549 555Q635 555 675 608T715 752Q715 954 549 954Q381 954 381 752Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1346" d="M1192 0H887V653Q887 895 707 895Q579 895 522 808T465 526V0H160V1556H465V1239Q465 1202 458 1065L451 975H467Q569 1139 791 1139Q988 1139 1090 1033T1192 729V0Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="625" d="M147 1407Q147 1556 313 1556Q479 1556 479 1407Q479 1336 438 1297T313 1257Q147 1257 147 1407ZM465 0H160V1118H465V0Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="625" d="M70 -492Q-47 -492 -131 -467V-227Q-61 -246 12 -246Q89 -246 124 -203T160 -76V1118H465V-121Q465 -299 362 -395T70 -492ZM147 1407Q147 1556 313 1556Q479 1556 479 1407Q479 1336 438 1297T313 1257Q147
+1257 147 1407Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1270" d="M453 608L586 778L899 1118H1243L799 633L1270 0H918L596 453L465 348V0H160V1556H465V862L449 608H453Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="625" d="M465 0H160V1556H465V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="2011" d="M1161 0H856V653Q856 774 816 834T688 895Q571 895 518 809T465 526V0H160V1118H393L434 975H451Q496 1052 581 1095T776 1139Q1027 1139 1116 975H1143Q1188 1053 1275 1096T1473 1139Q1663 1139 1760
+1042T1858 729V0H1552V653Q1552 774 1512 834T1384 895Q1272 895 1217 815T1161 561V0Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1346" d="M1192 0H887V653Q887 774 844 834T707 895Q579 895 522 810T465 526V0H160V1118H393L434 975H451Q502 1056 591 1097T795 1139Q990 1139 1091 1034T1192 729V0Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835 235 987T637
+1139Q798 1139 921 1069T1110 868T1176 561Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1296" d="M774 -20Q577 -20 465 123H449Q465 -17 465 -39V-492H160V1118H408L451 973H465Q572 1139 782 1139Q980 1139 1092 986T1204 561Q1204 382 1152 250T1002 49T774 -20ZM684 895Q571 895 519 826T465 596V563Q465
+383 518 305T688 227Q893 227 893 565Q893 730 843 812T684 895Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1296" d="M623 219Q739 219 793 285T852 518V555Q852 735 797 813T618 891Q403 891 403 553Q403 385 456 302T623 219ZM514 -20Q316 -20 204 132T92 557Q92 831 206 985T520 1139Q626 1139 705 1099T844 975H852L879
+1118H1137V-492H831V-23Q831 38 844 145H831Q782 64 701 22T514 -20Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="930" d="M784 1139Q846 1139 887 1130L864 844Q827 854 774 854Q628 854 547 779T465 569V0H160V1118H391L436 930H451Q503 1024 591 1081T784 1139Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="1018" d="M940 332Q940 160 821 70T463 -20Q341 -20 255 -4T94 45V297Q179 257 285 230T473 203Q639 203 639 299Q639 335 617 357T541 408T397 475Q268 529 208 575T120 680T92 827Q92 976 207 1057T535 1139Q737
+1139 928 1051L836 831Q752 867 679 890T530 913Q395 913 395 840Q395 799 438 769T629 680Q760 627 821 581T911 475T940 332Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="889" d="M631 223Q711 223 823 258V31Q709 -20 543 -20Q360 -20 277 72T193 350V889H47V1018L215 1120L303 1356H498V1118H811V889H498V350Q498 285 534 254T631 223Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1165" d="M426 0L0 1118H319L535 481Q571 360 580 252H586Q591 348 631 481L846 1118H1165L739 0H426Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1753" d="M1079 0L993 391L877 885H870L666 0H338L20 1118H324L453 623Q484 490 516 256H522Q526 332 557 497L573 582L711 1118H1047L1178 582Q1182 560 1190 517T1207 426T1221 331T1229 256H1235Q1244 328 1267
+453T1300 623L1434 1118H1733L1411 0H1079Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1184" d="M389 571L29 1118H375L592 762L811 1118H1157L793 571L1174 0H827L592 383L356 0H10L389 571Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444 8L0 1118Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="999" d="M938 0H55V180L573 885H86V1118H920V920L416 233H938V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="807" d="M287 270Q287 357 222 403T31 449V688Q157 688 222 732T287 858V866V1184Q287 1337 384 1399T725 1462V1237Q626 1234 589 1199T551 1096V797Q545 609 317 575V563Q551 528 551 351V342V43Q551
+-25 588 -60T725 -98V-324Q481 -324 384 -262T287 -45V270Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M455 1550H674V-465H455V1550Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="807" d="M520 -45Q520 -157 479 -214T344 -297T82 -324V-98Q181 -96 218 -62T256 43V342V353Q256 439 315 492T489 563V575Q262 609 256 797V1096Q256 1166 219 1200T82 1237V1462Q249 1462 344 1436T479
+1352T520 1184V866V856Q520 772 581 730T776 688V449Q651 449 586 408T520 270V-45Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1169" d="M322 672Q267 672 205 639T88 551V782Q191 891 344 891Q417 891 481 875T621 827Q750 772 848 772Q901 772 964 804T1081 893V662Q980 553 825 553Q759 553 699 566T549 616Q418 672 322 672Z" />
+<glyph unicode="&#xa0;" glyph-name="nbspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="586" d="M168 606H412L463 -369H117L168 606ZM467 948Q467 864 422 821T291 778Q208 778 163 822T117 948Q117 1029 163 1073T291 1118Q375 1118 421 1074T467 948Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1169" d="M563 176Q143 235 143 741Q143 1002 247 1144T563 1317V1483H741V1325Q907 1316 1040 1251L950 1016Q878 1045 816 1063T692 1081Q571 1081 513 998T455 743Q455 416 692 416Q774 416 840 431T1006
+492V238Q879 177 741 168V-20H563V176Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1169" d="M700 1483Q895 1483 1090 1401L997 1171Q840 1235 725 1235Q647 1235 605 1191T563 1063V870H938V651H563V508Q563 338 412 260H1130V0H82V248Q185 292 223 349T262 506V651H84V870H262V1065Q262
+1266 376 1374T700 1483Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1169" d="M188 723Q188 825 242 920L113 1047L260 1194L387 1067Q478 1120 584 1120Q689 1120 780 1065L907 1194L1057 1051L928 922Q981 833 981 723Q981 616 928 524L1053 399L907 254L780 379Q685
+328 584 328Q469 328 385 379L260 256L115 401L242 526Q188 619 188 723ZM395 723Q395 646 449 591T584 535Q665 535 720 590T776 723Q776 803 720 858T584 913Q506 913 451 857T395 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1169" d="M584 860L848 1462H1161L778 715H973V537H727V399H973V221H727V0H440V221H193V399H440V537H193V715H383L6 1462H322L584 860Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M455 1550H674V735H455V1550ZM455 350H674V-465H455V350Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M121 805Q121 884 157 949T254 1055Q121 1139 121 1288Q121 1419 232 1498T526 1577Q696 1577 889 1493L807 1303Q739 1335 669 1360T520 1386Q439 1386 402 1363T365 1292Q365 1243 414 1206T578
+1124Q741 1060 818 976T895 782Q895 605 770 522Q832 482 863 430T895 303Q895 155 776 68T455 -20Q252 -20 106 59V266Q187 225 286 197T455 168Q649 168 649 285Q649 324 631 348T567 397T442 457Q259 531 190 609T121 805ZM344 827Q344 760 409 708T590 610Q668
+667 668 756Q668 824 618 871T434 967Q397 953 371 914T344 827Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1243" d="M279 1405Q279 1470 316 1505T418 1540Q484 1540 521 1503T559 1405Q559 1345 521 1309T418 1272Q354 1272 317 1307T279 1405ZM682 1405Q682 1475 722 1507T823 1540Q888 1540 926 1504T965
+1405Q965 1344 926 1308T823 1272Q763 1272 723 1304T682 1405Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M895 1010Q798 1010 745 936T692 731Q692 451 895 451Q952 451 1018 466T1141 510V319Q1021 262 889 262Q685 262 573 387T461 733Q461 953 571 1075T881 1198Q1030 1198 1186 1120L1112
+952Q999 1010 895 1010ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM242 731Q242 567 324 426T548 203T852 121Q1016 121 1157 203T1380 427T1462
+731Q1462 895 1380 1036T1156 1259T852 1341Q688 1341 547 1259T324 1035T242 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="784" d="M561 764L530 874Q487 816 425 784T289 752Q172 752 110 810T47 975Q47 1084 129 1138T397 1202L496 1206Q496 1323 369 1323Q288 1323 152 1262L86 1397Q152 1429 231 1454T410 1479Q547
+1479 621 1408T696 1206V764H561ZM252 977Q252 939 275 921T330 903Q407 903 451 944T496 1051V1087L397 1081Q252 1071 252 977Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1260" d="M82 573L453 1028L672 909L393 561L672 213L453 94L82 547V573ZM588 573L958 1028L1178 909L899 561L1178 213L958 94L588 547V573Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1169" d="M1081 248H862V612H88V831H1081V248Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M61 424V674H598V424H61Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M1157 905Q1157 735 1014 672L1251 272H997L819 610H772V272H543V1188H807Q988 1188 1072 1118T1157 905ZM772 778H803Q869 778 897 806T926 901Q926 966 898 993T801 1020H772V778ZM100
+731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM242 731Q242 567 324 426T548 203T852 121Q1016 121 1157 203T1380 427T1462 731Q1462 895 1380 1036T1156
+1259T852 1341Q688 1341 547 1259T324 1035T242 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1757H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M92 1137Q92 1229 138 1309T264 1436T438 1483Q530 1483 610 1437T737 1310T784 1137Q784 1044 738 964T611 838T438 793Q293 793 193 892T92 1137ZM283 1137Q283 1073 327 1028T438 983Q504
+983 549 1029T594 1137Q594 1200 549 1247T438 1294Q374 1294 329 1248T283 1137Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1169" d="M475 674H88V893H475V1282H694V893H1081V674H694V289H475V674ZM88 0V219H1081V0H88Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="776" d="M702 586H55V754L279 973Q381 1073 409 1117T438 1212Q438 1250 414 1270T350 1290Q269 1290 170 1202L47 1354Q194 1483 383 1483Q520 1483 599 1417T678 1233Q678 1148 631 1073T455
+881L350 786H702V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="776" d="M666 1249Q666 1106 496 1051V1038Q590 1018 642 963T694 829Q694 708 606 639T332 569Q189 569 59 639V829Q207 739 330 739Q473 739 473 846Q473 899 429 925T307 952H195V1112H287Q370
+1112 410 1138T451 1221Q451 1259 426 1284T350 1309Q303 1309 261 1290T162 1231L61 1372Q123 1419 198 1450T377 1481Q504 1481 585 1417T666 1249Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1243" d="M332 1241V1268Q504 1468 567 1569H909V1548Q857 1496 732 1394T535 1241H332Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1352" d="M465 465Q465 344 509 284T647 223Q773 223 830 309T887 592V1118H1192V0H961L918 150H903Q861 65 801 23T653 -20Q591 -20 539 3T455 70L460 -15L465 -172V-492H160V1118H465V465Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1167 -260H1006V1356H840V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1167V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="middot" horiz-adv-x="584" d="M117 723Q117 807 162 850T293 893Q376 893 421 849T467 723Q467 642 421 598T293 553Q209 553 163 597T117 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M418 -250Q418 -378 343 -435T109 -492Q31 -492 -37 -471V-303Q-10 -310 35 -317T106 -324Q178 -324 178 -262Q178 -179 12 -154L90 0H283L256 -61Q330 -85 374 -135T418 -250Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="776" d="M584 586H346V1032L349 1144L354 1239Q327 1203 279 1161L201 1100L92 1227L393 1462H584V586Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="795" d="M737 1116Q737 945 646 849T395 752Q242 752 150 850T57 1116Q57 1285 146 1382T399 1479Q551 1479 644 1381T737 1116ZM260 1116Q260 1016 292 966T397 915Q469 915 500 965T532 1116Q532
+1216 501 1265T397 1315Q325 1315 293 1266T260 1116Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1260" d="M1178 547L807 94L588 213L866 561L588 909L807 1028L1178 573V547ZM672 547L301 94L82 213L360 561L82 909L301 1028L672 573V547Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1804" d="M794 586H556V1032L559 1144L564 1239Q537 1203 489 1161L411 1100L302 1227L603 1462H794V586ZM1370 1462L559 0H320L1131 1462H1370ZM1682 152H1557V1H1319V152H936V306L1321 883H1557V320H1682V152ZM1319
+320V484Q1319 570 1325 668Q1316 642 1290 588T1248 511L1121 320H1319Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1804" d="M794 586H556V1032L559 1144L564 1239Q537 1203 489 1161L411 1100L302 1227L603 1462H794V586ZM1370 1462L559 0H320L1131 1462H1370ZM1716 1H1069V169L1293 388Q1395 488 1423 532T1452
+627Q1452 665 1428 685T1364 705Q1283 705 1184 617L1061 769Q1208 898 1397 898Q1534 898 1613 832T1692 648Q1692 563 1645 488T1469 296L1364 201H1716V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1804" d="M697 1249Q697 1106 527 1051V1038Q621 1018 673 963T725 829Q725 708 637 639T363 569Q220 569 90 639V829Q238 739 361 739Q504 739 504 846Q504 899 460 925T338 952H226V1112H318Q401
+1112 441 1138T482 1221Q482 1259 457 1284T381 1309Q334 1309 292 1290T193 1231L92 1372Q154 1419 229 1450T408 1481Q535 1481 616 1417T697 1249ZM1441 1462L630 0H391L1202 1462H1441ZM1712 152H1587V1H1349V152H966V306L1351 883H1587V320H1712V152ZM1349
+320V484Q1349 570 1355 668Q1346 642 1320 588T1278 511L1151 320H1349Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="977" d="M713 606V532Q713 434 669 363T516 215Q407 137 379 93T350 -14Q350 -71 393 -108T526 -145Q605 -145 695 -116T881 -45L983 -266Q885 -322 762 -356T532 -391Q312 -391 187 -295T61 -29Q61
+79 109 158T301 342Q396 412 422 449T449 547V606H713ZM745 948Q745 864 700 821T569 778Q486 778 441 822T395 948Q395 1029 441 1073T569 1118Q653 1118 699 1074T745 948Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM713 1579Q650 1623 528 1721T338 1886V1907H680Q743 1806 915 1606V1579H713Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM541 1579V1606Q713 1806 776 1907H1118V1886Q1066 1834 941 1732T744 1579H541Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM938 1579Q781 1672 704 1755Q626 1674 475 1579H272V1606Q461 1795
+528 1907H885Q916 1855 992 1766T1141 1606V1579H938Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM543 1684Q512 1684 484 1658T442 1577H293Q304 1722 375 1804T565 1886Q606
+1886 645 1870T723 1834T799 1798T872 1782Q903 1782 931 1808T973 1888H1122Q1111 1743 1039 1661T850 1579Q809 1579 770 1595T692 1631T616 1667T543 1684Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM365 1743Q365 1808 402 1843T504 1878Q570 1878 607 1841T645 1743Q645
+1683 607 1647T504 1610Q440 1610 403 1645T365 1743ZM768 1743Q768 1813 808 1845T909 1878Q974 1878 1012 1842T1051 1743Q1051 1682 1012 1646T909 1610Q849 1610 809 1642T768 1743Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM959 1567Q959 1459 888 1393T705 1327Q593 1327 525 1391T457 1565Q457
+1673 524 1737T705 1802Q815 1802 887 1736T959 1567ZM801 1565Q801 1610 774 1635T705 1661Q663 1661 636 1636T609 1565Q609 1520 633 1494T705 1468Q747 1468 774 1494T801 1565Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1950" d="M1829 0H956V348H465L315 0H0L655 1462H1829V1208H1266V887H1792V633H1266V256H1829V0ZM578 608H956V1198H829L578 608Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1305" d="M805 1225Q630 1225 534 1094T438 727Q438 238 805 238Q959 238 1178 315V55Q998 -20 776 -20Q457 -20 288 173T119 729Q119 957 202 1128T440 1391T805 1483Q1018 1483 1233 1380L1133 1128Q1051
+1167 968 1196T805 1225ZM959 -250Q959 -378 884 -435T650 -492Q572 -492 504 -471V-303Q531 -310 576 -317T647 -324Q719 -324 719 -262Q719 -179 553 -154L631 0H824L797 -61Q871 -85 915 -135T959 -250Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM634 1579Q571 1623 449 1721T259 1886V1907H601Q664 1806 836 1606V1579H634Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM424 1579V1606Q596 1806 659 1907H1001V1886Q949 1834 824 1732T627 1579H424Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM841 1579Q684 1672 607 1755Q529 1674 378 1579H175V1606Q364 1795 431 1907H788Q819 1855 895 1766T1044 1606V1579H841Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM272 1743Q272 1808 309 1843T411 1878Q477 1878 514 1841T552 1743Q552 1683 514 1647T411 1610Q347 1610 310 1645T272 1743ZM675
+1743Q675 1813 715 1845T816 1878Q881 1878 919 1842T958 1743Q958 1682 919 1646T816 1610Q756 1610 716 1642T675 1743Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM317 1579Q254 1623 132 1721T-58 1886V1907H284Q347 1806 519 1606V1579H317Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM167 1579V1606Q339 1806 402 1907H744V1886Q692 1834 567 1732T370 1579H167Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM570 1579Q413 1672 336 1755Q258 1674 107 1579H-96V1606Q93 1795 160 1907H517Q548 1855 624 1766T773 1606V1579H570Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM-3 1743Q-3 1808 34 1843T136 1878Q202 1878 239 1841T277 1743Q277 1683 239 1647T136 1610Q72 1610 35 1645T-3 1743ZM400 1743Q400 1813 440 1845T541 1878Q606
+1878 644 1842T683 1743Q683 1682 644 1646T541 1610Q481 1610 441 1642T400 1743Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1516" d="M47 850H184V1462H643Q1001 1462 1199 1273T1397 745Q1397 384 1192 192T598 0H184V596H47V850ZM1075 737Q1075 969 971 1088T657 1208H494V850H731V596H494V256H625Q1075 256 1075 737Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1665" d="M1481 0H1087L451 1106H442Q461 813 461 688V0H184V1462H575L1210 367H1217Q1202 652 1202 770V1462H1481V0ZM668 1684Q637 1684 609 1658T567 1577H418Q429 1722 500 1804T690 1886Q731 1886
+770 1870T848 1834T924 1798T997 1782Q1028 1782 1056 1808T1098 1888H1247Q1236 1743 1164 1661T975 1579Q934 1579 895 1595T817 1631T741 1667T668 1684Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
+817 1227Q632 1227 538 1103T444 733ZM824 1579Q761 1623 639 1721T449 1886V1907H791Q854 1806 1026 1606V1579H824Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
+817 1227Q632 1227 538 1103T444 733ZM658 1579V1606Q830 1806 893 1907H1235V1886Q1183 1834 1058 1732T861 1579H658Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186
+1227 817 1227Q632 1227 538 1103T444 733ZM1047 1579Q890 1672 813 1755Q735 1674 584 1579H381V1606Q570 1795 637 1907H994Q1025 1855 1101 1766T1250 1606V1579H1047Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
+817 1227Q632 1227 538 1103T444 733ZM652 1684Q621 1684 593 1658T551 1577H402Q413 1722 484 1804T674 1886Q715 1886 754 1870T832 1834T908 1798T981 1782Q1012 1782 1040 1808T1082 1888H1231Q1220 1743 1148 1661T959 1579Q918 1579 879 1595T801 1631T725
+1667T652 1684Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186
+1227 817 1227Q632 1227 538 1103T444 733ZM474 1743Q474 1808 511 1843T613 1878Q679 1878 716 1841T754 1743Q754 1683 716 1647T613 1610Q549 1610 512 1645T474 1743ZM877 1743Q877 1813 917 1845T1018 1878Q1083 1878 1121 1842T1160 1743Q1160 1682 1121
+1646T1018 1610Q958 1610 918 1642T877 1743Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1169" d="M428 723L129 1024L281 1178L582 879L887 1178L1040 1028L735 723L1036 420L887 268L582 569L281 270L131 422L428 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q618 -20 479 45L389 -90L227 18L317 154Q119 348 119 735Q119 1100 299 1292T817 1485Q1015 1485 1161 1415L1245 1540L1405 1436L1317 1305Q1511 1111
+1511 733ZM444 733Q444 542 500 426L1006 1182Q922 1227 817 1227Q632 1227 538 1103T444 733ZM1186 733Q1186 913 1135 1030L635 279Q711 240 815 240Q1186 240 1186 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM750 1579Q687 1623 565 1721T375
+1886V1907H717Q780 1806 952 1606V1579H750Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM602 1579V1606Q774 1806 837 1907H1179V1886Q1127
+1834 1002 1732T805 1579H602Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM1006 1579Q849 1672 772 1755Q694
+1674 543 1579H340V1606Q529 1795 596 1907H953Q984 1855 1060 1766T1209 1606V1579H1006Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM433 1743Q433 1808 470 1843T572
+1878Q638 1878 675 1841T713 1743Q713 1683 675 1647T572 1610Q508 1610 471 1645T433 1743ZM836 1743Q836 1813 876 1845T977 1878Q1042 1878 1080 1842T1119 1743Q1119 1682 1080 1646T977 1610Q917 1610 877 1642T836 1743Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1278" d="M639 860L944 1462H1278L793 569V0H485V559L0 1462H336L639 860ZM461 1579V1606Q633 1806 696 1907H1038V1886Q986 1834 861 1732T664 1579H461Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1286" d="M1194 770Q1194 541 1052 417T647 293H494V0H184V1462H494V1233H672Q926 1233 1060 1114T1194 770ZM494 543H594Q739 543 810 595T881 770Q881 877 818 929T618 981H494V543Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1456" d="M1249 1241Q1249 1177 1228 1129T1175 1042T1106 975T1037 922T984 877T963 834Q963 807 989 781T1082 715Q1228 624 1280 575T1358 465T1384 326Q1384 154 1268 67T924 -20Q825 -20 753
+-6T621 43V285Q674 249 756 224T903 199Q1071 199 1071 322Q1071 363 1055 388T998 444T883 516Q757 588 708 647T659 788Q659 852 694 905T799 1007Q876 1062 907 1102T938 1188Q938 1248 875 1288T711 1329Q595 1329 530 1277T465 1128V0H160V1139Q160 1340 306
+1453T711 1567Q955 1567 1102 1479T1249 1241Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM870 1241Q807 1285 685 1383T495 1548V1569H837Q900 1468 1072 1268V1241H870Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM441 1241V1268Q613 1468 676 1569H1018V1548Q966 1496 841 1394T644 1241H441Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963
+1043T1083 745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM1099 1496Q942 1589 865 1672Q787 1591 636 1496H433V1523Q622 1712 689 1824H1046Q1077 1772 1153 1683T1302 1523V1496H1099Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM467 1346Q436 1346 408 1320T366 1239H217Q228 1384 299 1466T489 1548Q530 1548 569 1532T647 1496T723 1460T796 1444Q827 1444 855 1470T897 1550H1046Q1035
+1405 963 1323T774 1241Q733 1241 694 1257T616 1293T540 1329T467 1346Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM285 1405Q285 1470 322 1505T424 1540Q490 1540 527 1503T565 1405Q565 1345 527 1309T424 1272Q360 1272 323 1307T285 1405ZM688 1405Q688 1475 728 1507T829
+1540Q894 1540 932 1504T971 1405Q971 1344 932 1308T829 1272Q769 1272 729 1304T688 1405Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM883 1479Q883 1371 812 1305T629 1239Q517 1239 449 1303T381 1477Q381 1585 448 1649T629 1714Q739 1714 811 1648T883 1479ZM725 1477Q725 1522 698 1547T629
+1573Q587 1573 560 1548T533 1477Q533 1432 557 1406T629 1380Q671 1380 698 1406T725 1477Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1878" d="M1329 -20Q1192 -20 1080 30T895 186Q797 69 699 25T442 -20Q281 -20 184 74T86 334Q86 512 207 596T569 690L760 696V780Q760 849 716 882T594 915Q454 915 289 838L190 1040Q379 1141 612 1141Q839
+1141 954 1010Q1020 1074 1106 1106T1313 1139Q1534 1139 1662 1002T1790 631V483H1067Q1072 353 1144 280T1346 207Q1542 207 1726 295V59Q1647 20 1555 0T1329 -20ZM760 518L647 514Q523 510 461 467T399 332Q399 203 539 203Q640 203 700 264T760 426V518ZM1307
+922Q1090 922 1073 686H1503Q1501 798 1448 860T1307 922Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1053" d="M614 -20Q92 -20 92 553Q92 838 234 988T641 1139Q835 1139 989 1063L899 827Q827 856 765 874T641 893Q403 893 403 555Q403 227 641 227Q729 227 804 250T954 324V63Q880 16 805 -2T614
+-20ZM805 -250Q805 -378 730 -435T496 -492Q418 -492 350 -471V-303Q377 -310 422 -317T493 -324Q565 -324 565 -262Q565 -179 399 -154L477 0H670L643 -61Q717 -85 761 -135T805 -250Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781
+207 871 228T1059 295V59Q979 19 888 0T666 -20ZM876 1241Q813 1285 691 1383T501 1548V1569H843Q906 1468 1078 1268V1241H876Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781
+207 871 228T1059 295V59Q979 19 888 0T666 -20ZM447 1241V1268Q619 1468 682 1569H1024V1548Q972 1496 847 1394T650 1241H447Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680
+207Q781 207 871 228T1059 295V59Q979 19 888 0T666 -20ZM860 1241Q703 1334 626 1417Q548 1336 397 1241H194V1268Q383 1457 450 1569H807Q838 1517 914 1428T1063 1268V1241H860Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680
+207Q781 207 871 228T1059 295V59Q979 19 888 0T666 -20ZM297 1405Q297 1470 334 1505T436 1540Q502 1540 539 1503T577 1405Q577 1345 539 1309T436 1272Q372 1272 335 1307T297 1405ZM700 1405Q700 1475 740 1507T841 1540Q906 1540 944 1504T983 1405Q983 1344
+944 1308T841 1272Q781 1272 741 1304T700 1405Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM274 1241Q211 1285 89 1383T-101 1548V1569H241Q304 1468 476 1268V1241H274Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM145 1241V1268Q317 1468 380 1569H722V1548Q670 1496 545 1394T348 1241H145Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM544 1241Q387 1334 310 1417Q232 1336 81 1241H-122V1268Q67 1457 134 1569H491Q522 1517 598 1428T747 1268V1241H544Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM-29 1405Q-29 1470 8 1505T110 1540Q176 1540 213 1503T251 1405Q251 1345 213 1309T110 1272Q46 1272 9 1307T-29 1405ZM374 1405Q374 1475 414 1507T515 1540Q580
+1540 618 1504T657 1405Q657 1344 618 1308T515 1272Q455 1272 415 1304T374 1405Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1268" d="M510 1303Q430 1356 358 1395L459 1571Q603 1506 717 1430L942 1569L1042 1415L872 1311Q1028 1168 1102 987T1176 573Q1176 293 1031 137T631 -20Q386 -20 239 117T92 489Q92 722 222 858T573
+995Q778 995 848 897L856 901Q789 1063 664 1182L434 1040L334 1196L510 1303ZM864 532Q864 640 803 705T635 770Q514 770 459 702T403 487Q403 347 463 276T635 205Q758 205 811 287T864 532Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1346" d="M1192 0H887V653Q887 774 844 834T707 895Q579 895 522 810T465 526V0H160V1118H393L434 975H451Q502 1056 591 1097T795 1139Q990 1139 1091 1034T1192 729V0ZM508 1346Q477 1346 449 1320T407
+1239H258Q269 1384 340 1466T530 1548Q571 1548 610 1532T688 1496T764 1460T837 1444Q868 1444 896 1470T938 1550H1087Q1076 1405 1004 1323T815 1241Q774 1241 735 1257T657 1293T581 1329T508 1346Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
+235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM868 1241Q805 1285 683 1383T493 1548V1569H835Q898 1468 1070 1268V1241H868Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
+235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM467 1241V1268Q639 1468 702 1569H1044V1548Q992 1496 867 1394T670 1241H467Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92
+835 235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM864 1241Q707 1334 630 1417Q552 1336 401 1241H198V1268Q387 1457 454 1569H811Q842 1517 918 1428T1067 1268V1241H864Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
+235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM469 1346Q438 1346 410 1320T368 1239H219Q230 1384 301 1466T491 1548Q532 1548 571 1532T649 1496T725 1460T798 1444Q829 1444 857 1470T899 1550H1048Q1037 1405 965 1323T776 1241Q735 1241 696 1257T618
+1293T542 1329T469 1346Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92
+835 235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM291 1405Q291 1470 328 1505T430 1540Q496 1540 533 1503T571 1405Q571 1345 533 1309T430 1272Q366 1272 329 1307T291 1405ZM694 1405Q694 1475 734 1507T835 1540Q900 1540 938 1504T977 1405Q977
+1344 938 1308T835 1272Q775 1272 735 1304T694 1405Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1169" d="M88 612V831H1081V612H88ZM444 373Q444 449 481 486T584 524Q650 524 686 485T723 373Q723 303 686 262T584 221Q519 221 482 260T444 373ZM444 1071Q444 1146 481 1184T584 1223Q651 1223
+687 1183T723 1071Q723 1001 686 961T584 920Q519 920 482 959T444 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1268" d="M1176 561Q1176 288 1032 134T631 -20Q505 -20 397 25L330 -76L176 29L244 129Q92 285 92 561Q92 835 235 987T637 1139Q769 1139 885 1087L940 1169L1092 1061L1034 977Q1176 822 1176 561ZM403
+561Q403 467 422 395L739 870Q696 893 633 893Q511 893 457 811T403 561ZM864 561Q864 642 852 702L543 240Q581 225 635 225Q757 225 810 309T864 561Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM876 1241Q813 1285 691 1383T501 1548V1569H843Q906
+1468 1078 1268V1241H876Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM498 1241V1268Q670 1468 733 1569H1075V1548Q1023
+1496 898 1394T701 1241H498Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM901 1241Q744 1334 667 1417Q589
+1336 438 1241H235V1268Q424 1457 491 1569H848Q879 1517 955 1428T1104 1268V1241H901Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM326 1405Q326 1470 363 1505T465
+1540Q531 1540 568 1503T606 1405Q606 1345 568 1309T465 1272Q401 1272 364 1307T326 1405ZM729 1405Q729 1475 769 1507T870 1540Q935 1540 973 1504T1012 1405Q1012 1344 973 1308T870 1272Q810 1272 770 1304T729 1405Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444
+8L0 1118ZM393 1241V1268Q565 1468 628 1569H970V1548Q918 1496 793 1394T596 1241H393Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1296" d="M465 973Q515 1054 596 1096T782 1139Q980 1139 1092 985T1204 561Q1204 288 1093 134T782 -20Q569 -20 465 117H451L458 55L465 -39V-492H160V1556H465V1165L458 1045L451 973H465ZM684 895Q571
+895 519 826T465 596V563Q465 383 518 305T688 227Q893 227 893 565Q893 730 843 812T684 895Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444
+8L0 1118ZM499 1405Q499 1470 536 1505T638 1540Q704 1540 741 1503T779 1405Q779 1345 741 1309T638 1272Q574 1272 537 1307T499 1405ZM902 1405Q902 1475 942 1507T1043 1540Q1108 1540 1146 1504T1185 1405Q1185 1344 1146 1308T1043 1272Q983 1272 943 1304T902
+1405Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 436V666H942V436H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 436V666H1966V436H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="444" d="M39 961L25 983Q47 1074 97 1211T201 1462H420Q354 1195 319 961H39Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="444" d="M406 1462L420 1440Q370 1243 244 961H25Q94 1257 125 1462H406Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="596" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="911" d="M492 983Q514 1074 564 1211T668 1462H887Q821 1195 786 961H506L492 983ZM25 983Q47 1074 97 1211T201 1462H420Q354 1195 319 961H39L25 983Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="911" d="M420 1440Q370 1243 244 961H25Q94 1257 125 1462H406L420 1440ZM887 1440Q837 1243 711 961H492Q561 1257 592 1462H872L887 1440Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="1061" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215ZM926 215Q874 13 750 -264H530Q595 2 631 238H911L926 215Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M98 748Q98 902 172 983T385 1065Q522 1065 597 983T672 748Q672 596 597 513T385 430Q247 430 173 513T98 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="754" d="M82 573L453 1028L672 909L393 561L672 213L453 94L82 547V573Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="754" d="M672 547L301 94L82 213L360 561L82 909L301 1028L672 573V547Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="OE" g2="J" k="-123" />
+</font>
+</defs>
+</svg>
diff --git a/static/fonts/open-sans-v13-latin-700.ttf b/static/fonts/open-sans-v13-latin-700.ttf
new file mode 100644
index 0000000..974a7c5
Binary files /dev/null and b/static/fonts/open-sans-v13-latin-700.ttf differ
diff --git a/static/fonts/open-sans-v13-latin-700.woff b/static/fonts/open-sans-v13-latin-700.woff
new file mode 100644
index 0000000..18e610d
Binary files /dev/null and b/static/fonts/open-sans-v13-latin-700.woff differ
diff --git a/static/fonts/open-sans-v13-latin-700.woff2 b/static/fonts/open-sans-v13-latin-700.woff2
new file mode 100644
index 0000000..be4c25b
Binary files /dev/null and b/static/fonts/open-sans-v13-latin-700.woff2 differ
diff --git a/static/fonts/open-sans-v13-latin-regular.eot b/static/fonts/open-sans-v13-latin-regular.eot
new file mode 100644
index 0000000..1d98e6e
Binary files /dev/null and b/static/fonts/open-sans-v13-latin-regular.eot differ
diff --git a/static/fonts/open-sans-v13-latin-regular.svg b/static/fonts/open-sans-v13-latin-regular.svg
new file mode 100644
index 0000000..052c59f
--- /dev/null
+++ b/static/fonts/open-sans-v13-latin-regular.svg
@@ -0,0 +1,1637 @@
+<?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">
+<defs >
+<font id="OpenSans" horiz-adv-x="1206" ><font-face
+ font-family="Open Sans"
+ units-per-em="2048"
+ panose-1="2 11 6 6 3 5 4 2 2 4"
+ ascent="2189"
+ descent="-600"
+ alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="547" d="M326 403H221L170 1462H377L326 403ZM152 106Q152 242 272 242Q330 242 361 207T393 106Q393 42 361 7T272 -29Q220 -29 186 2T152 106Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="821" d="M319 1462L279 934H174L133 1462H319ZM688 1462L647 934H543L502 1462H688Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M981 899L915 559H1198V430H891L807 0H670L754 430H451L369 0H233L313 430H51V559H338L406 899H129V1026H428L510 1462H649L567 1026H872L956 1462H1090L1006 1026H1270V899H981ZM475 559H778L844
+899H541L475 559Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1171" d="M1036 449Q1036 313 934 225T649 113V-119H520V104Q408 104 303 121T131 170V326Q214 289 322 266T520 242V682Q315 747 233 833T150 1055Q150 1186 251 1270T520 1372V1554H649V1374Q833 1369 1004
+1300L952 1169Q803 1228 649 1239V805Q806 755 884 708T999 599T1036 449ZM866 436Q866 508 822 552T649 641V252Q866 282 866 436ZM319 1057Q319 981 364 935T520 848V1235Q421 1219 370 1173T319 1057Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1686" d="M242 1026Q242 856 279 771T399 686Q563 686 563 1026Q563 1364 399 1364Q316 1364 279 1280T242 1026ZM700 1026Q700 798 624 682T399 565Q259 565 182 684T104 1026Q104 1253 178 1368T399 1483Q544
+1483 622 1364T700 1026ZM1122 440Q1122 269 1159 185T1280 100Q1364 100 1404 183T1444 440Q1444 611 1404 693T1280 776Q1196 776 1159 694T1122 440ZM1581 440Q1581 213 1505 97T1280 -20Q1138 -20 1062 99T985 440Q985 667 1059 782T1280 897Q1422 897 1501
+780T1581 440ZM1323 1462L512 0H365L1176 1462H1323Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1495" d="M414 1171Q414 1102 450 1040T573 889Q702 964 752 1027T803 1174Q803 1251 752 1299T614 1348Q525 1348 470 1300T414 1171ZM569 129Q810 129 969 283L532 707Q421 639 375 595T307 499T285
+383Q285 266 362 198T569 129ZM113 379Q113 509 182 609T432 811Q347 906 317 955T268 1057T250 1167Q250 1317 348 1401T621 1485Q783 1485 876 1402T969 1169Q969 1062 901 972T676 788L1083 397Q1139 459 1172 542T1229 725H1397Q1329 439 1192 291L1491 0H1262L1077
+178Q959 72 837 26T565 -20Q350 -20 232 86T113 379Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="453" d="M319 1462L279 934H174L133 1462H319Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="606" d="M82 561Q82 826 159 1057T383 1462H545Q401 1269 329 1038T256 563Q256 323 330 94T543 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="606" d="M524 561Q524 298 447 71T223 -324H63Q202 -136 276 93T350 563Q350 807 278 1038T61 1462H223Q370 1287 447 1056T524 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1130" d="M657 1556L614 1161L1012 1272L1038 1090L657 1059L905 733L733 639L557 1001L397 639L221 733L463 1059L86 1090L115 1272L506 1161L463 1556H657Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1171" d="M653 791H1065V653H653V227H514V653H104V791H514V1219H653V791Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="502" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M84 473V625H575V473H84Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="545" d="M152 106Q152 173 182 207T270 242Q328 242 360 208T393 106Q393 41 360 6T270 -29Q219 -29 186 2T152 106Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="752" d="M731 1462L186 0H20L565 1462H731Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1171" d="M1069 733Q1069 354 950 167T584 -20Q348 -20 225 171T102 733Q102 1115 221 1300T584 1485Q822 1485 945 1292T1069 733ZM270 733Q270 414 345 269T584 123Q750 123 824 270T899 733Q899 1048 825
+1194T584 1341Q420 1341 345 1197T270 733Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1171" d="M715 0H553V1042Q553 1172 561 1288Q540 1267 514 1244T276 1049L188 1163L575 1462H715V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1171" d="M1061 0H100V143L485 530Q661 708 717 784T801 932T829 1087Q829 1204 758 1272T561 1341Q470 1341 389 1311T207 1202L119 1315Q321 1483 559 1483Q765 1483 882 1378T999 1094Q999 955 921 819T629
+475L309 162V154H1061V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1171" d="M1006 1118Q1006 978 928 889T705 770V762Q881 740 966 650T1051 414Q1051 205 906 93T494 -20Q378 -20 282 -3T94 59V217Q189 170 296 146T500 121Q879 121 879 418Q879 684 461 684H317V827H463Q634
+827 734 902T834 1112Q834 1219 761 1280T561 1341Q465 1341 380 1315T186 1219L102 1331Q192 1402 309 1442T557 1483Q770 1483 888 1386T1006 1118Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1171" d="M1130 336H913V0H754V336H43V481L737 1470H913V487H1130V336ZM754 487V973Q754 1116 764 1296H756Q708 1200 666 1137L209 487H754Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1171" d="M557 893Q788 893 920 779T1053 465Q1053 238 909 109T510 -20Q263 -20 133 59V219Q203 174 307 149T512 123Q688 123 785 206T883 446Q883 752 508 752Q413 752 254 723L168 778L223 1462H950V1309H365L328
+870Q443 893 557 893Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1171" d="M117 625Q117 1056 284 1269T780 1483Q893 1483 958 1464V1321Q881 1346 782 1346Q547 1346 423 1200T287 739H299Q409 911 647 911Q844 911 957 792T1071 469Q1071 241 947 111T610 -20Q383 -20 250
+150T117 625ZM608 121Q750 121 828 210T907 469Q907 614 834 697T616 780Q526 780 451 743T332 641T287 506Q287 403 327 314T440 173T608 121Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1171" d="M285 0L891 1309H94V1462H1067V1329L469 0H285Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1171" d="M584 1483Q784 1483 901 1390T1018 1133Q1018 1025 951 936T737 774Q915 689 990 596T1065 379Q1065 197 938 89T590 -20Q356 -20 230 82T104 373Q104 624 410 764Q272 842 212 932T152 1135Q152
+1294 269 1388T584 1483ZM268 369Q268 249 351 182T586 115Q735 115 818 185T901 377Q901 474 823 549T551 696Q402 632 335 555T268 369ZM582 1348Q457 1348 386 1288T315 1128Q315 1036 374 970T592 838Q735 898 794 967T854 1128Q854 1229 782 1288T582 1348Z"
+/>
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1171" d="M1061 838Q1061 -20 397 -20Q281 -20 213 0V143Q293 117 395 117Q635 117 757 265T891 721H879Q824 638 733 595T528 551Q334 551 220 667T106 991Q106 1219 233 1351T569 1483Q718 1483 829 1407T1001
+1184T1061 838ZM569 1341Q426 1341 348 1249T270 993Q270 849 342 767T561 684Q652 684 728 721T849 822T893 956Q893 1061 852 1150T738 1290T569 1341Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="545" d="M152 106Q152 173 182 207T270 242Q328 242 360 208T393 106Q393 41 360 6T270 -29Q219 -29 186 2T152 106ZM152 989Q152 1124 270 1124Q393 1124 393 989Q393 924 360 889T270 854Q219 854 186 885T152 989Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="545" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350ZM147 989Q147 1124 266 1124Q389 1124 389 989Q389 924 356 889T266 854Q208 854 178 889T147 989Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1171" d="M1065 242L104 664V762L1065 1241V1092L283 721L1065 393V242Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1171" d="M119 858V995H1049V858H119ZM119 449V586H1049V449H119Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1171" d="M104 393L887 719L104 1092V1241L1065 762V664L104 242V393Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="879" d="M289 403V457Q289 574 325 649T459 809Q595 924 630 982T666 1122Q666 1224 601 1279T412 1335Q333 1335 258 1317T86 1249L27 1384Q216 1483 422 1483Q613 1483 719 1389T825 1124Q825 1051 806
+996T748 891T584 731Q483 645 451 588T418 436V403H289ZM240 106Q240 242 360 242Q418 242 449 207T481 106Q481 42 449 7T360 -29Q308 -29 274 2T240 106Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1841" d="M1720 729Q1720 587 1676 469T1552 286T1368 221Q1282 221 1223 273T1153 406H1145Q1105 319 1031 270T854 221Q704 221 620 323T535 602Q535 806 653 933T963 1061Q1031 1061 1117 1049T1272 1014L1247
+544V522Q1247 344 1380 344Q1471 344 1528 451T1585 731Q1585 912 1511 1048T1301 1257T987 1331Q764 1331 599 1239T347 975T260 578Q260 273 421 109T885 -55Q1095 -55 1321 31V-102Q1129 -186 885 -186Q522 -186 322 13T121 571Q121 831 228 1034T533 1348T987
+1460Q1202 1460 1369 1370T1628 1113T1720 729ZM686 598Q686 344 881 344Q1088 344 1106 657L1120 918Q1048 938 963 938Q833 938 760 848T686 598Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1327" d="M201 1462H614Q905 1462 1035 1375T1165 1100Q1165 970 1093 886T881 776V766Q1214 709 1214 416Q1214 220 1082 110T711 0H201V1462ZM371 836H651Q831 836 910 892T989 1083Q989 1206 901 1260T621 1315H371V836ZM371
+692V145H676Q853 145 942 213T1032 428Q1032 564 941 628T662 692H371Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1292" d="M827 1331Q586 1331 447 1171T307 731Q307 444 441 288T825 131Q978 131 1174 186V37Q1022 -20 799 -20Q476 -20 301 176T125 733Q125 959 209 1129T453 1391T829 1483Q1059 1483 1231 1399L1159 1253Q993
+1331 827 1331Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1493" d="M1368 745Q1368 383 1172 192T606 0H201V1462H649Q990 1462 1179 1273T1368 745ZM1188 739Q1188 1025 1045 1170T618 1315H371V147H578Q882 147 1035 296T1188 739Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1057" d="M371 0H201V1462H1016V1311H371V776H977V625H371V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1491" d="M844 766H1341V55Q1225 18 1105 -1T827 -20Q495 -20 310 177T125 731Q125 959 216 1130T480 1392T883 1483Q1117 1483 1319 1397L1253 1247Q1055 1331 872 1331Q605 1331 455 1172T305 731Q305 435 449
+282T874 129Q1026 129 1171 164V614H844V766Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1511" d="M1311 0H1141V688H371V0H201V1462H371V840H1141V1462H1311V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="571" d="M201 0V1462H371V0H201Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="547" d="M-12 -385Q-106 -385 -160 -358V-213Q-89 -233 -12 -233Q87 -233 138 -173T190 0V1462H360V14Q360 -176 264 -280T-12 -385Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1257" d="M1257 0H1057L524 709L371 573V0H201V1462H371V737L1034 1462H1235L647 827L1257 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1063" d="M201 0V1462H371V154H1016V0H201Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1849" d="M848 0L352 1296H344Q358 1142 358 930V0H201V1462H457L920 256H928L1395 1462H1649V0H1479V942Q1479 1104 1493 1294H1485L985 0H848Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1544" d="M1343 0H1149L350 1227H342Q358 1011 358 831V0H201V1462H393L1190 240H1198Q1196 267 1189 413T1184 623V1462H1343V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290 1028
+1167 1180T801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1233" d="M1128 1036Q1128 814 977 695T543 575H371V0H201V1462H580Q1128 1462 1128 1036ZM371 721H524Q750 721 851 794T952 1028Q952 1173 857 1244T561 1315H371V721Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1595" d="M1470 733Q1470 452 1357 266T1038 14L1386 -348H1139L854 -18L799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042
+129 1166 282T1290 733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1266" d="M371 608V0H201V1462H602Q871 1462 999 1359T1128 1049Q1128 759 834 657L1231 0H1030L676 608H371ZM371 754H604Q784 754 868 825T952 1040Q952 1185 867 1249T592 1313H371V754Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1124" d="M1026 389Q1026 196 886 88T506 -20Q246 -20 106 47V211Q196 173 302 151T512 129Q682 129 768 193T854 373Q854 449 824 497T722 587T504 680Q300 753 213 853T125 1114Q125 1283 252 1383T588 1483Q806
+1483 989 1403L936 1255Q755 1331 584 1331Q449 1331 373 1273T297 1112Q297 1036 325 988T419 899T623 809Q853 727 939 633T1026 389Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1133" d="M651 0H481V1311H18V1462H1114V1311H651V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1219" d="M1036 1462H1219L692 0H524L0 1462H180L516 516Q574 353 608 199Q644 361 702 522L1036 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1896" d="M1477 0H1309L1014 979Q993 1044 967 1143T940 1262Q918 1130 870 973L584 0H416L27 1462H207L438 559Q486 369 508 215Q535 398 588 573L850 1462H1030L1305 565Q1353 410 1386 215Q1405 357 1458 561L1688
+1462H1868L1477 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1182" d="M1174 0H981L588 643L188 0H8L494 764L41 1462H229L592 883L958 1462H1139L686 770L1174 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1147" d="M573 731L963 1462H1147L659 567V0H487V559L0 1462H186L573 731Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1169" d="M1087 0H82V133L858 1309H106V1462H1065V1329L289 154H1087V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="674" d="M623 -324H166V1462H623V1321H334V-182H623V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="752" d="M186 1462L733 0H567L23 1462H186Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="674" d="M51 -182H340V1321H51V1462H508V-324H51V-182Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1110" d="M49 551L483 1473H582L1059 551H907L535 1296L201 551H49Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="918" d="M922 -315H-4V-184H922V-315Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1182" d="M786 1241H676Q611 1293 522 1389T393 1548V1569H596Q628 1500 685 1410T786 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114 878 1027T973
+748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1255" d="M686 1114Q902 1114 1021 967T1141 549Q1141 279 1021 130T686 -20Q579 -20 491 19T342 141H330L295 0H176V1556H342V1178Q342 1051 334 950H342Q458 1114 686 1114ZM662 975Q492 975 417 878T342 549Q342
+318 419 219T666 119Q819 119 894 230T969 551Q969 765 894 870T662 975Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="975" d="M614 -20Q376 -20 246 126T115 541Q115 816 247 966T625 1116Q704 1116 783 1099T907 1059L856 918Q801 940 736 954T621 969Q287 969 287 543Q287 341 368 233T610 125Q747 125 891 184V37Q781 -20 614 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1255" d="M922 147H913Q798 -20 569 -20Q354 -20 235 127T115 545Q115 816 235 966T569 1116Q792 1116 911 954H924L917 1033L913 1110V1556H1079V0H944L922 147ZM590 119Q760 119 836 211T913 510V545Q913 778
+836 877T588 977Q442 977 365 864T287 543Q287 333 364 226T590 119Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384 891T291
+653H864Q864 810 794 893T594 977Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="694" d="M670 967H391V0H225V967H29V1042L225 1102V1163Q225 1567 578 1567Q665 1567 782 1532L739 1399Q643 1430 575 1430Q481 1430 436 1368T391 1167V1096H670V967Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1122" d="M1073 1096V991L870 967Q898 932 920 876T942 748Q942 587 832 491T530 395Q481 395 438 403Q332 347 332 262Q332 217 369 196T496 174H690Q868 174 963 99T1059 -119Q1059 -301 913 -396T487 -492Q272
+-492 156 -412T39 -186Q39 -86 103 -13T283 86Q241 105 213 145T184 238Q184 298 216 343T317 430Q232 465 179 549T125 741Q125 921 233 1018T539 1116Q625 1116 694 1096H1073ZM199 -184Q199 -273 274 -319T489 -365Q698 -365 798 -303T899 -133Q899 -44 844
+-10T637 25H438Q325 25 262 -29T199 -184ZM289 745Q289 630 354 571T535 512Q778 512 778 748Q778 995 532 995Q415 995 352 932T289 745Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q501 975 422 881T342 573V0H176V1556H342V1085Q342 1000 334 944H344Q393 1023 483 1068T690 1114Q891 1114 991 1019T1092 715V0H926Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM162 1393Q162 1450 190 1476T260 1503Q300 1503 329 1476T358 1393Q358 1337 329 1310T260 1282Q218 1282 190 1309T162 1393Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="518" d="M43 -492Q-52 -492 -111 -467V-332Q-42 -352 25 -352Q103 -352 139 -310T176 -180V1096H342V-168Q342 -492 43 -492ZM162 1393Q162 1450 190 1476T260 1503Q300 1503 329 1476T358 1393Q358 1337 329 1310T260
+1282Q218 1282 190 1309T162 1393Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1075" d="M340 561Q383 622 471 721L825 1096H1022L578 629L1053 0H852L465 518L340 410V0H176V1556H340V731Q340 676 332 561H340Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="518" d="M342 0H176V1556H342V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1905" d="M1573 0V713Q1573 844 1517 909T1343 975Q1188 975 1114 886T1040 612V0H874V713Q874 844 818 909T643 975Q487 975 415 882T342 575V0H176V1096H311L338 946H346Q393 1026 478 1071T670 1116Q927 1116
+1006 930H1014Q1063 1016 1156 1066T1368 1116Q1554 1116 1646 1021T1739 715V0H1573Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q502 975 422 882T342 575V0H176V1096H311L338 946H346Q397 1027 489 1071T694 1116Q892 1116 992 1021T1092 715V0H926Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950 758 866
+866T616 975Q453 975 370 868T287 549Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1255" d="M686 -20Q579 -20 491 19T342 141H330Q342 45 342 -41V-492H176V1096H311L334 946H342Q406 1036 491 1076T686 1116Q904 1116 1022 967T1141 549Q1141 279 1021 130T686 -20ZM662 975Q494 975 419 882T342
+586V549Q342 318 419 219T666 119Q808 119 888 234T969 551Q969 756 889 865T662 975Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1255" d="M590 119Q756 119 832 208T913 508V545Q913 775 835 876T588 977Q442 977 365 864T287 543Q287 336 363 228T590 119ZM565 -20Q353 -20 234 129T115 545Q115 814 235 965T569 1116Q794 1116 915 946H924L948
+1096H1079V-492H913V-23Q913 77 924 147H911Q796 -20 565 -20Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="836" d="M676 1116Q749 1116 807 1104L784 950Q716 965 664 965Q531 965 437 857T342 588V0H176V1096H313L332 893H340Q401 1000 487 1058T676 1116Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="977" d="M883 299Q883 146 769 63T449 -20Q231 -20 109 49V203Q188 163 278 140T453 117Q583 117 653 158T723 285Q723 349 668 394T451 502Q298 559 234 601T138 698T106 827Q106 961 215 1038T514 1116Q691 1116
+860 1044L801 909Q636 977 502 977Q384 977 324 940T264 838Q264 794 286 763T359 704T551 623Q746 552 814 480T883 299Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="723" d="M530 117Q574 117 615 123T680 137V10Q653 -3 601 -11T506 -20Q188 -20 188 315V967H31V1047L188 1116L258 1350H354V1096H672V967H354V322Q354 223 401 170T530 117Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1026" d="M416 0L0 1096H178L414 446Q494 218 508 150H516Q527 203 585 369T848 1096H1026L610 0H416Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1593" d="M1071 0L870 643Q851 702 799 911H791Q751 736 721 641L514 0H322L23 1096H197Q303 683 358 467T422 176H430Q441 233 465 323T508 467L709 1096H889L1085 467Q1141 295 1161 178H1169Q1173 214 1190
+289T1399 1096H1571L1268 0H1071Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1073" d="M440 561L59 1096H248L537 676L825 1096H1012L631 561L1032 0H844L537 444L227 0H39L440 561Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="958" d="M877 0H82V113L680 967H119V1096H862V967L272 129H877V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="776" d="M475 12Q475 -90 533 -136T705 -184V-324Q515 -322 411 -237T307 2V305Q307 409 244 453T61 498V639Q191 641 249 687T307 829V1135Q307 1290 415 1376T705 1462V1323Q475 1317 475 1124V829Q475
+614 252 575V563Q475 524 475 309V12Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M494 1556H635V-496H494V1556Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="776" d="M522 575Q299 614 299 829V1124Q299 1317 72 1323V1462Q256 1462 361 1375T467 1135V829Q467 732 526 687T715 639V498Q593 498 530 454T467 305V2Q467 -151 365 -236T72 -324V-184Q183 -182
+241 -136T299 12V309Q299 423 354 483T522 563V575Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1171" d="M338 713Q285 713 222 680T104 592V743Q204 852 348 852Q416 852 472 838T618 786Q684 758 733 745T829 731Q883 731 947 763T1065 852V702Q963 592 821 592Q749 592 686 608T551 657Q476 689
+431 701T338 713Z" />
+<glyph unicode="&#xa0;" glyph-name="nbspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="547" d="M219 684H324L375 -373H168L219 684ZM393 983Q393 848 272 848Q212 848 182 883T152 983Q152 1046 183 1082T272 1118Q323 1118 358 1086T393 983Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1171" d="M971 240Q866 186 719 180V-20H586V186Q383 218 287 354T190 741Q190 1249 586 1311V1483H721V1319Q796 1316 867 1300T987 1260L938 1120Q805 1171 696 1171Q524 1171 443 1066T362 743Q362
+531 441 430T688 328Q829 328 971 387V240Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1171" d="M682 1481Q872 1481 1042 1397L981 1264Q827 1341 684 1341Q561 1341 499 1279T436 1077V782H858V655H436V434Q436 334 404 266T297 154H1092V0H63V141Q268 188 268 432V655H70V782H268V1098Q268
+1276 380 1378T682 1481Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1171" d="M184 723Q184 845 258 952L123 1092L217 1184L352 1051Q456 1124 586 1124Q713 1124 815 1051L952 1184L1047 1092L913 954Q987 841 987 723Q987 592 913 489L1044 354L952 262L815 395Q713
+324 586 324Q452 324 352 397L217 264L125 356L258 492Q184 599 184 723ZM313 723Q313 611 391 531T586 451Q702 451 781 530T860 723Q860 837 780 918T586 999Q470 999 392 917T313 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1171" d="M584 735L963 1462H1137L721 692H983V565H666V395H983V268H666V0H502V268H186V395H502V565H186V692H442L31 1462H209L584 735Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M494 1556H635V780H494V1556ZM494 281H635V-496H494V281Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1057" d="M139 809Q139 895 182 963T303 1069Q229 1109 187 1164T145 1305Q145 1426 248 1495T549 1565Q643 1565 722 1551T899 1497L846 1366Q748 1405 681 1418T537 1432Q421 1432 363 1403T305 1309Q305
+1249 366 1207T582 1110Q768 1042 843 967T918 784Q918 694 877 624T762 512Q915 431 915 285Q915 145 798 69T469 -8Q251 -8 123 57V205Q201 168 298 146T477 123Q611 123 681 161T752 270Q752 316 728 345T650 403T481 475Q339 527 272 572T172 674T139 809ZM285
+829Q285 752 351 700T584 586L633 567Q770 647 770 758Q770 841 697 897T438 1010Q370 991 328 941T285 829Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1182" d="M309 1393Q309 1445 335 1468T399 1491Q437 1491 464 1468T492 1393Q492 1343 465 1319T399 1294Q362 1294 336 1318T309 1393ZM690 1393Q690 1445 716 1468T780 1491Q817 1491 844 1468T872
+1393Q872 1343 845 1319T780 1294Q743 1294 717 1318T690 1393Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M893 1059Q768 1059 701 972T633 731Q633 563 696 482T891 401Q977 401 1102 446V322Q1054 302 1004 288T883 274Q689 274 585 394T481 731Q481 940 591 1063T893 1186Q1021 1186 1139 1126L1081
+1008Q973 1059 893 1059ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM205 731Q205 558 292 408T529 171T852 84Q1026 84 1175 171T1411 406T1499
+731Q1499 905 1412 1054T1177 1290T852 1378Q678 1378 529 1291T293 1056T205 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="725" d="M532 801L508 885Q416 788 276 788Q181 788 126 837T70 989Q70 1091 147 1143T389 1202L506 1206V1245Q506 1378 358 1378Q258 1378 154 1327L111 1423Q225 1479 358 1479Q488 1479 556
+1427T625 1253V801H532ZM193 989Q193 889 305 889Q506 889 506 1069V1118L408 1114Q296 1110 245 1082T193 989Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1018" d="M82 551L424 958L543 889L254 539L543 188L424 117L82 524V551ZM477 551L821 958L938 889L651 539L938 188L821 117L477 524V551Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1171" d="M1065 791V264H928V653H104V791H1065Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M84 473V625H575V473H84Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M723 762H831Q911 762 959 803T1008 909Q1008 984 965 1016T829 1049H723V762ZM1157 913Q1157 833 1115 772T995 680L1233 285H1065L858 639H723V285H575V1176H836Q1002 1176 1079 1111T1157
+913ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM205 731Q205 558 292 408T529 171T852 84Q1026 84 1175 171T1411 406T1499 731Q1499 905 1412
+1054T1177 1290T852 1378Q678 1378 529 1291T293 1056T205 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1683H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M127 1171Q127 1301 217 1392T438 1483Q568 1483 659 1393T750 1171Q750 1087 709 1016T595 902T438 860Q308 860 218 950T127 1171ZM242 1171Q242 1089 300 1032T440 975Q520 975 577 1031T635
+1171Q635 1255 579 1311T440 1368Q357 1368 300 1311T242 1171Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1171" d="M653 791H1065V653H653V227H514V653H104V791H514V1219H653V791ZM104 1V139H1065V1H104Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="711" d="M653 586H49V690L285 920Q374 1006 415 1054T472 1141T489 1233Q489 1301 449 1335T346 1370Q294 1370 245 1351T127 1282L61 1370Q192 1481 344 1481Q476 1481 549 1416T623 1239Q623
+1159 579 1084T387 870L213 705H653V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="711" d="M627 1255Q627 1175 586 1124T477 1049Q653 1002 653 840Q653 712 561 641T301 569Q149 569 33 625V748Q180 680 303 680Q514 680 514 842Q514 987 283 987H166V1094H285Q388 1094 437
+1133T487 1241Q487 1302 447 1336T340 1370Q274 1370 218 1349T106 1292L37 1382Q100 1427 170 1454T334 1481Q470 1481 548 1422T627 1255Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1182" d="M393 1266Q441 1328 496 1416T584 1569H786V1548Q742 1483 655 1388T504 1241H393V1266Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1268" d="M342 381Q342 119 596 119Q767 119 846 213T926 520V1096H1092V0H956L930 147H920Q809 -20 580 -20Q430 -20 342 72H332Q342 -12 342 -172V-492H176V1096H342V381Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1120 -260H1006V1452H793V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1120V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="middot" horiz-adv-x="545" d="M152 723Q152 789 183 823T270 858Q328 858 360 824T393 723Q393 658 360 623T270 588Q219 588 186 619T152 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="465" d="M436 -289Q436 -386 360 -439T133 -492Q82 -492 37 -483V-377Q82 -385 141 -385Q220 -385 260 -365T301 -291Q301 -248 262 -222T113 -178L201 0H311L256 -115Q436 -154 436 -289Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="711" d="M338 1462H481V586H348V1165Q348 1256 354 1346Q332 1324 305 1302T143 1184L76 1280L338 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="768" d="M702 1135Q702 971 617 880T381 788Q235 788 151 881T66 1135Q66 1298 150 1388T385 1479Q537 1479 619 1388T702 1135ZM188 1135Q188 1013 233 952T383 891Q488 891 534 952T580 1135Q580
+1258 534 1317T383 1376Q280 1376 234 1317T188 1135Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1018" d="M936 524L592 117L475 188L762 539L475 889L592 958L936 551V524ZM541 524L197 117L80 188L367 539L80 889L197 958L541 551V524Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1597" d="M1298 1462L395 0H252L1155 1462H1298ZM593 1462H736V586H603V1165Q603 1256 609 1346Q587 1324 560 1302T398 1184L331 1280L593 1462ZM1489 203H1364V1H1219V203H817V304L1225 883H1364V320H1489V203ZM1219
+320V515Q1219 649 1225 724Q1220 712 1208 693T1181 651T1151 606T1125 566L957 320H1219Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1597" d="M1230 1462L327 0H184L1087 1462H1230ZM564 1462H707V586H574V1165Q574 1256 580 1346Q558 1324 531 1302T369 1184L302 1280L564 1462ZM1499 1H895V105L1131 335Q1220 421 1261 469T1318
+556T1335 648Q1335 716 1295 750T1192 785Q1140 785 1091 766T973 697L907 785Q1038 896 1190 896Q1322 896 1395 831T1469 654Q1469 574 1425 499T1233 285L1059 120H1499V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1597" d="M876 1255Q876 1175 835 1124T726 1049Q902 1002 902 840Q902 712 810 641T550 569Q398 569 282 625V748Q429 680 552 680Q763 680 763 842Q763 987 532 987H415V1094H534Q637 1094
+686 1133T736 1241Q736 1302 696 1336T589 1370Q523 1370 467 1349T355 1292L286 1382Q349 1427 419 1454T583 1481Q719 1481 797 1422T876 1255ZM1390 1462L487 0H344L1247 1462H1390ZM1569 203H1444V1H1299V203H897V304L1305 883H1444V320H1569V203ZM1299 320V515Q1299
+649 1305 724Q1300 712 1288 693T1261 651T1231 606T1205 566L1037 320H1299Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="879" d="M590 684V633Q590 511 553 437T418 279Q297 173 267 136T224 60T211 -35Q211 -135 277 -191T465 -248Q545 -248 620 -229T793 -162L852 -297Q655 -393 457 -393Q267 -393 159 -300T51
+-37Q51 33 68 85T118 182T194 268T293 356Q394 444 426 502T459 653V684H590ZM639 983Q639 848 518 848Q459 848 428 882T397 983Q397 1047 430 1082T518 1118Q569 1118 604 1086T639 983Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM724 1579H614Q549 1631 460 1727T331 1886V1907H534Q566 1838
+623 1748T724 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM526 1604Q574 1666 629 1754T717 1907H919V1886Q875 1821 788
+1726T637 1579H526V1604Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM303 1602Q430 1738 481 1802T555 1907H721Q743 1865 797
+1799T977 1602V1579H858Q770 1634 637 1765Q501 1631 418 1579H303V1602Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM792 1581Q749 1581 708 1599T628 1640T552 1681T481 1700Q431
+1700 406 1670T366 1579H268Q281 1700 338 1768T487 1837Q533 1837 576 1819T658 1778T733 1737T801 1718Q850 1718 874 1747T913 1839H1012Q999 1718 943 1650T792 1581Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM364 1731Q364 1783 390 1806T454 1829Q492 1829 519 1806T547
+1731Q547 1681 520 1657T454 1632Q417 1632 391 1656T364 1731ZM745 1731Q745 1783 771 1806T835 1829Q872 1829 899 1806T927 1731Q927 1681 900 1657T835 1632Q798 1632 772 1656T745 1731Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM870 1587Q870 1489 809 1430T645 1370Q544 1370 484 1428T424
+1585Q424 1683 484 1740T645 1798Q746 1798 808 1739T870 1587ZM762 1585Q762 1641 729 1671T645 1702Q594 1702 561 1672T528 1585Q528 1529 558 1499T645 1468Q697 1468 729 1498T762 1585Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1788" d="M1665 0H915V465H401L174 0H-2L696 1462H1665V1311H1085V840H1626V690H1085V152H1665V0ZM469 618H915V1311H797L469 618Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1292" d="M827 1331Q586 1331 447 1171T307 731Q307 444 441 288T825 131Q978 131 1174 186V37Q1022 -20 799 -20Q476 -20 301 176T125 733Q125 959 209 1129T453 1391T829 1483Q1059 1483 1231 1399L1159
+1253Q993 1331 827 1331ZM950 -289Q950 -386 874 -439T647 -492Q596 -492 551 -483V-377Q596 -385 655 -385Q734 -385 774 -365T815 -291Q815 -248 776 -222T627 -178L715 0H825L770 -115Q950 -154 950 -289Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM713 1579H603Q538 1631 449 1727T320 1886V1907H523Q555 1838 612 1748T713 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM456 1604Q504 1666 559 1754T647 1907H849V1886Q805 1821 718 1726T567 1579H456V1604Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM263 1602Q390 1738 441 1802T515 1907H681Q703 1865 757 1799T937 1602V1579H818Q730 1634 597 1765Q461 1631 378 1579H263V1602Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM327 1731Q327 1783 353 1806T417 1829Q455 1829 482 1806T510 1731Q510 1681 483 1657T417 1632Q380 1632 354 1656T327 1731ZM708
+1731Q708 1783 734 1806T798 1829Q835 1829 862 1806T890 1731Q890 1681 863 1657T798 1632Q761 1632 735 1656T708 1731Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM398 1579H288Q223 1631 134 1727T5 1886V1907H208Q240 1838 297 1748T398 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM179 1604Q227 1666 282 1754T370 1907H572V1886Q528 1821 441 1726T290 1579H179V1604Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM-57 1602Q70 1738 121 1802T195 1907H361Q383 1865 437 1799T617 1602V1579H498Q410 1634 277 1765Q141 1631 58 1579H-57V1602Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM5 1731Q5 1783 31 1806T95 1829Q133 1829 160 1806T188 1731Q188 1681 161 1657T95 1632Q58 1632 32 1656T5 1731ZM386 1731Q386 1783 412 1806T476 1829Q513 1829
+540 1806T568 1731Q568 1681 541 1657T476 1632Q439 1632 413 1656T386 1731Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1479" d="M1352 745Q1352 383 1156 192T590 0H201V649H47V799H201V1462H635Q972 1462 1162 1275T1352 745ZM1171 739Q1171 1315 602 1315H371V799H750V649H371V147H561Q1171 147 1171 739Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1544" d="M1343 0H1149L350 1227H342Q358 1011 358 831V0H201V1462H393L1190 240H1198Q1196 267 1189 413T1184 623V1462H1343V0ZM935 1581Q892 1581 851 1599T771 1640T695 1681T624 1700Q574 1700
+549 1670T509 1579H411Q424 1700 481 1768T630 1837Q676 1837 719 1819T801 1778T876 1737T944 1718Q993 1718 1017 1747T1056 1839H1155Q1142 1718 1086 1650T935 1581Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM907 1579H797Q732 1631 643 1727T514 1886V1907H717Q749 1838 806 1748T907 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM659 1604Q707 1666 762 1754T850 1907H1052V1886Q1008 1821 921 1726T770 1579H659V1604Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290
+733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM448 1602Q575 1738 626 1802T700 1907H866Q888 1865 942 1799T1122 1602V1579H1003Q915 1634 782 1765Q646 1631 563 1579H448V1602Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM942 1581Q899 1581 858 1599T778 1640T702 1681T631 1700Q581 1700 556 1670T516 1579H418Q431 1700 488 1768T637 1837Q683 1837 726 1819T808 1778T883 1737T951 1718Q1000 1718 1024 1747T1063 1839H1162Q1149
+1718 1093 1650T942 1581Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290
+733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM522 1731Q522 1783 548 1806T612 1829Q650 1829 677 1806T705 1731Q705 1681 678 1657T612 1632Q575 1632 549 1656T522 1731ZM903 1731Q903 1783 929 1806T993 1829Q1030 1829 1057 1806T1085 1731Q1085
+1681 1058 1657T993 1632Q956 1632 930 1656T903 1731Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1171" d="M940 1176L1036 1077L684 723L1034 371L938 272L584 623L236 272L135 371L485 723L133 1075L233 1176L586 821L940 1176Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q564 -20 416 80L315 -61L195 18L303 172Q125 370 125 735Q125 1092 301 1288T801 1485Q1010 1485 1167 1391L1264 1526L1384 1446L1278 1298Q1470 1096
+1470 733ZM1290 733Q1290 1005 1180 1159L508 211Q623 129 799 129Q1042 129 1166 282T1290 733ZM305 733Q305 471 406 317L1075 1260Q969 1333 801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM856 1579H746Q681 1631 592 1727T463 1886V1907H666Q698
+1838 755 1748T856 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM600 1604Q648 1666 703 1754T791 1907H993V1886Q949
+1821 862 1726T711 1579H600V1604Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM393 1602Q520 1738 571 1802T645
+1907H811Q833 1865 887 1799T1067 1602V1579H948Q860 1634 727 1765Q591 1631 508 1579H393V1602Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM461 1731Q461 1783 487 1806T551 1829Q589
+1829 616 1806T644 1731Q644 1681 617 1657T551 1632Q514 1632 488 1656T461 1731ZM842 1731Q842 1783 868 1806T932 1829Q969 1829 996 1806T1024 1731Q1024 1681 997 1657T932 1632Q895 1632 869 1656T842 1731Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1147" d="M573 731L963 1462H1147L659 567V0H487V559L0 1462H186L573 731ZM442 1604Q490 1666 545 1754T633 1907H835V1886Q791 1821 704 1726T553 1579H442V1604Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1251" d="M1145 784Q1145 557 994 438T555 319H371V0H201V1462H371V1206H586Q867 1206 1006 1103T1145 784ZM371 465H539Q765 465 866 536T967 772Q967 921 872 990T575 1059H371V465Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1274" d="M1049 1266Q1049 1131 906 1016Q818 946 790 913T762 846Q762 814 775 793T824 744T938 664Q1078 569 1129 491T1180 311Q1180 151 1083 66T807 -20Q619 -20 512 49V203Q575 164 653 141T803
+117Q1018 117 1018 299Q1018 374 977 427T825 551Q698 633 650 694T602 840Q602 903 636 956T742 1062Q817 1119 849 1164T881 1262Q881 1342 813 1384T618 1427Q342 1427 342 1204V0H176V1202Q176 1380 286 1473T618 1567Q824 1567 936 1489T1049 1266Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM928 1241H818Q753 1293 664 1389T535 1548V1569H738Q770 1500 827 1410T928 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM436 1266Q484 1328 539 1416T627 1569H829V1548Q785 1483 698 1388T547 1241H436V1266Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784
+1114 878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM484 1264Q611 1400 662 1464T736 1569H902Q924 1527 978 1461T1158 1264V1241H1039Q951 1296 818 1427Q682 1293 599 1241H484V1264Z"
+/>
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM977 1243Q934 1243 893 1261T813 1302T737 1343T666 1362Q616 1362 591 1332T551 1241H453Q466 1362 523 1430T672 1499Q718 1499 761
+1481T843 1440T918 1399T986 1380Q1035 1380 1059 1409T1098 1501H1197Q1184 1380 1128 1312T977 1243Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM535 1393Q535 1445 561 1468T625 1491Q663 1491 690 1468T718 1393Q718 1343 691 1319T625 1294Q588 1294 562 1318T535 1393ZM916 1393Q916
+1445 942 1468T1006 1491Q1043 1491 1070 1468T1098 1393Q1098 1343 1071 1319T1006 1294Q969 1294 943 1318T916 1393Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114 878
+1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM1060 1458Q1060 1360 999 1301T835 1241Q734 1241 674 1299T614 1456Q614 1554 674 1611T835 1669Q936 1669 998 1610T1060 1458ZM952 1456Q952
+1512 919 1542T835 1573Q784 1573 751 1543T718 1456Q718 1400 748 1370T835 1339Q887 1339 919 1369T952 1456Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1757" d="M94 303Q94 464 218 553T596 651L780 657V725Q780 854 722 915T545 977Q401 977 238 893L186 1020Q260 1061 359 1087T557 1114Q687 1114 769 1071T893 932Q946 1020 1031 1068T1227 1116Q1419
+1116 1535 983T1651 627V520H950Q958 125 1272 125Q1363 125 1441 142T1604 199V51Q1518 13 1444 -3T1268 -20Q979 -20 854 213Q773 86 675 33T442 -20Q279 -20 187 65T94 303ZM268 301Q268 206 321 162T463 117Q608 117 692 201T776 440V539L618 532Q432 524 350
+470T268 301ZM1225 977Q1104 977 1035 894T954 653H1473Q1473 809 1409 893T1225 977Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="975" d="M614 -20Q376 -20 246 126T115 541Q115 816 247 966T625 1116Q704 1116 783 1099T907 1059L856 918Q801 940 736 954T621 969Q287 969 287 543Q287 341 368 233T610 125Q747 125 891 184V37Q781
+-20 614 -20ZM762 -289Q762 -386 686 -439T459 -492Q408 -492 363 -483V-377Q408 -385 467 -385Q546 -385 586 -365T627 -291Q627 -248 588 -222T439 -178L527 0H637L582 -115Q762 -154 762 -289Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384
+891T291 653H864Q864 810 794 893T594 977ZM967 1241H857Q792 1293 703 1389T574 1548V1569H777Q809 1500 866 1410T967 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384
+891T291 653H864Q864 810 794 893T594 977ZM471 1266Q519 1328 574 1416T662 1569H864V1548Q820 1483 733 1388T582 1241H471V1266Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462
+977 384 891T291 653H864Q864 810 794 893T594 977ZM515 1264Q642 1400 693 1464T767 1569H933Q955 1527 1009 1461T1189 1264V1241H1070Q982 1296 849 1427Q713 1293 630 1241H515V1264Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977
+384 891T291 653H864Q864 810 794 893T594 977ZM319 1393Q319 1445 345 1468T409 1491Q447 1491 474 1468T502 1393Q502 1343 475 1319T409 1294Q372 1294 346 1318T319 1393ZM700 1393Q700 1445 726 1468T790 1491Q827 1491 854 1468T882 1393Q882 1343 855 1319T790
+1294Q753 1294 727 1318T700 1393Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM355 1241H245Q180 1293 91 1389T-38 1548V1569H165Q197 1500 254 1410T355 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM169 1266Q217 1328 272 1416T360 1569H562V1548Q518 1483 431 1388T280 1241H169V1266Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM-77 1264Q50 1400 101 1464T175 1569H341Q363 1527 417 1461T597 1264V1241H478Q390 1296 257 1427Q121 1293 38 1241H-77V1264Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM-20 1393Q-20 1445 6 1468T70 1491Q108 1491 135 1468T163 1393Q163 1343 136 1319T70 1294Q33 1294 7 1318T-20 1393ZM361 1393Q361 1445 387 1468T451 1491Q488
+1491 515 1468T543 1393Q543 1343 516 1319T451 1294Q414 1294 388 1318T361 1393Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1221" d="M1122 563Q1122 282 992 131T614 -20Q392 -20 253 114T113 475Q113 705 244 836T596 967Q822 967 922 846L930 850Q873 1064 668 1255L397 1100L324 1208L557 1341Q465 1403 371 1452L440 1569Q596
+1496 698 1421L936 1559L1012 1452L805 1333Q957 1190 1039 991T1122 563ZM954 512Q954 659 864 744T618 829Q281 829 281 469Q281 302 368 211T618 119Q793 119 873 219T954 512Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q502 975 422 882T342 575V0H176V1096H311L338 946H346Q397 1027 489 1071T694 1116Q892 1116 992 1021T1092 715V0H926ZM802 1243Q759 1243 718 1261T638
+1302T562 1343T491 1362Q441 1362 416 1332T376 1241H278Q291 1362 348 1430T497 1499Q543 1499 586 1481T668 1440T743 1399T811 1380Q860 1380 884 1409T923 1501H1022Q1009 1380 953 1312T802 1243Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM998 1241H888Q823 1293 734 1389T605 1548V1569H808Q840 1500 897 1410T998 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM479 1266Q527 1328 582 1416T670 1569H872V1548Q828 1483 741 1388T590 1241H479V1266Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950
+549Q950 758 866 866T616 975Q453 975 370 868T287 549ZM282 1264Q409 1400 460 1464T534 1569H700Q722 1527 776 1461T956 1264V1241H837Q749 1296 616 1427Q480 1293 397 1241H282V1264Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM1029 1243Q986 1243 945 1261T865 1302T789 1343T718 1362Q668 1362 643 1332T603 1241H505Q518 1362 575 1430T724 1499Q770 1499 813 1481T895 1440T970 1399T1038 1380Q1087 1380 1111 1409T1150 1501H1249Q1236
+1380 1180 1312T1029 1243Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM336 1393Q336 1445 362 1468T426 1491Q464 1491 491 1468T519 1393Q519 1343 492 1319T426 1294Q389 1294 363 1318T336 1393ZM717 1393Q717 1445 743 1468T807 1491Q844 1491 871 1468T899 1393Q899 1343 872 1319T807
+1294Q770 1294 744 1318T717 1393Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1171" d="M104 653V791H1065V653H104ZM471 373Q471 433 500 463T584 494Q636 494 665 463T694 373Q694 316 665 284T584 252Q532 252 502 283T471 373ZM471 1071Q471 1131 500 1161T584 1192Q636 1192
+665 1161T694 1071Q694 1014 665 982T584 950Q532 950 502 981T471 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q460 -20 348 49L264 -68L150 10L244 141Q115 293 115 549Q115 817 249 966T621 1116Q775 1116 891 1040L975 1159L1092 1083L995 950Q1122 798 1122 549ZM287
+549Q287 378 340 276L805 922Q730 975 616 975Q453 975 370 868T287 549ZM950 549Q950 713 899 813L434 170Q505 119 618 119Q781 119 865 228T950 549Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM982 1241H872Q807 1293 718 1389T589
+1548V1569H792Q824 1500 881 1410T982 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM506 1266Q554 1328 609 1416T697
+1569H899V1548Q855 1483 768 1388T617 1241H506V1266Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM286 1264Q413 1400 464 1464T538
+1569H704Q726 1527 780 1461T960 1264V1241H841Q753 1296 620 1427Q484 1293 401 1241H286V1264Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM342 1393Q342 1445 368 1468T432
+1491Q470 1491 497 1468T525 1393Q525 1343 498 1319T432 1294Q395 1294 369 1318T342 1393ZM723 1393Q723 1445 749 1468T813 1491Q850 1491 877 1468T905 1393Q905 1343 878 1319T813 1294Q776 1294 750 1318T723 1393Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096ZM411
+1266Q459 1328 514 1416T602 1569H804V1548Q760 1483 673 1388T522 1241H411V1266Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1255" d="M344 948Q410 1037 495 1076T686 1116Q901 1116 1021 966T1141 549Q1141 281 1021 131T686 -20Q464 -20 342 141H330L334 107Q342 30 342 -33V-492H176V1556H342V1090Q342 1038 336 948H344ZM664
+975Q496 975 420 883T342 590V549Q342 318 419 219T666 119Q969 119 969 551Q969 766 895 870T664 975Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096ZM490
+1393Q490 1445 516 1468T580 1491Q618 1491 645 1468T673 1393Q673 1343 646 1319T580 1294Q543 1294 517 1318T490 1393ZM871 1393Q871 1445 897 1468T961 1491Q998 1491 1025 1468T1053 1393Q1053 1343 1026 1319T961 1294Q924 1294 898 1318T871 1393Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 473V625H942V473H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 473V625H1966V473H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="348" d="M37 961L25 983Q47 1073 96 1207T201 1462H324Q258 1208 221 961H37Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="348" d="M309 1462L324 1440Q298 1340 249 1208T147 961H25Q95 1246 127 1462H309Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="502" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="717" d="M406 961L391 983Q447 1198 569 1462H692Q662 1347 633 1203T590 961H406ZM37 961L25 983Q47 1073 96 1207T201 1462H324Q258 1208 221 961H37Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="717" d="M309 1462L324 1440Q298 1340 249 1208T147 961H25Q95 1246 127 1462H309ZM678 1462L692 1440Q668 1349 620 1216T516 961H391Q417 1061 450 1215T496 1462H678Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="829" d="M309 238L324 216Q298 116 249 -16T147 -263H25Q95 22 127 238H309ZM678 238L692 216Q668 125 620 -8T516 -263H391Q417 -163 450 -9T496 238H678Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M164 748Q164 869 220 932T385 995Q490 995 548 933T606 748Q606 629 549 565T385 500Q278 500 221 565T164 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="623" d="M82 551L424 958L543 889L254 539L543 188L424 117L82 524V551Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="623" d="M541 524L197 117L80 188L367 539L80 889L197 958L541 551V524Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="OE" g2="J" k="-123" />
+</font>
+</defs>
+</svg>
diff --git a/static/fonts/open-sans-v13-latin-regular.ttf b/static/fonts/open-sans-v13-latin-regular.ttf
new file mode 100644
index 0000000..0dae9c3
Binary files /dev/null and b/static/fonts/open-sans-v13-latin-regular.ttf differ
diff --git a/static/fonts/open-sans-v13-latin-regular.woff b/static/fonts/open-sans-v13-latin-regular.woff
new file mode 100644
index 0000000..e096d04
Binary files /dev/null and b/static/fonts/open-sans-v13-latin-regular.woff differ
diff --git a/static/fonts/open-sans-v13-latin-regular.woff2 b/static/fonts/open-sans-v13-latin-regular.woff2
new file mode 100644
index 0000000..5287058
Binary files /dev/null and b/static/fonts/open-sans-v13-latin-regular.woff2 differ

File Metadata

Mime Type
text/x-diff
Expires
Thu, Nov 20, 8:27 AM (1 d, 13 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a2/f4/991d380590c271f02ce6be279cbd

Event Timeline