diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 0000000..4157b37
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1,3 @@
+# These are supported funding model platforms
+
+github: [chrismsimpson]
diff --git a/.gitignore b/.gitignore
index e43b0f9..4f8215b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
.DS_Store
+Sources/*(Autosaved).glyphs
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..50eae46
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,8 @@
+language: python
+
+install:
+ - pip install --upgrade pip
+ - pip install -r Sources/requirements.txt
+
+script:
+- ./Sources/build.sh
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..0c27368
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,4 @@
+# Contributing
+
+1. Read the [Documentation](./Documentation/Documentation.md)
+2. Create a pull request
diff --git a/Documentation/Documentation.md b/Documentation/Documentation.md
new file mode 100644
index 0000000..cd1a342
--- /dev/null
+++ b/Documentation/Documentation.md
@@ -0,0 +1,201 @@
+# Documentation
+
+## Table of Contents
+
+* [Documentation](#documentation)
+ * [Table of Contents](#contents)
+ * [Workflow](#workflow)
+ * [Metrics](#metrics)
+ * [Italics](#italics)
+ * [Dimensions/stroke width](#dimensions)
+ * [Alignment Zones](#alignmentzones)
+ * [HT Letterspacer](#htletterspacer)
+ * [BubbleKern](#bubblekern)
+ * [Cursify](#cursify)
+ * [Release process](#releaseprocess)
+ * [Export formats](#exportformats)
+* [Future plans](#futureplans)
+* [Alternative to Glyphs](#alternatives)
+* [Submitting a PR](#PRs)
+
+## Workflow
+
+
+
+Metropolis is built with an entirely Glyphs ([https://glyphsapp.com](https://glyphsapp.com)) based workflow. I can't recommend Glyphs enough, though it does come with a price tag.
+
+The two plugins that are essential to this workflow are HT Letterspacer ([https://huertatipografica.github.io/HTLetterspacer/)](https://huertatipografica.github.io/HTLetterspacer/) and BubbleKern ([http://glyphsextensions.com/bubblekern/](http://glyphsextensions.com/bubblekern/)). More on both those below.
+
+## Metrics
+
+Given an **em square of 1000**, the metrics for Metropolis are as follows:
+
+| | Value
+--- | -----
+Ascender | 795
+Cap Height | 687
+x-Height | 517
+Descender | -205
+
+### Italics
+
+The italics angle is universally **11.75°**.
+
+### Dimensions or 'stroke width'
+
+The dimensions are as follows:
+
+Light | Regular | Black
+--- | --- | ---
+ |  | 
+
+Example: If drawing something like an 'x', I likely will start with an elongated vertical bar with the same width as the vertical stem in 'n'. After rotating it the appropriate width to create the letter 'x' of the desired width, a lot of adjustment takes place. The final result cannot be reasonably estimated something akin to 'stroke width y at a degree of z'. This is essentially how all diagonals have been drawn to date. Start with an initial shape based off these dimensions and then infinite adjustment.
+
+### Alignment Zones
+
+
+
+Also across all current 6 masters, the alignment zones are +/- a value of **12**. This is a good value for this style of sans typeface for an em square of 1000, so I'll often use a value of 12, not just for Metropolis.
+
+There likely should be many more formal values, but they don't exist. Pretty much all glyphs have been improvised beginning with the pen tool in Glyphs. I didn't draw this freehand as a prior step, becuase I wanted to get straight into the project in Glyphs. Maybe that's a 'wrong' way to do type design, but it works for me. That will explain why some outlikes are a bit primitive. For example, I'm still not really happy with the lowercase 'a' overall, but I am reluctant to change it to something already familiar over something original. This is an original work, not a copy, after all.
+
+Armed with all the above metrics, you should be able draw a great many number of outlines/glyphs. There are 327 already there by my count. I say outlines, I have intentionally left out spacing until now.
+
+
+## HT Letterspacer
+
+HT Letterspacer is a tool that automatically calculates the appropriate left and right bearing on any glyph, essentially doing the spacing part of the design automatically.
+
+In order for this to work, the plugin requires a few parameters, which can be found in the custom parameters in the masters tab of the font info window, namely `paramArea`, `paramDepth`, `paramOver`.
+
+
+
+Checkout [https://huertatipografica.github.io/HTLetterspacer/)]() for a much more thorough explanation of this tool. Essentially the above metrics tell HT Letterspacer how much space to allocate. I have chosen the following values:
+
+| | Thin | Regular | Black
+--- | ---- | ------- | -----
+`paramArea` | 350 | 310 | 370
+`paramDepth` | 5 | 7 | 16
+`paramOver` | 2 | 9 | 22
+
+I roughly understand what these numbers do, but I'm not going to explain how I've arrived at these specific values. A **lot** of fiddling, adjusting and trial & error.
+
+In addition to this, each *.glyphs file needs a corresponding autospace file. For instance:
+
+```
+./Metropolis.glyphs
+./Metropolis_Black_autospace.py
+./Metropolis_Regular_autospace.py
+./Metropolis_Thin_autospace.py
+```
+
+and
+
+```
+./Metropolis-Italic.glyphs
+./Metropolis-Italic_Black_autospace.py
+./Metropolis-Italic_Regular_autospace.py
+./Metropolis-Italic_Thin_autospace.py
+```
+
+You will actually need a relatively new version of HT Letterspacer as I actually submitted a PR allowing masters/weights to have individually set values. (As far as I understand) the param values define overall weight (and/or rhythm) of the typeface, whereas the autospace file defines ratios between things like uppercase, small caps, lowercase, numbers etc.
+
+Once both the plugin and these settings are correctly set up, you can invoke the tool one of two ways: 1) with the UI and 2) without. The UI allows you to manually override settings (which is not what we want), so I choose to always invoke it without the UI. Once invoked, you can easily repeat the operation with **Option + Command + R**.
+
+
+
+When using this tool/making spacing adjustments, it's key to run it many times. You will see the glyphs coalesce into their eventual spacing, but it may actually take multiple runs of the tool for it to reach it's optimal point.
+
+## BubbleKern
+
+
+
+After drawing and spacing our glyphs, we need to define approriate kerning information. This would be a mammoth job to do manually each release, so instead I'm using BubbleKern ([http://glyphsextensions.com/bubblekern/](http://glyphsextensions.com/bubblekern/)). If you think back to days of old physical type, imagine the 'bubbles' being the shaped physical block the glyph is mounted on. The block itself is contoured outside of the perimeter of the glyph to allow glyphs tightly align.
+
+Basically for each outline layer, there needs to be a corresponding 'bubble' layer (see right hand side 'Layers' pane).
+
+It is crucial the width of the corresponding layers are the same (e.g. the 'Thin' layer and it's immediately following 'bubble' layer) for this to work correctly.
+
+Once defined/drawn for every glyph, BubbleKern is then run. I have prepared `Metropolis BubbleKern Pairs.txt` for this. **Any kern pairs must go in this file/BubbleKern must only be run using this file.**
+
+As a guide, I am using 56, 53 & 50 as offset values when drawing the kern bubbles for Thin, Regular & Black, respectively. As a rule, I try to honor the values already arrived at by HT Letterspacer.
+
+## Cursify
+
+I'm largely using Glyph's 'Cursify' tool to do the italics. This yeilds better results that simply slanting the glyph shapes from the regular/normal glyph, though from memory I was doing something tricky like slanting the vertical bars and cursifying everything else.
+
+Will update if/when I can recreate how I did this. Again, a lot of just eyeballing and trail and error.
+
+Cursify | Slant
+--- | ---
+ | 
+
+## Release process
+
+Is as follows:
+
+1. Remove all kerning
+2. Draw
+3. Space
+4. Draw BubbleKern bubbles
+5. Re-Run BubbleKern (use ../Sources/Metropolis BubbleKer Pairs.txt)
+6. Export
+7. Commit
+8. Create release tag
+
+Note: Hoping to arrive at optimal BubbleKern outlines soon to negate the need to ever re-do these.
+
+## Export formats
+
+Once I've run BubbleKern, I create exports for OpenType, TrueType, UFO, EOT, WOFF & WOFF2.
+
+# Future Plans
+
+## Small Caps
+
+There are some additional metrics that likely need to be defined before this can go ahead. There is an open PR for some caps, but I haven't reviewed and I'm not sure if spacing and/or kerning has been appropriately set.
+
+## Rounded
+
+A rounded version. Adjusting strokes an addition 12 points at cap ends.
+
+## Slab/Serif
+
+This one has had the least thought, but might be cool. Also could serve as some preliminary work for a possible monospaced version.
+
+## Monospaced
+
+As above
+
+## Micro / Text / Display
+
+This possibly would require an entire redrawing effort. The current metrics *kind of* work, but separating for different display sizes would likely need quite a rethink of the core metrics (and therefore spacing too). I don't really have any plans to do this. It's more of a 'if I was doing this all over again...' type thing.
+
+# Alternative to Glyphs
+
+At present, the best bet is the UFO export. However, if you want to request glyph, you must raise an issue and add your modified file as an attachment to the issue, rather than a pull request. I will only allow PRs to the glpyhs file.
+
+This will in turn mean someone (likely myself) will need to translate this into an appropriate commit/PR.
+
+# Submitting a PR
+
+I will only review PRs that are small and isolated and can be easily described and understood within the context of the PR rather than even needing to open it.
+
+When saving the file for your PR close all other open tabs and leave one remaining with the added/modified glyphs visible. This makes it much easier to review PRs.
+
+Please:
+
+- Run the autospacing on your modified/created glyph before subitting as a PR
+- Add relevant bubble kern to any modified/created glyph and set up as drescribed above
+- Apply to all weights and both normal/italic where appropriate
+
+Please do not:
+
+- Modify any autospacing settings
+- Modify any other kern bubbles
+- Set manual kerns (or indeed run the kerning tool at all)
+- Modify any glyphs not related to your changes
+
+As a general rule, a small isolated commit should equal a small isolated PR.
+
+
diff --git a/Documentation/Images/00_Workflow.png b/Documentation/Images/00_Workflow.png
new file mode 100644
index 0000000..11995ab
Binary files /dev/null and b/Documentation/Images/00_Workflow.png differ
diff --git a/Documentation/Images/01_InfoWindow.png b/Documentation/Images/01_InfoWindow.png
new file mode 100644
index 0000000..ffcbd3e
Binary files /dev/null and b/Documentation/Images/01_InfoWindow.png differ
diff --git a/Documentation/Images/02_DimensionsThin.png b/Documentation/Images/02_DimensionsThin.png
new file mode 100644
index 0000000..479abf5
Binary files /dev/null and b/Documentation/Images/02_DimensionsThin.png differ
diff --git a/Documentation/Images/03_DimensionsRegular.png b/Documentation/Images/03_DimensionsRegular.png
new file mode 100644
index 0000000..c2c7f4f
Binary files /dev/null and b/Documentation/Images/03_DimensionsRegular.png differ
diff --git a/Documentation/Images/04_DimensionsBlack.png b/Documentation/Images/04_DimensionsBlack.png
new file mode 100644
index 0000000..f0b7e15
Binary files /dev/null and b/Documentation/Images/04_DimensionsBlack.png differ
diff --git a/Documentation/Images/05_AlignmentZones.png b/Documentation/Images/05_AlignmentZones.png
new file mode 100644
index 0000000..40c4464
Binary files /dev/null and b/Documentation/Images/05_AlignmentZones.png differ
diff --git a/Documentation/Images/06_HTLetterspacerUI.png b/Documentation/Images/06_HTLetterspacerUI.png
new file mode 100644
index 0000000..a487902
Binary files /dev/null and b/Documentation/Images/06_HTLetterspacerUI.png differ
diff --git a/Documentation/Images/07_BubbleKern.png b/Documentation/Images/07_BubbleKern.png
new file mode 100644
index 0000000..91bf91d
Binary files /dev/null and b/Documentation/Images/07_BubbleKern.png differ
diff --git a/Documentation/Images/08_Cursify.png b/Documentation/Images/08_Cursify.png
new file mode 100644
index 0000000..45068a1
Binary files /dev/null and b/Documentation/Images/08_Cursify.png differ
diff --git a/Documentation/Images/09_Slant.png b/Documentation/Images/09_Slant.png
new file mode 100644
index 0000000..d445b59
Binary files /dev/null and b/Documentation/Images/09_Slant.png differ
diff --git a/Fonts/OpenType/Metropolis-Black.otf b/Fonts/OpenType/Metropolis-Black.otf
new file mode 100644
index 0000000..b11300a
Binary files /dev/null and b/Fonts/OpenType/Metropolis-Black.otf differ
diff --git a/Fonts/OpenType/Metropolis-BlackItalic.otf b/Fonts/OpenType/Metropolis-BlackItalic.otf
new file mode 100644
index 0000000..f3dd4d7
Binary files /dev/null and b/Fonts/OpenType/Metropolis-BlackItalic.otf differ
diff --git a/Fonts/OpenType/Metropolis-Bold.otf b/Fonts/OpenType/Metropolis-Bold.otf
new file mode 100644
index 0000000..fba30d5
Binary files /dev/null and b/Fonts/OpenType/Metropolis-Bold.otf differ
diff --git a/Fonts/OpenType/Metropolis-BoldItalic.otf b/Fonts/OpenType/Metropolis-BoldItalic.otf
new file mode 100644
index 0000000..af7f34a
Binary files /dev/null and b/Fonts/OpenType/Metropolis-BoldItalic.otf differ
diff --git a/Fonts/OpenType/Metropolis-ExtraBold.otf b/Fonts/OpenType/Metropolis-ExtraBold.otf
new file mode 100644
index 0000000..1569050
Binary files /dev/null and b/Fonts/OpenType/Metropolis-ExtraBold.otf differ
diff --git a/Fonts/OpenType/Metropolis-ExtraBoldItalic.otf b/Fonts/OpenType/Metropolis-ExtraBoldItalic.otf
new file mode 100644
index 0000000..eb8610c
Binary files /dev/null and b/Fonts/OpenType/Metropolis-ExtraBoldItalic.otf differ
diff --git a/Fonts/OpenType/Metropolis-ExtraLight.otf b/Fonts/OpenType/Metropolis-ExtraLight.otf
new file mode 100644
index 0000000..50d9e7f
Binary files /dev/null and b/Fonts/OpenType/Metropolis-ExtraLight.otf differ
diff --git a/Fonts/OpenType/Metropolis-ExtraLightItalic.otf b/Fonts/OpenType/Metropolis-ExtraLightItalic.otf
new file mode 100644
index 0000000..8590829
Binary files /dev/null and b/Fonts/OpenType/Metropolis-ExtraLightItalic.otf differ
diff --git a/Fonts/OpenType/Metropolis-Light.otf b/Fonts/OpenType/Metropolis-Light.otf
new file mode 100644
index 0000000..5a312fa
Binary files /dev/null and b/Fonts/OpenType/Metropolis-Light.otf differ
diff --git a/Fonts/OpenType/Metropolis-LightItalic.otf b/Fonts/OpenType/Metropolis-LightItalic.otf
new file mode 100644
index 0000000..8d5132d
Binary files /dev/null and b/Fonts/OpenType/Metropolis-LightItalic.otf differ
diff --git a/Fonts/OpenType/Metropolis-Medium.otf b/Fonts/OpenType/Metropolis-Medium.otf
new file mode 100644
index 0000000..1616733
Binary files /dev/null and b/Fonts/OpenType/Metropolis-Medium.otf differ
diff --git a/Fonts/OpenType/Metropolis-MediumItalic.otf b/Fonts/OpenType/Metropolis-MediumItalic.otf
new file mode 100644
index 0000000..c4ba7cf
Binary files /dev/null and b/Fonts/OpenType/Metropolis-MediumItalic.otf differ
diff --git a/Fonts/OpenType/Metropolis-Regular.otf b/Fonts/OpenType/Metropolis-Regular.otf
new file mode 100644
index 0000000..fe157bf
Binary files /dev/null and b/Fonts/OpenType/Metropolis-Regular.otf differ
diff --git a/Fonts/OpenType/Metropolis-RegularItalic.otf b/Fonts/OpenType/Metropolis-RegularItalic.otf
new file mode 100644
index 0000000..cfc145e
Binary files /dev/null and b/Fonts/OpenType/Metropolis-RegularItalic.otf differ
diff --git a/Fonts/OpenType/Metropolis-SemiBold.otf b/Fonts/OpenType/Metropolis-SemiBold.otf
new file mode 100644
index 0000000..6e54b2c
Binary files /dev/null and b/Fonts/OpenType/Metropolis-SemiBold.otf differ
diff --git a/Fonts/OpenType/Metropolis-SemiBoldItalic.otf b/Fonts/OpenType/Metropolis-SemiBoldItalic.otf
new file mode 100644
index 0000000..6604d11
Binary files /dev/null and b/Fonts/OpenType/Metropolis-SemiBoldItalic.otf differ
diff --git a/Fonts/OpenType/Metropolis-Thin.otf b/Fonts/OpenType/Metropolis-Thin.otf
new file mode 100644
index 0000000..5dd6f4f
Binary files /dev/null and b/Fonts/OpenType/Metropolis-Thin.otf differ
diff --git a/Fonts/OpenType/Metropolis-ThinItalic.otf b/Fonts/OpenType/Metropolis-ThinItalic.otf
new file mode 100644
index 0000000..8e04d6f
Binary files /dev/null and b/Fonts/OpenType/Metropolis-ThinItalic.otf differ
diff --git a/Fonts/TrueType/Metropolis-Black.ttf b/Fonts/TrueType/Metropolis-Black.ttf
new file mode 100644
index 0000000..ba26a9d
Binary files /dev/null and b/Fonts/TrueType/Metropolis-Black.ttf differ
diff --git a/Fonts/TrueType/Metropolis-BlackItalic.ttf b/Fonts/TrueType/Metropolis-BlackItalic.ttf
new file mode 100644
index 0000000..7dabcf8
Binary files /dev/null and b/Fonts/TrueType/Metropolis-BlackItalic.ttf differ
diff --git a/Fonts/TrueType/Metropolis-Bold.ttf b/Fonts/TrueType/Metropolis-Bold.ttf
new file mode 100644
index 0000000..384bc52
Binary files /dev/null and b/Fonts/TrueType/Metropolis-Bold.ttf differ
diff --git a/Fonts/TrueType/Metropolis-BoldItalic.ttf b/Fonts/TrueType/Metropolis-BoldItalic.ttf
new file mode 100644
index 0000000..2ce7975
Binary files /dev/null and b/Fonts/TrueType/Metropolis-BoldItalic.ttf differ
diff --git a/Fonts/TrueType/Metropolis-ExtraBold.ttf b/Fonts/TrueType/Metropolis-ExtraBold.ttf
new file mode 100644
index 0000000..743d11b
Binary files /dev/null and b/Fonts/TrueType/Metropolis-ExtraBold.ttf differ
diff --git a/Fonts/TrueType/Metropolis-ExtraBoldItalic.ttf b/Fonts/TrueType/Metropolis-ExtraBoldItalic.ttf
new file mode 100644
index 0000000..45cd982
Binary files /dev/null and b/Fonts/TrueType/Metropolis-ExtraBoldItalic.ttf differ
diff --git a/Fonts/TrueType/Metropolis-ExtraLight.ttf b/Fonts/TrueType/Metropolis-ExtraLight.ttf
new file mode 100644
index 0000000..f977aec
Binary files /dev/null and b/Fonts/TrueType/Metropolis-ExtraLight.ttf differ
diff --git a/Fonts/TrueType/Metropolis-ExtraLightItalic.ttf b/Fonts/TrueType/Metropolis-ExtraLightItalic.ttf
new file mode 100644
index 0000000..0920149
Binary files /dev/null and b/Fonts/TrueType/Metropolis-ExtraLightItalic.ttf differ
diff --git a/Fonts/TrueType/Metropolis-Light.ttf b/Fonts/TrueType/Metropolis-Light.ttf
new file mode 100644
index 0000000..64a0c83
Binary files /dev/null and b/Fonts/TrueType/Metropolis-Light.ttf differ
diff --git a/Fonts/TrueType/Metropolis-LightItalic.ttf b/Fonts/TrueType/Metropolis-LightItalic.ttf
new file mode 100644
index 0000000..6f4cfeb
Binary files /dev/null and b/Fonts/TrueType/Metropolis-LightItalic.ttf differ
diff --git a/Fonts/TrueType/Metropolis-Medium.ttf b/Fonts/TrueType/Metropolis-Medium.ttf
new file mode 100644
index 0000000..5d838c6
Binary files /dev/null and b/Fonts/TrueType/Metropolis-Medium.ttf differ
diff --git a/Fonts/TrueType/Metropolis-MediumItalic.ttf b/Fonts/TrueType/Metropolis-MediumItalic.ttf
new file mode 100644
index 0000000..c5646d2
Binary files /dev/null and b/Fonts/TrueType/Metropolis-MediumItalic.ttf differ
diff --git a/Fonts/TrueType/Metropolis-Regular.ttf b/Fonts/TrueType/Metropolis-Regular.ttf
new file mode 100644
index 0000000..012acd8
Binary files /dev/null and b/Fonts/TrueType/Metropolis-Regular.ttf differ
diff --git a/Fonts/TrueType/Metropolis-RegularItalic.ttf b/Fonts/TrueType/Metropolis-RegularItalic.ttf
new file mode 100644
index 0000000..60f3502
Binary files /dev/null and b/Fonts/TrueType/Metropolis-RegularItalic.ttf differ
diff --git a/Fonts/TrueType/Metropolis-SemiBold.ttf b/Fonts/TrueType/Metropolis-SemiBold.ttf
new file mode 100644
index 0000000..2f7522d
Binary files /dev/null and b/Fonts/TrueType/Metropolis-SemiBold.ttf differ
diff --git a/Fonts/TrueType/Metropolis-SemiBoldItalic.ttf b/Fonts/TrueType/Metropolis-SemiBoldItalic.ttf
new file mode 100644
index 0000000..7451471
Binary files /dev/null and b/Fonts/TrueType/Metropolis-SemiBoldItalic.ttf differ
diff --git a/Fonts/TrueType/Metropolis-Thin.ttf b/Fonts/TrueType/Metropolis-Thin.ttf
new file mode 100644
index 0000000..f1ca337
Binary files /dev/null and b/Fonts/TrueType/Metropolis-Thin.ttf differ
diff --git a/Fonts/TrueType/Metropolis-ThinItalic.ttf b/Fonts/TrueType/Metropolis-ThinItalic.ttf
new file mode 100644
index 0000000..d277f65
Binary files /dev/null and b/Fonts/TrueType/Metropolis-ThinItalic.ttf differ
diff --git a/Fonts/UFO/Metropolis-Black.ufo/features.fea b/Fonts/UFO/Metropolis-Black.ufo/features.fea
new file mode 100644
index 0000000..e1817e7
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/features.fea
@@ -0,0 +1,7753 @@
+@MMK_L_A = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde ];
+@MMK_L_B = [ B ];
+@MMK_L_C = [ C Cacute Ccaron Ccedilla ];
+@MMK_L_D = [ D Eth Dcaron Dcroat ];
+@MMK_L_E = [ AE E Eacute Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Emacron Eogonek Etilde OE ];
+@MMK_L_F = [ F ];
+@MMK_L_G = [ G Gbreve Gcommaaccent ];
+@MMK_L_H = [ H ];
+@MMK_L_I = [ I Iacute Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek ];
+@MMK_L_J = [ J ];
+@MMK_L_K = [ K Kcommaaccent ];
+@MMK_L_L = [ L Lacute Lcaron ];
+@MMK_L_Lslash = [ Lslash ];
+@MMK_L_M = [ M ];
+@MMK_L_N = [ N Nacute Ncaron Ncommaaccent Ntilde ];
+@MMK_L_O = [ O Oacute Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Otilde ];
+@MMK_L_Oslash = [ Oslash ];
+@MMK_L_P = [ P ];
+@MMK_L_Q = [ Q ];
+@MMK_L_R = [ R Racute Rcaron Rcommaaccent ];
+@MMK_L_S = [ S Sacute Scaron Scedilla ];
+@MMK_L_T = [ T Tcaron Tcedilla ];
+@MMK_L_Thorn = [ Thorn ];
+@MMK_L_U = [ U Uacute Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring ];
+@MMK_L_V = [ V ];
+@MMK_L_W = [ W Wacute Wcircumflex Wdieresis Wgrave ];
+@MMK_L_X = [ X ];
+@MMK_L_Y = [ Y Yacute Ycircumflex Ydieresis Ygrave ];
+@MMK_L_Z = [ Z Zacute Zcaron Zdotaccent ];
+@MMK_L_a = [ a aacute abreve acircumflex adieresis agrave amacron aogonek aring atilde ];
+@MMK_L_a.alt = [ a.alt aacute.alt abreve.alt acircumflex.alt adieresis.alt agrave.alt amacron.alt aogonek.alt aring.alt atilde.alt ];
+@MMK_L_b = [ b ];
+@MMK_L_c = [ c cacute ccaron ccedilla ];
+@MMK_L_d = [ d ];
+@MMK_L_dcaron = [ dcaron ];
+@MMK_L_dcroat = [ dcroat ];
+@MMK_L_e = [ ae e eacute ecaron ecircumflex edieresis edotaccent edotbelow egrave emacron eogonek etilde oe ];
+@MMK_L_eth = [ eth ];
+@MMK_L_f = [ f ];
+@MMK_L_g = [ g gbreve gcommaaccent ];
+@MMK_L_germandbls = [ germandbls ];
+@MMK_L_h = [ h ];
+@MMK_L_i = [ i idotless iacute icircumflex idieresis igrave imacron iogonek ];
+@MMK_L_j = [ j jdotless ];
+@MMK_L_k = [ k kcommaaccent ];
+@MMK_L_l = [ l lacute ];
+@MMK_L_lcaron = [ lcaron ];
+@MMK_L_lslash = [ lslash ];
+@MMK_L_m = [ m ];
+@MMK_L_n = [ n nacute ncaron ncommaaccent ntilde ];
+@MMK_L_o = [ o oacute ocircumflex odieresis ograve ohungarumlaut omacron otilde ];
+@MMK_L_oslash = [ oslash ];
+@MMK_L_p = [ p ];
+@MMK_L_q = [ q ];
+@MMK_L_r = [ r racute rcaron rcommaaccent ];
+@MMK_L_s = [ s sacute scaron scedilla ];
+@MMK_L_t = [ t tcedilla ];
+@MMK_L_tcaron = [ tcaron ];
+@MMK_L_thorn = [ thorn ];
+@MMK_L_u = [ u uacute ucircumflex udieresis ugrave uhungarumlaut umacron uogonek uring ];
+@MMK_L_v = [ v ];
+@MMK_L_w = [ w wacute wcircumflex wdieresis wgrave ];
+@MMK_L_x = [ x ];
+@MMK_L_y = [ y yacute ycircumflex ydieresis ygrave ];
+@MMK_L_z = [ z zacute zcaron zdotaccent ];
+@MMK_R_A = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE ];
+@MMK_R_B = [ B ];
+@MMK_R_C = [ C Cacute Ccaron Ccedilla ];
+@MMK_R_D = [ D Dcaron ];
+@MMK_R_E = [ E Eacute Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Emacron Eogonek Etilde ];
+@MMK_R_Eth = [ Eth Dcroat ];
+@MMK_R_F = [ F ];
+@MMK_R_G = [ G Gbreve Gcommaaccent ];
+@MMK_R_H = [ H ];
+@MMK_R_I = [ I Iacute Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek ];
+@MMK_R_J = [ J ];
+@MMK_R_K = [ K Kcommaaccent ];
+@MMK_R_L = [ L Lacute Lcaron ];
+@MMK_R_Lslash = [ Lslash ];
+@MMK_R_M = [ M ];
+@MMK_R_N = [ N Nacute Ncaron Ncommaaccent Ntilde ];
+@MMK_R_O = [ O Oacute Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Otilde OE ];
+@MMK_R_Oslash = [ Oslash ];
+@MMK_R_P = [ P ];
+@MMK_R_Q = [ Q ];
+@MMK_R_R = [ R Racute Rcaron Rcommaaccent ];
+@MMK_R_S = [ S Sacute Scaron Scedilla ];
+@MMK_R_T = [ T Tcaron Tcedilla ];
+@MMK_R_Thorn = [ Thorn ];
+@MMK_R_U = [ U Uacute Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring ];
+@MMK_R_V = [ V ];
+@MMK_R_W = [ W Wacute Wcircumflex Wdieresis Wgrave ];
+@MMK_R_X = [ X ];
+@MMK_R_Y = [ Y Yacute Ycircumflex Ydieresis Ygrave ];
+@MMK_R_Z = [ Z Zacute Zcaron Zdotaccent ];
+@MMK_R_a = [ a aacute abreve acircumflex adieresis agrave amacron aogonek aring atilde ae ];
+@MMK_R_a.alt = [ a.alt aacute.alt abreve.alt acircumflex.alt adieresis.alt agrave.alt amacron.alt aogonek.alt aring.alt atilde.alt ];
+@MMK_R_b = [ b ];
+@MMK_R_c = [ c cacute ccaron ccedilla ];
+@MMK_R_d = [ d ];
+@MMK_R_dcaron = [ dcaron ];
+@MMK_R_dcroat = [ dcroat ];
+@MMK_R_e = [ e eacute ecaron ecircumflex edieresis edotaccent edotbelow egrave emacron eogonek etilde ];
+@MMK_R_eth = [ eth ];
+@MMK_R_f = [ f ];
+@MMK_R_g = [ g gbreve gcommaaccent ];
+@MMK_R_germandbls = [ germandbls ];
+@MMK_R_h = [ h ];
+@MMK_R_i = [ i idotless iacute icircumflex idieresis igrave imacron iogonek ];
+@MMK_R_j = [ j jdotless ];
+@MMK_R_k = [ k kcommaaccent ];
+@MMK_R_l = [ l lacute ];
+@MMK_R_lcaron = [ lcaron ];
+@MMK_R_lslash = [ lslash ];
+@MMK_R_m = [ m ];
+@MMK_R_n = [ n nacute ncaron ncommaaccent ntilde ];
+@MMK_R_o = [ o oacute ocircumflex odieresis ograve ohungarumlaut omacron otilde oe ];
+@MMK_R_oslash = [ oslash ];
+@MMK_R_p = [ p ];
+@MMK_R_q = [ q ];
+@MMK_R_r = [ r racute rcaron rcommaaccent ];
+@MMK_R_s = [ s sacute scaron scedilla ];
+@MMK_R_t = [ t tcedilla ];
+@MMK_R_tcaron = [ tcaron ];
+@MMK_R_thorn = [ thorn ];
+@MMK_R_u = [ u uacute ucircumflex udieresis ugrave uhungarumlaut umacron uogonek uring ];
+@MMK_R_v = [ v ];
+@MMK_R_w = [ w wacute wcircumflex wdieresis wgrave ];
+@MMK_R_x = [ x ];
+@MMK_R_y = [ y yacute ycircumflex ydieresis ygrave ];
+@MMK_R_z = [ z zacute zcaron zdotaccent ];
+
+feature kern {
+ lookup kern_DFLT {
+ lookupflag IgnoreMarks;
+ pos comma question -115;
+ pos comma periodcentered -105;
+ pos comma bullet -115;
+ pos comma asterisk -115;
+ pos comma numbersign -90;
+ pos comma backslash -115;
+ pos comma parenleft -45;
+ pos comma parenright -40;
+ pos comma braceleft -110;
+ pos comma braceright -60;
+ pos comma hyphen -115;
+ pos comma endash -115;
+ pos comma emdash -115;
+ pos comma quotedblleft -115;
+ pos comma quotedblright -115;
+ pos comma quoteleft -115;
+ pos comma quoteright -115;
+ pos comma guillemetleft -115;
+ pos comma guillemetright -15;
+ pos comma guilsinglleft -115;
+ pos comma guilsinglright -15;
+ pos comma quotedbl -115;
+ pos comma quotesingle -110;
+ pos comma cent -60;
+ pos comma dollar -35;
+ pos comma euro -115;
+ pos comma sterling -35;
+ pos comma yen -60;
+ pos comma plus -115;
+ pos comma minus -115;
+ pos comma multiply -115;
+ pos comma divide -115;
+ pos comma equal -115;
+ pos comma less -115;
+ pos comma asciitilde -115;
+ pos comma asciicircum -115;
+ pos comma percent -105;
+ pos comma perthousand -105;
+ pos comma at -55;
+ pos comma ampersand -45;
+ pos comma paragraph -115;
+ pos comma copyright -60;
+ pos comma registered -115;
+ pos comma trademark -115;
+ pos comma degree -115;
+ pos colon question -105;
+ pos colon periodcentered -105;
+ pos colon bullet -55;
+ pos colon numbersign -90;
+ pos colon slash -15;
+ pos colon backslash -90;
+ pos colon parenleft -30;
+ pos colon parenright -80;
+ pos colon braceleft -105;
+ pos colon braceright -60;
+ pos colon hyphen -105;
+ pos colon endash -105;
+ pos colon emdash -105;
+ pos colon underscore -15;
+ pos colon quotedblleft -10;
+ pos colon quotedblright -35;
+ pos colon quoteleft -10;
+ pos colon quoteright -35;
+ pos colon guillemetleft -105;
+ pos colon guillemetright -15;
+ pos colon guilsinglleft -105;
+ pos colon guilsinglright -15;
+ pos colon quotedbl -15;
+ pos colon quotesingle -15;
+ pos colon cent -45;
+ pos colon dollar -35;
+ pos colon euro -90;
+ pos colon sterling -35;
+ pos colon yen -35;
+ pos colon plus -25;
+ pos colon minus -25;
+ pos colon multiply -45;
+ pos colon divide -25;
+ pos colon less -35;
+ pos colon asciitilde -85;
+ pos colon asciicircum -15;
+ pos colon at -40;
+ pos colon ampersand -45;
+ pos colon copyright -30;
+ pos colon degree -15;
+ pos semicolon semicolon -10;
+ pos semicolon question -110;
+ pos semicolon periodcentered -105;
+ pos semicolon bullet -55;
+ pos semicolon numbersign -90;
+ pos semicolon backslash -95;
+ pos semicolon parenleft -35;
+ pos semicolon parenright -40;
+ pos semicolon braceleft -110;
+ pos semicolon braceright -60;
+ pos semicolon hyphen -110;
+ pos semicolon endash -110;
+ pos semicolon emdash -110;
+ pos semicolon quotedblleft -10;
+ pos semicolon quotedblright -35;
+ pos semicolon quoteleft -10;
+ pos semicolon quoteright -35;
+ pos semicolon guillemetleft -110;
+ pos semicolon guillemetright -20;
+ pos semicolon guilsinglleft -110;
+ pos semicolon guilsinglright -20;
+ pos semicolon quotedbl -15;
+ pos semicolon quotesingle -15;
+ pos semicolon cent -45;
+ pos semicolon dollar -35;
+ pos semicolon euro -95;
+ pos semicolon sterling -35;
+ pos semicolon yen -35;
+ pos semicolon plus -25;
+ pos semicolon minus -25;
+ pos semicolon multiply -45;
+ pos semicolon divide -25;
+ pos semicolon less -30;
+ pos semicolon asciitilde -80;
+ pos semicolon asciicircum -15;
+ pos semicolon at -40;
+ pos semicolon ampersand -45;
+ pos semicolon copyright -30;
+ pos semicolon degree -15;
+ pos ellipsis question -175;
+ pos ellipsis periodcentered -105;
+ pos ellipsis bullet -175;
+ pos ellipsis asterisk -190;
+ pos ellipsis numbersign -90;
+ pos ellipsis slash -15;
+ pos ellipsis backslash -240;
+ pos ellipsis parenleft -45;
+ pos ellipsis parenright -80;
+ pos ellipsis braceleft -110;
+ pos ellipsis braceright -60;
+ pos ellipsis hyphen -195;
+ pos ellipsis endash -290;
+ pos ellipsis emdash -290;
+ pos ellipsis underscore -15;
+ pos ellipsis quotedblleft -205;
+ pos ellipsis quotedblright -205;
+ pos ellipsis quoteleft -115;
+ pos ellipsis quoteright -115;
+ pos ellipsis guillemetleft -160;
+ pos ellipsis guillemetright -15;
+ pos ellipsis guilsinglleft -160;
+ pos ellipsis guilsinglright -15;
+ pos ellipsis quotedbl -200;
+ pos ellipsis quotesingle -110;
+ pos ellipsis cent -60;
+ pos ellipsis dollar -35;
+ pos ellipsis euro -255;
+ pos ellipsis sterling -35;
+ pos ellipsis yen -60;
+ pos ellipsis plus -285;
+ pos ellipsis minus -290;
+ pos ellipsis multiply -210;
+ pos ellipsis divide -290;
+ pos ellipsis equal -290;
+ pos ellipsis less -290;
+ pos ellipsis asciitilde -240;
+ pos ellipsis asciicircum -260;
+ pos ellipsis percent -105;
+ pos ellipsis perthousand -105;
+ pos ellipsis at -55;
+ pos ellipsis ampersand -45;
+ pos ellipsis paragraph -220;
+ pos ellipsis copyright -60;
+ pos ellipsis registered -285;
+ pos ellipsis trademark -290;
+ pos ellipsis degree -215;
+ pos question comma -115;
+ pos question semicolon -10;
+ pos question ellipsis -200;
+ pos question question -45;
+ pos question questiondown -200;
+ pos question periodcentered -105;
+ pos question bullet -65;
+ pos question numbersign -140;
+ pos question slash -215;
+ pos question backslash -60;
+ pos question parenleft -40;
+ pos question parenright -45;
+ pos question braceleft -110;
+ pos question braceright -60;
+ pos question hyphen -80;
+ pos question endash -80;
+ pos question emdash -80;
+ pos question underscore -225;
+ pos question quotesinglbase -115;
+ pos question quotedblbase -205;
+ pos question quotedblright -10;
+ pos question quoteright -10;
+ pos question guillemetleft -150;
+ pos question guillemetright -30;
+ pos question guilsinglleft -150;
+ pos question guilsinglright -30;
+ pos question cent -55;
+ pos question dollar -30;
+ pos question euro -90;
+ pos question sterling -80;
+ pos question yen -25;
+ pos question plus -30;
+ pos question minus -30;
+ pos question multiply -55;
+ pos question divide -30;
+ pos question less -40;
+ pos question asciitilde -90;
+ pos question asciicircum -25;
+ pos question at -50;
+ pos question ampersand -110;
+ pos question copyright -40;
+ pos questiondown comma -80;
+ pos questiondown colon -105;
+ pos questiondown semicolon -80;
+ pos questiondown ellipsis -105;
+ pos questiondown question -275;
+ pos questiondown questiondown -50;
+ pos questiondown periodcentered -105;
+ pos questiondown bullet -175;
+ pos questiondown asterisk -175;
+ pos questiondown numbersign -225;
+ pos questiondown slash -50;
+ pos questiondown backslash -240;
+ pos questiondown parenleft -145;
+ pos questiondown parenright -55;
+ pos questiondown braceleft -155;
+ pos questiondown braceright -85;
+ pos questiondown bracketleft -20;
+ pos questiondown bracketright -20;
+ pos questiondown hyphen -175;
+ pos questiondown endash -175;
+ pos questiondown emdash -175;
+ pos questiondown underscore -20;
+ pos questiondown quotesinglbase -80;
+ pos questiondown quotedblbase -80;
+ pos questiondown quotedblleft -180;
+ pos questiondown quotedblright -195;
+ pos questiondown quoteleft -115;
+ pos questiondown quoteright -115;
+ pos questiondown guillemetleft -170;
+ pos questiondown guillemetright -195;
+ pos questiondown guilsinglleft -165;
+ pos questiondown guilsinglright -165;
+ pos questiondown quotedbl -185;
+ pos questiondown quotesingle -110;
+ pos questiondown cent -175;
+ pos questiondown dollar -200;
+ pos questiondown euro -265;
+ pos questiondown sterling -170;
+ pos questiondown yen -195;
+ pos questiondown plus -175;
+ pos questiondown minus -175;
+ pos questiondown multiply -225;
+ pos questiondown divide -175;
+ pos questiondown equal -175;
+ pos questiondown greater -135;
+ pos questiondown less -175;
+ pos questiondown asciitilde -210;
+ pos questiondown asciicircum -215;
+ pos questiondown percent -175;
+ pos questiondown perthousand -175;
+ pos questiondown at -175;
+ pos questiondown ampersand -175;
+ pos questiondown paragraph -175;
+ pos questiondown copyright -175;
+ pos questiondown registered -180;
+ pos questiondown trademark -175;
+ pos questiondown degree -185;
+ pos questiondown bar -65;
+ pos periodcentered comma -105;
+ pos periodcentered colon -105;
+ pos periodcentered semicolon -105;
+ pos periodcentered ellipsis -105;
+ pos periodcentered question -105;
+ pos periodcentered questiondown -105;
+ pos periodcentered asterisk -105;
+ pos periodcentered numbersign -80;
+ pos periodcentered slash -105;
+ pos periodcentered backslash -105;
+ pos periodcentered parenright -105;
+ pos periodcentered braceleft -65;
+ pos periodcentered braceright -60;
+ pos periodcentered underscore -105;
+ pos periodcentered quotesinglbase -105;
+ pos periodcentered quotedblbase -105;
+ pos periodcentered quotedblleft -105;
+ pos periodcentered quotedblright -105;
+ pos periodcentered quoteleft -105;
+ pos periodcentered quoteright -105;
+ pos periodcentered guillemetright -105;
+ pos periodcentered guilsinglright -105;
+ pos periodcentered quotedbl -105;
+ pos periodcentered quotesingle -105;
+ pos periodcentered dollar -105;
+ pos periodcentered euro -90;
+ pos periodcentered sterling -35;
+ pos periodcentered yen -60;
+ pos periodcentered multiply -55;
+ pos periodcentered asciitilde -45;
+ pos periodcentered asciicircum -105;
+ pos periodcentered percent -90;
+ pos periodcentered perthousand -90;
+ pos periodcentered ampersand -10;
+ pos periodcentered paragraph -75;
+ pos periodcentered registered -30;
+ pos periodcentered trademark -105;
+ pos periodcentered degree -105;
+ pos bullet comma -115;
+ pos bullet colon -55;
+ pos bullet semicolon -65;
+ pos bullet ellipsis -175;
+ pos bullet question -175;
+ pos bullet questiondown -130;
+ pos bullet asterisk -70;
+ pos bullet numbersign -85;
+ pos bullet slash -125;
+ pos bullet backslash -160;
+ pos bullet parenright -175;
+ pos bullet braceleft -65;
+ pos bullet braceright -60;
+ pos bullet underscore -175;
+ pos bullet quotesinglbase -115;
+ pos bullet quotedblbase -175;
+ pos bullet quotedblleft -105;
+ pos bullet quotedblright -175;
+ pos bullet quoteleft -105;
+ pos bullet quoteright -115;
+ pos bullet guillemetright -55;
+ pos bullet guilsinglright -55;
+ pos bullet quotedbl -120;
+ pos bullet quotesingle -110;
+ pos bullet dollar -85;
+ pos bullet euro -90;
+ pos bullet sterling -35;
+ pos bullet yen -60;
+ pos bullet multiply -60;
+ pos bullet asciitilde -35;
+ pos bullet asciicircum -55;
+ pos bullet percent -55;
+ pos bullet perthousand -55;
+ pos bullet ampersand -15;
+ pos bullet paragraph -45;
+ pos bullet registered -20;
+ pos bullet trademark -125;
+ pos bullet degree -110;
+ pos asterisk comma -115;
+ pos asterisk semicolon -10;
+ pos asterisk ellipsis -190;
+ pos asterisk question -25;
+ pos asterisk questiondown -190;
+ pos asterisk periodcentered -105;
+ pos asterisk bullet -75;
+ pos asterisk numbersign -135;
+ pos asterisk slash -190;
+ pos asterisk backslash -40;
+ pos asterisk parenleft -40;
+ pos asterisk parenright -20;
+ pos asterisk braceleft -110;
+ pos asterisk braceright -60;
+ pos asterisk hyphen -155;
+ pos asterisk endash -155;
+ pos asterisk emdash -155;
+ pos asterisk underscore -190;
+ pos asterisk quotesinglbase -115;
+ pos asterisk quotedblbase -190;
+ pos asterisk guillemetleft -165;
+ pos asterisk guillemetright -30;
+ pos asterisk guilsinglleft -165;
+ pos asterisk guilsinglright -30;
+ pos asterisk cent -55;
+ pos asterisk dollar -30;
+ pos asterisk euro -90;
+ pos asterisk sterling -80;
+ pos asterisk yen -15;
+ pos asterisk plus -50;
+ pos asterisk minus -50;
+ pos asterisk multiply -50;
+ pos asterisk divide -50;
+ pos asterisk less -70;
+ pos asterisk asciitilde -95;
+ pos asterisk asciicircum -25;
+ pos asterisk at -45;
+ pos asterisk ampersand -115;
+ pos asterisk copyright -35;
+ pos numbersign comma -115;
+ pos numbersign colon -70;
+ pos numbersign semicolon -80;
+ pos numbersign ellipsis -255;
+ pos numbersign question -125;
+ pos numbersign questiondown -200;
+ pos numbersign periodcentered -105;
+ pos numbersign bullet -110;
+ pos numbersign asterisk -65;
+ pos numbersign numbersign -205;
+ pos numbersign slash -230;
+ pos numbersign backslash -105;
+ pos numbersign parenleft -105;
+ pos numbersign parenright -125;
+ pos numbersign braceleft -160;
+ pos numbersign braceright -110;
+ pos numbersign bracketleft -50;
+ pos numbersign bracketright -50;
+ pos numbersign hyphen -105;
+ pos numbersign endash -105;
+ pos numbersign emdash -105;
+ pos numbersign underscore -360;
+ pos numbersign quotesinglbase -115;
+ pos numbersign quotedblbase -205;
+ pos numbersign quotedblleft -55;
+ pos numbersign quotedblright -60;
+ pos numbersign quoteleft -55;
+ pos numbersign quoteright -60;
+ pos numbersign guillemetleft -120;
+ pos numbersign guillemetright -95;
+ pos numbersign guilsinglleft -120;
+ pos numbersign guilsinglright -95;
+ pos numbersign quotedbl -55;
+ pos numbersign quotesingle -55;
+ pos numbersign cent -110;
+ pos numbersign dollar -85;
+ pos numbersign euro -155;
+ pos numbersign sterling -135;
+ pos numbersign yen -75;
+ pos numbersign plus -90;
+ pos numbersign minus -90;
+ pos numbersign multiply -120;
+ pos numbersign divide -90;
+ pos numbersign equal -60;
+ pos numbersign greater -50;
+ pos numbersign less -90;
+ pos numbersign asciitilde -140;
+ pos numbersign asciicircum -90;
+ pos numbersign percent -55;
+ pos numbersign perthousand -55;
+ pos numbersign at -110;
+ pos numbersign ampersand -135;
+ pos numbersign paragraph -55;
+ pos numbersign copyright -105;
+ pos numbersign registered -70;
+ pos numbersign trademark -50;
+ pos numbersign degree -55;
+ pos numbersign bar -50;
+ pos slash comma -115;
+ pos slash colon -90;
+ pos slash semicolon -100;
+ pos slash ellipsis -240;
+ pos slash question -50;
+ pos slash questiondown -240;
+ pos slash periodcentered -105;
+ pos slash bullet -160;
+ pos slash asterisk -35;
+ pos slash numbersign -220;
+ pos slash slash -240;
+ pos slash backslash 30;
+ pos slash parenleft -140;
+ pos slash parenright -55;
+ pos slash braceleft -160;
+ pos slash braceright -60;
+ pos slash bracketleft 10;
+ pos slash bracketright 10;
+ pos slash hyphen -155;
+ pos slash endash -155;
+ pos slash emdash -155;
+ pos slash underscore -240;
+ pos slash quotesinglbase -115;
+ pos slash quotedblbase -205;
+ pos slash quotedblleft -50;
+ pos slash quotedblright -30;
+ pos slash quoteleft -50;
+ pos slash quoteright -30;
+ pos slash guillemetleft -190;
+ pos slash guillemetright -130;
+ pos slash guilsinglleft -165;
+ pos slash guilsinglright -130;
+ pos slash quotedbl -30;
+ pos slash quotesingle -30;
+ pos slash cent -155;
+ pos slash dollar -90;
+ pos slash euro -175;
+ pos slash sterling -150;
+ pos slash yen -10;
+ pos slash plus -130;
+ pos slash minus -130;
+ pos slash multiply -150;
+ pos slash divide -130;
+ pos slash equal -85;
+ pos slash greater -10;
+ pos slash less -135;
+ pos slash asciitilde -190;
+ pos slash asciicircum -125;
+ pos slash percent -50;
+ pos slash perthousand -50;
+ pos slash at -150;
+ pos slash ampersand -165;
+ pos slash paragraph -65;
+ pos slash copyright -140;
+ pos slash registered -90;
+ pos slash trademark -55;
+ pos slash degree -35;
+ pos slash bar 15;
+ pos backslash colon -15;
+ pos backslash ellipsis -15;
+ pos backslash question -190;
+ pos backslash periodcentered -105;
+ pos backslash bullet -125;
+ pos backslash asterisk -190;
+ pos backslash numbersign -105;
+ pos backslash slash 30;
+ pos backslash backslash -240;
+ pos backslash parenleft -75;
+ pos backslash parenright -20;
+ pos backslash braceleft -100;
+ pos backslash braceright -45;
+ pos backslash bracketleft 15;
+ pos backslash bracketright 15;
+ pos backslash hyphen -100;
+ pos backslash endash -100;
+ pos backslash emdash -100;
+ pos backslash underscore 15;
+ pos backslash quotedblleft -205;
+ pos backslash quotedblright -205;
+ pos backslash quoteleft -115;
+ pos backslash quoteright -115;
+ pos backslash guillemetleft -115;
+ pos backslash guillemetright -45;
+ pos backslash guilsinglleft -115;
+ pos backslash guilsinglright -45;
+ pos backslash quotedbl -200;
+ pos backslash quotesingle -110;
+ pos backslash cent -90;
+ pos backslash dollar -60;
+ pos backslash euro -190;
+ pos backslash sterling -50;
+ pos backslash yen -75;
+ pos backslash plus -125;
+ pos backslash minus -125;
+ pos backslash multiply -155;
+ pos backslash divide -125;
+ pos backslash equal -80;
+ pos backslash greater -15;
+ pos backslash less -145;
+ pos backslash asciitilde -185;
+ pos backslash asciicircum -200;
+ pos backslash percent -120;
+ pos backslash perthousand -120;
+ pos backslash at -85;
+ pos backslash ampersand -75;
+ pos backslash paragraph -200;
+ pos backslash copyright -90;
+ pos backslash registered -170;
+ pos backslash trademark -230;
+ pos backslash degree -215;
+ pos backslash bar 15;
+ pos parenleft comma -55;
+ pos parenleft colon -80;
+ pos parenleft semicolon -55;
+ pos parenleft ellipsis -80;
+ pos parenleft question -45;
+ pos parenleft questiondown -35;
+ pos parenleft periodcentered -105;
+ pos parenleft bullet -175;
+ pos parenleft asterisk -20;
+ pos parenleft numbersign -180;
+ pos parenleft slash -20;
+ pos parenleft backslash -55;
+ pos parenleft parenleft -130;
+ pos parenleft parenright -35;
+ pos parenleft braceleft -140;
+ pos parenleft braceright -80;
+ pos parenleft bracketleft -20;
+ pos parenleft bracketright -20;
+ pos parenleft hyphen -175;
+ pos parenleft endash -175;
+ pos parenleft emdash -175;
+ pos parenleft underscore -20;
+ pos parenleft quotesinglbase -55;
+ pos parenleft quotedblbase -55;
+ pos parenleft quotedblleft -35;
+ pos parenleft quotedblright -20;
+ pos parenleft quoteleft -35;
+ pos parenleft quoteright -20;
+ pos parenleft guillemetleft -175;
+ pos parenleft guillemetright -135;
+ pos parenleft guilsinglleft -165;
+ pos parenleft guilsinglright -135;
+ pos parenleft quotedbl -20;
+ pos parenleft quotesingle -20;
+ pos parenleft cent -175;
+ pos parenleft dollar -75;
+ pos parenleft euro -180;
+ pos parenleft sterling -125;
+ pos parenleft yen -30;
+ pos parenleft plus -155;
+ pos parenleft minus -155;
+ pos parenleft multiply -180;
+ pos parenleft divide -155;
+ pos parenleft equal -105;
+ pos parenleft greater -20;
+ pos parenleft less -160;
+ pos parenleft asciitilde -180;
+ pos parenleft asciicircum -150;
+ pos parenleft percent -35;
+ pos parenleft perthousand -35;
+ pos parenleft at -175;
+ pos parenleft ampersand -150;
+ pos parenleft paragraph -50;
+ pos parenleft copyright -160;
+ pos parenleft registered -80;
+ pos parenleft trademark -65;
+ pos parenleft degree -25;
+ pos parenleft bar -20;
+ pos parenright comma -50;
+ pos parenright colon -30;
+ pos parenright semicolon -40;
+ pos parenright ellipsis -45;
+ pos parenright question -140;
+ pos parenright questiondown -45;
+ pos parenright asterisk -35;
+ pos parenright numbersign -65;
+ pos parenright slash -75;
+ pos parenright backslash -140;
+ pos parenright parenright -130;
+ pos parenright braceleft -65;
+ pos parenright braceright -60;
+ pos parenright underscore -85;
+ pos parenright quotesinglbase -50;
+ pos parenright quotedblbase -50;
+ pos parenright quotedblleft -50;
+ pos parenright quotedblright -75;
+ pos parenright quoteleft -50;
+ pos parenright quoteright -75;
+ pos parenright guillemetright -30;
+ pos parenright guilsinglright -30;
+ pos parenright quotedbl -50;
+ pos parenright quotesingle -50;
+ pos parenright dollar -65;
+ pos parenright euro -90;
+ pos parenright sterling -35;
+ pos parenright yen -60;
+ pos parenright multiply -50;
+ pos parenright asciitilde -35;
+ pos parenright asciicircum -25;
+ pos parenright percent -40;
+ pos parenright perthousand -40;
+ pos parenright paragraph -30;
+ pos parenright registered -15;
+ pos parenright trademark -50;
+ pos parenright degree -60;
+ pos braceleft comma -60;
+ pos braceleft colon -60;
+ pos braceleft semicolon -65;
+ pos braceleft ellipsis -60;
+ pos braceleft question -80;
+ pos braceleft questiondown -60;
+ pos braceleft periodcentered -60;
+ pos braceleft bullet -60;
+ pos braceleft asterisk -60;
+ pos braceleft numbersign -115;
+ pos braceleft slash -45;
+ pos braceleft backslash -60;
+ pos braceleft parenleft -60;
+ pos braceleft parenright -80;
+ pos braceleft braceleft -125;
+ pos braceleft braceright -120;
+ pos braceleft bracketleft -60;
+ pos braceleft bracketright -60;
+ pos braceleft hyphen -60;
+ pos braceleft endash -60;
+ pos braceleft emdash -60;
+ pos braceleft underscore -60;
+ pos braceleft quotesinglbase -60;
+ pos braceleft quotedblbase -60;
+ pos braceleft quotedblleft -60;
+ pos braceleft quotedblright -65;
+ pos braceleft quoteleft -60;
+ pos braceleft quoteright -65;
+ pos braceleft guillemetleft -55;
+ pos braceleft guillemetright -60;
+ pos braceleft guilsinglleft -55;
+ pos braceleft guilsinglright -60;
+ pos braceleft quotedbl -60;
+ pos braceleft quotesingle -60;
+ pos braceleft cent -60;
+ pos braceleft dollar -90;
+ pos braceleft euro -150;
+ pos braceleft sterling -95;
+ pos braceleft yen -70;
+ pos braceleft plus -60;
+ pos braceleft minus -60;
+ pos braceleft multiply -105;
+ pos braceleft divide -60;
+ pos braceleft equal -60;
+ pos braceleft greater -60;
+ pos braceleft less -60;
+ pos braceleft asciitilde -90;
+ pos braceleft asciicircum -65;
+ pos braceleft percent -60;
+ pos braceleft perthousand -60;
+ pos braceleft at -60;
+ pos braceleft ampersand -60;
+ pos braceleft paragraph -60;
+ pos braceleft copyright -60;
+ pos braceleft registered -60;
+ pos braceleft trademark -60;
+ pos braceleft degree -60;
+ pos braceleft bar -60;
+ pos braceright comma -110;
+ pos braceright colon -105;
+ pos braceright semicolon -110;
+ pos braceright ellipsis -110;
+ pos braceright question -145;
+ pos braceright questiondown -110;
+ pos braceright periodcentered -65;
+ pos braceright bullet -65;
+ pos braceright asterisk -110;
+ pos braceright numbersign -130;
+ pos braceright slash -100;
+ pos braceright backslash -160;
+ pos braceright parenleft -65;
+ pos braceright parenright -140;
+ pos braceright braceleft -135;
+ pos braceright braceright -125;
+ pos braceright bracketleft -65;
+ pos braceright bracketright -65;
+ pos braceright hyphen -65;
+ pos braceright endash -65;
+ pos braceright emdash -65;
+ pos braceright underscore -110;
+ pos braceright quotesinglbase -110;
+ pos braceright quotedblbase -110;
+ pos braceright quotedblleft -110;
+ pos braceright quotedblright -115;
+ pos braceright quoteleft -110;
+ pos braceright quoteright -115;
+ pos braceright guillemetleft -60;
+ pos braceright guillemetright -110;
+ pos braceright guilsinglleft -60;
+ pos braceright guilsinglright -110;
+ pos braceright quotedbl -115;
+ pos braceright quotesingle -110;
+ pos braceright cent -65;
+ pos braceright dollar -140;
+ pos braceright euro -160;
+ pos braceright sterling -100;
+ pos braceright yen -120;
+ pos braceright plus -65;
+ pos braceright minus -65;
+ pos braceright multiply -115;
+ pos braceright divide -65;
+ pos braceright equal -65;
+ pos braceright greater -65;
+ pos braceright less -65;
+ pos braceright asciitilde -100;
+ pos braceright asciicircum -115;
+ pos braceright percent -110;
+ pos braceright perthousand -110;
+ pos braceright at -65;
+ pos braceright ampersand -65;
+ pos braceright paragraph -110;
+ pos braceright copyright -65;
+ pos braceright registered -75;
+ pos braceright trademark -110;
+ pos braceright degree -110;
+ pos braceright bar -65;
+ pos bracketleft question -20;
+ pos bracketleft numbersign -55;
+ pos bracketleft slash 15;
+ pos bracketleft backslash 10;
+ pos bracketleft parenright -20;
+ pos bracketleft braceleft -65;
+ pos bracketleft braceright -60;
+ pos bracketleft dollar -30;
+ pos bracketleft euro -90;
+ pos bracketleft sterling -35;
+ pos bracketleft multiply -45;
+ pos bracketleft asciitilde -30;
+ pos bracketright question -20;
+ pos bracketright numbersign -55;
+ pos bracketright slash 15;
+ pos bracketright backslash 10;
+ pos bracketright parenright -20;
+ pos bracketright braceleft -65;
+ pos bracketright braceright -60;
+ pos bracketright dollar -30;
+ pos bracketright euro -90;
+ pos bracketright sterling -35;
+ pos bracketright multiply -45;
+ pos bracketright asciitilde -30;
+ pos hyphen comma -115;
+ pos hyphen colon -105;
+ pos hyphen semicolon -110;
+ pos hyphen ellipsis -195;
+ pos hyphen question -175;
+ pos hyphen questiondown -110;
+ pos hyphen asterisk -155;
+ pos hyphen numbersign -70;
+ pos hyphen slash -100;
+ pos hyphen backslash -155;
+ pos hyphen parenright -175;
+ pos hyphen braceleft -65;
+ pos hyphen braceright -60;
+ pos hyphen underscore -195;
+ pos hyphen quotesinglbase -115;
+ pos hyphen quotedblbase -195;
+ pos hyphen quotedblleft -195;
+ pos hyphen quotedblright -195;
+ pos hyphen quoteleft -115;
+ pos hyphen quoteright -115;
+ pos hyphen guillemetright -80;
+ pos hyphen guilsinglright -80;
+ pos hyphen quotedbl -195;
+ pos hyphen quotesingle -110;
+ pos hyphen dollar -105;
+ pos hyphen euro -90;
+ pos hyphen sterling -35;
+ pos hyphen yen -55;
+ pos hyphen multiply -45;
+ pos hyphen asciitilde -30;
+ pos hyphen asciicircum -195;
+ pos hyphen percent -65;
+ pos hyphen perthousand -65;
+ pos hyphen paragraph -50;
+ pos hyphen registered -15;
+ pos hyphen trademark -125;
+ pos hyphen degree -195;
+ pos endash comma -115;
+ pos endash colon -105;
+ pos endash semicolon -110;
+ pos endash ellipsis -290;
+ pos endash question -175;
+ pos endash questiondown -110;
+ pos endash asterisk -155;
+ pos endash numbersign -70;
+ pos endash slash -100;
+ pos endash backslash -155;
+ pos endash parenright -175;
+ pos endash braceleft -65;
+ pos endash braceright -60;
+ pos endash underscore -295;
+ pos endash quotesinglbase -115;
+ pos endash quotedblbase -205;
+ pos endash quotedblleft -205;
+ pos endash quotedblright -205;
+ pos endash quoteleft -115;
+ pos endash quoteright -115;
+ pos endash guillemetright -80;
+ pos endash guilsinglright -80;
+ pos endash quotedbl -200;
+ pos endash quotesingle -110;
+ pos endash dollar -105;
+ pos endash euro -90;
+ pos endash sterling -35;
+ pos endash yen -55;
+ pos endash multiply -45;
+ pos endash asciitilde -30;
+ pos endash asciicircum -260;
+ pos endash percent -65;
+ pos endash perthousand -65;
+ pos endash paragraph -50;
+ pos endash registered -15;
+ pos endash trademark -125;
+ pos endash degree -215;
+ pos emdash comma -115;
+ pos emdash colon -105;
+ pos emdash semicolon -110;
+ pos emdash ellipsis -290;
+ pos emdash question -175;
+ pos emdash questiondown -110;
+ pos emdash asterisk -155;
+ pos emdash numbersign -70;
+ pos emdash slash -100;
+ pos emdash backslash -155;
+ pos emdash parenright -175;
+ pos emdash braceleft -65;
+ pos emdash braceright -60;
+ pos emdash underscore -365;
+ pos emdash quotesinglbase -115;
+ pos emdash quotedblbase -205;
+ pos emdash quotedblleft -205;
+ pos emdash quotedblright -205;
+ pos emdash quoteleft -115;
+ pos emdash quoteright -115;
+ pos emdash guillemetright -80;
+ pos emdash guilsinglright -80;
+ pos emdash quotedbl -200;
+ pos emdash quotesingle -110;
+ pos emdash dollar -105;
+ pos emdash euro -90;
+ pos emdash sterling -35;
+ pos emdash yen -55;
+ pos emdash multiply -45;
+ pos emdash asciitilde -30;
+ pos emdash asciicircum -260;
+ pos emdash percent -65;
+ pos emdash perthousand -65;
+ pos emdash paragraph -50;
+ pos emdash registered -15;
+ pos emdash trademark -125;
+ pos emdash degree -215;
+ pos underscore colon -20;
+ pos underscore ellipsis -15;
+ pos underscore question -200;
+ pos underscore periodcentered -105;
+ pos underscore bullet -175;
+ pos underscore asterisk -190;
+ pos underscore numbersign -360;
+ pos underscore slash 15;
+ pos underscore backslash -240;
+ pos underscore parenleft -85;
+ pos underscore parenright -20;
+ pos underscore braceleft -110;
+ pos underscore braceright -60;
+ pos underscore hyphen -195;
+ pos underscore endash -295;
+ pos underscore emdash -365;
+ pos underscore quotedblleft -205;
+ pos underscore quotedblright -205;
+ pos underscore quoteleft -115;
+ pos underscore quoteright -115;
+ pos underscore guillemetleft -240;
+ pos underscore guillemetright -240;
+ pos underscore guilsinglleft -165;
+ pos underscore guilsinglright -165;
+ pos underscore quotedbl -200;
+ pos underscore quotesingle -110;
+ pos underscore cent -145;
+ pos underscore dollar -120;
+ pos underscore euro -365;
+ pos underscore sterling -325;
+ pos underscore yen -365;
+ pos underscore plus -305;
+ pos underscore minus -330;
+ pos underscore multiply -255;
+ pos underscore divide -310;
+ pos underscore equal -330;
+ pos underscore greater -310;
+ pos underscore less -310;
+ pos underscore asciitilde -240;
+ pos underscore asciicircum -260;
+ pos underscore percent -365;
+ pos underscore perthousand -365;
+ pos underscore at -115;
+ pos underscore ampersand -145;
+ pos underscore paragraph -220;
+ pos underscore copyright -125;
+ pos underscore registered -330;
+ pos underscore trademark -365;
+ pos underscore degree -215;
+ pos quotesinglbase question -115;
+ pos quotesinglbase periodcentered -105;
+ pos quotesinglbase bullet -115;
+ pos quotesinglbase asterisk -115;
+ pos quotesinglbase numbersign -90;
+ pos quotesinglbase backslash -115;
+ pos quotesinglbase parenleft -45;
+ pos quotesinglbase parenright -40;
+ pos quotesinglbase braceleft -110;
+ pos quotesinglbase braceright -60;
+ pos quotesinglbase hyphen -115;
+ pos quotesinglbase endash -115;
+ pos quotesinglbase emdash -115;
+ pos quotesinglbase quotedblleft -115;
+ pos quotesinglbase quotedblright -115;
+ pos quotesinglbase quoteleft -115;
+ pos quotesinglbase quoteright -115;
+ pos quotesinglbase guillemetleft -115;
+ pos quotesinglbase guillemetright -15;
+ pos quotesinglbase guilsinglleft -115;
+ pos quotesinglbase guilsinglright -15;
+ pos quotesinglbase quotedbl -115;
+ pos quotesinglbase quotesingle -110;
+ pos quotesinglbase cent -60;
+ pos quotesinglbase dollar -35;
+ pos quotesinglbase euro -115;
+ pos quotesinglbase sterling -35;
+ pos quotesinglbase yen -60;
+ pos quotesinglbase plus -115;
+ pos quotesinglbase minus -115;
+ pos quotesinglbase multiply -115;
+ pos quotesinglbase divide -115;
+ pos quotesinglbase equal -115;
+ pos quotesinglbase less -115;
+ pos quotesinglbase asciitilde -115;
+ pos quotesinglbase asciicircum -115;
+ pos quotesinglbase percent -105;
+ pos quotesinglbase perthousand -105;
+ pos quotesinglbase at -55;
+ pos quotesinglbase ampersand -45;
+ pos quotesinglbase paragraph -115;
+ pos quotesinglbase copyright -60;
+ pos quotesinglbase registered -115;
+ pos quotesinglbase trademark -115;
+ pos quotesinglbase degree -115;
+ pos quotedblbase question -175;
+ pos quotedblbase periodcentered -105;
+ pos quotedblbase bullet -175;
+ pos quotedblbase asterisk -190;
+ pos quotedblbase numbersign -90;
+ pos quotedblbase backslash -205;
+ pos quotedblbase parenleft -45;
+ pos quotedblbase parenright -40;
+ pos quotedblbase braceleft -110;
+ pos quotedblbase braceright -60;
+ pos quotedblbase hyphen -195;
+ pos quotedblbase endash -205;
+ pos quotedblbase emdash -205;
+ pos quotedblbase quotedblleft -205;
+ pos quotedblbase quotedblright -205;
+ pos quotedblbase quoteleft -115;
+ pos quotedblbase quoteright -115;
+ pos quotedblbase guillemetleft -155;
+ pos quotedblbase guillemetright -15;
+ pos quotedblbase guilsinglleft -155;
+ pos quotedblbase guilsinglright -15;
+ pos quotedblbase quotedbl -200;
+ pos quotedblbase quotesingle -110;
+ pos quotedblbase cent -60;
+ pos quotedblbase dollar -35;
+ pos quotedblbase euro -205;
+ pos quotedblbase sterling -35;
+ pos quotedblbase yen -60;
+ pos quotedblbase plus -205;
+ pos quotedblbase minus -205;
+ pos quotedblbase multiply -200;
+ pos quotedblbase divide -205;
+ pos quotedblbase equal -205;
+ pos quotedblbase less -205;
+ pos quotedblbase asciitilde -205;
+ pos quotedblbase asciicircum -205;
+ pos quotedblbase percent -105;
+ pos quotedblbase perthousand -105;
+ pos quotedblbase at -55;
+ pos quotedblbase ampersand -45;
+ pos quotedblbase paragraph -205;
+ pos quotedblbase copyright -60;
+ pos quotedblbase registered -205;
+ pos quotedblbase trademark -205;
+ pos quotedblbase degree -205;
+ pos quotedblleft comma -115;
+ pos quotedblleft colon -10;
+ pos quotedblleft semicolon -20;
+ pos quotedblleft ellipsis -205;
+ pos quotedblleft question -60;
+ pos quotedblleft questiondown -205;
+ pos quotedblleft periodcentered -105;
+ pos quotedblleft bullet -115;
+ pos quotedblleft numbersign -145;
+ pos quotedblleft slash -205;
+ pos quotedblleft backslash -55;
+ pos quotedblleft parenleft -55;
+ pos quotedblleft parenright -50;
+ pos quotedblleft braceleft -110;
+ pos quotedblleft braceright -65;
+ pos quotedblleft hyphen -195;
+ pos quotedblleft endash -205;
+ pos quotedblleft emdash -205;
+ pos quotedblleft underscore -205;
+ pos quotedblleft quotesinglbase -115;
+ pos quotedblleft quotedblbase -205;
+ pos quotedblleft quotedblright -10;
+ pos quotedblleft quoteright -10;
+ pos quotedblleft guillemetleft -200;
+ pos quotedblleft guillemetright -70;
+ pos quotedblleft guilsinglleft -165;
+ pos quotedblleft guilsinglright -70;
+ pos quotedblleft quotedbl -10;
+ pos quotedblleft quotesingle -10;
+ pos quotedblleft cent -75;
+ pos quotedblleft dollar -35;
+ pos quotedblleft euro -95;
+ pos quotedblleft sterling -85;
+ pos quotedblleft yen -20;
+ pos quotedblleft plus -205;
+ pos quotedblleft minus -205;
+ pos quotedblleft multiply -75;
+ pos quotedblleft divide -205;
+ pos quotedblleft less -135;
+ pos quotedblleft asciitilde -135;
+ pos quotedblleft asciicircum -50;
+ pos quotedblleft at -65;
+ pos quotedblleft ampersand -115;
+ pos quotedblleft copyright -55;
+ pos quotedblleft registered -15;
+ pos quotedblright comma -115;
+ pos quotedblright colon -30;
+ pos quotedblright semicolon -35;
+ pos quotedblright ellipsis -205;
+ pos quotedblright question -20;
+ pos quotedblright questiondown -205;
+ pos quotedblright periodcentered -105;
+ pos quotedblright bullet -125;
+ pos quotedblright numbersign -160;
+ pos quotedblright slash -205;
+ pos quotedblright backslash -30;
+ pos quotedblright parenleft -75;
+ pos quotedblright parenright -20;
+ pos quotedblright braceleft -115;
+ pos quotedblright braceright -60;
+ pos quotedblright hyphen -195;
+ pos quotedblright endash -205;
+ pos quotedblright emdash -205;
+ pos quotedblright underscore -205;
+ pos quotedblright quotesinglbase -115;
+ pos quotedblright quotedblbase -205;
+ pos quotedblright guillemetleft -205;
+ pos quotedblright guillemetright -80;
+ pos quotedblright guilsinglleft -165;
+ pos quotedblright guilsinglright -80;
+ pos quotedblright cent -100;
+ pos quotedblright dollar -40;
+ pos quotedblright euro -110;
+ pos quotedblright sterling -95;
+ pos quotedblright yen -10;
+ pos quotedblright plus -205;
+ pos quotedblright minus -205;
+ pos quotedblright multiply -95;
+ pos quotedblright divide -205;
+ pos quotedblright equal -20;
+ pos quotedblright less -150;
+ pos quotedblright asciitilde -150;
+ pos quotedblright asciicircum -75;
+ pos quotedblright at -85;
+ pos quotedblright ampersand -115;
+ pos quotedblright paragraph -10;
+ pos quotedblright copyright -75;
+ pos quotedblright registered -30;
+ pos quoteleft comma -115;
+ pos quoteleft colon -10;
+ pos quoteleft semicolon -20;
+ pos quoteleft ellipsis -115;
+ pos quoteleft question -60;
+ pos quoteleft questiondown -115;
+ pos quoteleft periodcentered -105;
+ pos quoteleft bullet -115;
+ pos quoteleft numbersign -115;
+ pos quoteleft slash -115;
+ pos quoteleft backslash -55;
+ pos quoteleft parenleft -55;
+ pos quoteleft parenright -50;
+ pos quoteleft braceleft -110;
+ pos quoteleft braceright -65;
+ pos quoteleft hyphen -115;
+ pos quoteleft endash -115;
+ pos quoteleft emdash -115;
+ pos quoteleft underscore -115;
+ pos quoteleft quotesinglbase -115;
+ pos quoteleft quotedblbase -115;
+ pos quoteleft quotedblright -10;
+ pos quoteleft quoteright -10;
+ pos quoteleft guillemetleft -115;
+ pos quoteleft guillemetright -70;
+ pos quoteleft guilsinglleft -115;
+ pos quoteleft guilsinglright -70;
+ pos quoteleft quotedbl -10;
+ pos quoteleft quotesingle -10;
+ pos quoteleft cent -75;
+ pos quoteleft dollar -35;
+ pos quoteleft euro -95;
+ pos quoteleft sterling -85;
+ pos quoteleft yen -20;
+ pos quoteleft plus -115;
+ pos quoteleft minus -115;
+ pos quoteleft multiply -75;
+ pos quoteleft divide -115;
+ pos quoteleft less -115;
+ pos quoteleft asciitilde -115;
+ pos quoteleft asciicircum -50;
+ pos quoteleft at -65;
+ pos quoteleft ampersand -115;
+ pos quoteleft copyright -55;
+ pos quoteleft registered -15;
+ pos quoteright comma -115;
+ pos quoteright colon -30;
+ pos quoteright semicolon -35;
+ pos quoteright ellipsis -115;
+ pos quoteright question -20;
+ pos quoteright questiondown -115;
+ pos quoteright periodcentered -105;
+ pos quoteright bullet -115;
+ pos quoteright numbersign -115;
+ pos quoteright slash -115;
+ pos quoteright backslash -30;
+ pos quoteright parenleft -75;
+ pos quoteright parenright -20;
+ pos quoteright braceleft -115;
+ pos quoteright braceright -60;
+ pos quoteright hyphen -115;
+ pos quoteright endash -115;
+ pos quoteright emdash -115;
+ pos quoteright underscore -115;
+ pos quoteright quotesinglbase -115;
+ pos quoteright quotedblbase -115;
+ pos quoteright guillemetleft -115;
+ pos quoteright guillemetright -80;
+ pos quoteright guilsinglleft -115;
+ pos quoteright guilsinglright -80;
+ pos quoteright cent -100;
+ pos quoteright dollar -40;
+ pos quoteright euro -110;
+ pos quoteright sterling -95;
+ pos quoteright yen -10;
+ pos quoteright plus -115;
+ pos quoteright minus -115;
+ pos quoteright multiply -95;
+ pos quoteright divide -115;
+ pos quoteright equal -20;
+ pos quoteright less -115;
+ pos quoteright asciitilde -115;
+ pos quoteright asciicircum -75;
+ pos quoteright at -85;
+ pos quoteright ampersand -115;
+ pos quoteright paragraph -10;
+ pos quoteright copyright -75;
+ pos quoteright registered -30;
+ pos guillemetleft comma -20;
+ pos guillemetleft colon -15;
+ pos guillemetleft semicolon -20;
+ pos guillemetleft ellipsis -15;
+ pos guillemetleft question -185;
+ pos guillemetleft questiondown -10;
+ pos guillemetleft periodcentered -105;
+ pos guillemetleft bullet -60;
+ pos guillemetleft asterisk -30;
+ pos guillemetleft numbersign -110;
+ pos guillemetleft slash -45;
+ pos guillemetleft backslash -130;
+ pos guillemetleft parenleft -30;
+ pos guillemetleft parenright -135;
+ pos guillemetleft braceleft -110;
+ pos guillemetleft braceright -60;
+ pos guillemetleft hyphen -80;
+ pos guillemetleft endash -80;
+ pos guillemetleft emdash -80;
+ pos guillemetleft underscore -240;
+ pos guillemetleft quotesinglbase -20;
+ pos guillemetleft quotedblbase -20;
+ pos guillemetleft quotedblleft -60;
+ pos guillemetleft quotedblright -175;
+ pos guillemetleft quoteleft -60;
+ pos guillemetleft quoteright -115;
+ pos guillemetleft guillemetleft -150;
+ pos guillemetleft guilsinglleft -150;
+ pos guillemetleft quotedbl -200;
+ pos guillemetleft quotesingle -110;
+ pos guillemetleft cent -40;
+ pos guillemetleft dollar -55;
+ pos guillemetleft euro -100;
+ pos guillemetleft sterling -70;
+ pos guillemetleft yen -50;
+ pos guillemetleft plus -25;
+ pos guillemetleft minus -25;
+ pos guillemetleft multiply -70;
+ pos guillemetleft divide -25;
+ pos guillemetleft equal -10;
+ pos guillemetleft less -35;
+ pos guillemetleft asciitilde -80;
+ pos guillemetleft asciicircum -15;
+ pos guillemetleft percent -25;
+ pos guillemetleft perthousand -25;
+ pos guillemetleft at -35;
+ pos guillemetleft ampersand -35;
+ pos guillemetleft paragraph -20;
+ pos guillemetleft copyright -30;
+ pos guillemetleft registered -10;
+ pos guillemetleft trademark -135;
+ pos guillemetleft degree -65;
+ pos guillemetright comma -115;
+ pos guillemetright colon -105;
+ pos guillemetright semicolon -110;
+ pos guillemetright ellipsis -160;
+ pos guillemetright question -170;
+ pos guillemetright questiondown -135;
+ pos guillemetright asterisk -165;
+ pos guillemetright numbersign -75;
+ pos guillemetright slash -115;
+ pos guillemetright backslash -190;
+ pos guillemetright parenright -175;
+ pos guillemetright braceleft -60;
+ pos guillemetright braceright -55;
+ pos guillemetright underscore -240;
+ pos guillemetright quotesinglbase -115;
+ pos guillemetright quotedblbase -160;
+ pos guillemetright quotedblleft -190;
+ pos guillemetright quotedblright -205;
+ pos guillemetright quoteleft -115;
+ pos guillemetright quoteright -115;
+ pos guillemetright guillemetleft 10;
+ pos guillemetright guillemetright -150;
+ pos guillemetright guilsinglleft 10;
+ pos guillemetright guilsinglright -150;
+ pos guillemetright quotedbl -200;
+ pos guillemetright quotesingle -110;
+ pos guillemetright dollar -175;
+ pos guillemetright euro -85;
+ pos guillemetright sterling -30;
+ pos guillemetright yen -50;
+ pos guillemetright multiply -55;
+ pos guillemetright less -35;
+ pos guillemetright asciitilde -85;
+ pos guillemetright asciicircum -145;
+ pos guillemetright percent -135;
+ pos guillemetright perthousand -135;
+ pos guillemetright paragraph -120;
+ pos guillemetright registered -50;
+ pos guillemetright trademark -145;
+ pos guillemetright degree -200;
+ pos guilsinglleft comma -20;
+ pos guilsinglleft colon -15;
+ pos guilsinglleft semicolon -20;
+ pos guilsinglleft ellipsis -15;
+ pos guilsinglleft question -165;
+ pos guilsinglleft questiondown -10;
+ pos guilsinglleft periodcentered -105;
+ pos guilsinglleft bullet -60;
+ pos guilsinglleft asterisk -30;
+ pos guilsinglleft numbersign -110;
+ pos guilsinglleft slash -45;
+ pos guilsinglleft backslash -130;
+ pos guilsinglleft parenleft -30;
+ pos guilsinglleft parenright -135;
+ pos guilsinglleft braceleft -110;
+ pos guilsinglleft braceright -60;
+ pos guilsinglleft hyphen -80;
+ pos guilsinglleft endash -80;
+ pos guilsinglleft emdash -80;
+ pos guilsinglleft underscore -165;
+ pos guilsinglleft quotesinglbase -20;
+ pos guilsinglleft quotedblbase -20;
+ pos guilsinglleft quotedblleft -60;
+ pos guilsinglleft quotedblright -165;
+ pos guilsinglleft quoteleft -60;
+ pos guilsinglleft quoteright -115;
+ pos guilsinglleft guillemetleft -150;
+ pos guilsinglleft guilsinglleft -150;
+ pos guilsinglleft quotedbl -165;
+ pos guilsinglleft quotesingle -110;
+ pos guilsinglleft cent -40;
+ pos guilsinglleft dollar -55;
+ pos guilsinglleft euro -100;
+ pos guilsinglleft sterling -70;
+ pos guilsinglleft yen -50;
+ pos guilsinglleft plus -25;
+ pos guilsinglleft minus -25;
+ pos guilsinglleft multiply -70;
+ pos guilsinglleft divide -25;
+ pos guilsinglleft equal -10;
+ pos guilsinglleft less -35;
+ pos guilsinglleft asciitilde -80;
+ pos guilsinglleft asciicircum -15;
+ pos guilsinglleft percent -25;
+ pos guilsinglleft perthousand -25;
+ pos guilsinglleft at -35;
+ pos guilsinglleft ampersand -35;
+ pos guilsinglleft paragraph -20;
+ pos guilsinglleft copyright -30;
+ pos guilsinglleft registered -10;
+ pos guilsinglleft trademark -135;
+ pos guilsinglleft degree -65;
+ pos guilsinglright comma -115;
+ pos guilsinglright colon -105;
+ pos guilsinglright semicolon -110;
+ pos guilsinglright ellipsis -160;
+ pos guilsinglright question -165;
+ pos guilsinglright questiondown -135;
+ pos guilsinglright asterisk -165;
+ pos guilsinglright numbersign -75;
+ pos guilsinglright slash -115;
+ pos guilsinglright backslash -165;
+ pos guilsinglright parenright -165;
+ pos guilsinglright braceleft -60;
+ pos guilsinglright braceright -55;
+ pos guilsinglright underscore -165;
+ pos guilsinglright quotesinglbase -115;
+ pos guilsinglright quotedblbase -160;
+ pos guilsinglright quotedblleft -165;
+ pos guilsinglright quotedblright -165;
+ pos guilsinglright quoteleft -115;
+ pos guilsinglright quoteright -115;
+ pos guilsinglright guillemetleft 10;
+ pos guilsinglright guillemetright -150;
+ pos guilsinglright guilsinglleft 10;
+ pos guilsinglright guilsinglright -150;
+ pos guilsinglright quotedbl -165;
+ pos guilsinglright quotesingle -110;
+ pos guilsinglright dollar -165;
+ pos guilsinglright euro -85;
+ pos guilsinglright sterling -30;
+ pos guilsinglright yen -50;
+ pos guilsinglright multiply -55;
+ pos guilsinglright less -35;
+ pos guilsinglright asciitilde -85;
+ pos guilsinglright asciicircum -145;
+ pos guilsinglright percent -135;
+ pos guilsinglright perthousand -135;
+ pos guilsinglright paragraph -120;
+ pos guilsinglright registered -50;
+ pos guilsinglright trademark -145;
+ pos guilsinglright degree -165;
+ pos quotedbl comma -115;
+ pos quotedbl colon -15;
+ pos quotedbl semicolon -20;
+ pos quotedbl ellipsis -200;
+ pos quotedbl question -20;
+ pos quotedbl questiondown -200;
+ pos quotedbl periodcentered -105;
+ pos quotedbl bullet -120;
+ pos quotedbl numbersign -145;
+ pos quotedbl slash -200;
+ pos quotedbl backslash -30;
+ pos quotedbl parenleft -50;
+ pos quotedbl parenright -20;
+ pos quotedbl braceleft -115;
+ pos quotedbl braceright -60;
+ pos quotedbl hyphen -195;
+ pos quotedbl endash -200;
+ pos quotedbl emdash -200;
+ pos quotedbl underscore -200;
+ pos quotedbl quotesinglbase -115;
+ pos quotedbl quotedblbase -200;
+ pos quotedbl guillemetleft -200;
+ pos quotedbl guillemetright -200;
+ pos quotedbl guilsinglleft -165;
+ pos quotedbl guilsinglright -165;
+ pos quotedbl cent -70;
+ pos quotedbl dollar -40;
+ pos quotedbl euro -100;
+ pos quotedbl sterling -90;
+ pos quotedbl yen -10;
+ pos quotedbl plus -200;
+ pos quotedbl minus -200;
+ pos quotedbl multiply -70;
+ pos quotedbl divide -200;
+ pos quotedbl equal -10;
+ pos quotedbl less -160;
+ pos quotedbl asciitilde -145;
+ pos quotedbl asciicircum -45;
+ pos quotedbl at -60;
+ pos quotedbl ampersand -115;
+ pos quotedbl paragraph -10;
+ pos quotedbl copyright -50;
+ pos quotedbl registered -15;
+ pos quotesingle comma -110;
+ pos quotesingle colon -15;
+ pos quotesingle semicolon -20;
+ pos quotesingle ellipsis -110;
+ pos quotesingle question -20;
+ pos quotesingle questiondown -110;
+ pos quotesingle periodcentered -105;
+ pos quotesingle bullet -110;
+ pos quotesingle numbersign -110;
+ pos quotesingle slash -110;
+ pos quotesingle backslash -30;
+ pos quotesingle parenleft -50;
+ pos quotesingle parenright -20;
+ pos quotesingle braceleft -110;
+ pos quotesingle braceright -60;
+ pos quotesingle hyphen -110;
+ pos quotesingle endash -110;
+ pos quotesingle emdash -110;
+ pos quotesingle underscore -110;
+ pos quotesingle quotesinglbase -110;
+ pos quotesingle quotedblbase -110;
+ pos quotesingle guillemetleft -110;
+ pos quotesingle guillemetright -110;
+ pos quotesingle guilsinglleft -110;
+ pos quotesingle guilsinglright -110;
+ pos quotesingle cent -70;
+ pos quotesingle dollar -40;
+ pos quotesingle euro -100;
+ pos quotesingle sterling -90;
+ pos quotesingle yen -10;
+ pos quotesingle plus -110;
+ pos quotesingle minus -110;
+ pos quotesingle multiply -70;
+ pos quotesingle divide -110;
+ pos quotesingle equal -10;
+ pos quotesingle less -110;
+ pos quotesingle asciitilde -110;
+ pos quotesingle asciicircum -45;
+ pos quotesingle at -60;
+ pos quotesingle ampersand -110;
+ pos quotesingle paragraph -10;
+ pos quotesingle copyright -50;
+ pos quotesingle registered -15;
+ pos cent question -155;
+ pos cent numbersign -55;
+ pos cent slash -25;
+ pos cent backslash -90;
+ pos cent parenright -105;
+ pos cent braceleft -65;
+ pos cent braceright -60;
+ pos cent underscore -65;
+ pos cent quotedblright -50;
+ pos cent quoteright -50;
+ pos cent quotedbl -10;
+ pos cent quotesingle -10;
+ pos cent dollar -30;
+ pos cent euro -90;
+ pos cent sterling -35;
+ pos cent yen -30;
+ pos cent multiply -45;
+ pos cent asciitilde -30;
+ pos cent degree -15;
+ pos dollar comma -40;
+ pos dollar colon -35;
+ pos dollar semicolon -40;
+ pos dollar ellipsis -35;
+ pos dollar question -95;
+ pos dollar questiondown -30;
+ pos dollar periodcentered -10;
+ pos dollar bullet -15;
+ pos dollar asterisk -80;
+ pos dollar numbersign -55;
+ pos dollar slash -65;
+ pos dollar backslash -65;
+ pos dollar parenright -105;
+ pos dollar braceleft -65;
+ pos dollar braceright -60;
+ pos dollar underscore -115;
+ pos dollar quotesinglbase -40;
+ pos dollar quotedblbase -40;
+ pos dollar quotedblleft -90;
+ pos dollar quotedblright -65;
+ pos dollar quoteleft -90;
+ pos dollar quoteright -65;
+ pos dollar guillemetright -25;
+ pos dollar guilsinglright -25;
+ pos dollar quotedbl -65;
+ pos dollar quotesingle -65;
+ pos dollar dollar -80;
+ pos dollar euro -90;
+ pos dollar sterling -40;
+ pos dollar yen -55;
+ pos dollar plus -15;
+ pos dollar minus -15;
+ pos dollar multiply -50;
+ pos dollar divide -15;
+ pos dollar less -30;
+ pos dollar asciitilde -75;
+ pos dollar asciicircum -190;
+ pos dollar percent -90;
+ pos dollar perthousand -90;
+ pos dollar paragraph -110;
+ pos dollar registered -55;
+ pos dollar trademark -125;
+ pos dollar degree -75;
+ pos euro comma -45;
+ pos euro semicolon -10;
+ pos euro ellipsis -40;
+ pos euro question -65;
+ pos euro questiondown -30;
+ pos euro numbersign -55;
+ pos euro slash -60;
+ pos euro backslash -55;
+ pos euro parenright -55;
+ pos euro braceleft -65;
+ pos euro braceright -60;
+ pos euro underscore -190;
+ pos euro quotesinglbase -45;
+ pos euro quotedblbase -45;
+ pos euro guillemetright -10;
+ pos euro guilsinglright -10;
+ pos euro dollar -30;
+ pos euro euro -90;
+ pos euro sterling -35;
+ pos euro yen -20;
+ pos euro multiply -45;
+ pos euro asciitilde -30;
+ pos sterling comma -35;
+ pos sterling colon -35;
+ pos sterling semicolon -40;
+ pos sterling ellipsis -35;
+ pos sterling question -85;
+ pos sterling questiondown -35;
+ pos sterling periodcentered -35;
+ pos sterling bullet -35;
+ pos sterling asterisk -35;
+ pos sterling numbersign -85;
+ pos sterling slash -50;
+ pos sterling backslash -95;
+ pos sterling parenleft -35;
+ pos sterling parenright -80;
+ pos sterling braceleft -100;
+ pos sterling braceright -95;
+ pos sterling bracketleft -35;
+ pos sterling bracketright -35;
+ pos sterling hyphen -35;
+ pos sterling endash -35;
+ pos sterling emdash -35;
+ pos sterling underscore -325;
+ pos sterling quotesinglbase -35;
+ pos sterling quotedblbase -35;
+ pos sterling quotedblleft -35;
+ pos sterling quotedblright -40;
+ pos sterling quoteleft -35;
+ pos sterling quoteright -40;
+ pos sterling guillemetleft -30;
+ pos sterling guillemetright -35;
+ pos sterling guilsinglleft -30;
+ pos sterling guilsinglright -35;
+ pos sterling quotedbl -40;
+ pos sterling quotesingle -40;
+ pos sterling cent -35;
+ pos sterling dollar -65;
+ pos sterling euro -125;
+ pos sterling sterling -70;
+ pos sterling yen -55;
+ pos sterling plus -35;
+ pos sterling minus -35;
+ pos sterling multiply -75;
+ pos sterling divide -35;
+ pos sterling equal -35;
+ pos sterling greater -35;
+ pos sterling less -35;
+ pos sterling asciitilde -65;
+ pos sterling asciicircum -40;
+ pos sterling percent -35;
+ pos sterling perthousand -35;
+ pos sterling at -35;
+ pos sterling ampersand -35;
+ pos sterling paragraph -35;
+ pos sterling copyright -35;
+ pos sterling registered -35;
+ pos sterling trademark -35;
+ pos sterling degree -35;
+ pos sterling bar -35;
+ pos yen comma -60;
+ pos yen colon -35;
+ pos yen semicolon -40;
+ pos yen ellipsis -60;
+ pos yen question -25;
+ pos yen questiondown -60;
+ pos yen periodcentered -60;
+ pos yen bullet -60;
+ pos yen asterisk -10;
+ pos yen numbersign -110;
+ pos yen slash -75;
+ pos yen backslash -10;
+ pos yen parenleft -60;
+ pos yen parenright -30;
+ pos yen braceleft -120;
+ pos yen braceright -70;
+ pos yen hyphen -55;
+ pos yen endash -55;
+ pos yen emdash -55;
+ pos yen underscore -365;
+ pos yen quotesinglbase -60;
+ pos yen quotedblbase -60;
+ pos yen quotedblleft -20;
+ pos yen quotedblright -10;
+ pos yen quoteleft -20;
+ pos yen quoteright -10;
+ pos yen guillemetleft -50;
+ pos yen guillemetright -50;
+ pos yen guilsinglleft -50;
+ pos yen guilsinglright -50;
+ pos yen quotedbl -10;
+ pos yen quotesingle -10;
+ pos yen cent -60;
+ pos yen dollar -55;
+ pos yen euro -120;
+ pos yen sterling -85;
+ pos yen plus -45;
+ pos yen minus -45;
+ pos yen multiply -80;
+ pos yen divide -45;
+ pos yen equal -30;
+ pos yen less -45;
+ pos yen asciitilde -90;
+ pos yen asciicircum -45;
+ pos yen percent -20;
+ pos yen perthousand -20;
+ pos yen at -60;
+ pos yen ampersand -60;
+ pos yen paragraph -25;
+ pos yen copyright -55;
+ pos yen registered -35;
+ pos yen trademark -20;
+ pos yen degree -15;
+ pos plus comma -115;
+ pos plus colon -25;
+ pos plus semicolon -35;
+ pos plus ellipsis -285;
+ pos plus question -175;
+ pos plus questiondown -200;
+ pos plus asterisk -50;
+ pos plus numbersign -85;
+ pos plus slash -125;
+ pos plus backslash -130;
+ pos plus parenright -155;
+ pos plus braceleft -65;
+ pos plus braceright -60;
+ pos plus underscore -305;
+ pos plus quotesinglbase -115;
+ pos plus quotedblbase -205;
+ pos plus quotedblleft -205;
+ pos plus quotedblright -205;
+ pos plus quoteleft -115;
+ pos plus quoteright -115;
+ pos plus guillemetright -25;
+ pos plus guilsinglright -25;
+ pos plus quotedbl -200;
+ pos plus quotesingle -110;
+ pos plus dollar -55;
+ pos plus euro -90;
+ pos plus sterling -35;
+ pos plus yen -45;
+ pos plus multiply -75;
+ pos plus asciitilde -30;
+ pos plus asciicircum -240;
+ pos plus percent -25;
+ pos plus perthousand -25;
+ pos plus ampersand -15;
+ pos plus paragraph -15;
+ pos plus trademark -125;
+ pos plus degree -85;
+ pos minus comma -115;
+ pos minus colon -25;
+ pos minus semicolon -35;
+ pos minus ellipsis -290;
+ pos minus question -175;
+ pos minus questiondown -200;
+ pos minus asterisk -50;
+ pos minus numbersign -85;
+ pos minus slash -125;
+ pos minus backslash -130;
+ pos minus parenright -155;
+ pos minus braceleft -65;
+ pos minus braceright -60;
+ pos minus underscore -330;
+ pos minus quotesinglbase -115;
+ pos minus quotedblbase -205;
+ pos minus quotedblleft -205;
+ pos minus quotedblright -205;
+ pos minus quoteleft -115;
+ pos minus quoteright -115;
+ pos minus guillemetright -25;
+ pos minus guilsinglright -25;
+ pos minus quotedbl -200;
+ pos minus quotesingle -110;
+ pos minus dollar -55;
+ pos minus euro -90;
+ pos minus sterling -35;
+ pos minus yen -45;
+ pos minus multiply -75;
+ pos minus asciitilde -30;
+ pos minus asciicircum -260;
+ pos minus percent -25;
+ pos minus perthousand -25;
+ pos minus ampersand -15;
+ pos minus paragraph -15;
+ pos minus trademark -125;
+ pos minus degree -85;
+ pos multiply comma -115;
+ pos multiply colon -45;
+ pos multiply semicolon -55;
+ pos multiply ellipsis -210;
+ pos multiply question -225;
+ pos multiply questiondown -170;
+ pos multiply periodcentered -55;
+ pos multiply bullet -60;
+ pos multiply asterisk -50;
+ pos multiply numbersign -120;
+ pos multiply slash -155;
+ pos multiply backslash -150;
+ pos multiply parenleft -50;
+ pos multiply parenright -180;
+ pos multiply braceleft -115;
+ pos multiply braceright -105;
+ pos multiply bracketleft -45;
+ pos multiply bracketright -45;
+ pos multiply hyphen -45;
+ pos multiply endash -45;
+ pos multiply emdash -45;
+ pos multiply underscore -255;
+ pos multiply quotesinglbase -115;
+ pos multiply quotedblbase -205;
+ pos multiply quotedblleft -70;
+ pos multiply quotedblright -145;
+ pos multiply quoteleft -70;
+ pos multiply quoteright -115;
+ pos multiply guillemetleft -55;
+ pos multiply guillemetright -70;
+ pos multiply guilsinglleft -55;
+ pos multiply guilsinglright -70;
+ pos multiply quotedbl -70;
+ pos multiply quotesingle -70;
+ pos multiply cent -50;
+ pos multiply dollar -80;
+ pos multiply euro -135;
+ pos multiply sterling -80;
+ pos multiply yen -80;
+ pos multiply plus -75;
+ pos multiply minus -75;
+ pos multiply multiply -85;
+ pos multiply divide -75;
+ pos multiply equal -45;
+ pos multiply greater -45;
+ pos multiply less -95;
+ pos multiply asciitilde -140;
+ pos multiply asciicircum -60;
+ pos multiply percent -50;
+ pos multiply perthousand -50;
+ pos multiply at -50;
+ pos multiply ampersand -50;
+ pos multiply paragraph -45;
+ pos multiply copyright -50;
+ pos multiply registered -45;
+ pos multiply trademark -95;
+ pos multiply degree -80;
+ pos multiply bar -45;
+ pos divide comma -115;
+ pos divide colon -25;
+ pos divide semicolon -35;
+ pos divide ellipsis -290;
+ pos divide question -175;
+ pos divide questiondown -200;
+ pos divide asterisk -50;
+ pos divide numbersign -85;
+ pos divide slash -125;
+ pos divide backslash -130;
+ pos divide parenright -155;
+ pos divide braceleft -65;
+ pos divide braceright -60;
+ pos divide underscore -310;
+ pos divide quotesinglbase -115;
+ pos divide quotedblbase -205;
+ pos divide quotedblleft -205;
+ pos divide quotedblright -205;
+ pos divide quoteleft -115;
+ pos divide quoteright -115;
+ pos divide guillemetright -25;
+ pos divide guilsinglright -25;
+ pos divide quotedbl -200;
+ pos divide quotesingle -110;
+ pos divide dollar -55;
+ pos divide euro -90;
+ pos divide sterling -35;
+ pos divide yen -45;
+ pos divide multiply -75;
+ pos divide asciitilde -30;
+ pos divide asciicircum -260;
+ pos divide percent -25;
+ pos divide perthousand -25;
+ pos divide ampersand -15;
+ pos divide paragraph -15;
+ pos divide trademark -125;
+ pos divide degree -85;
+ pos equal comma -115;
+ pos equal semicolon -10;
+ pos equal ellipsis -290;
+ pos equal question -175;
+ pos equal questiondown -55;
+ pos equal numbersign -55;
+ pos equal slash -80;
+ pos equal backslash -85;
+ pos equal parenright -105;
+ pos equal braceleft -65;
+ pos equal braceright -60;
+ pos equal underscore -330;
+ pos equal quotesinglbase -115;
+ pos equal quotedblbase -205;
+ pos equal quotedblright -50;
+ pos equal quoteright -50;
+ pos equal guillemetright -10;
+ pos equal guilsinglright -10;
+ pos equal quotedbl -10;
+ pos equal quotesingle -10;
+ pos equal dollar -30;
+ pos equal euro -90;
+ pos equal sterling -35;
+ pos equal yen -30;
+ pos equal multiply -45;
+ pos equal asciitilde -30;
+ pos equal degree -10;
+ pos greater comma -115;
+ pos greater colon -45;
+ pos greater semicolon -55;
+ pos greater ellipsis -290;
+ pos greater question -175;
+ pos greater questiondown -200;
+ pos greater periodcentered -10;
+ pos greater asterisk -90;
+ pos greater numbersign -95;
+ pos greater slash -150;
+ pos greater backslash -140;
+ pos greater parenright -165;
+ pos greater braceleft -65;
+ pos greater braceright -60;
+ pos greater underscore -310;
+ pos greater quotesinglbase -115;
+ pos greater quotedblbase -205;
+ pos greater quotedblleft -140;
+ pos greater quotedblright -205;
+ pos greater quoteleft -115;
+ pos greater quoteright -115;
+ pos greater guillemetleft -45;
+ pos greater guillemetright -45;
+ pos greater guilsinglleft -45;
+ pos greater guilsinglright -45;
+ pos greater quotedbl -175;
+ pos greater quotesingle -110;
+ pos greater dollar -65;
+ pos greater euro -90;
+ pos greater sterling -35;
+ pos greater yen -50;
+ pos greater multiply -105;
+ pos greater asciitilde -30;
+ pos greater asciicircum -85;
+ pos greater percent -35;
+ pos greater perthousand -35;
+ pos greater ampersand -40;
+ pos greater paragraph -25;
+ pos greater trademark -125;
+ pos greater degree -115;
+ pos less question -20;
+ pos less numbersign -55;
+ pos less slash -15;
+ pos less backslash -10;
+ pos less parenright -20;
+ pos less braceleft -65;
+ pos less braceright -60;
+ pos less underscore -310;
+ pos less dollar -30;
+ pos less euro -90;
+ pos less sterling -35;
+ pos less multiply -45;
+ pos less asciitilde -30;
+ pos asciitilde comma -115;
+ pos asciitilde colon -55;
+ pos asciitilde semicolon -65;
+ pos asciitilde ellipsis -240;
+ pos asciitilde question -210;
+ pos asciitilde questiondown -240;
+ pos asciitilde periodcentered -75;
+ pos asciitilde bullet -55;
+ pos asciitilde asterisk -75;
+ pos asciitilde numbersign -150;
+ pos asciitilde slash -210;
+ pos asciitilde backslash -160;
+ pos asciitilde parenleft -50;
+ pos asciitilde parenright -180;
+ pos asciitilde braceleft -115;
+ pos asciitilde braceright -90;
+ pos asciitilde bracketleft -30;
+ pos asciitilde bracketright -30;
+ pos asciitilde hyphen -50;
+ pos asciitilde endash -50;
+ pos asciitilde emdash -50;
+ pos asciitilde underscore -240;
+ pos asciitilde quotesinglbase -115;
+ pos asciitilde quotedblbase -205;
+ pos asciitilde quotedblleft -135;
+ pos asciitilde quotedblright -205;
+ pos asciitilde quoteleft -115;
+ pos asciitilde quoteright -115;
+ pos asciitilde guillemetleft -115;
+ pos asciitilde guillemetright -60;
+ pos asciitilde guilsinglleft -115;
+ pos asciitilde guilsinglright -60;
+ pos asciitilde quotedbl -200;
+ pos asciitilde quotesingle -110;
+ pos asciitilde cent -55;
+ pos asciitilde dollar -85;
+ pos asciitilde euro -125;
+ pos asciitilde sterling -75;
+ pos asciitilde yen -75;
+ pos asciitilde plus -30;
+ pos asciitilde minus -30;
+ pos asciitilde multiply -115;
+ pos asciitilde divide -30;
+ pos asciitilde equal -30;
+ pos asciitilde greater -30;
+ pos asciitilde less -35;
+ pos asciitilde asciitilde -85;
+ pos asciitilde asciicircum -95;
+ pos asciitilde percent -55;
+ pos asciitilde perthousand -55;
+ pos asciitilde at -50;
+ pos asciitilde ampersand -105;
+ pos asciitilde paragraph -50;
+ pos asciitilde copyright -45;
+ pos asciitilde registered -35;
+ pos asciitilde trademark -155;
+ pos asciitilde degree -110;
+ pos asciitilde bar -30;
+ pos asciicircum comma -115;
+ pos asciicircum colon -15;
+ pos asciicircum semicolon -25;
+ pos asciicircum ellipsis -260;
+ pos asciicircum question -155;
+ pos asciicircum questiondown -240;
+ pos asciicircum periodcentered -105;
+ pos asciicircum bullet -55;
+ pos asciicircum asterisk -25;
+ pos asciicircum numbersign -125;
+ pos asciicircum slash -200;
+ pos asciicircum backslash -125;
+ pos asciicircum parenleft -25;
+ pos asciicircum parenright -150;
+ pos asciicircum braceleft -115;
+ pos asciicircum braceright -65;
+ pos asciicircum hyphen -195;
+ pos asciicircum endash -260;
+ pos asciicircum emdash -260;
+ pos asciicircum underscore -260;
+ pos asciicircum quotesinglbase -115;
+ pos asciicircum quotedblbase -205;
+ pos asciicircum quotedblleft -45;
+ pos asciicircum quotedblright -85;
+ pos asciicircum quoteleft -45;
+ pos asciicircum quoteright -85;
+ pos asciicircum guillemetleft -145;
+ pos asciicircum guillemetright -15;
+ pos asciicircum guilsinglleft -145;
+ pos asciicircum guilsinglright -15;
+ pos asciicircum quotedbl -45;
+ pos asciicircum quotesingle -45;
+ pos asciicircum cent -35;
+ pos asciicircum dollar -50;
+ pos asciicircum euro -95;
+ pos asciicircum sterling -85;
+ pos asciicircum yen -45;
+ pos asciicircum plus -240;
+ pos asciicircum minus -260;
+ pos asciicircum multiply -60;
+ pos asciicircum divide -255;
+ pos asciicircum less -65;
+ pos asciicircum asciitilde -75;
+ pos asciicircum asciicircum -10;
+ pos asciicircum percent -20;
+ pos asciicircum perthousand -20;
+ pos asciicircum at -30;
+ pos asciicircum ampersand -150;
+ pos asciicircum paragraph -15;
+ pos asciicircum copyright -25;
+ pos asciicircum trademark -55;
+ pos asciicircum degree -60;
+ pos percent comma -30;
+ pos percent colon -25;
+ pos percent semicolon -35;
+ pos percent ellipsis -25;
+ pos percent question -155;
+ pos percent questiondown -25;
+ pos percent periodcentered -15;
+ pos percent bullet -20;
+ pos percent asterisk -145;
+ pos percent numbersign -55;
+ pos percent slash -60;
+ pos percent backslash -115;
+ pos percent parenright -140;
+ pos percent braceleft -65;
+ pos percent braceright -60;
+ pos percent underscore -85;
+ pos percent quotesinglbase -30;
+ pos percent quotedblbase -30;
+ pos percent quotedblleft -150;
+ pos percent quotedblright -130;
+ pos percent quoteleft -115;
+ pos percent quoteright -115;
+ pos percent guillemetright -15;
+ pos percent guilsinglright -15;
+ pos percent quotedbl -125;
+ pos percent quotesingle -110;
+ pos percent dollar -65;
+ pos percent euro -95;
+ pos percent sterling -40;
+ pos percent yen -60;
+ pos percent plus -15;
+ pos percent minus -15;
+ pos percent multiply -50;
+ pos percent divide -15;
+ pos percent less -35;
+ pos percent asciitilde -80;
+ pos percent asciicircum -260;
+ pos percent percent -125;
+ pos percent perthousand -125;
+ pos percent paragraph -110;
+ pos percent copyright -10;
+ pos percent registered -60;
+ pos percent trademark -150;
+ pos percent degree -135;
+ pos perthousand comma -30;
+ pos perthousand colon -25;
+ pos perthousand semicolon -35;
+ pos perthousand ellipsis -25;
+ pos perthousand question -180;
+ pos perthousand questiondown -25;
+ pos perthousand periodcentered -15;
+ pos perthousand bullet -20;
+ pos perthousand asterisk -190;
+ pos perthousand numbersign -55;
+ pos perthousand slash -60;
+ pos perthousand backslash -205;
+ pos perthousand parenright -140;
+ pos perthousand braceleft -65;
+ pos perthousand braceright -60;
+ pos perthousand underscore -85;
+ pos perthousand quotesinglbase -30;
+ pos perthousand quotedblbase -30;
+ pos perthousand quotedblleft -205;
+ pos perthousand quotedblright -205;
+ pos perthousand quoteleft -115;
+ pos perthousand quoteright -115;
+ pos perthousand guillemetright -15;
+ pos perthousand guilsinglright -15;
+ pos perthousand quotedbl -200;
+ pos perthousand quotesingle -110;
+ pos perthousand dollar -65;
+ pos perthousand euro -95;
+ pos perthousand sterling -40;
+ pos perthousand yen -60;
+ pos perthousand plus -15;
+ pos perthousand minus -15;
+ pos perthousand multiply -50;
+ pos perthousand divide -15;
+ pos perthousand less -35;
+ pos perthousand asciitilde -80;
+ pos perthousand asciicircum -260;
+ pos perthousand percent -125;
+ pos perthousand perthousand -125;
+ pos perthousand paragraph -110;
+ pos perthousand copyright -10;
+ pos perthousand registered -60;
+ pos perthousand trademark -150;
+ pos perthousand degree -215;
+ pos at comma -80;
+ pos at colon -20;
+ pos at semicolon -30;
+ pos at ellipsis -75;
+ pos at question -155;
+ pos at questiondown -70;
+ pos at asterisk -25;
+ pos at numbersign -80;
+ pos at slash -105;
+ pos at backslash -130;
+ pos at parenright -145;
+ pos at braceleft -65;
+ pos at braceright -60;
+ pos at underscore -140;
+ pos at quotesinglbase -80;
+ pos at quotedblbase -80;
+ pos at quotedblleft -40;
+ pos at quotedblright -70;
+ pos at quoteleft -40;
+ pos at quoteright -70;
+ pos at guillemetright -20;
+ pos at guilsinglright -20;
+ pos at quotedbl -40;
+ pos at quotesingle -40;
+ pos at dollar -55;
+ pos at euro -90;
+ pos at sterling -35;
+ pos at yen -50;
+ pos at multiply -55;
+ pos at asciitilde -30;
+ pos at asciicircum -15;
+ pos at percent -30;
+ pos at perthousand -30;
+ pos at ampersand -10;
+ pos at paragraph -20;
+ pos at registered -10;
+ pos at trademark -40;
+ pos at degree -50;
+ pos ampersand comma -20;
+ pos ampersand colon -15;
+ pos ampersand semicolon -25;
+ pos ampersand ellipsis -15;
+ pos ampersand question -195;
+ pos ampersand questiondown -20;
+ pos ampersand periodcentered -35;
+ pos ampersand bullet -30;
+ pos ampersand asterisk -165;
+ pos ampersand numbersign -115;
+ pos ampersand slash -45;
+ pos ampersand backslash -210;
+ pos ampersand parenleft -30;
+ pos ampersand parenright -130;
+ pos ampersand braceleft -100;
+ pos ampersand braceright -75;
+ pos ampersand bracketleft -15;
+ pos ampersand bracketright -15;
+ pos ampersand hyphen -30;
+ pos ampersand endash -30;
+ pos ampersand emdash -30;
+ pos ampersand underscore -275;
+ pos ampersand quotesinglbase -20;
+ pos ampersand quotedblbase -20;
+ pos ampersand quotedblleft -160;
+ pos ampersand quotedblright -170;
+ pos ampersand quoteleft -115;
+ pos ampersand quoteright -115;
+ pos ampersand guillemetleft -40;
+ pos ampersand guillemetright -45;
+ pos ampersand guilsinglleft -40;
+ pos ampersand guilsinglright -45;
+ pos ampersand quotedbl -165;
+ pos ampersand quotesingle -110;
+ pos ampersand cent -35;
+ pos ampersand dollar -55;
+ pos ampersand euro -125;
+ pos ampersand sterling -50;
+ pos ampersand yen -75;
+ pos ampersand plus -30;
+ pos ampersand minus -30;
+ pos ampersand multiply -105;
+ pos ampersand divide -30;
+ pos ampersand equal -30;
+ pos ampersand greater -15;
+ pos ampersand less -50;
+ pos ampersand asciitilde -130;
+ pos ampersand asciicircum -200;
+ pos ampersand percent -145;
+ pos ampersand perthousand -145;
+ pos ampersand at -30;
+ pos ampersand ampersand -55;
+ pos ampersand paragraph -125;
+ pos ampersand copyright -30;
+ pos ampersand registered -65;
+ pos ampersand trademark -155;
+ pos ampersand degree -160;
+ pos ampersand bar -15;
+ pos paragraph question -20;
+ pos paragraph numbersign -55;
+ pos paragraph backslash 15;
+ pos paragraph parenright -20;
+ pos paragraph braceleft -65;
+ pos paragraph braceright -60;
+ pos paragraph dollar -30;
+ pos paragraph euro -90;
+ pos paragraph sterling -35;
+ pos paragraph multiply -45;
+ pos paragraph asciitilde -30;
+ pos copyright comma -65;
+ pos copyright colon -30;
+ pos copyright semicolon -40;
+ pos copyright ellipsis -60;
+ pos copyright question -170;
+ pos copyright questiondown -55;
+ pos copyright asterisk -35;
+ pos copyright numbersign -75;
+ pos copyright slash -90;
+ pos copyright backslash -140;
+ pos copyright parenright -160;
+ pos copyright braceleft -65;
+ pos copyright braceright -60;
+ pos copyright underscore -125;
+ pos copyright quotesinglbase -65;
+ pos copyright quotedblbase -65;
+ pos copyright quotedblleft -55;
+ pos copyright quotedblright -85;
+ pos copyright quoteleft -55;
+ pos copyright quoteright -85;
+ pos copyright guillemetright -30;
+ pos copyright guilsinglright -30;
+ pos copyright quotedbl -50;
+ pos copyright quotesingle -50;
+ pos copyright dollar -65;
+ pos copyright euro -90;
+ pos copyright sterling -35;
+ pos copyright yen -55;
+ pos copyright multiply -50;
+ pos copyright asciitilde -35;
+ pos copyright asciicircum -25;
+ pos copyright percent -35;
+ pos copyright perthousand -35;
+ pos copyright paragraph -30;
+ pos copyright registered -15;
+ pos copyright trademark -55;
+ pos copyright degree -65;
+ pos registered comma -115;
+ pos registered semicolon -10;
+ pos registered ellipsis -285;
+ pos registered question -85;
+ pos registered questiondown -200;
+ pos registered periodcentered -30;
+ pos registered bullet -20;
+ pos registered numbersign -115;
+ pos registered slash -170;
+ pos registered backslash -90;
+ pos registered parenleft -15;
+ pos registered parenright -80;
+ pos registered braceleft -75;
+ pos registered braceright -60;
+ pos registered hyphen -15;
+ pos registered endash -15;
+ pos registered emdash -15;
+ pos registered underscore -330;
+ pos registered quotesinglbase -115;
+ pos registered quotedblbase -205;
+ pos registered quotedblleft -10;
+ pos registered quotedblright -25;
+ pos registered quoteleft -10;
+ pos registered quoteright -25;
+ pos registered guillemetleft -50;
+ pos registered guillemetright -10;
+ pos registered guilsinglleft -50;
+ pos registered guilsinglright -10;
+ pos registered quotedbl -15;
+ pos registered quotesingle -15;
+ pos registered cent -20;
+ pos registered dollar -35;
+ pos registered euro -90;
+ pos registered sterling -40;
+ pos registered yen -35;
+ pos registered multiply -45;
+ pos registered asciitilde -50;
+ pos registered at -20;
+ pos registered ampersand -55;
+ pos registered copyright -15;
+ pos registered trademark -10;
+ pos registered degree -20;
+ pos trademark comma -115;
+ pos trademark semicolon -10;
+ pos trademark ellipsis -290;
+ pos trademark question -80;
+ pos trademark questiondown -200;
+ pos trademark numbersign -90;
+ pos trademark slash -135;
+ pos trademark backslash -55;
+ pos trademark parenright -65;
+ pos trademark braceleft -65;
+ pos trademark braceright -60;
+ pos trademark underscore -365;
+ pos trademark quotesinglbase -115;
+ pos trademark quotedblbase -205;
+ pos trademark guillemetleft -20;
+ pos trademark guillemetright -10;
+ pos trademark guilsinglleft -20;
+ pos trademark guilsinglright -10;
+ pos trademark dollar -30;
+ pos trademark euro -90;
+ pos trademark sterling -35;
+ pos trademark yen -20;
+ pos trademark multiply -45;
+ pos trademark asciitilde -30;
+ pos trademark ampersand -20;
+ pos degree comma -115;
+ pos degree colon -15;
+ pos degree semicolon -25;
+ pos degree ellipsis -215;
+ pos degree question -25;
+ pos degree questiondown -210;
+ pos degree periodcentered -105;
+ pos degree bullet -110;
+ pos degree numbersign -155;
+ pos degree slash -215;
+ pos degree backslash -35;
+ pos degree parenleft -60;
+ pos degree parenright -25;
+ pos degree braceleft -110;
+ pos degree braceright -60;
+ pos degree hyphen -195;
+ pos degree endash -215;
+ pos degree emdash -215;
+ pos degree underscore -215;
+ pos degree quotesinglbase -115;
+ pos degree quotedblbase -205;
+ pos degree guillemetleft -200;
+ pos degree guillemetright -65;
+ pos degree guilsinglleft -165;
+ pos degree guilsinglright -65;
+ pos degree cent -85;
+ pos degree dollar -35;
+ pos degree euro -100;
+ pos degree sterling -90;
+ pos degree yen -15;
+ pos degree plus -85;
+ pos degree minus -85;
+ pos degree multiply -80;
+ pos degree divide -85;
+ pos degree equal -10;
+ pos degree less -100;
+ pos degree asciitilde -135;
+ pos degree asciicircum -60;
+ pos degree at -70;
+ pos degree ampersand -115;
+ pos degree copyright -65;
+ pos degree registered -20;
+ pos bar question -20;
+ pos bar numbersign -55;
+ pos bar slash 15;
+ pos bar backslash 15;
+ pos bar parenright -20;
+ pos bar braceleft -65;
+ pos bar braceright -60;
+ pos bar dollar -30;
+ pos bar euro -90;
+ pos bar sterling -35;
+ pos bar multiply -45;
+ pos bar asciitilde -30;
+ } kern_DFLT;
+ lookup kern_latn {
+ lookupflag IgnoreMarks;
+ pos braceleft @MMK_R_thorn -60;
+ pos braceleft @MMK_R_m -60;
+ pos braceleft @MMK_R_o -60;
+ pos braceleft @MMK_R_i -60;
+ pos braceleft @MMK_R_e -60;
+ pos braceleft @MMK_R_g -60;
+ pos braceleft @MMK_R_f -60;
+ pos braceleft @MMK_R_a -60;
+ pos braceleft @MMK_R_c -60;
+ pos braceleft @MMK_R_b -60;
+ pos braceleft @MMK_R_y -60;
+ pos braceleft @MMK_R_z -60;
+ pos braceleft @MMK_R_u -60;
+ pos braceleft @MMK_R_t -60;
+ pos braceleft @MMK_R_w -55;
+ pos braceleft @MMK_R_v -60;
+ pos braceleft @MMK_R_p -60;
+ pos braceleft @MMK_R_s -75;
+ pos braceleft @MMK_R_r -60;
+ pos braceleft @MMK_R_M -60;
+ pos braceleft @MMK_R_L -60;
+ pos braceleft @MMK_R_O -60;
+ pos braceleft @MMK_R_N -60;
+ pos braceleft @MMK_R_I -60;
+ pos braceleft @MMK_R_H -60;
+ pos braceleft @MMK_R_K -60;
+ pos braceleft @MMK_R_J -80;
+ pos braceleft @MMK_R_D -60;
+ pos braceleft @MMK_R_G -60;
+ pos braceleft @MMK_R_F -60;
+ pos braceleft @MMK_R_A -60;
+ pos braceleft @MMK_R_C -60;
+ pos braceleft @MMK_R_B -60;
+ pos braceleft @MMK_R_Y -70;
+ pos braceleft @MMK_R_X -60;
+ pos braceleft @MMK_R_Z -60;
+ pos braceleft @MMK_R_U -60;
+ pos braceleft @MMK_R_T -60;
+ pos braceleft @MMK_R_W -70;
+ pos braceleft @MMK_R_V -70;
+ pos braceleft @MMK_R_Q -60;
+ pos braceleft @MMK_R_P -60;
+ pos braceleft @MMK_R_S -90;
+ pos braceleft @MMK_R_R -60;
+ pos braceleft @MMK_R_dcroat -60;
+ pos braceleft @MMK_R_Oslash -60;
+ pos braceleft @MMK_R_tcaron -60;
+ pos braceleft @MMK_R_oslash -60;
+ pos braceleft @MMK_R_Lslash -60;
+ pos braceleft @MMK_R_a.alt -60;
+ pos braceleft @MMK_R_germandbls -60;
+ pos braceleft @MMK_R_h -60;
+ pos braceleft @MMK_R_j 20;
+ pos braceleft @MMK_R_d -60;
+ pos braceleft @MMK_R_l -60;
+ pos braceleft @MMK_R_n -60;
+ pos braceleft @MMK_R_x -60;
+ pos braceleft @MMK_R_q -60;
+ pos braceleft @MMK_R_E -60;
+ pos braceleft @MMK_R_Eth -60;
+ pos braceleft @MMK_R_eth -60;
+ pos braceleft @MMK_R_lcaron -60;
+ pos braceleft @MMK_R_lslash -60;
+ pos braceleft @MMK_R_Thorn -60;
+ pos braceleft @MMK_R_dcaron -60;
+ pos slash @MMK_R_t -85;
+ pos slash @MMK_R_r -85;
+ pos slash @MMK_R_H -10;
+ pos slash @MMK_R_I -10;
+ pos slash @MMK_R_K -10;
+ pos slash @MMK_R_G -115;
+ pos slash @MMK_R_A -185;
+ pos slash @MMK_R_C -115;
+ pos slash @MMK_R_X -10;
+ pos slash @MMK_R_V -10;
+ pos slash @MMK_R_R 15;
+ pos slash @MMK_R_oslash -165;
+ pos slash @MMK_R_Lslash -10;
+ pos slash @MMK_R_Eth 15;
+ pos slash @MMK_R_tcaron -85;
+ pos slash @MMK_R_germandbls -60;
+ pos slash @MMK_R_dcroat -160;
+ pos slash @MMK_R_dcaron -160;
+ pos slash @MMK_R_Oslash -115;
+ pos slash @MMK_R_eth -155;
+ pos slash @MMK_R_m -85;
+ pos slash @MMK_R_n -85;
+ pos slash @MMK_R_o -165;
+ pos slash @MMK_R_e -160;
+ pos slash @MMK_R_f -85;
+ pos slash @MMK_R_g -155;
+ pos slash @MMK_R_a -150;
+ pos slash @MMK_R_x -90;
+ pos slash @MMK_R_y -85;
+ pos slash @MMK_R_z -85;
+ pos slash @MMK_R_u -85;
+ pos slash @MMK_R_v -85;
+ pos slash @MMK_R_w -80;
+ pos slash @MMK_R_p -85;
+ pos slash @MMK_R_q -160;
+ pos slash @MMK_R_L -10;
+ pos slash @MMK_R_M -10;
+ pos slash @MMK_R_N -10;
+ pos slash @MMK_R_O -115;
+ pos slash @MMK_R_J -240;
+ pos slash @MMK_R_D 15;
+ pos slash @MMK_R_E -10;
+ pos slash @MMK_R_F -10;
+ pos slash @MMK_R_B 15;
+ pos slash @MMK_R_Y -10;
+ pos slash @MMK_R_Z -10;
+ pos slash @MMK_R_T -10;
+ pos slash @MMK_R_U -10;
+ pos slash @MMK_R_W -10;
+ pos slash @MMK_R_P 15;
+ pos slash @MMK_R_Q -115;
+ pos slash @MMK_R_S -90;
+ pos slash @MMK_R_a.alt -155;
+ pos slash @MMK_R_Thorn -10;
+ pos slash @MMK_R_d -160;
+ pos slash @MMK_R_s -150;
+ pos slash @MMK_R_i -10;
+ pos slash @MMK_R_c -160;
+ pos parenright @MMK_R_J -70;
+ pos parenright @MMK_R_tcaron -25;
+ pos parenright @MMK_R_v -25;
+ pos parenright @MMK_R_s -40;
+ pos parenright @MMK_R_w -25;
+ pos parenright @MMK_R_t -25;
+ pos parenright @MMK_R_x -45;
+ pos parenright @MMK_R_f -25;
+ pos parenright @MMK_R_a -10;
+ pos parenright @MMK_R_V -65;
+ pos parenright @MMK_R_W -75;
+ pos parenright @MMK_R_T -80;
+ pos parenright @MMK_R_S -65;
+ pos parenright @MMK_R_X -55;
+ pos parenright @MMK_R_A -50;
+ pos parenright @MMK_R_Y -95;
+ pos parenright @MMK_R_y -30;
+ pos asterisk @MMK_R_a.alt -55;
+ pos asterisk @MMK_R_dcaron -60;
+ pos asterisk @MMK_R_O -20;
+ pos asterisk @MMK_R_G -20;
+ pos asterisk @MMK_R_A -125;
+ pos asterisk @MMK_R_Y -20;
+ pos asterisk @MMK_R_V -15;
+ pos asterisk @MMK_R_o -65;
+ pos asterisk @MMK_R_g -55;
+ pos asterisk @MMK_R_d -60;
+ pos asterisk @MMK_R_e -60;
+ pos asterisk @MMK_R_c -60;
+ pos asterisk @MMK_R_a -90;
+ pos asterisk @MMK_R_x -15;
+ pos asterisk @MMK_R_Oslash -20;
+ pos asterisk @MMK_R_eth -70;
+ pos asterisk @MMK_R_S -30;
+ pos asterisk @MMK_R_dcroat -60;
+ pos asterisk @MMK_R_X -20;
+ pos asterisk @MMK_R_C -20;
+ pos asterisk @MMK_R_W -15;
+ pos asterisk @MMK_R_s -45;
+ pos asterisk @MMK_R_q -60;
+ pos asterisk @MMK_R_J -190;
+ pos asterisk @MMK_R_Q -20;
+ pos asterisk @MMK_R_oslash -65;
+ pos guilsinglright @MMK_R_S -165;
+ pos guilsinglright @MMK_R_X -65;
+ pos guilsinglright @MMK_R_f -75;
+ pos guilsinglright @MMK_R_T -110;
+ pos guilsinglright @MMK_R_A -60;
+ pos guilsinglright @MMK_R_v -25;
+ pos guilsinglright @MMK_R_w -25;
+ pos guilsinglright @MMK_R_x -50;
+ pos guilsinglright @MMK_R_y -35;
+ pos guilsinglright @MMK_R_V -65;
+ pos guilsinglright @MMK_R_W -80;
+ pos guilsinglright @MMK_R_J -165;
+ pos guilsinglright @MMK_R_t -75;
+ pos guilsinglright @MMK_R_s -100;
+ pos guilsinglright @MMK_R_a -15;
+ pos guilsinglright @MMK_R_Y -115;
+ pos guilsinglright @MMK_R_tcaron -75;
+ pos ellipsis @MMK_R_U -65;
+ pos ellipsis @MMK_R_oslash -35;
+ pos ellipsis @MMK_R_dcaron -70;
+ pos ellipsis @MMK_R_tcaron -95;
+ pos ellipsis @MMK_R_Q -110;
+ pos ellipsis @MMK_R_W -130;
+ pos ellipsis @MMK_R_V -110;
+ pos ellipsis @MMK_R_T -115;
+ pos ellipsis @MMK_R_Y -120;
+ pos ellipsis @MMK_R_C -110;
+ pos ellipsis @MMK_R_G -110;
+ pos ellipsis @MMK_R_J -20;
+ pos ellipsis @MMK_R_O -110;
+ pos ellipsis @MMK_R_q -70;
+ pos ellipsis @MMK_R_w -60;
+ pos ellipsis @MMK_R_u -35;
+ pos ellipsis @MMK_R_t -95;
+ pos ellipsis @MMK_R_y -70;
+ pos ellipsis @MMK_R_a -30;
+ pos ellipsis @MMK_R_g -95;
+ pos ellipsis @MMK_R_e -70;
+ pos ellipsis @MMK_R_d -70;
+ pos ellipsis @MMK_R_o -75;
+ pos ellipsis @MMK_R_dcroat -70;
+ pos ellipsis @MMK_R_a.alt -60;
+ pos ellipsis @MMK_R_eth -60;
+ pos ellipsis @MMK_R_S -30;
+ pos ellipsis @MMK_R_f -80;
+ pos ellipsis @MMK_R_j 30;
+ pos ellipsis @MMK_R_s -20;
+ pos ellipsis @MMK_R_v -60;
+ pos ellipsis @MMK_R_c -65;
+ pos parenleft @MMK_R_Eth -20;
+ pos parenleft @MMK_R_Y -40;
+ pos parenleft @MMK_R_Thorn -20;
+ pos parenleft @MMK_R_dcroat -180;
+ pos parenleft @MMK_R_s -125;
+ pos parenleft @MMK_R_d -180;
+ pos parenleft @MMK_R_f -100;
+ pos parenleft @MMK_R_a -150;
+ pos parenleft @MMK_R_c -180;
+ pos parenleft @MMK_R_l -20;
+ pos parenleft @MMK_R_n -90;
+ pos parenleft @MMK_R_o -180;
+ pos parenleft @MMK_R_h -20;
+ pos parenleft @MMK_R_i -25;
+ pos parenleft @MMK_R_j 50;
+ pos parenleft @MMK_R_t -100;
+ pos parenleft @MMK_R_u -105;
+ pos parenleft @MMK_R_v -105;
+ pos parenleft @MMK_R_w -100;
+ pos parenleft @MMK_R_p -20;
+ pos parenleft @MMK_R_q -180;
+ pos parenleft @MMK_R_x -90;
+ pos parenleft @MMK_R_z -90;
+ pos parenleft @MMK_R_D -20;
+ pos parenleft @MMK_R_E -20;
+ pos parenleft @MMK_R_G -120;
+ pos parenleft @MMK_R_A -90;
+ pos parenleft @MMK_R_B -20;
+ pos parenleft @MMK_R_C -120;
+ pos parenleft @MMK_R_L -20;
+ pos parenleft @MMK_R_N -20;
+ pos parenleft @MMK_R_O -120;
+ pos parenleft @MMK_R_J -120;
+ pos parenleft @MMK_R_K -20;
+ pos parenleft @MMK_R_X -40;
+ pos parenleft @MMK_R_lcaron -20;
+ pos parenleft @MMK_R_thorn -20;
+ pos parenleft @MMK_R_e -180;
+ pos parenleft @MMK_R_b -20;
+ pos parenleft @MMK_R_r -90;
+ pos parenleft @MMK_R_F -20;
+ pos parenleft @MMK_R_H -20;
+ pos parenleft @MMK_R_U -20;
+ pos parenleft @MMK_R_V -30;
+ pos parenleft @MMK_R_Q -120;
+ pos parenleft @MMK_R_tcaron -100;
+ pos parenleft @MMK_R_germandbls -40;
+ pos parenleft @MMK_R_m -90;
+ pos parenleft @MMK_R_g -110;
+ pos parenleft @MMK_R_y -95;
+ pos parenleft @MMK_R_I -20;
+ pos parenleft @MMK_R_W -30;
+ pos parenleft @MMK_R_R -20;
+ pos parenleft @MMK_R_S -70;
+ pos parenleft @MMK_R_Z -20;
+ pos parenleft @MMK_R_dcaron -180;
+ pos parenleft @MMK_R_M -20;
+ pos parenleft @MMK_R_a.alt -175;
+ pos parenleft @MMK_R_T -20;
+ pos parenleft @MMK_R_lslash -20;
+ pos parenleft @MMK_R_oslash -120;
+ pos parenleft @MMK_R_eth -175;
+ pos parenleft @MMK_R_Oslash -90;
+ pos parenleft @MMK_R_Lslash -20;
+ pos parenleft @MMK_R_P -20;
+ pos quotesinglbase @MMK_R_dcaron -65;
+ pos quotesinglbase @MMK_R_c -65;
+ pos quotesinglbase @MMK_R_tcaron -95;
+ pos quotesinglbase @MMK_R_oslash -30;
+ pos quotesinglbase @MMK_R_J -20;
+ pos quotesinglbase @MMK_R_O -110;
+ pos quotesinglbase @MMK_R_C -110;
+ pos quotesinglbase @MMK_R_G -110;
+ pos quotesinglbase @MMK_R_Y -115;
+ pos quotesinglbase @MMK_R_Q -110;
+ pos quotesinglbase @MMK_R_S -30;
+ pos quotesinglbase @MMK_R_U -60;
+ pos quotesinglbase @MMK_R_V -110;
+ pos quotesinglbase @MMK_R_W -115;
+ pos quotesinglbase @MMK_R_j 55;
+ pos quotesinglbase @MMK_R_o -75;
+ pos quotesinglbase @MMK_R_a -30;
+ pos quotesinglbase @MMK_R_d -65;
+ pos quotesinglbase @MMK_R_g -95;
+ pos quotesinglbase @MMK_R_s -20;
+ pos quotesinglbase @MMK_R_v -60;
+ pos quotesinglbase @MMK_R_eth -60;
+ pos quotesinglbase @MMK_R_e -70;
+ pos quotesinglbase @MMK_R_y -75;
+ pos quotesinglbase @MMK_R_q -65;
+ pos quotesinglbase @MMK_R_T -115;
+ pos quotesinglbase @MMK_R_f -80;
+ pos quotesinglbase @MMK_R_t -95;
+ pos quotesinglbase @MMK_R_dcroat -65;
+ pos quotesinglbase @MMK_R_u -35;
+ pos quotesinglbase @MMK_R_w -60;
+ pos quotesinglbase @MMK_R_a.alt -60;
+ pos guilsinglleft @MMK_R_Oslash -15;
+ pos guilsinglleft @MMK_R_oslash -55;
+ pos guilsinglleft @MMK_R_eth -50;
+ pos guilsinglleft @MMK_R_Y -85;
+ pos guilsinglleft @MMK_R_g -40;
+ pos guilsinglleft @MMK_R_o -55;
+ pos guilsinglleft @MMK_R_G -15;
+ pos guilsinglleft @MMK_R_A -20;
+ pos guilsinglleft @MMK_R_J -50;
+ pos guilsinglleft @MMK_R_V -55;
+ pos guilsinglleft @MMK_R_W -60;
+ pos guilsinglleft @MMK_R_T -115;
+ pos guilsinglleft @MMK_R_U -10;
+ pos guilsinglleft @MMK_R_Q -15;
+ pos guilsinglleft @MMK_R_X -20;
+ pos guilsinglleft @MMK_R_f -15;
+ pos guilsinglleft @MMK_R_d -50;
+ pos guilsinglleft @MMK_R_e -50;
+ pos guilsinglleft @MMK_R_c -45;
+ pos guilsinglleft @MMK_R_a -20;
+ pos guilsinglleft @MMK_R_v -20;
+ pos guilsinglleft @MMK_R_w -15;
+ pos guilsinglleft @MMK_R_u -10;
+ pos guilsinglleft @MMK_R_q -50;
+ pos guilsinglleft @MMK_R_x -20;
+ pos guilsinglleft @MMK_R_y -25;
+ pos guilsinglleft @MMK_R_a.alt -45;
+ pos guilsinglleft @MMK_R_C -15;
+ pos guilsinglleft @MMK_R_O -15;
+ pos guilsinglleft @MMK_R_S -55;
+ pos guilsinglleft @MMK_R_t -15;
+ pos guilsinglleft @MMK_R_s -40;
+ pos guilsinglleft @MMK_R_dcaron -50;
+ pos guilsinglleft @MMK_R_dcroat -50;
+ pos guilsinglleft @MMK_R_tcaron -15;
+ pos questiondown @MMK_R_Lslash -135;
+ pos questiondown @MMK_R_tcaron -175;
+ pos questiondown @MMK_R_oslash -165;
+ pos questiondown @MMK_R_w -175;
+ pos questiondown @MMK_R_u -175;
+ pos questiondown @MMK_R_r -135;
+ pos questiondown @MMK_R_s -190;
+ pos questiondown @MMK_R_p -20;
+ pos questiondown @MMK_R_z -135;
+ pos questiondown @MMK_R_g -95;
+ pos questiondown @MMK_R_e -175;
+ pos questiondown @MMK_R_b -135;
+ pos questiondown @MMK_R_n -135;
+ pos questiondown @MMK_R_o -175;
+ pos questiondown @MMK_R_l -85;
+ pos questiondown @MMK_R_m -135;
+ pos questiondown @MMK_R_h -135;
+ pos questiondown @MMK_R_i -85;
+ pos questiondown @MMK_R_V -205;
+ pos questiondown @MMK_R_T -200;
+ pos questiondown @MMK_R_U -175;
+ pos questiondown @MMK_R_R -135;
+ pos questiondown @MMK_R_S -205;
+ pos questiondown @MMK_R_P -135;
+ pos questiondown @MMK_R_Q -175;
+ pos questiondown @MMK_R_Z -135;
+ pos questiondown @MMK_R_X -135;
+ pos questiondown @MMK_R_Y -225;
+ pos questiondown @MMK_R_G -175;
+ pos questiondown @MMK_R_D -65;
+ pos questiondown @MMK_R_E -135;
+ pos questiondown @MMK_R_B -65;
+ pos questiondown @MMK_R_C -175;
+ pos questiondown @MMK_R_A -135;
+ pos questiondown @MMK_R_N -135;
+ pos questiondown @MMK_R_O -175;
+ pos questiondown @MMK_R_L -135;
+ pos questiondown @MMK_R_M -135;
+ pos questiondown @MMK_R_J -170;
+ pos questiondown @MMK_R_K -135;
+ pos questiondown @MMK_R_I -115;
+ pos questiondown @MMK_R_Eth -65;
+ pos questiondown @MMK_R_thorn -20;
+ pos questiondown @MMK_R_x -135;
+ pos questiondown @MMK_R_W -210;
+ pos questiondown @MMK_R_F -135;
+ pos questiondown @MMK_R_a.alt -175;
+ pos questiondown @MMK_R_dcaron -175;
+ pos questiondown @MMK_R_Thorn -135;
+ pos questiondown @MMK_R_v -180;
+ pos questiondown @MMK_R_t -175;
+ pos questiondown @MMK_R_q -175;
+ pos questiondown @MMK_R_y -90;
+ pos questiondown @MMK_R_f -175;
+ pos questiondown @MMK_R_d -175;
+ pos questiondown @MMK_R_c -175;
+ pos questiondown @MMK_R_a -175;
+ pos questiondown @MMK_R_H -135;
+ pos questiondown @MMK_R_lslash -135;
+ pos questiondown @MMK_R_Oslash -135;
+ pos questiondown @MMK_R_germandbls -135;
+ pos questiondown @MMK_R_lcaron -85;
+ pos questiondown @MMK_R_j 55;
+ pos questiondown @MMK_R_dcroat -175;
+ pos questiondown @MMK_R_eth -175;
+ pos emdash @MMK_R_X -55;
+ pos emdash @MMK_R_A -50;
+ pos emdash @MMK_R_J -150;
+ pos emdash @MMK_R_S -105;
+ pos emdash @MMK_R_V -60;
+ pos emdash @MMK_R_W -70;
+ pos emdash @MMK_R_T -115;
+ pos emdash @MMK_R_f -80;
+ pos emdash @MMK_R_s -40;
+ pos emdash @MMK_R_v -20;
+ pos emdash @MMK_R_w -20;
+ pos emdash @MMK_R_t -80;
+ pos emdash @MMK_R_x -45;
+ pos emdash @MMK_R_tcaron -80;
+ pos emdash @MMK_R_Y -95;
+ pos emdash @MMK_R_y -25;
+ pos backslash @MMK_R_germandbls -15;
+ pos backslash @MMK_R_tcaron -125;
+ pos backslash @MMK_R_Eth 15;
+ pos backslash @MMK_R_dcaron -95;
+ pos backslash @MMK_R_lcaron -15;
+ pos backslash @MMK_R_oslash -45;
+ pos backslash @MMK_R_O -125;
+ pos backslash @MMK_R_N -15;
+ pos backslash @MMK_R_M -15;
+ pos backslash @MMK_R_L -15;
+ pos backslash @MMK_R_K -15;
+ pos backslash @MMK_R_J -40;
+ pos backslash @MMK_R_I -15;
+ pos backslash @MMK_R_G -125;
+ pos backslash @MMK_R_F -15;
+ pos backslash @MMK_R_D 15;
+ pos backslash @MMK_R_C -125;
+ pos backslash @MMK_R_B 15;
+ pos backslash @MMK_R_A -15;
+ pos backslash @MMK_R_Z -15;
+ pos backslash @MMK_R_Y -135;
+ pos backslash @MMK_R_W -150;
+ pos backslash @MMK_R_V -130;
+ pos backslash @MMK_R_U -90;
+ pos backslash @MMK_R_T -130;
+ pos backslash @MMK_R_S -60;
+ pos backslash @MMK_R_R -15;
+ pos backslash @MMK_R_Q -125;
+ pos backslash @MMK_R_P -15;
+ pos backslash @MMK_R_o -100;
+ pos backslash @MMK_R_n -15;
+ pos backslash @MMK_R_m -15;
+ pos backslash @MMK_R_l -15;
+ pos backslash @MMK_R_j 80;
+ pos backslash @MMK_R_h -15;
+ pos backslash @MMK_R_f -95;
+ pos backslash @MMK_R_e -95;
+ pos backslash @MMK_R_d -95;
+ pos backslash @MMK_R_c -95;
+ pos backslash @MMK_R_b -15;
+ pos backslash @MMK_R_a -60;
+ pos backslash @MMK_R_z -15;
+ pos backslash @MMK_R_x -15;
+ pos backslash @MMK_R_w -80;
+ pos backslash @MMK_R_v -75;
+ pos backslash @MMK_R_u -65;
+ pos backslash @MMK_R_t -125;
+ pos backslash @MMK_R_s -45;
+ pos backslash @MMK_R_r -15;
+ pos backslash @MMK_R_q -95;
+ pos backslash @MMK_R_p 15;
+ pos backslash @MMK_R_g -90;
+ pos backslash @MMK_R_H -15;
+ pos backslash @MMK_R_E -15;
+ pos backslash @MMK_R_X -15;
+ pos backslash @MMK_R_y -70;
+ pos backslash @MMK_R_a.alt -90;
+ pos backslash @MMK_R_Lslash -15;
+ pos backslash @MMK_R_Oslash -15;
+ pos backslash @MMK_R_dcroat -95;
+ pos backslash @MMK_R_eth -90;
+ pos backslash @MMK_R_i -15;
+ pos backslash @MMK_R_lslash -15;
+ pos backslash @MMK_R_Thorn -15;
+ pos backslash @MMK_R_thorn 15;
+ pos colon @MMK_R_o -55;
+ pos colon @MMK_R_g -45;
+ pos colon @MMK_R_d -50;
+ pos colon @MMK_R_e -50;
+ pos colon @MMK_R_c -50;
+ pos colon @MMK_R_a -30;
+ pos colon @MMK_R_Y -55;
+ pos colon @MMK_R_V -35;
+ pos colon @MMK_R_W -40;
+ pos colon @MMK_R_T -55;
+ pos colon @MMK_R_S -30;
+ pos colon @MMK_R_Q -15;
+ pos colon @MMK_R_O -15;
+ pos colon @MMK_R_J -20;
+ pos colon @MMK_R_C -15;
+ pos colon @MMK_R_a.alt -45;
+ pos colon @MMK_R_s -20;
+ pos colon @MMK_R_q -50;
+ pos colon @MMK_R_j 30;
+ pos colon @MMK_R_eth -60;
+ pos colon @MMK_R_G -15;
+ pos colon @MMK_R_oslash -35;
+ pos colon @MMK_R_dcroat -50;
+ pos colon @MMK_R_dcaron -50;
+ pos quotedblright @MMK_R_c -105;
+ pos quotedblright @MMK_R_d -110;
+ pos quotedblright @MMK_R_o -115;
+ pos quotedblright @MMK_R_n -20;
+ pos quotedblright @MMK_R_m -20;
+ pos quotedblright @MMK_R_u -20;
+ pos quotedblright @MMK_R_A -150;
+ pos quotedblright @MMK_R_eth -120;
+ pos quotedblright @MMK_R_p -20;
+ pos quotedblright @MMK_R_Q -55;
+ pos quotedblright @MMK_R_a -85;
+ pos quotedblright @MMK_R_g -100;
+ pos quotedblright @MMK_R_f -20;
+ pos quotedblright @MMK_R_e -110;
+ pos quotedblright @MMK_R_s -90;
+ pos quotedblright @MMK_R_r -20;
+ pos quotedblright @MMK_R_q -110;
+ pos quotedblright @MMK_R_w -15;
+ pos quotedblright @MMK_R_v -20;
+ pos quotedblright @MMK_R_t -20;
+ pos quotedblright @MMK_R_z -20;
+ pos quotedblright @MMK_R_y -20;
+ pos quotedblright @MMK_R_x -30;
+ pos quotedblright @MMK_R_C -55;
+ pos quotedblright @MMK_R_G -55;
+ pos quotedblright @MMK_R_J -205;
+ pos quotedblright @MMK_R_O -55;
+ pos quotedblright @MMK_R_S -35;
+ pos quotedblright @MMK_R_W -15;
+ pos quotedblright @MMK_R_V -10;
+ pos quotedblright @MMK_R_Y -15;
+ pos quotedblright @MMK_R_X -15;
+ pos quotedblright @MMK_R_oslash -115;
+ pos quotedblright @MMK_R_Oslash -55;
+ pos quotedblright @MMK_R_dcaron -110;
+ pos quotedblright @MMK_R_tcaron -20;
+ pos quotedblright @MMK_R_dcroat -110;
+ pos quotedblright @MMK_R_a.alt -100;
+ pos endash @MMK_R_J -150;
+ pos endash @MMK_R_T -115;
+ pos endash @MMK_R_W -70;
+ pos endash @MMK_R_V -60;
+ pos endash @MMK_R_S -105;
+ pos endash @MMK_R_Y -95;
+ pos endash @MMK_R_X -55;
+ pos endash @MMK_R_f -80;
+ pos endash @MMK_R_t -80;
+ pos endash @MMK_R_v -20;
+ pos endash @MMK_R_s -40;
+ pos endash @MMK_R_y -25;
+ pos endash @MMK_R_x -45;
+ pos endash @MMK_R_w -20;
+ pos endash @MMK_R_A -50;
+ pos endash @MMK_R_tcaron -80;
+ pos hyphen @MMK_R_Y -95;
+ pos hyphen @MMK_R_w -20;
+ pos hyphen @MMK_R_s -40;
+ pos hyphen @MMK_R_tcaron -80;
+ pos hyphen @MMK_R_t -80;
+ pos hyphen @MMK_R_A -50;
+ pos hyphen @MMK_R_J -150;
+ pos hyphen @MMK_R_T -115;
+ pos hyphen @MMK_R_V -60;
+ pos hyphen @MMK_R_W -70;
+ pos hyphen @MMK_R_S -105;
+ pos hyphen @MMK_R_X -55;
+ pos hyphen @MMK_R_f -80;
+ pos hyphen @MMK_R_v -20;
+ pos hyphen @MMK_R_x -45;
+ pos hyphen @MMK_R_y -25;
+ pos quotesingle @MMK_R_tcaron -10;
+ pos quotesingle @MMK_R_u -10;
+ pos quotesingle @MMK_R_f -10;
+ pos quotesingle @MMK_R_dcroat -80;
+ pos quotesingle @MMK_R_eth -90;
+ pos quotesingle @MMK_R_x -20;
+ pos quotesingle @MMK_R_z -10;
+ pos quotesingle @MMK_R_oslash -85;
+ pos quotesingle @MMK_R_a.alt -70;
+ pos quotesingle @MMK_R_y -10;
+ pos quotesingle @MMK_R_t -10;
+ pos quotesingle @MMK_R_v -10;
+ pos quotesingle @MMK_R_q -80;
+ pos quotesingle @MMK_R_p -10;
+ pos quotesingle @MMK_R_s -60;
+ pos quotesingle @MMK_R_r -10;
+ pos quotesingle @MMK_R_m -10;
+ pos quotesingle @MMK_R_o -85;
+ pos quotesingle @MMK_R_n -10;
+ pos quotesingle @MMK_R_e -80;
+ pos quotesingle @MMK_R_d -80;
+ pos quotesingle @MMK_R_g -70;
+ pos quotesingle @MMK_R_a -80;
+ pos quotesingle @MMK_R_c -80;
+ pos quotesingle @MMK_R_Y -15;
+ pos quotesingle @MMK_R_X -15;
+ pos quotesingle @MMK_R_W -10;
+ pos quotesingle @MMK_R_V -10;
+ pos quotesingle @MMK_R_Q -30;
+ pos quotesingle @MMK_R_S -35;
+ pos quotesingle @MMK_R_G -30;
+ pos quotesingle @MMK_R_A -110;
+ pos quotesingle @MMK_R_C -30;
+ pos quotesingle @MMK_R_O -30;
+ pos quotesingle @MMK_R_J -110;
+ pos quotesingle @MMK_R_Oslash -30;
+ pos quotesingle @MMK_R_dcaron -80;
+ pos question @MMK_R_dcaron -60;
+ pos question @MMK_R_o -65;
+ pos question @MMK_R_g -55;
+ pos question @MMK_R_d -60;
+ pos question @MMK_R_c -60;
+ pos question @MMK_R_a -75;
+ pos question @MMK_R_s -50;
+ pos question @MMK_R_q -60;
+ pos question @MMK_R_O -25;
+ pos question @MMK_R_G -25;
+ pos question @MMK_R_C -25;
+ pos question @MMK_R_X -40;
+ pos question @MMK_R_Y -40;
+ pos question @MMK_R_S -30;
+ pos question @MMK_R_Oslash -25;
+ pos question @MMK_R_e -60;
+ pos question @MMK_R_Q -25;
+ pos question @MMK_R_eth -65;
+ pos question @MMK_R_oslash -65;
+ pos question @MMK_R_J -220;
+ pos question @MMK_R_A -125;
+ pos question @MMK_R_V -25;
+ pos question @MMK_R_W -30;
+ pos question @MMK_R_a.alt -55;
+ pos question @MMK_R_x -10;
+ pos question @MMK_R_dcroat -60;
+ pos guillemetleft @MMK_R_oslash -55;
+ pos guillemetleft @MMK_R_Q -15;
+ pos guillemetleft @MMK_R_dcaron -50;
+ pos guillemetleft @MMK_R_q -50;
+ pos guillemetleft @MMK_R_w -15;
+ pos guillemetleft @MMK_R_S -55;
+ pos guillemetleft @MMK_R_T -115;
+ pos guillemetleft @MMK_R_U -10;
+ pos guillemetleft @MMK_R_G -15;
+ pos guillemetleft @MMK_R_Oslash -15;
+ pos guillemetleft @MMK_R_x -20;
+ pos guillemetleft @MMK_R_y -25;
+ pos guillemetleft @MMK_R_s -40;
+ pos guillemetleft @MMK_R_t -15;
+ pos guillemetleft @MMK_R_u -10;
+ pos guillemetleft @MMK_R_a -20;
+ pos guillemetleft @MMK_R_c -45;
+ pos guillemetleft @MMK_R_d -50;
+ pos guillemetleft @MMK_R_g -40;
+ pos guillemetleft @MMK_R_X -20;
+ pos guillemetleft @MMK_R_Y -85;
+ pos guillemetleft @MMK_R_V -55;
+ pos guillemetleft @MMK_R_W -60;
+ pos guillemetleft @MMK_R_O -15;
+ pos guillemetleft @MMK_R_A -20;
+ pos guillemetleft @MMK_R_a.alt -45;
+ pos guillemetleft @MMK_R_v -20;
+ pos guillemetleft @MMK_R_e -50;
+ pos guillemetleft @MMK_R_f -15;
+ pos guillemetleft @MMK_R_J -50;
+ pos guillemetleft @MMK_R_C -15;
+ pos guillemetleft @MMK_R_tcaron -15;
+ pos guillemetleft @MMK_R_eth -50;
+ pos guillemetleft @MMK_R_o -55;
+ pos guillemetleft @MMK_R_dcroat -50;
+ pos guillemetright @MMK_R_v -25;
+ pos guillemetright @MMK_R_tcaron -75;
+ pos guillemetright @MMK_R_w -25;
+ pos guillemetright @MMK_R_A -60;
+ pos guillemetright @MMK_R_t -75;
+ pos guillemetright @MMK_R_x -50;
+ pos guillemetright @MMK_R_y -35;
+ pos guillemetright @MMK_R_S -175;
+ pos guillemetright @MMK_R_V -65;
+ pos guillemetright @MMK_R_W -80;
+ pos guillemetright @MMK_R_T -110;
+ pos guillemetright @MMK_R_X -65;
+ pos guillemetright @MMK_R_Y -115;
+ pos guillemetright @MMK_R_J -185;
+ pos guillemetright @MMK_R_s -100;
+ pos guillemetright @MMK_R_a -15;
+ pos guillemetright @MMK_R_f -75;
+ pos semicolon @MMK_R_eth -55;
+ pos semicolon @MMK_R_a.alt -45;
+ pos semicolon @MMK_R_e -50;
+ pos semicolon @MMK_R_a -35;
+ pos semicolon @MMK_R_oslash -35;
+ pos semicolon @MMK_R_dcaron -50;
+ pos semicolon @MMK_R_o -55;
+ pos semicolon @MMK_R_j 50;
+ pos semicolon @MMK_R_d -50;
+ pos semicolon @MMK_R_c -50;
+ pos semicolon @MMK_R_s -20;
+ pos semicolon @MMK_R_O -15;
+ pos semicolon @MMK_R_J -20;
+ pos semicolon @MMK_R_C -15;
+ pos semicolon @MMK_R_Y -60;
+ pos semicolon @MMK_R_T -50;
+ pos semicolon @MMK_R_V -35;
+ pos semicolon @MMK_R_W -45;
+ pos semicolon @MMK_R_Q -15;
+ pos semicolon @MMK_R_S -30;
+ pos semicolon @MMK_R_G -15;
+ pos semicolon @MMK_R_dcroat -50;
+ pos semicolon @MMK_R_g -45;
+ pos semicolon @MMK_R_y -10;
+ pos semicolon @MMK_R_q -50;
+ pos underscore @MMK_R_Lslash -355;
+ pos underscore @MMK_R_dcroat -180;
+ pos underscore @MMK_R_oslash -205;
+ pos underscore @MMK_R_r -175;
+ pos underscore @MMK_R_germandbls -190;
+ pos underscore @MMK_R_a -130;
+ pos underscore @MMK_R_f -180;
+ pos underscore @MMK_R_q -180;
+ pos underscore @MMK_R_w -365;
+ pos underscore @MMK_R_lslash -140;
+ pos underscore @MMK_R_d -180;
+ pos underscore @MMK_R_g -50;
+ pos underscore @MMK_R_o -205;
+ pos underscore @MMK_R_dcaron -180;
+ pos underscore @MMK_R_eth -180;
+ pos underscore @MMK_R_P -350;
+ pos underscore @MMK_R_Q -230;
+ pos underscore @MMK_R_R -350;
+ pos underscore @MMK_R_S -135;
+ pos underscore @MMK_R_T -345;
+ pos underscore @MMK_R_V -335;
+ pos underscore @MMK_R_W -365;
+ pos underscore @MMK_R_X -360;
+ pos underscore @MMK_R_Y -365;
+ pos underscore @MMK_R_Z -325;
+ pos underscore @MMK_R_A -365;
+ pos underscore @MMK_R_C -230;
+ pos underscore @MMK_R_E -310;
+ pos underscore @MMK_R_F -320;
+ pos underscore @MMK_R_G -230;
+ pos underscore @MMK_R_H -355;
+ pos underscore @MMK_R_I -115;
+ pos underscore @MMK_R_K -335;
+ pos underscore @MMK_R_L -300;
+ pos underscore @MMK_R_M -365;
+ pos underscore @MMK_R_N -365;
+ pos underscore @MMK_R_O -230;
+ pos underscore @MMK_R_s -135;
+ pos underscore @MMK_R_t -155;
+ pos underscore @MMK_R_u -120;
+ pos underscore @MMK_R_v -290;
+ pos underscore @MMK_R_x -265;
+ pos underscore @MMK_R_y -55;
+ pos underscore @MMK_R_z -250;
+ pos underscore @MMK_R_b -195;
+ pos underscore @MMK_R_c -185;
+ pos underscore @MMK_R_e -195;
+ pos underscore @MMK_R_h -265;
+ pos underscore @MMK_R_i -85;
+ pos underscore @MMK_R_j 90;
+ pos underscore @MMK_R_l -85;
+ pos underscore @MMK_R_m -365;
+ pos underscore @MMK_R_n -265;
+ pos underscore @MMK_R_lcaron -85;
+ pos underscore @MMK_R_a.alt -170;
+ pos underscore @MMK_R_tcaron -155;
+ pos underscore @MMK_R_U -150;
+ pos underscore @MMK_R_Thorn -350;
+ pos underscore @MMK_R_J -80;
+ pos underscore @MMK_R_Oslash -230;
+ pos bullet @MMK_R_V -60;
+ pos bullet @MMK_R_J -175;
+ pos bullet @MMK_R_A -70;
+ pos bullet @MMK_R_X -80;
+ pos bullet @MMK_R_Y -100;
+ pos bullet @MMK_R_S -85;
+ pos bullet @MMK_R_T -115;
+ pos bullet @MMK_R_W -75;
+ pos bullet @MMK_R_f -60;
+ pos bullet @MMK_R_x -50;
+ pos bullet @MMK_R_y -30;
+ pos bullet @MMK_R_s -45;
+ pos bullet @MMK_R_t -60;
+ pos bullet @MMK_R_v -25;
+ pos bullet @MMK_R_w -20;
+ pos bullet @MMK_R_a -25;
+ pos bullet @MMK_R_tcaron -60;
+ pos quotedbl @MMK_R_dcroat -80;
+ pos quotedbl @MMK_R_oslash -85;
+ pos quotedbl @MMK_R_Oslash -30;
+ pos quotedbl @MMK_R_p -10;
+ pos quotedbl @MMK_R_tcaron -10;
+ pos quotedbl @MMK_R_t -10;
+ pos quotedbl @MMK_R_e -80;
+ pos quotedbl @MMK_R_o -85;
+ pos quotedbl @MMK_R_Q -30;
+ pos quotedbl @MMK_R_W -10;
+ pos quotedbl @MMK_R_X -15;
+ pos quotedbl @MMK_R_Y -15;
+ pos quotedbl @MMK_R_G -30;
+ pos quotedbl @MMK_R_J -200;
+ pos quotedbl @MMK_R_V -10;
+ pos quotedbl @MMK_R_dcaron -80;
+ pos quotedbl @MMK_R_a.alt -70;
+ pos quotedbl @MMK_R_q -80;
+ pos quotedbl @MMK_R_r -10;
+ pos quotedbl @MMK_R_s -60;
+ pos quotedbl @MMK_R_u -10;
+ pos quotedbl @MMK_R_v -10;
+ pos quotedbl @MMK_R_x -20;
+ pos quotedbl @MMK_R_y -10;
+ pos quotedbl @MMK_R_z -10;
+ pos quotedbl @MMK_R_a -80;
+ pos quotedbl @MMK_R_c -80;
+ pos quotedbl @MMK_R_d -80;
+ pos quotedbl @MMK_R_f -10;
+ pos quotedbl @MMK_R_g -70;
+ pos quotedbl @MMK_R_m -10;
+ pos quotedbl @MMK_R_n -10;
+ pos quotedbl @MMK_R_S -35;
+ pos quotedbl @MMK_R_A -135;
+ pos quotedbl @MMK_R_C -30;
+ pos quotedbl @MMK_R_O -30;
+ pos quotedbl @MMK_R_eth -90;
+ pos braceright @MMK_R_Z -65;
+ pos braceright @MMK_R_dcaron -65;
+ pos braceright @MMK_R_lcaron -65;
+ pos braceright @MMK_R_q -65;
+ pos braceright @MMK_R_b -65;
+ pos braceright @MMK_R_d -65;
+ pos braceright @MMK_R_f -110;
+ pos braceright @MMK_R_j -50;
+ pos braceright @MMK_R_l -65;
+ pos braceright @MMK_R_P -65;
+ pos braceright @MMK_R_a.alt -65;
+ pos braceright @MMK_R_Thorn -65;
+ pos braceright @MMK_R_N -65;
+ pos braceright @MMK_R_s -105;
+ pos braceright @MMK_R_r -65;
+ pos braceright @MMK_R_u -65;
+ pos braceright @MMK_R_t -110;
+ pos braceright @MMK_R_y -90;
+ pos braceright @MMK_R_x -110;
+ pos braceright @MMK_R_z -65;
+ pos braceright @MMK_R_a -70;
+ pos braceright @MMK_R_c -65;
+ pos braceright @MMK_R_e -65;
+ pos braceright @MMK_R_g -65;
+ pos braceright @MMK_R_i -65;
+ pos braceright @MMK_R_h -65;
+ pos braceright @MMK_R_m -65;
+ pos braceright @MMK_R_n -65;
+ pos braceright @MMK_R_Q -65;
+ pos braceright @MMK_R_S -135;
+ pos braceright @MMK_R_R -65;
+ pos braceright @MMK_R_U -65;
+ pos braceright @MMK_R_T -110;
+ pos braceright @MMK_R_W -135;
+ pos braceright @MMK_R_V -125;
+ pos braceright @MMK_R_Y -140;
+ pos braceright @MMK_R_X -110;
+ pos braceright @MMK_R_A -110;
+ pos braceright @MMK_R_C -65;
+ pos braceright @MMK_R_B -65;
+ pos braceright @MMK_R_I -65;
+ pos braceright @MMK_R_H -65;
+ pos braceright @MMK_R_K -65;
+ pos braceright @MMK_R_M -65;
+ pos braceright @MMK_R_O -65;
+ pos braceright @MMK_R_w -85;
+ pos braceright @MMK_R_v -85;
+ pos braceright @MMK_R_dcroat -65;
+ pos braceright @MMK_R_E -65;
+ pos braceright @MMK_R_D -65;
+ pos braceright @MMK_R_G -65;
+ pos braceright @MMK_R_J -125;
+ pos braceright @MMK_R_L -65;
+ pos braceright @MMK_R_germandbls -65;
+ pos braceright @MMK_R_eth -65;
+ pos braceright @MMK_R_Oslash -65;
+ pos braceright @MMK_R_p -65;
+ pos braceright @MMK_R_Lslash -65;
+ pos braceright @MMK_R_o -65;
+ pos braceright @MMK_R_oslash -65;
+ pos braceright @MMK_R_tcaron -110;
+ pos braceright @MMK_R_thorn -65;
+ pos braceright @MMK_R_F -65;
+ pos braceright @MMK_R_Eth -65;
+ pos braceright @MMK_R_lslash -65;
+ pos comma @MMK_R_dcaron -65;
+ pos comma @MMK_R_oslash -30;
+ pos comma @MMK_R_q -65;
+ pos comma @MMK_R_a -30;
+ pos comma @MMK_R_Y -115;
+ pos comma @MMK_R_W -115;
+ pos comma @MMK_R_O -110;
+ pos comma @MMK_R_y -75;
+ pos comma @MMK_R_v -60;
+ pos comma @MMK_R_w -60;
+ pos comma @MMK_R_t -95;
+ pos comma @MMK_R_u -35;
+ pos comma @MMK_R_s -20;
+ pos comma @MMK_R_o -75;
+ pos comma @MMK_R_j 55;
+ pos comma @MMK_R_f -80;
+ pos comma @MMK_R_g -95;
+ pos comma @MMK_R_d -65;
+ pos comma @MMK_R_e -70;
+ pos comma @MMK_R_c -65;
+ pos comma @MMK_R_V -110;
+ pos comma @MMK_R_T -115;
+ pos comma @MMK_R_U -60;
+ pos comma @MMK_R_S -30;
+ pos comma @MMK_R_Q -110;
+ pos comma @MMK_R_J -20;
+ pos comma @MMK_R_G -110;
+ pos comma @MMK_R_C -110;
+ pos comma @MMK_R_dcroat -65;
+ pos comma @MMK_R_a.alt -60;
+ pos comma @MMK_R_tcaron -95;
+ pos comma @MMK_R_eth -60;
+ pos quoteleft @MMK_R_a.alt -80;
+ pos quoteleft @MMK_R_dcaron -85;
+ pos quoteleft @MMK_R_Q -35;
+ pos quoteleft @MMK_R_X -35;
+ pos quoteleft @MMK_R_Y -35;
+ pos quoteleft @MMK_R_J -115;
+ pos quoteleft @MMK_R_d -85;
+ pos quoteleft @MMK_R_e -90;
+ pos quoteleft @MMK_R_g -80;
+ pos quoteleft @MMK_R_c -85;
+ pos quoteleft @MMK_R_o -95;
+ pos quoteleft @MMK_R_dcroat -85;
+ pos quoteleft @MMK_R_q -85;
+ pos quoteleft @MMK_R_x -15;
+ pos quoteleft @MMK_R_Oslash -35;
+ pos quoteleft @MMK_R_V -25;
+ pos quoteleft @MMK_R_W -25;
+ pos quoteleft @MMK_R_S -30;
+ pos quoteleft @MMK_R_s -65;
+ pos quoteleft @MMK_R_oslash -95;
+ pos quoteleft @MMK_R_eth -100;
+ pos quoteleft @MMK_R_G -35;
+ pos quoteleft @MMK_R_A -115;
+ pos quoteleft @MMK_R_C -35;
+ pos quoteleft @MMK_R_O -35;
+ pos quoteleft @MMK_R_a -75;
+ pos quotedblleft @MMK_R_a.alt -80;
+ pos quotedblleft @MMK_R_s -65;
+ pos quotedblleft @MMK_R_q -85;
+ pos quotedblleft @MMK_R_o -95;
+ pos quotedblleft @MMK_R_g -80;
+ pos quotedblleft @MMK_R_e -90;
+ pos quotedblleft @MMK_R_d -85;
+ pos quotedblleft @MMK_R_c -85;
+ pos quotedblleft @MMK_R_a -75;
+ pos quotedblleft @MMK_R_X -35;
+ pos quotedblleft @MMK_R_W -25;
+ pos quotedblleft @MMK_R_V -25;
+ pos quotedblleft @MMK_R_S -30;
+ pos quotedblleft @MMK_R_Q -35;
+ pos quotedblleft @MMK_R_J -205;
+ pos quotedblleft @MMK_R_G -35;
+ pos quotedblleft @MMK_R_C -35;
+ pos quotedblleft @MMK_R_A -135;
+ pos quotedblleft @MMK_R_dcaron -85;
+ pos quotedblleft @MMK_R_oslash -95;
+ pos quotedblleft @MMK_R_x -15;
+ pos quotedblleft @MMK_R_Y -35;
+ pos quotedblleft @MMK_R_O -35;
+ pos quotedblleft @MMK_R_eth -100;
+ pos quotedblleft @MMK_R_Oslash -35;
+ pos quotedblleft @MMK_R_dcroat -85;
+ pos quotedblbase @MMK_R_v -60;
+ pos quotedblbase @MMK_R_dcroat -65;
+ pos quotedblbase @MMK_R_a.alt -60;
+ pos quotedblbase @MMK_R_C -110;
+ pos quotedblbase @MMK_R_dcaron -65;
+ pos quotedblbase @MMK_R_g -95;
+ pos quotedblbase @MMK_R_f -80;
+ pos quotedblbase @MMK_R_e -70;
+ pos quotedblbase @MMK_R_d -65;
+ pos quotedblbase @MMK_R_c -65;
+ pos quotedblbase @MMK_R_o -75;
+ pos quotedblbase @MMK_R_j 55;
+ pos quotedblbase @MMK_R_u -35;
+ pos quotedblbase @MMK_R_t -95;
+ pos quotedblbase @MMK_R_s -20;
+ pos quotedblbase @MMK_R_q -65;
+ pos quotedblbase @MMK_R_y -75;
+ pos quotedblbase @MMK_R_G -110;
+ pos quotedblbase @MMK_R_O -110;
+ pos quotedblbase @MMK_R_W -130;
+ pos quotedblbase @MMK_R_V -110;
+ pos quotedblbase @MMK_R_U -60;
+ pos quotedblbase @MMK_R_S -30;
+ pos quotedblbase @MMK_R_tcaron -95;
+ pos quotedblbase @MMK_R_a -30;
+ pos quotedblbase @MMK_R_eth -60;
+ pos quotedblbase @MMK_R_w -60;
+ pos quotedblbase @MMK_R_J -20;
+ pos quotedblbase @MMK_R_T -115;
+ pos quotedblbase @MMK_R_Q -110;
+ pos quotedblbase @MMK_R_Y -120;
+ pos quotedblbase @MMK_R_oslash -30;
+ pos numbersign @MMK_R_Eth -50;
+ pos numbersign @MMK_R_eth -115;
+ pos numbersign @MMK_R_b -50;
+ pos numbersign @MMK_R_n -60;
+ pos numbersign @MMK_R_o -115;
+ pos numbersign @MMK_R_i -60;
+ pos numbersign @MMK_R_j -60;
+ pos numbersign @MMK_R_e -115;
+ pos numbersign @MMK_R_f -60;
+ pos numbersign @MMK_R_lslash -50;
+ pos numbersign @MMK_R_g -110;
+ pos numbersign @MMK_R_w -60;
+ pos numbersign @MMK_R_p -60;
+ pos numbersign @MMK_R_E -50;
+ pos numbersign @MMK_R_F -50;
+ pos numbersign @MMK_R_B -50;
+ pos numbersign @MMK_R_C -90;
+ pos numbersign @MMK_R_T -95;
+ pos numbersign @MMK_R_U -50;
+ pos numbersign @MMK_R_V -75;
+ pos numbersign @MMK_R_S -85;
+ pos numbersign @MMK_R_oslash -115;
+ pos numbersign @MMK_R_l -50;
+ pos numbersign @MMK_R_m -60;
+ pos numbersign @MMK_R_dcaron -115;
+ pos numbersign @MMK_R_d -115;
+ pos numbersign @MMK_R_Thorn -50;
+ pos numbersign @MMK_R_O -90;
+ pos numbersign @MMK_R_G -90;
+ pos numbersign @MMK_R_thorn -50;
+ pos numbersign @MMK_R_c -115;
+ pos numbersign @MMK_R_Oslash -90;
+ pos numbersign @MMK_R_lcaron -50;
+ pos numbersign @MMK_R_a.alt -110;
+ pos numbersign @MMK_R_tcaron -60;
+ pos numbersign @MMK_R_Lslash -50;
+ pos numbersign @MMK_R_A -190;
+ pos numbersign @MMK_R_h -50;
+ pos numbersign @MMK_R_a -130;
+ pos numbersign @MMK_R_x -70;
+ pos numbersign @MMK_R_y -65;
+ pos numbersign @MMK_R_z -60;
+ pos numbersign @MMK_R_t -60;
+ pos numbersign @MMK_R_u -60;
+ pos numbersign @MMK_R_v -65;
+ pos numbersign @MMK_R_q -115;
+ pos numbersign @MMK_R_r -60;
+ pos numbersign @MMK_R_s -115;
+ pos numbersign @MMK_R_L -50;
+ pos numbersign @MMK_R_M -50;
+ pos numbersign @MMK_R_N -50;
+ pos numbersign @MMK_R_H -50;
+ pos numbersign @MMK_R_I -50;
+ pos numbersign @MMK_R_J -260;
+ pos numbersign @MMK_R_K -50;
+ pos numbersign @MMK_R_D -50;
+ pos numbersign @MMK_R_X -90;
+ pos numbersign @MMK_R_Y -90;
+ pos numbersign @MMK_R_Z -50;
+ pos numbersign @MMK_R_W -80;
+ pos numbersign @MMK_R_P -50;
+ pos numbersign @MMK_R_Q -90;
+ pos numbersign @MMK_R_R -50;
+ pos numbersign @MMK_R_dcroat -115;
+ pos numbersign @MMK_R_germandbls -55;
+ pos periodcentered @MMK_R_tcaron -80;
+ pos periodcentered @MMK_R_s -60;
+ pos periodcentered @MMK_R_v -30;
+ pos periodcentered @MMK_R_t -80;
+ pos periodcentered @MMK_R_a -20;
+ pos periodcentered @MMK_R_f -80;
+ pos periodcentered @MMK_R_S -105;
+ pos periodcentered @MMK_R_W -80;
+ pos periodcentered @MMK_R_V -70;
+ pos periodcentered @MMK_R_T -105;
+ pos periodcentered @MMK_R_Y -105;
+ pos periodcentered @MMK_R_X -70;
+ pos periodcentered @MMK_R_A -65;
+ pos periodcentered @MMK_R_J -105;
+ pos periodcentered @MMK_R_w -25;
+ pos periodcentered @MMK_R_y -35;
+ pos periodcentered @MMK_R_x -55;
+ pos bracketleft @MMK_R_s -15;
+ pos bracketleft @MMK_R_j 75;
+ pos bracketleft @MMK_R_S -30;
+ pos bracketleft @MMK_R_J -20;
+ pos quoteright @MMK_R_oslash -115;
+ pos quoteright @MMK_R_eth -115;
+ pos quoteright @MMK_R_a.alt -100;
+ pos quoteright @MMK_R_g -100;
+ pos quoteright @MMK_R_d -110;
+ pos quoteright @MMK_R_a -85;
+ pos quoteright @MMK_R_n -20;
+ pos quoteright @MMK_R_m -20;
+ pos quoteright @MMK_R_v -20;
+ pos quoteright @MMK_R_w -15;
+ pos quoteright @MMK_R_s -90;
+ pos quoteright @MMK_R_A -115;
+ pos quoteright @MMK_R_O -55;
+ pos quoteright @MMK_R_J -115;
+ pos quoteright @MMK_R_V -10;
+ pos quoteright @MMK_R_W -15;
+ pos quoteright @MMK_R_S -35;
+ pos quoteright @MMK_R_Q -55;
+ pos quoteright @MMK_R_X -15;
+ pos quoteright @MMK_R_Oslash -55;
+ pos quoteright @MMK_R_e -110;
+ pos quoteright @MMK_R_c -105;
+ pos quoteright @MMK_R_o -115;
+ pos quoteright @MMK_R_dcaron -110;
+ pos quoteright @MMK_R_t -20;
+ pos quoteright @MMK_R_u -20;
+ pos quoteright @MMK_R_r -20;
+ pos quoteright @MMK_R_q -110;
+ pos quoteright @MMK_R_z -20;
+ pos quoteright @MMK_R_x -30;
+ pos quoteright @MMK_R_G -55;
+ pos quoteright @MMK_R_C -55;
+ pos quoteright @MMK_R_y -20;
+ pos quoteright @MMK_R_Y -15;
+ pos quoteright @MMK_R_f -20;
+ pos quoteright @MMK_R_p -20;
+ pos quoteright @MMK_R_dcroat -110;
+ pos quoteright @MMK_R_tcaron -20;
+ pos bracketright @MMK_R_j 75;
+ pos bracketright @MMK_R_s -15;
+ pos bracketright @MMK_R_J -20;
+ pos bracketright @MMK_R_S -30;
+ subtable;
+ pos dollar @MMK_R_Oslash -20;
+ pos dollar @MMK_R_tcaron -80;
+ pos dollar @MMK_R_s -60;
+ pos dollar @MMK_R_v -40;
+ pos dollar @MMK_R_w -40;
+ pos dollar @MMK_R_t -80;
+ pos dollar @MMK_R_x -35;
+ pos dollar @MMK_R_S -65;
+ pos dollar @MMK_R_f -80;
+ pos dollar @MMK_R_Q -20;
+ pos dollar @MMK_R_V -55;
+ pos dollar @MMK_R_T -50;
+ pos dollar @MMK_R_G -20;
+ pos dollar @MMK_R_O -20;
+ pos dollar @MMK_R_A -35;
+ pos dollar @MMK_R_J -60;
+ pos dollar @MMK_R_X -40;
+ pos dollar @MMK_R_y -45;
+ pos dollar @MMK_R_g -10;
+ pos dollar @MMK_R_W -55;
+ pos dollar @MMK_R_Y -55;
+ pos dollar @MMK_R_C -20;
+ pos perthousand @MMK_R_tcaron -80;
+ pos perthousand @MMK_R_Oslash -20;
+ pos perthousand @MMK_R_f -80;
+ pos perthousand @MMK_R_S -55;
+ pos perthousand @MMK_R_Q -20;
+ pos perthousand @MMK_R_v -40;
+ pos perthousand @MMK_R_G -25;
+ pos perthousand @MMK_R_W -95;
+ pos perthousand @MMK_R_g -10;
+ pos perthousand @MMK_R_A -30;
+ pos perthousand @MMK_R_J -50;
+ pos perthousand @MMK_R_V -80;
+ pos perthousand @MMK_R_T -115;
+ pos perthousand @MMK_R_X -35;
+ pos perthousand @MMK_R_Y -120;
+ pos perthousand @MMK_R_w -40;
+ pos perthousand @MMK_R_t -80;
+ pos perthousand @MMK_R_s -50;
+ pos perthousand @MMK_R_x -30;
+ pos perthousand @MMK_R_y -50;
+ pos perthousand @MMK_R_C -20;
+ pos perthousand @MMK_R_O -20;
+ pos multiply @MMK_R_dcroat -50;
+ pos multiply @MMK_R_eth -45;
+ pos multiply @MMK_R_Oslash -55;
+ pos multiply @MMK_R_lslash -45;
+ pos multiply @MMK_R_D -45;
+ pos multiply @MMK_R_Lslash -45;
+ pos multiply @MMK_R_I -45;
+ pos multiply @MMK_R_lcaron -45;
+ pos multiply @MMK_R_Eth -45;
+ pos multiply @MMK_R_t -45;
+ pos multiply @MMK_R_y -55;
+ pos multiply @MMK_R_u -45;
+ pos multiply @MMK_R_m -45;
+ pos multiply @MMK_R_v -50;
+ pos multiply @MMK_R_j -45;
+ pos multiply @MMK_R_c -50;
+ pos multiply @MMK_R_f -45;
+ pos multiply @MMK_R_g -50;
+ pos multiply @MMK_R_U -45;
+ pos multiply @MMK_R_J -215;
+ pos multiply @MMK_R_K -45;
+ pos multiply @MMK_R_E -45;
+ pos multiply @MMK_R_V -80;
+ pos multiply @MMK_R_W -90;
+ pos multiply @MMK_R_Thorn -45;
+ pos multiply @MMK_R_O -55;
+ pos multiply @MMK_R_B -45;
+ pos multiply @MMK_R_l -45;
+ pos multiply @MMK_R_C -55;
+ pos multiply @MMK_R_A -105;
+ pos multiply @MMK_R_thorn -45;
+ pos multiply @MMK_R_a -55;
+ pos multiply @MMK_R_dcaron -50;
+ pos multiply @MMK_R_z -45;
+ pos multiply @MMK_R_r -45;
+ pos multiply @MMK_R_s -80;
+ pos multiply @MMK_R_p -45;
+ pos multiply @MMK_R_w -45;
+ pos multiply @MMK_R_i -45;
+ pos multiply @MMK_R_b -45;
+ pos multiply @MMK_R_e -50;
+ pos multiply @MMK_R_Z -45;
+ pos multiply @MMK_R_Y -110;
+ pos multiply @MMK_R_R -45;
+ pos multiply @MMK_R_P -45;
+ pos multiply @MMK_R_Q -55;
+ pos multiply @MMK_R_T -160;
+ pos multiply @MMK_R_G -55;
+ pos multiply @MMK_R_d -50;
+ pos multiply @MMK_R_germandbls -45;
+ pos multiply @MMK_R_oslash -50;
+ pos multiply @MMK_R_a.alt -50;
+ pos multiply @MMK_R_q -50;
+ pos multiply @MMK_R_tcaron -45;
+ pos multiply @MMK_R_x -65;
+ pos multiply @MMK_R_h -45;
+ pos multiply @MMK_R_n -45;
+ pos multiply @MMK_R_o -50;
+ pos multiply @MMK_R_S -75;
+ pos multiply @MMK_R_H -45;
+ pos multiply @MMK_R_N -45;
+ pos multiply @MMK_R_L -45;
+ pos multiply @MMK_R_M -45;
+ pos multiply @MMK_R_F -45;
+ pos multiply @MMK_R_X -110;
+ pos yen @MMK_R_J -75;
+ pos yen @MMK_R_germandbls -25;
+ pos yen @MMK_R_x -35;
+ pos yen @MMK_R_Oslash -50;
+ pos yen @MMK_R_Q -50;
+ pos yen @MMK_R_S -55;
+ pos yen @MMK_R_q -60;
+ pos yen @MMK_R_s -75;
+ pos yen @MMK_R_r -30;
+ pos yen @MMK_R_v -30;
+ pos yen @MMK_R_C -50;
+ pos yen @MMK_R_G -50;
+ pos yen @MMK_R_O -50;
+ pos yen @MMK_R_a -60;
+ pos yen @MMK_R_c -60;
+ pos yen @MMK_R_g -60;
+ pos yen @MMK_R_o -60;
+ pos yen @MMK_R_u -30;
+ pos yen @MMK_R_w -25;
+ pos yen @MMK_R_z -30;
+ pos yen @MMK_R_dcaron -60;
+ pos yen @MMK_R_p -30;
+ pos yen @MMK_R_t -30;
+ pos yen @MMK_R_A -60;
+ pos yen @MMK_R_dcroat -60;
+ pos yen @MMK_R_e -60;
+ pos yen @MMK_R_d -60;
+ pos yen @MMK_R_f -30;
+ pos yen @MMK_R_m -30;
+ pos yen @MMK_R_n -30;
+ pos yen @MMK_R_a.alt -60;
+ pos yen @MMK_R_y -30;
+ pos yen @MMK_R_oslash -60;
+ pos yen @MMK_R_eth -60;
+ pos yen @MMK_R_tcaron -30;
+ pos euro @MMK_R_A -30;
+ pos euro @MMK_R_W -25;
+ pos euro @MMK_R_S -30;
+ pos euro @MMK_R_Y -35;
+ pos euro @MMK_R_X -30;
+ pos euro @MMK_R_J -80;
+ pos euro @MMK_R_s -30;
+ pos euro @MMK_R_x -10;
+ pos euro @MMK_R_V -20;
+ pos minus @MMK_R_S -55;
+ pos minus @MMK_R_J -285;
+ pos minus @MMK_R_W -55;
+ pos minus @MMK_R_T -115;
+ pos minus @MMK_R_X -75;
+ pos minus @MMK_R_V -50;
+ pos minus @MMK_R_t -80;
+ pos minus @MMK_R_f -80;
+ pos minus @MMK_R_Y -80;
+ pos minus @MMK_R_A -70;
+ pos minus @MMK_R_y -15;
+ pos minus @MMK_R_x -30;
+ pos minus @MMK_R_w -10;
+ pos minus @MMK_R_v -15;
+ pos minus @MMK_R_s -30;
+ pos minus @MMK_R_a -30;
+ pos minus @MMK_R_tcaron -80;
+ pos ampersand @MMK_R_B -15;
+ pos ampersand @MMK_R_m -15;
+ pos ampersand @MMK_R_I -15;
+ pos ampersand @MMK_R_eth -35;
+ pos ampersand @MMK_R_E -15;
+ pos ampersand @MMK_R_G -35;
+ pos ampersand @MMK_R_dcroat -35;
+ pos ampersand @MMK_R_X -25;
+ pos ampersand @MMK_R_oslash -35;
+ pos ampersand @MMK_R_j -15;
+ pos ampersand @MMK_R_w -55;
+ pos ampersand @MMK_R_Y -135;
+ pos ampersand @MMK_R_g -30;
+ pos ampersand @MMK_R_z -15;
+ pos ampersand @MMK_R_r -15;
+ pos ampersand @MMK_R_Thorn -15;
+ pos ampersand @MMK_R_Eth -15;
+ pos ampersand @MMK_R_N -15;
+ pos ampersand @MMK_R_O -35;
+ pos ampersand @MMK_R_J -40;
+ pos ampersand @MMK_R_H -15;
+ pos ampersand @MMK_R_F -15;
+ pos ampersand @MMK_R_C -35;
+ pos ampersand @MMK_R_Z -15;
+ pos ampersand @MMK_R_W -110;
+ pos ampersand @MMK_R_U -30;
+ pos ampersand @MMK_R_R -15;
+ pos ampersand @MMK_R_P -15;
+ pos ampersand @MMK_R_Q -35;
+ pos ampersand @MMK_R_o -35;
+ pos ampersand @MMK_R_l -15;
+ pos ampersand @MMK_R_i -15;
+ pos ampersand @MMK_R_f -95;
+ pos ampersand @MMK_R_d -35;
+ pos ampersand @MMK_R_e -35;
+ pos ampersand @MMK_R_c -35;
+ pos ampersand @MMK_R_x -25;
+ pos ampersand @MMK_R_y -65;
+ pos ampersand @MMK_R_u -30;
+ pos ampersand @MMK_R_p -15;
+ pos ampersand @MMK_R_n -15;
+ pos ampersand @MMK_R_A -25;
+ pos ampersand @MMK_R_Lslash -15;
+ pos ampersand @MMK_R_tcaron -110;
+ pos ampersand @MMK_R_lslash -15;
+ pos ampersand @MMK_R_a.alt -30;
+ pos ampersand @MMK_R_germandbls -15;
+ pos ampersand @MMK_R_L -15;
+ pos ampersand @MMK_R_M -15;
+ pos ampersand @MMK_R_K -15;
+ pos ampersand @MMK_R_D -15;
+ pos ampersand @MMK_R_Oslash -35;
+ pos ampersand @MMK_R_V -100;
+ pos ampersand @MMK_R_dcaron -35;
+ pos ampersand @MMK_R_T -130;
+ pos ampersand @MMK_R_S -45;
+ pos ampersand @MMK_R_lcaron -15;
+ pos ampersand @MMK_R_h -15;
+ pos ampersand @MMK_R_b -15;
+ pos ampersand @MMK_R_a -50;
+ pos ampersand @MMK_R_v -60;
+ pos ampersand @MMK_R_t -110;
+ pos ampersand @MMK_R_s -40;
+ pos ampersand @MMK_R_q -35;
+ pos ampersand @MMK_R_thorn -15;
+ pos trademark @MMK_R_a -40;
+ pos trademark @MMK_R_x -10;
+ pos trademark @MMK_R_V -20;
+ pos trademark @MMK_R_W -25;
+ pos trademark @MMK_R_S -30;
+ pos trademark @MMK_R_X -35;
+ pos trademark @MMK_R_Y -35;
+ pos trademark @MMK_R_A -75;
+ pos trademark @MMK_R_J -285;
+ pos trademark @MMK_R_s -30;
+ pos asciicircum @MMK_R_eth -50;
+ pos asciicircum @MMK_R_dcroat -45;
+ pos asciicircum @MMK_R_J -260;
+ pos asciicircum @MMK_R_A -115;
+ pos asciicircum @MMK_R_W -55;
+ pos asciicircum @MMK_R_v -15;
+ pos asciicircum @MMK_R_tcaron -10;
+ pos asciicircum @MMK_R_Oslash -10;
+ pos asciicircum @MMK_R_dcaron -45;
+ pos asciicircum @MMK_R_x -30;
+ pos asciicircum @MMK_R_O -10;
+ pos asciicircum @MMK_R_G -10;
+ pos asciicircum @MMK_R_C -10;
+ pos asciicircum @MMK_R_Y -80;
+ pos asciicircum @MMK_R_X -80;
+ pos asciicircum @MMK_R_V -50;
+ pos asciicircum @MMK_R_T -90;
+ pos asciicircum @MMK_R_S -50;
+ pos asciicircum @MMK_R_Q -10;
+ pos asciicircum @MMK_R_o -50;
+ pos asciicircum @MMK_R_g -35;
+ pos asciicircum @MMK_R_f -10;
+ pos asciicircum @MMK_R_e -45;
+ pos asciicircum @MMK_R_c -40;
+ pos asciicircum @MMK_R_y -20;
+ pos asciicircum @MMK_R_w -10;
+ pos asciicircum @MMK_R_t -10;
+ pos asciicircum @MMK_R_s -35;
+ pos asciicircum @MMK_R_q -45;
+ pos asciicircum @MMK_R_a.alt -40;
+ pos asciicircum @MMK_R_d -45;
+ pos asciicircum @MMK_R_a -130;
+ pos asciicircum @MMK_R_oslash -50;
+ pos asciitilde @MMK_R_r -30;
+ pos asciitilde @MMK_R_a.alt -55;
+ pos asciitilde @MMK_R_dcroat -55;
+ pos asciitilde @MMK_R_lslash -30;
+ pos asciitilde @MMK_R_germandbls -30;
+ pos asciitilde @MMK_R_A -135;
+ pos asciitilde @MMK_R_R -30;
+ pos asciitilde @MMK_R_j -30;
+ pos asciitilde @MMK_R_y -50;
+ pos asciitilde @MMK_R_tcaron -110;
+ pos asciitilde @MMK_R_Thorn -30;
+ pos asciitilde @MMK_R_L -30;
+ pos asciitilde @MMK_R_O -35;
+ pos asciitilde @MMK_R_N -30;
+ pos asciitilde @MMK_R_I -30;
+ pos asciitilde @MMK_R_H -30;
+ pos asciitilde @MMK_R_K -30;
+ pos asciitilde @MMK_R_J -240;
+ pos asciitilde @MMK_R_E -30;
+ pos asciitilde @MMK_R_D -30;
+ pos asciitilde @MMK_R_G -35;
+ pos asciitilde @MMK_R_B -30;
+ pos asciitilde @MMK_R_X -115;
+ pos asciitilde @MMK_R_Z -30;
+ pos asciitilde @MMK_R_U -30;
+ pos asciitilde @MMK_R_T -145;
+ pos asciitilde @MMK_R_W -90;
+ pos asciitilde @MMK_R_Q -35;
+ pos asciitilde @MMK_R_m -30;
+ pos asciitilde @MMK_R_h -30;
+ pos asciitilde @MMK_R_e -55;
+ pos asciitilde @MMK_R_d -55;
+ pos asciitilde @MMK_R_g -50;
+ pos asciitilde @MMK_R_a -135;
+ pos asciitilde @MMK_R_c -55;
+ pos asciitilde @MMK_R_z -30;
+ pos asciitilde @MMK_R_u -30;
+ pos asciitilde @MMK_R_w -45;
+ pos asciitilde @MMK_R_q -55;
+ pos asciitilde @MMK_R_p -30;
+ pos asciitilde @MMK_R_s -60;
+ pos asciitilde @MMK_R_Eth -30;
+ pos asciitilde @MMK_R_thorn -30;
+ pos asciitilde @MMK_R_M -30;
+ pos asciitilde @MMK_R_F -30;
+ pos asciitilde @MMK_R_C -35;
+ pos asciitilde @MMK_R_V -80;
+ pos asciitilde @MMK_R_P -30;
+ pos asciitilde @MMK_R_o -60;
+ pos asciitilde @MMK_R_i -30;
+ pos asciitilde @MMK_R_f -110;
+ pos asciitilde @MMK_R_b -30;
+ pos asciitilde @MMK_R_x -65;
+ pos asciitilde @MMK_R_t -110;
+ pos asciitilde @MMK_R_v -45;
+ pos asciitilde @MMK_R_Lslash -30;
+ pos asciitilde @MMK_R_lcaron -30;
+ pos asciitilde @MMK_R_eth -60;
+ pos asciitilde @MMK_R_S -85;
+ pos asciitilde @MMK_R_oslash -60;
+ pos asciitilde @MMK_R_Y -110;
+ pos asciitilde @MMK_R_l -30;
+ pos asciitilde @MMK_R_dcaron -55;
+ pos asciitilde @MMK_R_n -30;
+ pos asciitilde @MMK_R_Oslash -35;
+ pos equal @MMK_R_W -35;
+ pos equal @MMK_R_J -110;
+ pos equal @MMK_R_A -40;
+ pos equal @MMK_R_Y -50;
+ pos equal @MMK_R_X -40;
+ pos equal @MMK_R_V -30;
+ pos equal @MMK_R_T -115;
+ pos equal @MMK_R_S -30;
+ pos equal @MMK_R_x -10;
+ pos equal @MMK_R_s -30;
+ pos divide @MMK_R_T -115;
+ pos divide @MMK_R_tcaron -80;
+ pos divide @MMK_R_J -285;
+ pos divide @MMK_R_s -30;
+ pos divide @MMK_R_w -10;
+ pos divide @MMK_R_v -15;
+ pos divide @MMK_R_t -80;
+ pos divide @MMK_R_x -30;
+ pos divide @MMK_R_a -30;
+ pos divide @MMK_R_f -80;
+ pos divide @MMK_R_W -55;
+ pos divide @MMK_R_V -50;
+ pos divide @MMK_R_Y -80;
+ pos divide @MMK_R_X -75;
+ pos divide @MMK_R_A -70;
+ pos divide @MMK_R_y -15;
+ pos divide @MMK_R_S -55;
+ pos greater @MMK_R_x -35;
+ pos greater @MMK_R_v -15;
+ pos greater @MMK_R_t -80;
+ pos greater @MMK_R_a -70;
+ pos greater @MMK_R_Y -85;
+ pos greater @MMK_R_S -65;
+ pos greater @MMK_R_W -60;
+ pos greater @MMK_R_V -50;
+ pos greater @MMK_R_T -115;
+ pos greater @MMK_R_J -285;
+ pos greater @MMK_R_A -80;
+ pos greater @MMK_R_f -80;
+ pos greater @MMK_R_y -20;
+ pos greater @MMK_R_w -15;
+ pos greater @MMK_R_X -85;
+ pos greater @MMK_R_tcaron -80;
+ pos greater @MMK_R_s -30;
+ pos percent @MMK_R_s -50;
+ pos percent @MMK_R_w -40;
+ pos percent @MMK_R_Q -20;
+ pos percent @MMK_R_V -80;
+ pos percent @MMK_R_T -105;
+ pos percent @MMK_R_v -40;
+ pos percent @MMK_R_t -80;
+ pos percent @MMK_R_J -50;
+ pos percent @MMK_R_G -25;
+ pos percent @MMK_R_Y -110;
+ pos percent @MMK_R_S -55;
+ pos percent @MMK_R_W -95;
+ pos percent @MMK_R_y -50;
+ pos percent @MMK_R_Oslash -20;
+ pos percent @MMK_R_x -30;
+ pos percent @MMK_R_O -20;
+ pos percent @MMK_R_C -20;
+ pos percent @MMK_R_X -35;
+ pos percent @MMK_R_f -80;
+ pos percent @MMK_R_A -30;
+ pos percent @MMK_R_g -10;
+ pos percent @MMK_R_tcaron -80;
+ pos plus @MMK_R_s -30;
+ pos plus @MMK_R_V -50;
+ pos plus @MMK_R_W -55;
+ pos plus @MMK_R_T -115;
+ pos plus @MMK_R_S -55;
+ pos plus @MMK_R_X -75;
+ pos plus @MMK_R_Y -80;
+ pos plus @MMK_R_A -70;
+ pos plus @MMK_R_J -285;
+ pos plus @MMK_R_v -15;
+ pos plus @MMK_R_w -10;
+ pos plus @MMK_R_t -80;
+ pos plus @MMK_R_x -30;
+ pos plus @MMK_R_f -80;
+ pos plus @MMK_R_y -15;
+ pos plus @MMK_R_a -30;
+ pos plus @MMK_R_tcaron -80;
+ pos sterling @MMK_R_tcaron -35;
+ pos sterling @MMK_R_eth -35;
+ pos sterling @MMK_R_germandbls -35;
+ pos sterling @MMK_R_dcaron -35;
+ pos sterling @MMK_R_dcroat -35;
+ pos sterling @MMK_R_Q -35;
+ pos sterling @MMK_R_lcaron -35;
+ pos sterling @MMK_R_a.alt -35;
+ pos sterling @MMK_R_x -35;
+ pos sterling @MMK_R_b -35;
+ pos sterling @MMK_R_c -35;
+ pos sterling @MMK_R_a -35;
+ pos sterling @MMK_R_f -35;
+ pos sterling @MMK_R_g -35;
+ pos sterling @MMK_R_e -35;
+ pos sterling @MMK_R_n -35;
+ pos sterling @MMK_R_m -35;
+ pos sterling @MMK_R_r -35;
+ pos sterling @MMK_R_s -50;
+ pos sterling @MMK_R_p -35;
+ pos sterling @MMK_R_v -35;
+ pos sterling @MMK_R_u -35;
+ pos sterling @MMK_R_z -35;
+ pos sterling @MMK_R_B -35;
+ pos sterling @MMK_R_C -35;
+ pos sterling @MMK_R_A -35;
+ pos sterling @MMK_R_G -35;
+ pos sterling @MMK_R_D -35;
+ pos sterling @MMK_R_E -35;
+ pos sterling @MMK_R_J -50;
+ pos sterling @MMK_R_K -35;
+ pos sterling @MMK_R_H -35;
+ pos sterling @MMK_R_I -35;
+ pos sterling @MMK_R_O -35;
+ pos sterling @MMK_R_L -35;
+ pos sterling @MMK_R_M -35;
+ pos sterling @MMK_R_R -35;
+ pos sterling @MMK_R_S -60;
+ pos sterling @MMK_R_V -55;
+ pos sterling @MMK_R_W -60;
+ pos sterling @MMK_R_U -35;
+ pos sterling @MMK_R_X -35;
+ pos sterling @MMK_R_Y -70;
+ pos sterling @MMK_R_thorn -35;
+ pos sterling @MMK_R_Eth -35;
+ pos sterling @MMK_R_Z -35;
+ pos sterling @MMK_R_d -35;
+ pos sterling @MMK_R_j -35;
+ pos sterling @MMK_R_i -35;
+ pos sterling @MMK_R_l -35;
+ pos sterling @MMK_R_q -35;
+ pos sterling @MMK_R_t -35;
+ pos sterling @MMK_R_F -35;
+ pos sterling @MMK_R_Thorn -35;
+ pos sterling @MMK_R_Oslash -35;
+ pos sterling @MMK_R_Lslash -35;
+ pos sterling @MMK_R_oslash -35;
+ pos sterling @MMK_R_h -35;
+ pos sterling @MMK_R_o -35;
+ pos sterling @MMK_R_w -30;
+ pos sterling @MMK_R_y -35;
+ pos sterling @MMK_R_lslash -35;
+ pos sterling @MMK_R_N -35;
+ pos sterling @MMK_R_P -35;
+ pos sterling @MMK_R_T -35;
+ pos registered @MMK_R_q -20;
+ pos registered @MMK_R_s -30;
+ pos registered @MMK_R_c -20;
+ pos registered @MMK_R_o -25;
+ pos registered @MMK_R_d -20;
+ pos registered @MMK_R_e -20;
+ pos registered @MMK_R_g -15;
+ pos registered @MMK_R_x -20;
+ pos registered @MMK_R_y -10;
+ pos registered @MMK_R_A -100;
+ pos registered @MMK_R_X -60;
+ pos registered @MMK_R_Y -60;
+ pos registered @MMK_R_W -45;
+ pos registered @MMK_R_S -30;
+ pos registered @MMK_R_J -245;
+ pos registered @MMK_R_T -25;
+ pos registered @MMK_R_V -40;
+ pos registered @MMK_R_dcaron -20;
+ pos registered @MMK_R_v -10;
+ pos registered @MMK_R_oslash -25;
+ pos registered @MMK_R_eth -25;
+ pos registered @MMK_R_a -75;
+ pos registered @MMK_R_dcroat -20;
+ pos registered @MMK_R_a.alt -20;
+ pos less @MMK_R_s -15;
+ pos less @MMK_R_S -30;
+ pos less @MMK_R_J -20;
+ pos degree @MMK_R_Oslash -40;
+ pos degree @MMK_R_a.alt -85;
+ pos degree @MMK_R_tcaron -10;
+ pos degree @MMK_R_j -10;
+ pos degree @MMK_R_g -85;
+ pos degree @MMK_R_dcroat -95;
+ pos degree @MMK_R_n -10;
+ pos degree @MMK_R_o -100;
+ pos degree @MMK_R_a -80;
+ pos degree @MMK_R_c -90;
+ pos degree @MMK_R_d -95;
+ pos degree @MMK_R_e -95;
+ pos degree @MMK_R_f -10;
+ pos degree @MMK_R_y -10;
+ pos degree @MMK_R_z -10;
+ pos degree @MMK_R_p -10;
+ pos degree @MMK_R_s -75;
+ pos degree @MMK_R_t -10;
+ pos degree @MMK_R_v -10;
+ pos degree @MMK_R_S -30;
+ pos degree @MMK_R_W -20;
+ pos degree @MMK_R_oslash -100;
+ pos degree @MMK_R_Y -25;
+ pos degree @MMK_R_x -15;
+ pos degree @MMK_R_J -215;
+ pos degree @MMK_R_dcaron -95;
+ pos degree @MMK_R_eth -105;
+ pos degree @MMK_R_i -10;
+ pos degree @MMK_R_m -10;
+ pos degree @MMK_R_q -95;
+ pos degree @MMK_R_r -10;
+ pos degree @MMK_R_u -10;
+ pos degree @MMK_R_O -40;
+ pos degree @MMK_R_A -140;
+ pos degree @MMK_R_C -40;
+ pos degree @MMK_R_G -40;
+ pos degree @MMK_R_X -25;
+ pos degree @MMK_R_Q -40;
+ pos degree @MMK_R_V -15;
+ pos bar @MMK_R_s -15;
+ pos bar @MMK_R_j 65;
+ pos bar @MMK_R_S -30;
+ pos bar @MMK_R_J -20;
+ pos at @MMK_R_X -70;
+ pos at @MMK_R_f -15;
+ pos at @MMK_R_x -40;
+ pos at @MMK_R_t -15;
+ pos at @MMK_R_S -55;
+ pos at @MMK_R_W -65;
+ pos at @MMK_R_tcaron -15;
+ pos at @MMK_R_T -75;
+ pos at @MMK_R_a -20;
+ pos at @MMK_R_y -25;
+ pos at @MMK_R_s -35;
+ pos at @MMK_R_w -20;
+ pos at @MMK_R_J -105;
+ pos at @MMK_R_A -65;
+ pos at @MMK_R_Y -85;
+ pos at @MMK_R_V -55;
+ pos at @MMK_R_v -20;
+ pos copyright @MMK_R_J -90;
+ pos copyright @MMK_R_A -55;
+ pos copyright @MMK_R_X -60;
+ pos copyright @MMK_R_T -90;
+ pos copyright @MMK_R_V -60;
+ pos copyright @MMK_R_W -70;
+ pos copyright @MMK_R_S -65;
+ pos copyright @MMK_R_f -25;
+ pos copyright @MMK_R_a -10;
+ pos copyright @MMK_R_x -45;
+ pos copyright @MMK_R_y -30;
+ pos copyright @MMK_R_t -25;
+ pos copyright @MMK_R_w -20;
+ pos copyright @MMK_R_s -40;
+ pos copyright @MMK_R_tcaron -25;
+ pos copyright @MMK_R_v -25;
+ pos copyright @MMK_R_Y -95;
+ pos cent @MMK_R_X -10;
+ pos cent @MMK_R_J -20;
+ pos cent @MMK_R_s -15;
+ pos cent @MMK_R_W -40;
+ pos cent @MMK_R_Y -55;
+ pos cent @MMK_R_T -70;
+ pos cent @MMK_R_V -35;
+ pos cent @MMK_R_S -30;
+ pos paragraph @MMK_R_J -20;
+ pos paragraph @MMK_R_S -30;
+ pos paragraph @MMK_R_s -15;
+ subtable;
+ pos @MMK_L_x underscore -265;
+ pos @MMK_L_x quoteleft -10;
+ pos @MMK_L_x sterling -35;
+ pos @MMK_L_x backslash -90;
+ pos @MMK_L_x minus -30;
+ pos @MMK_L_x asterisk -15;
+ pos @MMK_L_x hyphen -45;
+ pos @MMK_L_x cent -45;
+ pos @MMK_L_x quotedblleft -10;
+ pos @MMK_L_x trademark -10;
+ pos @MMK_L_x degree -15;
+ pos @MMK_L_x quotedblright -55;
+ pos @MMK_L_x registered -20;
+ pos @MMK_L_x copyright -45;
+ pos @MMK_L_x guillemetleft -50;
+ pos @MMK_L_x guillemetright -20;
+ pos @MMK_L_x asciicircum -30;
+ pos @MMK_L_x euro -100;
+ pos @MMK_L_x less -35;
+ pos @MMK_L_x question -180;
+ pos @MMK_L_x perthousand -10;
+ pos @MMK_L_x guilsinglright -20;
+ pos @MMK_L_x percent -10;
+ pos @MMK_L_x yen -35;
+ pos @MMK_L_x quotesingle -20;
+ pos @MMK_L_x multiply -65;
+ pos @MMK_L_x asciitilde -80;
+ pos @MMK_L_x parenright -90;
+ pos @MMK_L_x emdash -45;
+ pos @MMK_L_x semicolon -10;
+ pos @MMK_L_x quoteright -55;
+ pos @MMK_L_x dollar -40;
+ pos @MMK_L_x at -45;
+ pos @MMK_L_x braceleft -105;
+ pos @MMK_L_x endash -45;
+ pos @MMK_L_x equal -10;
+ pos @MMK_L_x ampersand -35;
+ pos @MMK_L_x braceright -60;
+ pos @MMK_L_x slash -15;
+ pos @MMK_L_x bullet -50;
+ pos @MMK_L_x divide -30;
+ pos @MMK_L_x paragraph -10;
+ pos @MMK_L_x guilsinglleft -50;
+ pos @MMK_L_x plus -30;
+ pos @MMK_L_x numbersign -85;
+ pos @MMK_L_x quotedbl -20;
+ pos @MMK_L_x periodcentered -55;
+ pos @MMK_L_x parenleft -45;
+ pos @MMK_L_x @MMK_R_eth -45;
+ pos @MMK_L_x @MMK_R_a.alt -45;
+ pos @MMK_L_x @MMK_R_dcaron -50;
+ pos @MMK_L_x @MMK_R_S -35;
+ pos @MMK_L_x @MMK_R_J -20;
+ pos @MMK_L_x @MMK_R_Q -35;
+ pos @MMK_L_x @MMK_R_s -25;
+ pos @MMK_L_x @MMK_R_tcaron -10;
+ pos @MMK_L_x @MMK_R_W -45;
+ pos @MMK_L_x @MMK_R_V -40;
+ pos @MMK_L_x @MMK_R_U -10;
+ pos @MMK_L_x @MMK_R_T -115;
+ pos @MMK_L_x @MMK_R_O -35;
+ pos @MMK_L_x @MMK_R_C -35;
+ pos @MMK_L_x @MMK_R_G -35;
+ pos @MMK_L_x @MMK_R_y -10;
+ pos @MMK_L_x @MMK_R_q -50;
+ pos @MMK_L_x @MMK_R_v -10;
+ pos @MMK_L_x @MMK_R_u -10;
+ pos @MMK_L_x @MMK_R_t -10;
+ pos @MMK_L_x @MMK_R_o -50;
+ pos @MMK_L_x @MMK_R_c -50;
+ pos @MMK_L_x @MMK_R_a -30;
+ pos @MMK_L_x @MMK_R_g -50;
+ pos @MMK_L_x @MMK_R_f -10;
+ pos @MMK_L_x @MMK_R_e -50;
+ pos @MMK_L_x @MMK_R_d -50;
+ pos @MMK_L_x @MMK_R_oslash -30;
+ pos @MMK_L_x @MMK_R_dcroat -50;
+ pos @MMK_L_x @MMK_R_Y -60;
+ pos @MMK_L_w guilsinglleft -25;
+ pos @MMK_L_w backslash -80;
+ pos @MMK_L_w asciicircum -10;
+ pos @MMK_L_w endash -20;
+ pos @MMK_L_w copyright -25;
+ pos @MMK_L_w divide -10;
+ pos @MMK_L_w ellipsis -60;
+ pos @MMK_L_w at -25;
+ pos @MMK_L_w less -10;
+ pos @MMK_L_w hyphen -20;
+ pos @MMK_L_w emdash -20;
+ pos @MMK_L_w quotedblbase -65;
+ pos @MMK_L_w periodcentered -30;
+ pos @MMK_L_w minus -10;
+ pos @MMK_L_w question -185;
+ pos @MMK_L_w parenleft -25;
+ pos @MMK_L_w euro -85;
+ pos @MMK_L_w quoteright -45;
+ pos @MMK_L_w yen -25;
+ pos @MMK_L_w numbersign -100;
+ pos @MMK_L_w underscore -365;
+ pos @MMK_L_w plus -10;
+ pos @MMK_L_w braceright -55;
+ pos @MMK_L_w guilsinglright -15;
+ pos @MMK_L_w guillemetright -15;
+ pos @MMK_L_w guillemetleft -25;
+ pos @MMK_L_w braceleft -85;
+ pos @MMK_L_w slash -80;
+ pos @MMK_L_w ampersand -40;
+ pos @MMK_L_w quotedblright -45;
+ pos @MMK_L_w sterling -50;
+ pos @MMK_L_w dollar -25;
+ pos @MMK_L_w comma -65;
+ pos @MMK_L_w semicolon -10;
+ pos @MMK_L_w cent -25;
+ pos @MMK_L_w parenright -100;
+ pos @MMK_L_w bullet -25;
+ pos @MMK_L_w quotesinglbase -65;
+ pos @MMK_L_w questiondown -65;
+ pos @MMK_L_w multiply -45;
+ pos @MMK_L_w asciitilde -55;
+ pos @MMK_L_w @MMK_R_S -25;
+ pos @MMK_L_w @MMK_R_o -25;
+ pos @MMK_L_w @MMK_R_dcaron -25;
+ pos @MMK_L_w @MMK_R_eth -30;
+ pos @MMK_L_w @MMK_R_dcroat -25;
+ pos @MMK_L_w @MMK_R_oslash -25;
+ pos @MMK_L_w @MMK_R_a.alt -25;
+ pos @MMK_L_w @MMK_R_J -80;
+ pos @MMK_L_w @MMK_R_O -15;
+ pos @MMK_L_w @MMK_R_G -15;
+ pos @MMK_L_w @MMK_R_A -65;
+ pos @MMK_L_w @MMK_R_C -15;
+ pos @MMK_L_w @MMK_R_X -45;
+ pos @MMK_L_w @MMK_R_Y -45;
+ pos @MMK_L_w @MMK_R_T -110;
+ pos @MMK_L_w @MMK_R_V -25;
+ pos @MMK_L_w @MMK_R_W -30;
+ pos @MMK_L_w @MMK_R_Q -15;
+ pos @MMK_L_w @MMK_R_d -25;
+ pos @MMK_L_w @MMK_R_e -25;
+ pos @MMK_L_w @MMK_R_g -25;
+ pos @MMK_L_w @MMK_R_a -40;
+ pos @MMK_L_w @MMK_R_c -25;
+ pos @MMK_L_w @MMK_R_q -25;
+ pos @MMK_L_w @MMK_R_s -40;
+ pos @MMK_L_w @MMK_R_Oslash -15;
+ pos @MMK_L_y comma -115;
+ pos @MMK_L_y quotedblright -50;
+ pos @MMK_L_y slash -145;
+ pos @MMK_L_y divide -30;
+ pos @MMK_L_y dollar -35;
+ pos @MMK_L_y braceright -60;
+ pos @MMK_L_y degree -10;
+ pos @MMK_L_y parenleft -50;
+ pos @MMK_L_y plus -30;
+ pos @MMK_L_y multiply -60;
+ pos @MMK_L_y asciitilde -85;
+ pos @MMK_L_y quotedbl -10;
+ pos @MMK_L_y parenright -105;
+ pos @MMK_L_y colon -10;
+ pos @MMK_L_y euro -95;
+ pos @MMK_L_y asciicircum -30;
+ pos @MMK_L_y ellipsis -130;
+ pos @MMK_L_y quotedblbase -130;
+ pos @MMK_L_y guillemetleft -65;
+ pos @MMK_L_y hyphen -45;
+ pos @MMK_L_y questiondown -130;
+ pos @MMK_L_y less -35;
+ pos @MMK_L_y guilsinglleft -65;
+ pos @MMK_L_y periodcentered -65;
+ pos @MMK_L_y bullet -50;
+ pos @MMK_L_y ampersand -80;
+ pos @MMK_L_y braceleft -110;
+ pos @MMK_L_y guilsinglright -35;
+ pos @MMK_L_y copyright -45;
+ pos @MMK_L_y backslash -85;
+ pos @MMK_L_y underscore -150;
+ pos @MMK_L_y quoteright -50;
+ pos @MMK_L_y sterling -75;
+ pos @MMK_L_y minus -30;
+ pos @MMK_L_y yen -30;
+ pos @MMK_L_y at -50;
+ pos @MMK_L_y guillemetright -35;
+ pos @MMK_L_y numbersign -145;
+ pos @MMK_L_y semicolon -20;
+ pos @MMK_L_y question -200;
+ pos @MMK_L_y cent -55;
+ pos @MMK_L_y registered -10;
+ pos @MMK_L_y endash -45;
+ pos @MMK_L_y emdash -45;
+ pos @MMK_L_y quotesingle -10;
+ pos @MMK_L_y quotesinglbase -115;
+ pos @MMK_L_y @MMK_R_oslash -60;
+ pos @MMK_L_y @MMK_R_Oslash -30;
+ pos @MMK_L_y @MMK_R_eth -60;
+ pos @MMK_L_y @MMK_R_dcaron -55;
+ pos @MMK_L_y @MMK_R_G -30;
+ pos @MMK_L_y @MMK_R_J -150;
+ pos @MMK_L_y @MMK_R_W -35;
+ pos @MMK_L_y @MMK_R_X -50;
+ pos @MMK_L_y @MMK_R_dcroat -55;
+ pos @MMK_L_y @MMK_R_a.alt -55;
+ pos @MMK_L_y @MMK_R_c -55;
+ pos @MMK_L_y @MMK_R_a -85;
+ pos @MMK_L_y @MMK_R_g -50;
+ pos @MMK_L_y @MMK_R_d -55;
+ pos @MMK_L_y @MMK_R_e -55;
+ pos @MMK_L_y @MMK_R_o -60;
+ pos @MMK_L_y @MMK_R_s -55;
+ pos @MMK_L_y @MMK_R_q -55;
+ pos @MMK_L_y @MMK_R_x -10;
+ pos @MMK_L_y @MMK_R_C -30;
+ pos @MMK_L_y @MMK_R_A -135;
+ pos @MMK_L_y @MMK_R_O -30;
+ pos @MMK_L_y @MMK_R_S -30;
+ pos @MMK_L_y @MMK_R_Q -30;
+ pos @MMK_L_y @MMK_R_V -30;
+ pos @MMK_L_y @MMK_R_T -115;
+ pos @MMK_L_y @MMK_R_Y -50;
+ pos @MMK_L_r comma -115;
+ pos @MMK_L_r question -60;
+ pos @MMK_L_r backslash -50;
+ pos @MMK_L_r guilsinglleft -150;
+ pos @MMK_L_r bullet -60;
+ pos @MMK_L_r multiply -45;
+ pos @MMK_L_r less -85;
+ pos @MMK_L_r guillemetleft -150;
+ pos @MMK_L_r parenleft -25;
+ pos @MMK_L_r sterling -80;
+ pos @MMK_L_r asciitilde -85;
+ pos @MMK_L_r cent -40;
+ pos @MMK_L_r numbersign -125;
+ pos @MMK_L_r questiondown -175;
+ pos @MMK_L_r underscore -175;
+ pos @MMK_L_r plus -115;
+ pos @MMK_L_r emdash -165;
+ pos @MMK_L_r asciicircum -10;
+ pos @MMK_L_r braceright -60;
+ pos @MMK_L_r slash -175;
+ pos @MMK_L_r ampersand -110;
+ pos @MMK_L_r dollar -30;
+ pos @MMK_L_r quotedblbase -175;
+ pos @MMK_L_r braceleft -110;
+ pos @MMK_L_r euro -90;
+ pos @MMK_L_r endash -165;
+ pos @MMK_L_r hyphen -165;
+ pos @MMK_L_r quotesinglbase -115;
+ pos @MMK_L_r at -30;
+ pos @MMK_L_r divide -115;
+ pos @MMK_L_r guilsinglright -15;
+ pos @MMK_L_r guillemetright -15;
+ pos @MMK_L_r ellipsis -175;
+ pos @MMK_L_r copyright -25;
+ pos @MMK_L_r periodcentered -105;
+ pos @MMK_L_r parenright -45;
+ pos @MMK_L_r yen -15;
+ pos @MMK_L_r semicolon -10;
+ pos @MMK_L_r minus -115;
+ pos @MMK_L_r @MMK_R_oslash -50;
+ pos @MMK_L_r @MMK_R_eth -55;
+ pos @MMK_L_r @MMK_R_e -45;
+ pos @MMK_L_r @MMK_R_O -10;
+ pos @MMK_L_r @MMK_R_Oslash -10;
+ pos @MMK_L_r @MMK_R_a -75;
+ pos @MMK_L_r @MMK_R_c -45;
+ pos @MMK_L_r @MMK_R_d -45;
+ pos @MMK_L_r @MMK_R_g -35;
+ pos @MMK_L_r @MMK_R_o -50;
+ pos @MMK_L_r @MMK_R_q -45;
+ pos @MMK_L_r @MMK_R_s -35;
+ pos @MMK_L_r @MMK_R_x -10;
+ pos @MMK_L_r @MMK_R_A -110;
+ pos @MMK_L_r @MMK_R_C -10;
+ pos @MMK_L_r @MMK_R_G -10;
+ pos @MMK_L_r @MMK_R_J -175;
+ pos @MMK_L_r @MMK_R_Q -10;
+ pos @MMK_L_r @MMK_R_S -30;
+ pos @MMK_L_r @MMK_R_W -20;
+ pos @MMK_L_r @MMK_R_V -15;
+ pos @MMK_L_r @MMK_R_Y -25;
+ pos @MMK_L_r @MMK_R_X -25;
+ pos @MMK_L_r @MMK_R_a.alt -40;
+ pos @MMK_L_r @MMK_R_dcaron -45;
+ pos @MMK_L_r @MMK_R_dcroat -45;
+ pos @MMK_L_m quoteleft -45;
+ pos @MMK_L_m sterling -35;
+ pos @MMK_L_m underscore -365;
+ pos @MMK_L_m braceright -60;
+ pos @MMK_L_m paragraph -20;
+ pos @MMK_L_m numbersign -55;
+ pos @MMK_L_m quotedblright -95;
+ pos @MMK_L_m percent -25;
+ pos @MMK_L_m quotedblleft -45;
+ pos @MMK_L_m braceleft -65;
+ pos @MMK_L_m dollar -35;
+ pos @MMK_L_m parenright -90;
+ pos @MMK_L_m degree -55;
+ pos @MMK_L_m euro -90;
+ pos @MMK_L_m asciicircum -15;
+ pos @MMK_L_m quotedbl -40;
+ pos @MMK_L_m trademark -50;
+ pos @MMK_L_m quotesingle -40;
+ pos @MMK_L_m quoteright -95;
+ pos @MMK_L_m slash -15;
+ pos @MMK_L_m multiply -45;
+ pos @MMK_L_m backslash -130;
+ pos @MMK_L_m question -175;
+ pos @MMK_L_m asterisk -25;
+ pos @MMK_L_m yen -50;
+ pos @MMK_L_m perthousand -25;
+ pos @MMK_L_m asciitilde -30;
+ pos @MMK_L_m @MMK_R_tcaron -15;
+ pos @MMK_L_m @MMK_R_w -15;
+ pos @MMK_L_m @MMK_R_J -20;
+ pos @MMK_L_m @MMK_R_v -20;
+ pos @MMK_L_m @MMK_R_t -15;
+ pos @MMK_L_m @MMK_R_s -15;
+ pos @MMK_L_m @MMK_R_y -25;
+ pos @MMK_L_m @MMK_R_f -15;
+ pos @MMK_L_m @MMK_R_V -55;
+ pos @MMK_L_m @MMK_R_W -65;
+ pos @MMK_L_m @MMK_R_T -115;
+ pos @MMK_L_m @MMK_R_S -30;
+ pos @MMK_L_m @MMK_R_Y -85;
+ pos @MMK_L_b parenright -180;
+ pos @MMK_L_b yen -60;
+ pos @MMK_L_b quotedblleft -80;
+ pos @MMK_L_b quotedblbase -70;
+ pos @MMK_L_b guilsinglright -50;
+ pos @MMK_L_b braceleft -65;
+ pos @MMK_L_b quotesinglbase -70;
+ pos @MMK_L_b asciicircum -45;
+ pos @MMK_L_b questiondown -60;
+ pos @MMK_L_b quoteleft -80;
+ pos @MMK_L_b semicolon -60;
+ pos @MMK_L_b trademark -100;
+ pos @MMK_L_b slash -95;
+ pos @MMK_L_b euro -90;
+ pos @MMK_L_b colon -50;
+ pos @MMK_L_b dollar -85;
+ pos @MMK_L_b quoteright -115;
+ pos @MMK_L_b perthousand -55;
+ pos @MMK_L_b question -175;
+ pos @MMK_L_b ellipsis -70;
+ pos @MMK_L_b underscore -180;
+ pos @MMK_L_b backslash -160;
+ pos @MMK_L_b paragraph -45;
+ pos @MMK_L_b asterisk -60;
+ pos @MMK_L_b braceright -60;
+ pos @MMK_L_b comma -70;
+ pos @MMK_L_b degree -95;
+ pos @MMK_L_b quotedbl -80;
+ pos @MMK_L_b registered -20;
+ pos @MMK_L_b quotedblright -155;
+ pos @MMK_L_b numbersign -70;
+ pos @MMK_L_b multiply -50;
+ pos @MMK_L_b quotesingle -80;
+ pos @MMK_L_b guillemetright -50;
+ pos @MMK_L_b asciitilde -35;
+ pos @MMK_L_b sterling -35;
+ pos @MMK_L_b percent -55;
+ pos @MMK_L_b @MMK_R_tcaron -45;
+ pos @MMK_L_b @MMK_R_S -80;
+ pos @MMK_L_b @MMK_R_T -115;
+ pos @MMK_L_b @MMK_R_W -80;
+ pos @MMK_L_b @MMK_R_V -65;
+ pos @MMK_L_b @MMK_R_Y -105;
+ pos @MMK_L_b @MMK_R_X -60;
+ pos @MMK_L_b @MMK_R_A -55;
+ pos @MMK_L_b @MMK_R_J -105;
+ pos @MMK_L_b @MMK_R_s -50;
+ pos @MMK_L_b @MMK_R_t -45;
+ pos @MMK_L_b @MMK_R_w -25;
+ pos @MMK_L_b @MMK_R_v -30;
+ pos @MMK_L_b @MMK_R_y -35;
+ pos @MMK_L_b @MMK_R_x -50;
+ pos @MMK_L_b @MMK_R_a -10;
+ pos @MMK_L_b @MMK_R_f -45;
+ pos @MMK_L_germandbls percent -15;
+ pos @MMK_L_germandbls quotesingle -20;
+ pos @MMK_L_germandbls euro -90;
+ pos @MMK_L_germandbls parenright -55;
+ pos @MMK_L_germandbls sterling -35;
+ pos @MMK_L_germandbls quoteleft -15;
+ pos @MMK_L_germandbls backslash -70;
+ pos @MMK_L_germandbls slash -75;
+ pos @MMK_L_germandbls dollar -45;
+ pos @MMK_L_germandbls colon -20;
+ pos @MMK_L_germandbls registered -25;
+ pos @MMK_L_germandbls guilsinglright -35;
+ pos @MMK_L_germandbls quotedblbase -45;
+ pos @MMK_L_germandbls braceright -60;
+ pos @MMK_L_germandbls comma -45;
+ pos @MMK_L_germandbls semicolon -30;
+ pos @MMK_L_germandbls braceleft -65;
+ pos @MMK_L_germandbls guillemetright -35;
+ pos @MMK_L_germandbls quotedbl -20;
+ pos @MMK_L_germandbls asciicircum -40;
+ pos @MMK_L_germandbls less -25;
+ pos @MMK_L_germandbls trademark -15;
+ pos @MMK_L_germandbls ellipsis -45;
+ pos @MMK_L_germandbls underscore -150;
+ pos @MMK_L_germandbls quotesinglbase -45;
+ pos @MMK_L_germandbls questiondown -40;
+ pos @MMK_L_germandbls quotedblleft -15;
+ pos @MMK_L_germandbls quotedblright -25;
+ pos @MMK_L_germandbls paragraph -15;
+ pos @MMK_L_germandbls divide -10;
+ pos @MMK_L_germandbls multiply -50;
+ pos @MMK_L_germandbls question -60;
+ pos @MMK_L_germandbls plus -10;
+ pos @MMK_L_germandbls bullet -15;
+ pos @MMK_L_germandbls periodcentered -10;
+ pos @MMK_L_germandbls asciitilde -70;
+ pos @MMK_L_germandbls perthousand -15;
+ pos @MMK_L_germandbls yen -40;
+ pos @MMK_L_germandbls minus -10;
+ pos @MMK_L_germandbls quoteright -25;
+ pos @MMK_L_germandbls degree -20;
+ pos @MMK_L_germandbls asterisk -20;
+ pos @MMK_L_germandbls numbersign -60;
+ pos @MMK_L_germandbls @MMK_R_J -75;
+ pos @MMK_L_germandbls @MMK_R_O -15;
+ pos @MMK_L_germandbls @MMK_R_Y -50;
+ pos @MMK_L_germandbls @MMK_R_X -45;
+ pos @MMK_L_germandbls @MMK_R_S -45;
+ pos @MMK_L_germandbls @MMK_R_Q -15;
+ pos @MMK_L_germandbls @MMK_R_W -45;
+ pos @MMK_L_germandbls @MMK_R_T -20;
+ pos @MMK_L_germandbls @MMK_R_g -10;
+ pos @MMK_L_germandbls @MMK_R_f -15;
+ pos @MMK_L_germandbls @MMK_R_y -15;
+ pos @MMK_L_germandbls @MMK_R_x -25;
+ pos @MMK_L_germandbls @MMK_R_s -65;
+ pos @MMK_L_germandbls @MMK_R_w -10;
+ pos @MMK_L_germandbls @MMK_R_v -15;
+ pos @MMK_L_germandbls @MMK_R_Oslash -15;
+ pos @MMK_L_germandbls @MMK_R_tcaron -15;
+ pos @MMK_L_germandbls @MMK_R_C -15;
+ pos @MMK_L_germandbls @MMK_R_G -20;
+ pos @MMK_L_germandbls @MMK_R_A -40;
+ pos @MMK_L_germandbls @MMK_R_V -40;
+ pos @MMK_L_germandbls @MMK_R_t -15;
+ pos @MMK_L_lslash braceright -60;
+ pos @MMK_L_lslash underscore -140;
+ pos @MMK_L_lslash dollar -30;
+ pos @MMK_L_lslash numbersign -55;
+ pos @MMK_L_lslash braceleft -65;
+ pos @MMK_L_lslash slash -15;
+ pos @MMK_L_lslash question -20;
+ pos @MMK_L_lslash parenright -20;
+ pos @MMK_L_lslash sterling -35;
+ pos @MMK_L_lslash multiply -45;
+ pos @MMK_L_lslash euro -90;
+ pos @MMK_L_lslash asciitilde -30;
+ pos @MMK_L_lslash @MMK_R_S -30;
+ pos @MMK_L_lslash @MMK_R_J -20;
+ pos @MMK_L_lslash @MMK_R_s -15;
+ pos @MMK_L_dcaron quoteleft 95;
+ pos @MMK_L_dcaron parenright 90;
+ pos @MMK_L_dcaron quotedblright 110;
+ pos @MMK_L_dcaron bracketleft 115;
+ pos @MMK_L_dcaron greater 115;
+ pos @MMK_L_dcaron quotesingle 110;
+ pos @MMK_L_dcaron asterisk 105;
+ pos @MMK_L_dcaron quotedbl 110;
+ pos @MMK_L_dcaron equal 55;
+ pos @MMK_L_dcaron semicolon 40;
+ pos @MMK_L_dcaron registered 60;
+ pos @MMK_L_dcaron dollar 55;
+ pos @MMK_L_dcaron question 95;
+ pos @MMK_L_dcaron colon 50;
+ pos @MMK_L_dcaron bar 115;
+ pos @MMK_L_dcaron underscore -195;
+ pos @MMK_L_dcaron backslash 105;
+ pos @MMK_L_dcaron perthousand 95;
+ pos @MMK_L_dcaron paragraph 85;
+ pos @MMK_L_dcaron asciitilde -30;
+ pos @MMK_L_dcaron trademark 90;
+ pos @MMK_L_dcaron numbersign -55;
+ pos @MMK_L_dcaron quotedblleft 95;
+ pos @MMK_L_dcaron yen 110;
+ pos @MMK_L_dcaron quoteright 110;
+ pos @MMK_L_dcaron bracketright 115;
+ pos @MMK_L_dcaron euro -35;
+ pos @MMK_L_dcaron degree 105;
+ pos @MMK_L_dcaron braceleft -15;
+ pos @MMK_L_dcaron slash -15;
+ pos @MMK_L_dcaron multiply -45;
+ pos @MMK_L_dcaron braceright 50;
+ pos @MMK_L_dcaron percent 95;
+ pos @MMK_L_dcaron @MMK_R_Oslash 30;
+ pos @MMK_L_dcaron @MMK_R_lslash 115;
+ pos @MMK_L_dcaron @MMK_R_tcaron 55;
+ pos @MMK_L_dcaron @MMK_R_Lslash 115;
+ pos @MMK_L_dcaron @MMK_R_p 55;
+ pos @MMK_L_dcaron @MMK_R_Thorn 115;
+ pos @MMK_L_dcaron @MMK_R_germandbls 90;
+ pos @MMK_L_dcaron @MMK_R_thorn 115;
+ pos @MMK_L_dcaron @MMK_R_Y 110;
+ pos @MMK_L_dcaron @MMK_R_X 110;
+ pos @MMK_L_dcaron @MMK_R_Z 115;
+ pos @MMK_L_dcaron @MMK_R_Q 30;
+ pos @MMK_L_dcaron @MMK_R_P 115;
+ pos @MMK_L_dcaron @MMK_R_S 60;
+ pos @MMK_L_dcaron @MMK_R_R 115;
+ pos @MMK_L_dcaron @MMK_R_U 115;
+ pos @MMK_L_dcaron @MMK_R_T 115;
+ pos @MMK_L_dcaron @MMK_R_W 110;
+ pos @MMK_L_dcaron @MMK_R_V 110;
+ pos @MMK_L_dcaron @MMK_R_I 115;
+ pos @MMK_L_dcaron @MMK_R_H 115;
+ pos @MMK_L_dcaron @MMK_R_K 115;
+ pos @MMK_L_dcaron @MMK_R_J -20;
+ pos @MMK_L_dcaron @MMK_R_M 115;
+ pos @MMK_L_dcaron @MMK_R_L 115;
+ pos @MMK_L_dcaron @MMK_R_O 30;
+ pos @MMK_L_dcaron @MMK_R_N 115;
+ pos @MMK_L_dcaron @MMK_R_C 30;
+ pos @MMK_L_dcaron @MMK_R_B 115;
+ pos @MMK_L_dcaron @MMK_R_E 115;
+ pos @MMK_L_dcaron @MMK_R_D 115;
+ pos @MMK_L_dcaron @MMK_R_G 30;
+ pos @MMK_L_dcaron @MMK_R_F 115;
+ pos @MMK_L_dcaron @MMK_R_y 55;
+ pos @MMK_L_dcaron @MMK_R_x 45;
+ pos @MMK_L_dcaron @MMK_R_z 55;
+ pos @MMK_L_dcaron @MMK_R_s -15;
+ pos @MMK_L_dcaron @MMK_R_r 55;
+ pos @MMK_L_dcaron @MMK_R_u 55;
+ pos @MMK_L_dcaron @MMK_R_t 55;
+ pos @MMK_L_dcaron @MMK_R_w 60;
+ pos @MMK_L_dcaron @MMK_R_v 55;
+ pos @MMK_L_dcaron @MMK_R_i 115;
+ pos @MMK_L_dcaron @MMK_R_h 115;
+ pos @MMK_L_dcaron @MMK_R_j 115;
+ pos @MMK_L_dcaron @MMK_R_m 55;
+ pos @MMK_L_dcaron @MMK_R_l 115;
+ pos @MMK_L_dcaron @MMK_R_n 55;
+ pos @MMK_L_dcaron @MMK_R_b 115;
+ pos @MMK_L_dcaron @MMK_R_f 55;
+ pos @MMK_L_dcaron @MMK_R_Eth 115;
+ pos @MMK_L_dcaron @MMK_R_lcaron 115;
+ pos @MMK_L_eth quotesingle -70;
+ pos @MMK_L_eth quoteright -110;
+ pos @MMK_L_eth quotedblbase -65;
+ pos @MMK_L_eth quoteleft -70;
+ pos @MMK_L_eth questiondown -55;
+ pos @MMK_L_eth trademark -75;
+ pos @MMK_L_eth asterisk -50;
+ pos @MMK_L_eth asciicircum -40;
+ pos @MMK_L_eth quotedblright -110;
+ pos @MMK_L_eth paragraph -45;
+ pos @MMK_L_eth sterling -35;
+ pos @MMK_L_eth numbersign -70;
+ pos @MMK_L_eth question -170;
+ pos @MMK_L_eth comma -65;
+ pos @MMK_L_eth backslash -155;
+ pos @MMK_L_eth underscore -180;
+ pos @MMK_L_eth parenright -165;
+ pos @MMK_L_eth guilsinglright -45;
+ pos @MMK_L_eth quotedblleft -70;
+ pos @MMK_L_eth slash -90;
+ pos @MMK_L_eth quotesinglbase -65;
+ pos @MMK_L_eth percent -50;
+ pos @MMK_L_eth semicolon -55;
+ pos @MMK_L_eth braceleft -65;
+ pos @MMK_L_eth multiply -50;
+ pos @MMK_L_eth registered -20;
+ pos @MMK_L_eth guillemetright -45;
+ pos @MMK_L_eth quotedbl -70;
+ pos @MMK_L_eth euro -90;
+ pos @MMK_L_eth dollar -80;
+ pos @MMK_L_eth colon -45;
+ pos @MMK_L_eth yen -60;
+ pos @MMK_L_eth degree -80;
+ pos @MMK_L_eth perthousand -50;
+ pos @MMK_L_eth ellipsis -65;
+ pos @MMK_L_eth braceright -60;
+ pos @MMK_L_eth asciitilde -35;
+ pos @MMK_L_eth @MMK_R_f -40;
+ pos @MMK_L_eth @MMK_R_a -10;
+ pos @MMK_L_eth @MMK_R_x -50;
+ pos @MMK_L_eth @MMK_R_A -55;
+ pos @MMK_L_eth @MMK_R_tcaron -40;
+ pos @MMK_L_eth @MMK_R_W -80;
+ pos @MMK_L_eth @MMK_R_Y -105;
+ pos @MMK_L_eth @MMK_R_t -40;
+ pos @MMK_L_eth @MMK_R_v -30;
+ pos @MMK_L_eth @MMK_R_w -25;
+ pos @MMK_L_eth @MMK_R_s -50;
+ pos @MMK_L_eth @MMK_R_y -35;
+ pos @MMK_L_eth @MMK_R_J -100;
+ pos @MMK_L_eth @MMK_R_T -115;
+ pos @MMK_L_eth @MMK_R_V -65;
+ pos @MMK_L_eth @MMK_R_S -80;
+ pos @MMK_L_eth @MMK_R_X -55;
+ pos @MMK_L_thorn quotedblleft -80;
+ pos @MMK_L_thorn parenright -180;
+ pos @MMK_L_thorn quotesinglbase -70;
+ pos @MMK_L_thorn ellipsis -70;
+ pos @MMK_L_thorn sterling -35;
+ pos @MMK_L_thorn quoteright -115;
+ pos @MMK_L_thorn guilsinglright -50;
+ pos @MMK_L_thorn quoteleft -80;
+ pos @MMK_L_thorn asciitilde -35;
+ pos @MMK_L_thorn yen -60;
+ pos @MMK_L_thorn multiply -50;
+ pos @MMK_L_thorn trademark -100;
+ pos @MMK_L_thorn braceright -60;
+ pos @MMK_L_thorn colon -50;
+ pos @MMK_L_thorn semicolon -60;
+ pos @MMK_L_thorn numbersign -70;
+ pos @MMK_L_thorn quotedbl -80;
+ pos @MMK_L_thorn quotedblbase -70;
+ pos @MMK_L_thorn question -175;
+ pos @MMK_L_thorn asciicircum -45;
+ pos @MMK_L_thorn dollar -85;
+ pos @MMK_L_thorn paragraph -45;
+ pos @MMK_L_thorn backslash -160;
+ pos @MMK_L_thorn quotedblright -155;
+ pos @MMK_L_thorn underscore -180;
+ pos @MMK_L_thorn percent -55;
+ pos @MMK_L_thorn slash -95;
+ pos @MMK_L_thorn registered -20;
+ pos @MMK_L_thorn quotesingle -80;
+ pos @MMK_L_thorn guillemetright -50;
+ pos @MMK_L_thorn questiondown -60;
+ pos @MMK_L_thorn perthousand -55;
+ pos @MMK_L_thorn degree -95;
+ pos @MMK_L_thorn asterisk -60;
+ pos @MMK_L_thorn braceleft -65;
+ pos @MMK_L_thorn comma -70;
+ pos @MMK_L_thorn euro -90;
+ pos @MMK_L_thorn @MMK_R_f -45;
+ pos @MMK_L_thorn @MMK_R_A -55;
+ pos @MMK_L_thorn @MMK_R_S -80;
+ pos @MMK_L_thorn @MMK_R_s -50;
+ pos @MMK_L_thorn @MMK_R_tcaron -45;
+ pos @MMK_L_thorn @MMK_R_J -105;
+ pos @MMK_L_thorn @MMK_R_T -115;
+ pos @MMK_L_thorn @MMK_R_V -65;
+ pos @MMK_L_thorn @MMK_R_W -80;
+ pos @MMK_L_thorn @MMK_R_X -60;
+ pos @MMK_L_thorn @MMK_R_Y -105;
+ pos @MMK_L_thorn @MMK_R_a -10;
+ pos @MMK_L_thorn @MMK_R_t -45;
+ pos @MMK_L_thorn @MMK_R_v -30;
+ pos @MMK_L_thorn @MMK_R_w -25;
+ pos @MMK_L_thorn @MMK_R_x -50;
+ pos @MMK_L_thorn @MMK_R_y -35;
+ pos @MMK_L_a.alt asciitilde -30;
+ pos @MMK_L_a.alt degree -10;
+ pos @MMK_L_a.alt euro -90;
+ pos @MMK_L_a.alt slash -15;
+ pos @MMK_L_a.alt braceleft -65;
+ pos @MMK_L_a.alt underscore -195;
+ pos @MMK_L_a.alt quotedblright -50;
+ pos @MMK_L_a.alt quotesingle -10;
+ pos @MMK_L_a.alt braceright -60;
+ pos @MMK_L_a.alt numbersign -55;
+ pos @MMK_L_a.alt quoteright -50;
+ pos @MMK_L_a.alt quotedbl -10;
+ pos @MMK_L_a.alt backslash -85;
+ pos @MMK_L_a.alt multiply -45;
+ pos @MMK_L_a.alt question -175;
+ pos @MMK_L_a.alt parenright -90;
+ pos @MMK_L_a.alt dollar -30;
+ pos @MMK_L_a.alt yen -30;
+ pos @MMK_L_a.alt sterling -35;
+ pos @MMK_L_a.alt @MMK_R_Y -50;
+ pos @MMK_L_a.alt @MMK_R_S -30;
+ pos @MMK_L_a.alt @MMK_R_T -115;
+ pos @MMK_L_a.alt @MMK_R_W -35;
+ pos @MMK_L_a.alt @MMK_R_V -30;
+ pos @MMK_L_a.alt @MMK_R_J -20;
+ pos @MMK_L_a.alt @MMK_R_s -15;
+ pos @MMK_L_p quotedbl -80;
+ pos @MMK_L_p numbersign -70;
+ pos @MMK_L_p semicolon -60;
+ pos @MMK_L_p ellipsis -70;
+ pos @MMK_L_p guillemetright -50;
+ pos @MMK_L_p guilsinglright -50;
+ pos @MMK_L_p backslash -160;
+ pos @MMK_L_p perthousand -55;
+ pos @MMK_L_p dollar -85;
+ pos @MMK_L_p braceright -60;
+ pos @MMK_L_p asterisk -60;
+ pos @MMK_L_p trademark -100;
+ pos @MMK_L_p questiondown -60;
+ pos @MMK_L_p yen -60;
+ pos @MMK_L_p paragraph -45;
+ pos @MMK_L_p registered -20;
+ pos @MMK_L_p percent -55;
+ pos @MMK_L_p quoteleft -80;
+ pos @MMK_L_p slash -95;
+ pos @MMK_L_p quotedblleft -80;
+ pos @MMK_L_p asciitilde -35;
+ pos @MMK_L_p colon -50;
+ pos @MMK_L_p parenright -180;
+ pos @MMK_L_p sterling -35;
+ pos @MMK_L_p comma -70;
+ pos @MMK_L_p quotedblright -155;
+ pos @MMK_L_p degree -95;
+ pos @MMK_L_p quotesingle -80;
+ pos @MMK_L_p underscore -180;
+ pos @MMK_L_p asciicircum -45;
+ pos @MMK_L_p multiply -50;
+ pos @MMK_L_p question -175;
+ pos @MMK_L_p quotedblbase -70;
+ pos @MMK_L_p braceleft -65;
+ pos @MMK_L_p quotesinglbase -70;
+ pos @MMK_L_p quoteright -115;
+ pos @MMK_L_p euro -90;
+ pos @MMK_L_p @MMK_R_S -80;
+ pos @MMK_L_p @MMK_R_W -80;
+ pos @MMK_L_p @MMK_R_V -65;
+ pos @MMK_L_p @MMK_R_T -115;
+ pos @MMK_L_p @MMK_R_Y -105;
+ pos @MMK_L_p @MMK_R_X -60;
+ pos @MMK_L_p @MMK_R_A -55;
+ pos @MMK_L_p @MMK_R_J -105;
+ pos @MMK_L_p @MMK_R_s -50;
+ pos @MMK_L_p @MMK_R_w -25;
+ pos @MMK_L_p @MMK_R_v -30;
+ pos @MMK_L_p @MMK_R_t -45;
+ pos @MMK_L_p @MMK_R_y -35;
+ pos @MMK_L_p @MMK_R_x -50;
+ pos @MMK_L_p @MMK_R_a -10;
+ pos @MMK_L_p @MMK_R_f -45;
+ pos @MMK_L_p @MMK_R_tcaron -45;
+ pos @MMK_L_c question -175;
+ pos @MMK_L_c multiply -45;
+ pos @MMK_L_c sterling -35;
+ pos @MMK_L_c braceright -60;
+ pos @MMK_L_c quotedblright -80;
+ pos @MMK_L_c dollar -35;
+ pos @MMK_L_c braceleft -65;
+ pos @MMK_L_c yen -35;
+ pos @MMK_L_c quotedblleft -10;
+ pos @MMK_L_c degree -20;
+ pos @MMK_L_c semicolon -10;
+ pos @MMK_L_c quoteright -80;
+ pos @MMK_L_c underscore -110;
+ pos @MMK_L_c quoteleft -10;
+ pos @MMK_L_c parenright -115;
+ pos @MMK_L_c euro -90;
+ pos @MMK_L_c numbersign -55;
+ pos @MMK_L_c trademark -20;
+ pos @MMK_L_c quotesingle -15;
+ pos @MMK_L_c asciitilde -30;
+ pos @MMK_L_c backslash -95;
+ pos @MMK_L_c slash -30;
+ pos @MMK_L_c quotedbl -15;
+ pos @MMK_L_c @MMK_R_X -10;
+ pos @MMK_L_c @MMK_R_Y -60;
+ pos @MMK_L_c @MMK_R_S -30;
+ pos @MMK_L_c @MMK_R_T -115;
+ pos @MMK_L_c @MMK_R_V -35;
+ pos @MMK_L_c @MMK_R_W -40;
+ pos @MMK_L_c @MMK_R_J -25;
+ pos @MMK_L_c @MMK_R_A -10;
+ pos @MMK_L_c @MMK_R_x -10;
+ pos @MMK_L_c @MMK_R_s -25;
+ pos @MMK_L_v braceright -60;
+ pos @MMK_L_v quotesingle -10;
+ pos @MMK_L_v asciicircum -15;
+ pos @MMK_L_v questiondown -60;
+ pos @MMK_L_v yen -30;
+ pos @MMK_L_v ellipsis -60;
+ pos @MMK_L_v registered -10;
+ pos @MMK_L_v quoteright -50;
+ pos @MMK_L_v dollar -30;
+ pos @MMK_L_v quotesinglbase -60;
+ pos @MMK_L_v parenright -105;
+ pos @MMK_L_v quotedbl -10;
+ pos @MMK_L_v minus -15;
+ pos @MMK_L_v endash -20;
+ pos @MMK_L_v periodcentered -30;
+ pos @MMK_L_v plus -15;
+ pos @MMK_L_v less -15;
+ pos @MMK_L_v guilsinglleft -25;
+ pos @MMK_L_v comma -60;
+ pos @MMK_L_v hyphen -20;
+ pos @MMK_L_v semicolon -15;
+ pos @MMK_L_v asciitilde -55;
+ pos @MMK_L_v emdash -20;
+ pos @MMK_L_v quotedblbase -60;
+ pos @MMK_L_v sterling -55;
+ pos @MMK_L_v guilsinglright -20;
+ pos @MMK_L_v parenleft -25;
+ pos @MMK_L_v underscore -290;
+ pos @MMK_L_v numbersign -95;
+ pos @MMK_L_v backslash -85;
+ pos @MMK_L_v braceleft -85;
+ pos @MMK_L_v copyright -25;
+ pos @MMK_L_v bullet -25;
+ pos @MMK_L_v cent -25;
+ pos @MMK_L_v divide -15;
+ pos @MMK_L_v at -25;
+ pos @MMK_L_v multiply -50;
+ pos @MMK_L_v question -185;
+ pos @MMK_L_v degree -10;
+ pos @MMK_L_v guillemetright -20;
+ pos @MMK_L_v guillemetleft -25;
+ pos @MMK_L_v quotedblright -50;
+ pos @MMK_L_v slash -75;
+ pos @MMK_L_v ampersand -35;
+ pos @MMK_L_v euro -90;
+ pos @MMK_L_v @MMK_R_Oslash -15;
+ pos @MMK_L_v @MMK_R_oslash -30;
+ pos @MMK_L_v @MMK_R_a.alt -25;
+ pos @MMK_L_v @MMK_R_dcaron -30;
+ pos @MMK_L_v @MMK_R_G -20;
+ pos @MMK_L_v @MMK_R_A -60;
+ pos @MMK_L_v @MMK_R_C -15;
+ pos @MMK_L_v @MMK_R_O -15;
+ pos @MMK_L_v @MMK_R_W -35;
+ pos @MMK_L_v @MMK_R_Q -15;
+ pos @MMK_L_v @MMK_R_Y -50;
+ pos @MMK_L_v @MMK_R_e -30;
+ pos @MMK_L_v @MMK_R_d -30;
+ pos @MMK_L_v @MMK_R_g -25;
+ pos @MMK_L_v @MMK_R_a -40;
+ pos @MMK_L_v @MMK_R_c -25;
+ pos @MMK_L_v @MMK_R_o -30;
+ pos @MMK_L_v @MMK_R_q -30;
+ pos @MMK_L_v @MMK_R_s -45;
+ pos @MMK_L_v @MMK_R_x -10;
+ pos @MMK_L_v @MMK_R_X -50;
+ pos @MMK_L_v @MMK_R_J -75;
+ pos @MMK_L_v @MMK_R_T -115;
+ pos @MMK_L_v @MMK_R_V -30;
+ pos @MMK_L_v @MMK_R_S -30;
+ pos @MMK_L_v @MMK_R_eth -30;
+ pos @MMK_L_v @MMK_R_dcroat -30;
+ pos @MMK_L_q yen -30;
+ pos @MMK_L_q slash 15;
+ pos @MMK_L_q quotedblright -50;
+ pos @MMK_L_q quotesingle -10;
+ pos @MMK_L_q braceright -60;
+ pos @MMK_L_q dollar -30;
+ pos @MMK_L_q numbersign -55;
+ pos @MMK_L_q sterling -35;
+ pos @MMK_L_q braceleft -65;
+ pos @MMK_L_q quoteright -50;
+ pos @MMK_L_q asciitilde -30;
+ pos @MMK_L_q parenright -20;
+ pos @MMK_L_q multiply -45;
+ pos @MMK_L_q quotedbl -10;
+ pos @MMK_L_q euro -90;
+ pos @MMK_L_q backslash -85;
+ pos @MMK_L_q question -175;
+ pos @MMK_L_q degree -10;
+ pos @MMK_L_q @MMK_R_S -30;
+ pos @MMK_L_q @MMK_R_V -30;
+ pos @MMK_L_q @MMK_R_W -35;
+ pos @MMK_L_q @MMK_R_T -115;
+ pos @MMK_L_q @MMK_R_J -20;
+ pos @MMK_L_q @MMK_R_j 85;
+ pos @MMK_L_q @MMK_R_Y -50;
+ pos @MMK_L_q @MMK_R_s -15;
+ pos @MMK_L_s parenleft -15;
+ pos @MMK_L_s asciicircum -80;
+ pos @MMK_L_s guilsinglleft -45;
+ pos @MMK_L_s guillemetleft -45;
+ pos @MMK_L_s asciitilde -165;
+ pos @MMK_L_s cent -15;
+ pos @MMK_L_s paragraph -20;
+ pos @MMK_L_s bullet -45;
+ pos @MMK_L_s at -15;
+ pos @MMK_L_s degree -30;
+ pos @MMK_L_s guilsinglright -10;
+ pos @MMK_L_s euro -105;
+ pos @MMK_L_s sterling -55;
+ pos @MMK_L_s quotedbl -30;
+ pos @MMK_L_s backslash -105;
+ pos @MMK_L_s emdash -15;
+ pos @MMK_L_s divide -65;
+ pos @MMK_L_s multiply -75;
+ pos @MMK_L_s periodcentered -40;
+ pos @MMK_L_s underscore -125;
+ pos @MMK_L_s quotesingle -30;
+ pos @MMK_L_s minus -65;
+ pos @MMK_L_s percent -20;
+ pos @MMK_L_s endash -15;
+ pos @MMK_L_s parenright -125;
+ pos @MMK_L_s numbersign -55;
+ pos @MMK_L_s braceleft -75;
+ pos @MMK_L_s yen -50;
+ pos @MMK_L_s asterisk -25;
+ pos @MMK_L_s quotesinglbase -25;
+ pos @MMK_L_s ellipsis -20;
+ pos @MMK_L_s braceright -60;
+ pos @MMK_L_s question -170;
+ pos @MMK_L_s copyright -20;
+ pos @MMK_L_s hyphen -15;
+ pos @MMK_L_s plus -65;
+ pos @MMK_L_s quotedblbase -25;
+ pos @MMK_L_s perthousand -20;
+ pos @MMK_L_s slash -55;
+ pos @MMK_L_s colon -20;
+ pos @MMK_L_s trademark -20;
+ pos @MMK_L_s registered -30;
+ pos @MMK_L_s questiondown -20;
+ pos @MMK_L_s semicolon -30;
+ pos @MMK_L_s dollar -50;
+ pos @MMK_L_s quotedblright -70;
+ pos @MMK_L_s quoteright -70;
+ pos @MMK_L_s guillemetright -10;
+ pos @MMK_L_s comma -25;
+ pos @MMK_L_s quotedblleft -25;
+ pos @MMK_L_s less -130;
+ pos @MMK_L_s quoteleft -25;
+ pos @MMK_L_s @MMK_R_a.alt -15;
+ pos @MMK_L_s @MMK_R_tcaron -20;
+ pos @MMK_L_s @MMK_R_oslash -20;
+ pos @MMK_L_s @MMK_R_eth -15;
+ pos @MMK_L_s @MMK_R_dcroat -15;
+ pos @MMK_L_s @MMK_R_y -20;
+ pos @MMK_L_s @MMK_R_o -20;
+ pos @MMK_L_s @MMK_R_c -15;
+ pos @MMK_L_s @MMK_R_d -15;
+ pos @MMK_L_s @MMK_R_e -15;
+ pos @MMK_L_s @MMK_R_f -20;
+ pos @MMK_L_s @MMK_R_g -25;
+ pos @MMK_L_s @MMK_R_x -25;
+ pos @MMK_L_s @MMK_R_q -15;
+ pos @MMK_L_s @MMK_R_s -50;
+ pos @MMK_L_s @MMK_R_t -20;
+ pos @MMK_L_s @MMK_R_v -20;
+ pos @MMK_L_s @MMK_R_w -15;
+ pos @MMK_L_s @MMK_R_J -50;
+ pos @MMK_L_s @MMK_R_O -40;
+ pos @MMK_L_s @MMK_R_A -25;
+ pos @MMK_L_s @MMK_R_C -40;
+ pos @MMK_L_s @MMK_R_G -40;
+ pos @MMK_L_s @MMK_R_X -30;
+ pos @MMK_L_s @MMK_R_Y -70;
+ pos @MMK_L_s @MMK_R_Q -40;
+ pos @MMK_L_s @MMK_R_S -50;
+ pos @MMK_L_s @MMK_R_T -115;
+ pos @MMK_L_s @MMK_R_U -15;
+ pos @MMK_L_s @MMK_R_V -50;
+ pos @MMK_L_s @MMK_R_W -55;
+ pos @MMK_L_s @MMK_R_Oslash -40;
+ pos @MMK_L_s @MMK_R_dcaron -15;
+ pos @MMK_L_o quoteright -115;
+ pos @MMK_L_o quotesinglbase -75;
+ pos @MMK_L_o quotedbl -85;
+ pos @MMK_L_o question -175;
+ pos @MMK_L_o questiondown -65;
+ pos @MMK_L_o guilsinglright -55;
+ pos @MMK_L_o trademark -110;
+ pos @MMK_L_o quotesingle -85;
+ pos @MMK_L_o asciitilde -40;
+ pos @MMK_L_o quotedblbase -75;
+ pos @MMK_L_o braceright -60;
+ pos @MMK_L_o numbersign -75;
+ pos @MMK_L_o underscore -205;
+ pos @MMK_L_o asterisk -65;
+ pos @MMK_L_o perthousand -60;
+ pos @MMK_L_o percent -60;
+ pos @MMK_L_o euro -90;
+ pos @MMK_L_o quoteleft -90;
+ pos @MMK_L_o slash -100;
+ pos @MMK_L_o backslash -165;
+ pos @MMK_L_o semicolon -65;
+ pos @MMK_L_o ellipsis -75;
+ pos @MMK_L_o braceleft -65;
+ pos @MMK_L_o degree -100;
+ pos @MMK_L_o registered -25;
+ pos @MMK_L_o yen -60;
+ pos @MMK_L_o multiply -50;
+ pos @MMK_L_o quotedblleft -90;
+ pos @MMK_L_o comma -75;
+ pos @MMK_L_o paragraph -50;
+ pos @MMK_L_o guillemetright -55;
+ pos @MMK_L_o asciicircum -50;
+ pos @MMK_L_o colon -55;
+ pos @MMK_L_o parenright -180;
+ pos @MMK_L_o quotedblright -170;
+ pos @MMK_L_o dollar -90;
+ pos @MMK_L_o sterling -35;
+ pos @MMK_L_o @MMK_R_A -55;
+ pos @MMK_L_o @MMK_R_J -110;
+ pos @MMK_L_o @MMK_R_T -115;
+ pos @MMK_L_o @MMK_R_V -65;
+ pos @MMK_L_o @MMK_R_S -85;
+ pos @MMK_L_o @MMK_R_X -60;
+ pos @MMK_L_o @MMK_R_Y -105;
+ pos @MMK_L_o @MMK_R_f -50;
+ pos @MMK_L_o @MMK_R_t -50;
+ pos @MMK_L_o @MMK_R_v -30;
+ pos @MMK_L_o @MMK_R_x -50;
+ pos @MMK_L_o @MMK_R_W -80;
+ pos @MMK_L_o @MMK_R_tcaron -50;
+ pos @MMK_L_o @MMK_R_a -10;
+ pos @MMK_L_o @MMK_R_w -25;
+ pos @MMK_L_o @MMK_R_s -50;
+ pos @MMK_L_o @MMK_R_y -35;
+ pos @MMK_L_lcaron registered 90;
+ pos @MMK_L_lcaron quoteright 140;
+ pos @MMK_L_lcaron braceleft 15;
+ pos @MMK_L_lcaron colon 80;
+ pos @MMK_L_lcaron quoteleft 125;
+ pos @MMK_L_lcaron perthousand 125;
+ pos @MMK_L_lcaron percent 125;
+ pos @MMK_L_lcaron greater 145;
+ pos @MMK_L_lcaron numbersign -45;
+ pos @MMK_L_lcaron quotedbl 140;
+ pos @MMK_L_lcaron trademark 120;
+ pos @MMK_L_lcaron parenright 120;
+ pos @MMK_L_lcaron multiply -10;
+ pos @MMK_L_lcaron semicolon 70;
+ pos @MMK_L_lcaron parenleft 40;
+ pos @MMK_L_lcaron quotedblleft 125;
+ pos @MMK_L_lcaron asciicircum 30;
+ pos @MMK_L_lcaron sterling 25;
+ pos @MMK_L_lcaron copyright 30;
+ pos @MMK_L_lcaron yen 140;
+ pos @MMK_L_lcaron bar 145;
+ pos @MMK_L_lcaron braceright 75;
+ pos @MMK_L_lcaron underscore -85;
+ pos @MMK_L_lcaron backslash 135;
+ pos @MMK_L_lcaron bracketleft 145;
+ pos @MMK_L_lcaron degree 135;
+ pos @MMK_L_lcaron question 125;
+ pos @MMK_L_lcaron equal 90;
+ pos @MMK_L_lcaron asciitilde -30;
+ pos @MMK_L_lcaron quotedblright 140;
+ pos @MMK_L_lcaron asterisk 135;
+ pos @MMK_L_lcaron slash -15;
+ pos @MMK_L_lcaron at 20;
+ pos @MMK_L_lcaron bracketright 145;
+ pos @MMK_L_lcaron dollar 85;
+ pos @MMK_L_lcaron paragraph 115;
+ pos @MMK_L_lcaron quotesingle 140;
+ pos @MMK_L_lcaron ampersand 10;
+ pos @MMK_L_lcaron @MMK_R_tcaron 90;
+ pos @MMK_L_lcaron @MMK_R_C 60;
+ pos @MMK_L_lcaron @MMK_R_X 140;
+ pos @MMK_L_lcaron @MMK_R_h 145;
+ pos @MMK_L_lcaron @MMK_R_x 80;
+ pos @MMK_L_lcaron @MMK_R_Oslash 60;
+ pos @MMK_L_lcaron @MMK_R_r 90;
+ pos @MMK_L_lcaron @MMK_R_Lslash 145;
+ pos @MMK_L_lcaron @MMK_R_D 145;
+ pos @MMK_L_lcaron @MMK_R_G 60;
+ pos @MMK_L_lcaron @MMK_R_I 145;
+ pos @MMK_L_lcaron @MMK_R_K 145;
+ pos @MMK_L_lcaron @MMK_R_J -20;
+ pos @MMK_L_lcaron @MMK_R_M 145;
+ pos @MMK_L_lcaron @MMK_R_O 60;
+ pos @MMK_L_lcaron @MMK_R_N 145;
+ pos @MMK_L_lcaron @MMK_R_P 145;
+ pos @MMK_L_lcaron @MMK_R_R 145;
+ pos @MMK_L_lcaron @MMK_R_U 145;
+ pos @MMK_L_lcaron @MMK_R_W 140;
+ pos @MMK_L_lcaron @MMK_R_V 140;
+ pos @MMK_L_lcaron @MMK_R_Y 140;
+ pos @MMK_L_lcaron @MMK_R_Z 145;
+ pos @MMK_L_lcaron @MMK_R_a 30;
+ pos @MMK_L_lcaron @MMK_R_b 145;
+ pos @MMK_L_lcaron @MMK_R_f 90;
+ pos @MMK_L_lcaron @MMK_R_i 145;
+ pos @MMK_L_lcaron @MMK_R_m 90;
+ pos @MMK_L_lcaron @MMK_R_n 90;
+ pos @MMK_L_lcaron @MMK_R_p 90;
+ pos @MMK_L_lcaron @MMK_R_u 90;
+ pos @MMK_L_lcaron @MMK_R_t 90;
+ pos @MMK_L_lcaron @MMK_R_w 90;
+ pos @MMK_L_lcaron @MMK_R_v 85;
+ pos @MMK_L_lcaron @MMK_R_y 85;
+ pos @MMK_L_lcaron @MMK_R_germandbls 120;
+ pos @MMK_L_lcaron @MMK_R_lcaron 145;
+ pos @MMK_L_lcaron @MMK_R_Eth 145;
+ pos @MMK_L_lcaron @MMK_R_B 145;
+ pos @MMK_L_lcaron @MMK_R_E 145;
+ pos @MMK_L_lcaron @MMK_R_F 145;
+ pos @MMK_L_lcaron @MMK_R_H 145;
+ pos @MMK_L_lcaron @MMK_R_L 145;
+ pos @MMK_L_lcaron @MMK_R_Q 60;
+ pos @MMK_L_lcaron @MMK_R_lslash 145;
+ pos @MMK_L_lcaron @MMK_R_S 90;
+ pos @MMK_L_lcaron @MMK_R_T 145;
+ pos @MMK_L_lcaron @MMK_R_thorn 145;
+ pos @MMK_L_lcaron @MMK_R_j 145;
+ pos @MMK_L_lcaron @MMK_R_l 145;
+ pos @MMK_L_lcaron @MMK_R_s 10;
+ pos @MMK_L_lcaron @MMK_R_z 90;
+ pos @MMK_L_lcaron @MMK_R_Thorn 145;
+ pos @MMK_L_tcaron quoteright 100;
+ pos @MMK_L_tcaron dollar 45;
+ pos @MMK_L_tcaron minus -150;
+ pos @MMK_L_tcaron parenright 80;
+ pos @MMK_L_tcaron periodcentered -105;
+ pos @MMK_L_tcaron bracketleft 105;
+ pos @MMK_L_tcaron degree 95;
+ pos @MMK_L_tcaron asterisk 95;
+ pos @MMK_L_tcaron guilsinglright -15;
+ pos @MMK_L_tcaron ellipsis -20;
+ pos @MMK_L_tcaron numbersign -85;
+ pos @MMK_L_tcaron semicolon 30;
+ pos @MMK_L_tcaron quotedblright 100;
+ pos @MMK_L_tcaron bracketright 105;
+ pos @MMK_L_tcaron braceleft -25;
+ pos @MMK_L_tcaron greater 105;
+ pos @MMK_L_tcaron braceright 35;
+ pos @MMK_L_tcaron cent -40;
+ pos @MMK_L_tcaron yen 100;
+ pos @MMK_L_tcaron guillemetright -15;
+ pos @MMK_L_tcaron underscore -35;
+ pos @MMK_L_tcaron hyphen -150;
+ pos @MMK_L_tcaron bar 105;
+ pos @MMK_L_tcaron euro -45;
+ pos @MMK_L_tcaron paragraph 70;
+ pos @MMK_L_tcaron guillemetleft -145;
+ pos @MMK_L_tcaron bullet -60;
+ pos @MMK_L_tcaron sterling -15;
+ pos @MMK_L_tcaron quotedblbase -25;
+ pos @MMK_L_tcaron comma -25;
+ pos @MMK_L_tcaron slash -20;
+ pos @MMK_L_tcaron questiondown -15;
+ pos @MMK_L_tcaron multiply -45;
+ pos @MMK_L_tcaron perthousand 85;
+ pos @MMK_L_tcaron plus -150;
+ pos @MMK_L_tcaron question 85;
+ pos @MMK_L_tcaron quoteleft 85;
+ pos @MMK_L_tcaron registered 50;
+ pos @MMK_L_tcaron trademark 80;
+ pos @MMK_L_tcaron quotesingle 100;
+ pos @MMK_L_tcaron equal 45;
+ pos @MMK_L_tcaron colon 40;
+ pos @MMK_L_tcaron guilsinglleft -145;
+ pos @MMK_L_tcaron emdash -150;
+ pos @MMK_L_tcaron percent 85;
+ pos @MMK_L_tcaron copyright -15;
+ pos @MMK_L_tcaron divide -150;
+ pos @MMK_L_tcaron asciicircum -10;
+ pos @MMK_L_tcaron endash -150;
+ pos @MMK_L_tcaron ampersand -30;
+ pos @MMK_L_tcaron less -85;
+ pos @MMK_L_tcaron quotedblleft 85;
+ pos @MMK_L_tcaron asciitilde -85;
+ pos @MMK_L_tcaron quotesinglbase -25;
+ pos @MMK_L_tcaron at -25;
+ pos @MMK_L_tcaron quotedbl 100;
+ pos @MMK_L_tcaron backslash 95;
+ pos @MMK_L_tcaron @MMK_R_h 105;
+ pos @MMK_L_tcaron @MMK_R_dcaron -45;
+ pos @MMK_L_tcaron @MMK_R_g -35;
+ pos @MMK_L_tcaron @MMK_R_f 45;
+ pos @MMK_L_tcaron @MMK_R_thorn 105;
+ pos @MMK_L_tcaron @MMK_R_Thorn 105;
+ pos @MMK_L_tcaron @MMK_R_a.alt -40;
+ pos @MMK_L_tcaron @MMK_R_m 45;
+ pos @MMK_L_tcaron @MMK_R_l 105;
+ pos @MMK_L_tcaron @MMK_R_c -45;
+ pos @MMK_L_tcaron @MMK_R_b 105;
+ pos @MMK_L_tcaron @MMK_R_e -45;
+ pos @MMK_L_tcaron @MMK_R_S 50;
+ pos @MMK_L_tcaron @MMK_R_R 105;
+ pos @MMK_L_tcaron @MMK_R_i 105;
+ pos @MMK_L_tcaron @MMK_R_j 105;
+ pos @MMK_L_tcaron @MMK_R_o -50;
+ pos @MMK_L_tcaron @MMK_R_n 45;
+ pos @MMK_L_tcaron @MMK_R_y 45;
+ pos @MMK_L_tcaron @MMK_R_x 35;
+ pos @MMK_L_tcaron @MMK_R_z 45;
+ pos @MMK_L_tcaron @MMK_R_p 45;
+ pos @MMK_L_tcaron @MMK_R_s -30;
+ pos @MMK_L_tcaron @MMK_R_r 45;
+ pos @MMK_L_tcaron @MMK_R_u 45;
+ pos @MMK_L_tcaron @MMK_R_w 50;
+ pos @MMK_L_tcaron @MMK_R_v 45;
+ pos @MMK_L_tcaron @MMK_R_I 105;
+ pos @MMK_L_tcaron @MMK_R_H 105;
+ pos @MMK_L_tcaron @MMK_R_K 105;
+ pos @MMK_L_tcaron @MMK_R_J -60;
+ pos @MMK_L_tcaron @MMK_R_L 105;
+ pos @MMK_L_tcaron @MMK_R_O 15;
+ pos @MMK_L_tcaron @MMK_R_A -25;
+ pos @MMK_L_tcaron @MMK_R_C 15;
+ pos @MMK_L_tcaron @MMK_R_E 105;
+ pos @MMK_L_tcaron @MMK_R_D 105;
+ pos @MMK_L_tcaron @MMK_R_G 15;
+ pos @MMK_L_tcaron @MMK_R_F 105;
+ pos @MMK_L_tcaron @MMK_R_Y 100;
+ pos @MMK_L_tcaron @MMK_R_X 100;
+ pos @MMK_L_tcaron @MMK_R_Z 105;
+ pos @MMK_L_tcaron @MMK_R_Q 15;
+ pos @MMK_L_tcaron @MMK_R_P 105;
+ pos @MMK_L_tcaron @MMK_R_U 105;
+ pos @MMK_L_tcaron @MMK_R_T 105;
+ pos @MMK_L_tcaron @MMK_R_W 100;
+ pos @MMK_L_tcaron @MMK_R_V 100;
+ pos @MMK_L_tcaron @MMK_R_lslash 105;
+ pos @MMK_L_tcaron @MMK_R_Lslash 105;
+ pos @MMK_L_tcaron @MMK_R_lcaron 105;
+ pos @MMK_L_tcaron @MMK_R_Eth 105;
+ pos @MMK_L_tcaron @MMK_R_eth -35;
+ pos @MMK_L_tcaron @MMK_R_germandbls 80;
+ pos @MMK_L_tcaron @MMK_R_dcroat -45;
+ pos @MMK_L_tcaron @MMK_R_tcaron 45;
+ pos @MMK_L_tcaron @MMK_R_a -15;
+ pos @MMK_L_tcaron @MMK_R_d -45;
+ pos @MMK_L_tcaron @MMK_R_q -45;
+ pos @MMK_L_tcaron @MMK_R_t 45;
+ pos @MMK_L_tcaron @MMK_R_M 105;
+ pos @MMK_L_tcaron @MMK_R_N 105;
+ pos @MMK_L_tcaron @MMK_R_B 105;
+ pos @MMK_L_tcaron @MMK_R_oslash -50;
+ pos @MMK_L_tcaron @MMK_R_Oslash 15;
+ pos @MMK_L_a braceleft -65;
+ pos @MMK_L_a slash -15;
+ pos @MMK_L_a yen -55;
+ pos @MMK_L_a quoteleft -50;
+ pos @MMK_L_a asciitilde -30;
+ pos @MMK_L_a degree -65;
+ pos @MMK_L_a multiply -45;
+ pos @MMK_L_a trademark -60;
+ pos @MMK_L_a asciicircum -20;
+ pos @MMK_L_a quotedblright -110;
+ pos @MMK_L_a sterling -35;
+ pos @MMK_L_a parenright -90;
+ pos @MMK_L_a question -175;
+ pos @MMK_L_a backslash -135;
+ pos @MMK_L_a registered -10;
+ pos @MMK_L_a euro -90;
+ pos @MMK_L_a perthousand -35;
+ pos @MMK_L_a quoteright -110;
+ pos @MMK_L_a asterisk -35;
+ pos @MMK_L_a dollar -35;
+ pos @MMK_L_a paragraph -25;
+ pos @MMK_L_a numbersign -55;
+ pos @MMK_L_a quotedbl -50;
+ pos @MMK_L_a quotedblleft -50;
+ pos @MMK_L_a quotesingle -50;
+ pos @MMK_L_a underscore -190;
+ pos @MMK_L_a percent -35;
+ pos @MMK_L_a braceright -60;
+ pos @MMK_L_a @MMK_R_tcaron -20;
+ pos @MMK_L_a @MMK_R_J -20;
+ pos @MMK_L_a @MMK_R_Y -90;
+ pos @MMK_L_a @MMK_R_S -30;
+ pos @MMK_L_a @MMK_R_V -55;
+ pos @MMK_L_a @MMK_R_W -65;
+ pos @MMK_L_a @MMK_R_T -115;
+ pos @MMK_L_a @MMK_R_f -20;
+ pos @MMK_L_a @MMK_R_y -25;
+ pos @MMK_L_a @MMK_R_s -15;
+ pos @MMK_L_a @MMK_R_v -20;
+ pos @MMK_L_a @MMK_R_w -20;
+ pos @MMK_L_a @MMK_R_t -20;
+ pos @MMK_L_e braceleft -65;
+ pos @MMK_L_e quoteleft -80;
+ pos @MMK_L_e perthousand -55;
+ pos @MMK_L_e questiondown -45;
+ pos @MMK_L_e multiply -45;
+ pos @MMK_L_e slash -70;
+ pos @MMK_L_e trademark -95;
+ pos @MMK_L_e numbersign -70;
+ pos @MMK_L_e asterisk -60;
+ pos @MMK_L_e yen -60;
+ pos @MMK_L_e backslash -160;
+ pos @MMK_L_e underscore -160;
+ pos @MMK_L_e percent -55;
+ pos @MMK_L_e ellipsis -45;
+ pos @MMK_L_e degree -90;
+ pos @MMK_L_e comma -45;
+ pos @MMK_L_e quotesingle -75;
+ pos @MMK_L_e asciitilde -40;
+ pos @MMK_L_e quotedblbase -45;
+ pos @MMK_L_e quoteright -115;
+ pos @MMK_L_e quotedbl -75;
+ pos @MMK_L_e guilsinglright -45;
+ pos @MMK_L_e semicolon -50;
+ pos @MMK_L_e registered -25;
+ pos @MMK_L_e sterling -35;
+ pos @MMK_L_e parenright -155;
+ pos @MMK_L_e quotesinglbase -45;
+ pos @MMK_L_e quotedblleft -80;
+ pos @MMK_L_e euro -90;
+ pos @MMK_L_e question -175;
+ pos @MMK_L_e guillemetright -45;
+ pos @MMK_L_e asciicircum -40;
+ pos @MMK_L_e braceright -60;
+ pos @MMK_L_e colon -45;
+ pos @MMK_L_e dollar -80;
+ pos @MMK_L_e quotedblright -150;
+ pos @MMK_L_e paragraph -45;
+ pos @MMK_L_e @MMK_R_f -45;
+ pos @MMK_L_e @MMK_R_x -45;
+ pos @MMK_L_e @MMK_R_y -35;
+ pos @MMK_L_e @MMK_R_v -30;
+ pos @MMK_L_e @MMK_R_w -30;
+ pos @MMK_L_e @MMK_R_t -45;
+ pos @MMK_L_e @MMK_R_s -50;
+ pos @MMK_L_e @MMK_R_J -60;
+ pos @MMK_L_e @MMK_R_A -50;
+ pos @MMK_L_e @MMK_R_X -50;
+ pos @MMK_L_e @MMK_R_Y -105;
+ pos @MMK_L_e @MMK_R_V -70;
+ pos @MMK_L_e @MMK_R_W -80;
+ pos @MMK_L_e @MMK_R_T -115;
+ pos @MMK_L_e @MMK_R_S -75;
+ pos @MMK_L_e @MMK_R_tcaron -45;
+ pos @MMK_L_h braceleft -65;
+ pos @MMK_L_h dollar -35;
+ pos @MMK_L_h degree -60;
+ pos @MMK_L_h parenright -90;
+ pos @MMK_L_h quotedblright -105;
+ pos @MMK_L_h quotedblleft -45;
+ pos @MMK_L_h slash -15;
+ pos @MMK_L_h paragraph -20;
+ pos @MMK_L_h percent -30;
+ pos @MMK_L_h euro -90;
+ pos @MMK_L_h quoteright -105;
+ pos @MMK_L_h quotedbl -45;
+ pos @MMK_L_h trademark -55;
+ pos @MMK_L_h braceright -60;
+ pos @MMK_L_h multiply -45;
+ pos @MMK_L_h sterling -35;
+ pos @MMK_L_h backslash -130;
+ pos @MMK_L_h numbersign -55;
+ pos @MMK_L_h quotesingle -45;
+ pos @MMK_L_h underscore -265;
+ pos @MMK_L_h perthousand -30;
+ pos @MMK_L_h asciicircum -15;
+ pos @MMK_L_h asciitilde -30;
+ pos @MMK_L_h yen -50;
+ pos @MMK_L_h quoteleft -45;
+ pos @MMK_L_h asterisk -30;
+ pos @MMK_L_h question -175;
+ pos @MMK_L_h @MMK_R_tcaron -15;
+ pos @MMK_L_h @MMK_R_V -55;
+ pos @MMK_L_h @MMK_R_J -20;
+ pos @MMK_L_h @MMK_R_Y -85;
+ pos @MMK_L_h @MMK_R_S -30;
+ pos @MMK_L_h @MMK_R_W -65;
+ pos @MMK_L_h @MMK_R_T -115;
+ pos @MMK_L_h @MMK_R_f -15;
+ pos @MMK_L_h @MMK_R_y -25;
+ pos @MMK_L_h @MMK_R_s -15;
+ pos @MMK_L_h @MMK_R_w -15;
+ pos @MMK_L_h @MMK_R_t -15;
+ pos @MMK_L_h @MMK_R_v -20;
+ pos @MMK_L_t dollar -30;
+ pos @MMK_L_t braceright -60;
+ pos @MMK_L_t underscore -35;
+ pos @MMK_L_t guillemetright -15;
+ pos @MMK_L_t sterling -65;
+ pos @MMK_L_t quotedbl -10;
+ pos @MMK_L_t euro -90;
+ pos @MMK_L_t emdash -155;
+ pos @MMK_L_t question -170;
+ pos @MMK_L_t minus -155;
+ pos @MMK_L_t semicolon -10;
+ pos @MMK_L_t braceleft -110;
+ pos @MMK_L_t at -30;
+ pos @MMK_L_t parenleft -25;
+ pos @MMK_L_t degree -10;
+ pos @MMK_L_t plus -155;
+ pos @MMK_L_t asciicircum -10;
+ pos @MMK_L_t numbersign -115;
+ pos @MMK_L_t parenright -90;
+ pos @MMK_L_t quotesinglbase -25;
+ pos @MMK_L_t endash -155;
+ pos @MMK_L_t ampersand -110;
+ pos @MMK_L_t less -85;
+ pos @MMK_L_t guilsinglleft -150;
+ pos @MMK_L_t yen -30;
+ pos @MMK_L_t quotedblbase -25;
+ pos @MMK_L_t multiply -45;
+ pos @MMK_L_t hyphen -155;
+ pos @MMK_L_t ellipsis -20;
+ pos @MMK_L_t guillemetleft -150;
+ pos @MMK_L_t backslash -85;
+ pos @MMK_L_t questiondown -15;
+ pos @MMK_L_t periodcentered -105;
+ pos @MMK_L_t guilsinglright -15;
+ pos @MMK_L_t divide -155;
+ pos @MMK_L_t quotesingle -10;
+ pos @MMK_L_t quotedblright -50;
+ pos @MMK_L_t slash -20;
+ pos @MMK_L_t cent -40;
+ pos @MMK_L_t asciitilde -85;
+ pos @MMK_L_t quoteright -50;
+ pos @MMK_L_t comma -25;
+ pos @MMK_L_t bullet -60;
+ pos @MMK_L_t copyright -25;
+ pos @MMK_L_t @MMK_R_dcroat -45;
+ pos @MMK_L_t @MMK_R_eth -55;
+ pos @MMK_L_t @MMK_R_a.alt -40;
+ pos @MMK_L_t @MMK_R_d -45;
+ pos @MMK_L_t @MMK_R_dcaron -45;
+ pos @MMK_L_t @MMK_R_q -45;
+ pos @MMK_L_t @MMK_R_a -85;
+ pos @MMK_L_t @MMK_R_G -10;
+ pos @MMK_L_t @MMK_R_s -35;
+ pos @MMK_L_t @MMK_R_x -10;
+ pos @MMK_L_t @MMK_R_g -35;
+ pos @MMK_L_t @MMK_R_e -45;
+ pos @MMK_L_t @MMK_R_c -45;
+ pos @MMK_L_t @MMK_R_o -50;
+ pos @MMK_L_t @MMK_R_W -35;
+ pos @MMK_L_t @MMK_R_V -30;
+ pos @MMK_L_t @MMK_R_T -115;
+ pos @MMK_L_t @MMK_R_S -30;
+ pos @MMK_L_t @MMK_R_Q -10;
+ pos @MMK_L_t @MMK_R_Y -50;
+ pos @MMK_L_t @MMK_R_X -30;
+ pos @MMK_L_t @MMK_R_C -10;
+ pos @MMK_L_t @MMK_R_A -30;
+ pos @MMK_L_t @MMK_R_O -10;
+ pos @MMK_L_t @MMK_R_J -60;
+ pos @MMK_L_t @MMK_R_oslash -50;
+ pos @MMK_L_t @MMK_R_Oslash -10;
+ pos @MMK_L_f divide -135;
+ pos @MMK_L_f guillemetright -15;
+ pos @MMK_L_f dollar -30;
+ pos @MMK_L_f backslash 15;
+ pos @MMK_L_f braceright -60;
+ pos @MMK_L_f ampersand -115;
+ pos @MMK_L_f guilsinglleft -130;
+ pos @MMK_L_f degree -10;
+ pos @MMK_L_f at -30;
+ pos @MMK_L_f yen -30;
+ pos @MMK_L_f quoteright -50;
+ pos @MMK_L_f semicolon -10;
+ pos @MMK_L_f slash -150;
+ pos @MMK_L_f sterling -80;
+ pos @MMK_L_f multiply -45;
+ pos @MMK_L_f ellipsis -135;
+ pos @MMK_L_f asciitilde -85;
+ pos @MMK_L_f plus -135;
+ pos @MMK_L_f endash -135;
+ pos @MMK_L_f questiondown -135;
+ pos @MMK_L_f underscore -180;
+ pos @MMK_L_f bullet -60;
+ pos @MMK_L_f comma -115;
+ pos @MMK_L_f parenleft -25;
+ pos @MMK_L_f quotedbl -10;
+ pos @MMK_L_f quotesinglbase -115;
+ pos @MMK_L_f quotedblright -50;
+ pos @MMK_L_f numbersign -125;
+ pos @MMK_L_f hyphen -135;
+ pos @MMK_L_f less -85;
+ pos @MMK_L_f guillemetleft -130;
+ pos @MMK_L_f parenright -90;
+ pos @MMK_L_f copyright -25;
+ pos @MMK_L_f minus -135;
+ pos @MMK_L_f question -80;
+ pos @MMK_L_f asciicircum -10;
+ pos @MMK_L_f braceleft -110;
+ pos @MMK_L_f quotedblbase -135;
+ pos @MMK_L_f guilsinglright -15;
+ pos @MMK_L_f cent -40;
+ pos @MMK_L_f quotesingle -10;
+ pos @MMK_L_f emdash -135;
+ pos @MMK_L_f euro -90;
+ pos @MMK_L_f periodcentered -105;
+ pos @MMK_L_f @MMK_R_dcroat -45;
+ pos @MMK_L_f @MMK_R_q -45;
+ pos @MMK_L_f @MMK_R_s -35;
+ pos @MMK_L_f @MMK_R_e -45;
+ pos @MMK_L_f @MMK_R_d -45;
+ pos @MMK_L_f @MMK_R_g -35;
+ pos @MMK_L_f @MMK_R_a -85;
+ pos @MMK_L_f @MMK_R_c -45;
+ pos @MMK_L_f @MMK_R_o -50;
+ pos @MMK_L_f @MMK_R_T -30;
+ pos @MMK_L_f @MMK_R_W -30;
+ pos @MMK_L_f @MMK_R_V -30;
+ pos @MMK_L_f @MMK_R_Q -10;
+ pos @MMK_L_f @MMK_R_S -30;
+ pos @MMK_L_f @MMK_R_Y -30;
+ pos @MMK_L_f @MMK_R_X -30;
+ pos @MMK_L_f @MMK_R_G -10;
+ pos @MMK_L_f @MMK_R_A -110;
+ pos @MMK_L_f @MMK_R_C -10;
+ pos @MMK_L_f @MMK_R_O -10;
+ pos @MMK_L_f @MMK_R_J -155;
+ pos @MMK_L_f @MMK_R_x -10;
+ pos @MMK_L_f @MMK_R_a.alt -40;
+ pos @MMK_L_f @MMK_R_oslash -50;
+ pos @MMK_L_f @MMK_R_eth -55;
+ pos @MMK_L_f @MMK_R_Oslash -10;
+ pos @MMK_L_f @MMK_R_dcaron -45;
+ pos @MMK_L_n dollar -35;
+ pos @MMK_L_n quoteright -105;
+ pos @MMK_L_n braceright -60;
+ pos @MMK_L_n degree -60;
+ pos @MMK_L_n quotedblright -105;
+ pos @MMK_L_n quoteleft -45;
+ pos @MMK_L_n parenright -90;
+ pos @MMK_L_n question -175;
+ pos @MMK_L_n percent -30;
+ pos @MMK_L_n underscore -265;
+ pos @MMK_L_n perthousand -30;
+ pos @MMK_L_n asterisk -30;
+ pos @MMK_L_n asciicircum -15;
+ pos @MMK_L_n quotedblleft -45;
+ pos @MMK_L_n braceleft -65;
+ pos @MMK_L_n trademark -55;
+ pos @MMK_L_n euro -90;
+ pos @MMK_L_n numbersign -55;
+ pos @MMK_L_n asciitilde -30;
+ pos @MMK_L_n quotesingle -45;
+ pos @MMK_L_n paragraph -20;
+ pos @MMK_L_n multiply -45;
+ pos @MMK_L_n backslash -130;
+ pos @MMK_L_n sterling -35;
+ pos @MMK_L_n yen -50;
+ pos @MMK_L_n quotedbl -45;
+ pos @MMK_L_n slash -15;
+ pos @MMK_L_n @MMK_R_y -25;
+ pos @MMK_L_n @MMK_R_t -15;
+ pos @MMK_L_n @MMK_R_w -15;
+ pos @MMK_L_n @MMK_R_v -20;
+ pos @MMK_L_n @MMK_R_s -15;
+ pos @MMK_L_n @MMK_R_f -15;
+ pos @MMK_L_n @MMK_R_T -115;
+ pos @MMK_L_n @MMK_R_W -65;
+ pos @MMK_L_n @MMK_R_V -55;
+ pos @MMK_L_n @MMK_R_S -30;
+ pos @MMK_L_n @MMK_R_J -20;
+ pos @MMK_L_n @MMK_R_Y -85;
+ pos @MMK_L_n @MMK_R_tcaron -15;
+ pos @MMK_L_z quotedbl -10;
+ pos @MMK_L_z sterling -35;
+ pos @MMK_L_z asciitilde -30;
+ pos @MMK_L_z quotedblright -50;
+ pos @MMK_L_z quoteright -50;
+ pos @MMK_L_z multiply -45;
+ pos @MMK_L_z degree -10;
+ pos @MMK_L_z yen -30;
+ pos @MMK_L_z underscore -250;
+ pos @MMK_L_z braceright -60;
+ pos @MMK_L_z backslash -85;
+ pos @MMK_L_z parenright -90;
+ pos @MMK_L_z question -175;
+ pos @MMK_L_z euro -90;
+ pos @MMK_L_z dollar -30;
+ pos @MMK_L_z quotesingle -10;
+ pos @MMK_L_z braceleft -65;
+ pos @MMK_L_z slash -15;
+ pos @MMK_L_z numbersign -55;
+ pos @MMK_L_z @MMK_R_s -15;
+ pos @MMK_L_z @MMK_R_J -20;
+ pos @MMK_L_z @MMK_R_Y -50;
+ pos @MMK_L_z @MMK_R_S -30;
+ pos @MMK_L_z @MMK_R_T -115;
+ pos @MMK_L_z @MMK_R_W -35;
+ pos @MMK_L_z @MMK_R_V -30;
+ pos @MMK_L_i euro -85;
+ pos @MMK_L_i underscore -85;
+ pos @MMK_L_i multiply -45;
+ pos @MMK_L_i parenright -25;
+ pos @MMK_L_i degree -10;
+ pos @MMK_L_i sterling -35;
+ pos @MMK_L_i slash -15;
+ pos @MMK_L_i numbersign -55;
+ pos @MMK_L_i asciitilde -30;
+ pos @MMK_L_i braceright -60;
+ pos @MMK_L_i dollar -30;
+ pos @MMK_L_i braceleft -65;
+ pos @MMK_L_i backslash -10;
+ pos @MMK_L_i question -20;
+ pos @MMK_L_i @MMK_R_S -30;
+ pos @MMK_L_i @MMK_R_J -20;
+ pos @MMK_L_i @MMK_R_s -15;
+ pos @MMK_L_oslash parenright -125;
+ pos @MMK_L_oslash euro -90;
+ pos @MMK_L_oslash backslash -105;
+ pos @MMK_L_oslash quotesinglbase -75;
+ pos @MMK_L_oslash semicolon -40;
+ pos @MMK_L_oslash perthousand -20;
+ pos @MMK_L_oslash question -175;
+ pos @MMK_L_oslash quotedblleft -25;
+ pos @MMK_L_oslash multiply -50;
+ pos @MMK_L_oslash questiondown -65;
+ pos @MMK_L_oslash paragraph -20;
+ pos @MMK_L_oslash comma -75;
+ pos @MMK_L_oslash asterisk -25;
+ pos @MMK_L_oslash ellipsis -75;
+ pos @MMK_L_oslash registered -25;
+ pos @MMK_L_oslash braceright -60;
+ pos @MMK_L_oslash percent -20;
+ pos @MMK_L_oslash asciicircum -50;
+ pos @MMK_L_oslash degree -30;
+ pos @MMK_L_oslash guilsinglright -55;
+ pos @MMK_L_oslash quotedblright -70;
+ pos @MMK_L_oslash dollar -50;
+ pos @MMK_L_oslash quotedblbase -75;
+ pos @MMK_L_oslash quotesingle -30;
+ pos @MMK_L_oslash quoteright -70;
+ pos @MMK_L_oslash braceleft -65;
+ pos @MMK_L_oslash yen -50;
+ pos @MMK_L_oslash sterling -35;
+ pos @MMK_L_oslash slash -100;
+ pos @MMK_L_oslash asciitilde -40;
+ pos @MMK_L_oslash guillemetright -55;
+ pos @MMK_L_oslash numbersign -75;
+ pos @MMK_L_oslash underscore -205;
+ pos @MMK_L_oslash quoteleft -25;
+ pos @MMK_L_oslash colon -30;
+ pos @MMK_L_oslash trademark -20;
+ pos @MMK_L_oslash quotedbl -30;
+ pos @MMK_L_oslash @MMK_R_tcaron -20;
+ pos @MMK_L_oslash @MMK_R_x -30;
+ pos @MMK_L_oslash @MMK_R_a -10;
+ pos @MMK_L_oslash @MMK_R_S -50;
+ pos @MMK_L_oslash @MMK_R_y -20;
+ pos @MMK_L_oslash @MMK_R_v -20;
+ pos @MMK_L_oslash @MMK_R_w -15;
+ pos @MMK_L_oslash @MMK_R_t -20;
+ pos @MMK_L_oslash @MMK_R_s -50;
+ pos @MMK_L_oslash @MMK_R_f -20;
+ pos @MMK_L_oslash @MMK_R_X -60;
+ pos @MMK_L_oslash @MMK_R_Y -70;
+ pos @MMK_L_oslash @MMK_R_V -50;
+ pos @MMK_L_oslash @MMK_R_W -55;
+ pos @MMK_L_oslash @MMK_R_T -115;
+ pos @MMK_L_oslash @MMK_R_J -110;
+ pos @MMK_L_oslash @MMK_R_A -55;
+ pos @MMK_L_d parenright -20;
+ pos @MMK_L_d braceright -60;
+ pos @MMK_L_d euro -90;
+ pos @MMK_L_d braceleft -65;
+ pos @MMK_L_d multiply -45;
+ pos @MMK_L_d asciitilde -30;
+ pos @MMK_L_d dollar -30;
+ pos @MMK_L_d sterling -35;
+ pos @MMK_L_d numbersign -55;
+ pos @MMK_L_d question -20;
+ pos @MMK_L_d underscore -195;
+ pos @MMK_L_d slash -15;
+ pos @MMK_L_d @MMK_R_s -15;
+ pos @MMK_L_d @MMK_R_J -20;
+ pos @MMK_L_d @MMK_R_S -30;
+ pos @MMK_L_j numbersign -55;
+ pos @MMK_L_j braceright -60;
+ pos @MMK_L_j backslash -10;
+ pos @MMK_L_j question -25;
+ pos @MMK_L_j slash 15;
+ pos @MMK_L_j sterling -35;
+ pos @MMK_L_j multiply -45;
+ pos @MMK_L_j parenright -20;
+ pos @MMK_L_j dollar -30;
+ pos @MMK_L_j euro -85;
+ pos @MMK_L_j degree -10;
+ pos @MMK_L_j asciitilde -30;
+ pos @MMK_L_j braceleft -65;
+ pos @MMK_L_j @MMK_R_J -20;
+ pos @MMK_L_j @MMK_R_S -30;
+ pos @MMK_L_j @MMK_R_s -15;
+ pos @MMK_L_j @MMK_R_j 65;
+ pos @MMK_L_dcroat multiply -45;
+ pos @MMK_L_dcroat sterling -35;
+ pos @MMK_L_dcroat braceleft -65;
+ pos @MMK_L_dcroat asciitilde -30;
+ pos @MMK_L_dcroat braceright -60;
+ pos @MMK_L_dcroat dollar -30;
+ pos @MMK_L_dcroat parenright -20;
+ pos @MMK_L_dcroat underscore -195;
+ pos @MMK_L_dcroat slash -15;
+ pos @MMK_L_dcroat numbersign -55;
+ pos @MMK_L_dcroat euro -90;
+ pos @MMK_L_dcroat question -20;
+ pos @MMK_L_dcroat @MMK_R_s -15;
+ pos @MMK_L_dcroat @MMK_R_S -30;
+ pos @MMK_L_dcroat @MMK_R_J -20;
+ pos @MMK_L_u multiply -45;
+ pos @MMK_L_u dollar -30;
+ pos @MMK_L_u quotesingle -10;
+ pos @MMK_L_u euro -90;
+ pos @MMK_L_u parenright -90;
+ pos @MMK_L_u degree -10;
+ pos @MMK_L_u braceleft -65;
+ pos @MMK_L_u numbersign -55;
+ pos @MMK_L_u yen -30;
+ pos @MMK_L_u question -175;
+ pos @MMK_L_u backslash -85;
+ pos @MMK_L_u quoteright -50;
+ pos @MMK_L_u quotedbl -10;
+ pos @MMK_L_u underscore -140;
+ pos @MMK_L_u asciitilde -30;
+ pos @MMK_L_u sterling -35;
+ pos @MMK_L_u quotedblright -50;
+ pos @MMK_L_u braceright -60;
+ pos @MMK_L_u slash -15;
+ pos @MMK_L_u @MMK_R_S -30;
+ pos @MMK_L_u @MMK_R_Y -50;
+ pos @MMK_L_u @MMK_R_V -30;
+ pos @MMK_L_u @MMK_R_W -35;
+ pos @MMK_L_u @MMK_R_T -115;
+ pos @MMK_L_u @MMK_R_J -20;
+ pos @MMK_L_u @MMK_R_s -15;
+ pos @MMK_L_g underscore -15;
+ pos @MMK_L_g dollar -30;
+ pos @MMK_L_g slash -10;
+ pos @MMK_L_g degree -10;
+ pos @MMK_L_g quotedbl -10;
+ pos @MMK_L_g braceleft -65;
+ pos @MMK_L_g asciitilde -30;
+ pos @MMK_L_g quotesingle -10;
+ pos @MMK_L_g backslash -85;
+ pos @MMK_L_g semicolon -10;
+ pos @MMK_L_g braceright -60;
+ pos @MMK_L_g quotedblright -50;
+ pos @MMK_L_g question -175;
+ pos @MMK_L_g multiply -45;
+ pos @MMK_L_g euro -90;
+ pos @MMK_L_g quoteright -50;
+ pos @MMK_L_g sterling -35;
+ pos @MMK_L_g numbersign -55;
+ pos @MMK_L_g yen -30;
+ pos @MMK_L_g parenright -55;
+ pos @MMK_L_g @MMK_R_s -20;
+ pos @MMK_L_g @MMK_R_j 40;
+ pos @MMK_L_g @MMK_R_Y -50;
+ pos @MMK_L_g @MMK_R_T -115;
+ pos @MMK_L_g @MMK_R_V -30;
+ pos @MMK_L_g @MMK_R_W -35;
+ pos @MMK_L_g @MMK_R_S -30;
+ pos @MMK_L_g @MMK_R_J -20;
+ pos @MMK_L_l braceleft -65;
+ pos @MMK_L_l multiply -45;
+ pos @MMK_L_l numbersign -55;
+ pos @MMK_L_l dollar -30;
+ pos @MMK_L_l slash -15;
+ pos @MMK_L_l asciitilde -30;
+ pos @MMK_L_l euro -85;
+ pos @MMK_L_l question -20;
+ pos @MMK_L_l underscore -85;
+ pos @MMK_L_l parenright -20;
+ pos @MMK_L_l sterling -35;
+ pos @MMK_L_l braceright -60;
+ pos @MMK_L_l @MMK_R_s -15;
+ pos @MMK_L_l @MMK_R_J -20;
+ pos @MMK_L_l @MMK_R_S -30;
+ subtable;
+ pos @MMK_L_S question -80;
+ pos @MMK_L_S quotesinglbase -40;
+ pos @MMK_L_S bullet -15;
+ pos @MMK_L_S less -35;
+ pos @MMK_L_S colon -35;
+ pos @MMK_L_S quotedblleft -75;
+ pos @MMK_L_S braceright -60;
+ pos @MMK_L_S multiply -50;
+ pos @MMK_L_S plus -15;
+ pos @MMK_L_S degree -60;
+ pos @MMK_L_S parenright -90;
+ pos @MMK_L_S questiondown -35;
+ pos @MMK_L_S asciicircum -195;
+ pos @MMK_L_S asciitilde -80;
+ pos @MMK_L_S quoteleft -75;
+ pos @MMK_L_S quotedbl -50;
+ pos @MMK_L_S periodcentered -10;
+ pos @MMK_L_S minus -15;
+ pos @MMK_L_S quoteright -55;
+ pos @MMK_L_S numbersign -55;
+ pos @MMK_L_S comma -40;
+ pos @MMK_L_S slash -70;
+ pos @MMK_L_S braceleft -65;
+ pos @MMK_L_S sterling -40;
+ pos @MMK_L_S underscore -120;
+ pos @MMK_L_S quotedblright -55;
+ pos @MMK_L_S euro -90;
+ pos @MMK_L_S semicolon -45;
+ pos @MMK_L_S guillemetright -25;
+ pos @MMK_L_S trademark -115;
+ pos @MMK_L_S registered -60;
+ pos @MMK_L_S dollar -80;
+ pos @MMK_L_S perthousand -80;
+ pos @MMK_L_S guilsinglright -25;
+ pos @MMK_L_S divide -15;
+ pos @MMK_L_S quotesingle -50;
+ pos @MMK_L_S quotedblbase -40;
+ pos @MMK_L_S percent -80;
+ pos @MMK_L_S paragraph -100;
+ pos @MMK_L_S backslash -60;
+ pos @MMK_L_S ellipsis -35;
+ pos @MMK_L_S asterisk -65;
+ pos @MMK_L_S yen -45;
+ pos @MMK_L_S @MMK_R_tcaron -80;
+ pos @MMK_L_S @MMK_R_A -35;
+ pos @MMK_L_S @MMK_R_J -65;
+ pos @MMK_L_S @MMK_R_O -20;
+ pos @MMK_L_S @MMK_R_C -20;
+ pos @MMK_L_S @MMK_R_G -20;
+ pos @MMK_L_S @MMK_R_X -40;
+ pos @MMK_L_S @MMK_R_Y -50;
+ pos @MMK_L_S @MMK_R_Q -20;
+ pos @MMK_L_S @MMK_R_S -70;
+ pos @MMK_L_S @MMK_R_T -45;
+ pos @MMK_L_S @MMK_R_V -45;
+ pos @MMK_L_S @MMK_R_W -50;
+ pos @MMK_L_S @MMK_R_f -80;
+ pos @MMK_L_S @MMK_R_g -10;
+ pos @MMK_L_S @MMK_R_x -35;
+ pos @MMK_L_S @MMK_R_y -45;
+ pos @MMK_L_S @MMK_R_s -65;
+ pos @MMK_L_S @MMK_R_t -80;
+ pos @MMK_L_S @MMK_R_v -40;
+ pos @MMK_L_S @MMK_R_w -40;
+ pos @MMK_L_S @MMK_R_Oslash -20;
+ pos @MMK_L_D quotedblbase -110;
+ pos @MMK_L_D parenright -115;
+ pos @MMK_L_D asciicircum -10;
+ pos @MMK_L_D colon -15;
+ pos @MMK_L_D quotedbl -30;
+ pos @MMK_L_D yen -50;
+ pos @MMK_L_D ampersand -20;
+ pos @MMK_L_D guillemetright -15;
+ pos @MMK_L_D quoteright -50;
+ pos @MMK_L_D euro -90;
+ pos @MMK_L_D braceleft -65;
+ pos @MMK_L_D semicolon -25;
+ pos @MMK_L_D quoteleft -30;
+ pos @MMK_L_D ellipsis -105;
+ pos @MMK_L_D guilsinglright -15;
+ pos @MMK_L_D sterling -35;
+ pos @MMK_L_D degree -40;
+ pos @MMK_L_D paragraph -15;
+ pos @MMK_L_D question -125;
+ pos @MMK_L_D percent -20;
+ pos @MMK_L_D numbersign -90;
+ pos @MMK_L_D trademark -25;
+ pos @MMK_L_D quotedblleft -30;
+ pos @MMK_L_D asterisk -15;
+ pos @MMK_L_D quotesinglbase -110;
+ pos @MMK_L_D quotesingle -30;
+ pos @MMK_L_D braceright -60;
+ pos @MMK_L_D perthousand -20;
+ pos @MMK_L_D asciitilde -35;
+ pos @MMK_L_D multiply -55;
+ pos @MMK_L_D slash -120;
+ pos @MMK_L_D underscore -240;
+ pos @MMK_L_D quotedblright -50;
+ pos @MMK_L_D comma -110;
+ pos @MMK_L_D questiondown -95;
+ pos @MMK_L_D backslash -115;
+ pos @MMK_L_D dollar -50;
+ pos @MMK_L_D @MMK_R_A -75;
+ pos @MMK_L_D @MMK_R_J -145;
+ pos @MMK_L_D @MMK_R_W -60;
+ pos @MMK_L_D @MMK_R_V -50;
+ pos @MMK_L_D @MMK_R_T -55;
+ pos @MMK_L_D @MMK_R_S -45;
+ pos @MMK_L_D @MMK_R_Y -80;
+ pos @MMK_L_D @MMK_R_X -80;
+ pos @MMK_L_D @MMK_R_f -10;
+ pos @MMK_L_D @MMK_R_a -25;
+ pos @MMK_L_D @MMK_R_w -15;
+ pos @MMK_L_D @MMK_R_v -15;
+ pos @MMK_L_D @MMK_R_t -10;
+ pos @MMK_L_D @MMK_R_s -30;
+ pos @MMK_L_D @MMK_R_y -20;
+ pos @MMK_L_D @MMK_R_x -35;
+ pos @MMK_L_D @MMK_R_tcaron -10;
+ pos @MMK_L_I backslash -10;
+ pos @MMK_L_I question -20;
+ pos @MMK_L_I underscore -115;
+ pos @MMK_L_I dollar -30;
+ pos @MMK_L_I multiply -45;
+ pos @MMK_L_I asciitilde -30;
+ pos @MMK_L_I parenright -20;
+ pos @MMK_L_I euro -90;
+ pos @MMK_L_I numbersign -55;
+ pos @MMK_L_I slash -15;
+ pos @MMK_L_I braceright -60;
+ pos @MMK_L_I sterling -35;
+ pos @MMK_L_I braceleft -65;
+ pos @MMK_L_I @MMK_R_s -15;
+ pos @MMK_L_I @MMK_R_S -30;
+ pos @MMK_L_I @MMK_R_J -20;
+ pos @MMK_L_Thorn comma -115;
+ pos @MMK_L_Thorn quotedblbase -180;
+ pos @MMK_L_Thorn braceright -60;
+ pos @MMK_L_Thorn quoteleft -40;
+ pos @MMK_L_Thorn numbersign -95;
+ pos @MMK_L_Thorn yen -50;
+ pos @MMK_L_Thorn ampersand -25;
+ pos @MMK_L_Thorn backslash -130;
+ pos @MMK_L_Thorn quotesingle -40;
+ pos @MMK_L_Thorn multiply -60;
+ pos @MMK_L_Thorn asciicircum -15;
+ pos @MMK_L_Thorn braceleft -65;
+ pos @MMK_L_Thorn question -175;
+ pos @MMK_L_Thorn asterisk -25;
+ pos @MMK_L_Thorn euro -90;
+ pos @MMK_L_Thorn quoteright -85;
+ pos @MMK_L_Thorn quotedblleft -40;
+ pos @MMK_L_Thorn questiondown -135;
+ pos @MMK_L_Thorn semicolon -30;
+ pos @MMK_L_Thorn perthousand -25;
+ pos @MMK_L_Thorn sterling -35;
+ pos @MMK_L_Thorn slash -140;
+ pos @MMK_L_Thorn guillemetleft -10;
+ pos @MMK_L_Thorn quotedbl -40;
+ pos @MMK_L_Thorn dollar -55;
+ pos @MMK_L_Thorn parenright -155;
+ pos @MMK_L_Thorn percent -25;
+ pos @MMK_L_Thorn underscore -350;
+ pos @MMK_L_Thorn paragraph -20;
+ pos @MMK_L_Thorn guilsinglleft -10;
+ pos @MMK_L_Thorn guilsinglright -20;
+ pos @MMK_L_Thorn quotedblright -85;
+ pos @MMK_L_Thorn asciitilde -35;
+ pos @MMK_L_Thorn colon -20;
+ pos @MMK_L_Thorn trademark -45;
+ pos @MMK_L_Thorn quotesinglbase -115;
+ pos @MMK_L_Thorn guillemetright -20;
+ pos @MMK_L_Thorn degree -50;
+ pos @MMK_L_Thorn ellipsis -180;
+ pos @MMK_L_Thorn @MMK_R_a -40;
+ pos @MMK_L_Thorn @MMK_R_f -10;
+ pos @MMK_L_Thorn @MMK_R_s -35;
+ pos @MMK_L_Thorn @MMK_R_t -10;
+ pos @MMK_L_Thorn @MMK_R_v -20;
+ pos @MMK_L_Thorn @MMK_R_w -15;
+ pos @MMK_L_Thorn @MMK_R_x -35;
+ pos @MMK_L_Thorn @MMK_R_y -20;
+ pos @MMK_L_Thorn @MMK_R_A -80;
+ pos @MMK_L_Thorn @MMK_R_J -190;
+ pos @MMK_L_Thorn @MMK_R_S -50;
+ pos @MMK_L_Thorn @MMK_R_T -100;
+ pos @MMK_L_Thorn @MMK_R_V -50;
+ pos @MMK_L_Thorn @MMK_R_W -60;
+ pos @MMK_L_Thorn @MMK_R_X -85;
+ pos @MMK_L_Thorn @MMK_R_Y -85;
+ pos @MMK_L_Thorn @MMK_R_tcaron -10;
+ pos @MMK_L_Thorn @MMK_R_eth -10;
+ pos @MMK_L_N euro -90;
+ pos @MMK_L_N dollar -30;
+ pos @MMK_L_N asciitilde -30;
+ pos @MMK_L_N braceleft -65;
+ pos @MMK_L_N parenright -20;
+ pos @MMK_L_N underscore -365;
+ pos @MMK_L_N braceright -60;
+ pos @MMK_L_N multiply -45;
+ pos @MMK_L_N backslash -10;
+ pos @MMK_L_N slash -15;
+ pos @MMK_L_N numbersign -55;
+ pos @MMK_L_N sterling -35;
+ pos @MMK_L_N question -20;
+ pos @MMK_L_N @MMK_R_S -30;
+ pos @MMK_L_N @MMK_R_J -20;
+ pos @MMK_L_N @MMK_R_s -15;
+ pos @MMK_L_B guillemetright -30;
+ pos @MMK_L_B questiondown -35;
+ pos @MMK_L_B periodcentered -10;
+ pos @MMK_L_B underscore -130;
+ pos @MMK_L_B numbersign -55;
+ pos @MMK_L_B dollar -60;
+ pos @MMK_L_B quotesingle -35;
+ pos @MMK_L_B quotedblleft -25;
+ pos @MMK_L_B parenright -70;
+ pos @MMK_L_B trademark -25;
+ pos @MMK_L_B sterling -40;
+ pos @MMK_L_B plus -10;
+ pos @MMK_L_B colon -30;
+ pos @MMK_L_B braceleft -65;
+ pos @MMK_L_B quotesinglbase -45;
+ pos @MMK_L_B asciicircum -50;
+ pos @MMK_L_B question -70;
+ pos @MMK_L_B semicolon -40;
+ pos @MMK_L_B asterisk -30;
+ pos @MMK_L_B guilsinglright -30;
+ pos @MMK_L_B multiply -50;
+ pos @MMK_L_B perthousand -25;
+ pos @MMK_L_B slash -70;
+ pos @MMK_L_B backslash -85;
+ pos @MMK_L_B yen -50;
+ pos @MMK_L_B bullet -15;
+ pos @MMK_L_B degree -30;
+ pos @MMK_L_B quoteright -35;
+ pos @MMK_L_B quotedbl -35;
+ pos @MMK_L_B ellipsis -40;
+ pos @MMK_L_B quotedblright -35;
+ pos @MMK_L_B comma -45;
+ pos @MMK_L_B percent -25;
+ pos @MMK_L_B quotedblbase -45;
+ pos @MMK_L_B minus -10;
+ pos @MMK_L_B divide -10;
+ pos @MMK_L_B registered -35;
+ pos @MMK_L_B quoteleft -25;
+ pos @MMK_L_B paragraph -25;
+ pos @MMK_L_B less -25;
+ pos @MMK_L_B euro -90;
+ pos @MMK_L_B braceright -60;
+ pos @MMK_L_B asciitilde -70;
+ pos @MMK_L_B @MMK_R_s -70;
+ pos @MMK_L_B @MMK_R_t -25;
+ pos @MMK_L_B @MMK_R_w -25;
+ pos @MMK_L_B @MMK_R_v -30;
+ pos @MMK_L_B @MMK_R_y -30;
+ pos @MMK_L_B @MMK_R_x -35;
+ pos @MMK_L_B @MMK_R_g -10;
+ pos @MMK_L_B @MMK_R_f -25;
+ pos @MMK_L_B @MMK_R_Q -20;
+ pos @MMK_L_B @MMK_R_S -55;
+ pos @MMK_L_B @MMK_R_T -30;
+ pos @MMK_L_B @MMK_R_W -55;
+ pos @MMK_L_B @MMK_R_V -50;
+ pos @MMK_L_B @MMK_R_Y -65;
+ pos @MMK_L_B @MMK_R_X -40;
+ pos @MMK_L_B @MMK_R_A -40;
+ pos @MMK_L_B @MMK_R_C -20;
+ pos @MMK_L_B @MMK_R_G -20;
+ pos @MMK_L_B @MMK_R_J -70;
+ pos @MMK_L_B @MMK_R_O -20;
+ pos @MMK_L_B @MMK_R_Oslash -20;
+ pos @MMK_L_B @MMK_R_tcaron -25;
+ pos @MMK_L_P quotedblright -15;
+ pos @MMK_L_P braceright -60;
+ pos @MMK_L_P yen -30;
+ pos @MMK_L_P ellipsis -290;
+ pos @MMK_L_P emdash -35;
+ pos @MMK_L_P parenleft -25;
+ pos @MMK_L_P endash -35;
+ pos @MMK_L_P quotedblbase -205;
+ pos @MMK_L_P slash -195;
+ pos @MMK_L_P periodcentered -60;
+ pos @MMK_L_P less -15;
+ pos @MMK_L_P guillemetright -15;
+ pos @MMK_L_P quotedbl -10;
+ pos @MMK_L_P degree -10;
+ pos @MMK_L_P quotesingle -10;
+ pos @MMK_L_P bullet -35;
+ pos @MMK_L_P quoteright -15;
+ pos @MMK_L_P underscore -350;
+ pos @MMK_L_P question -65;
+ pos @MMK_L_P comma -115;
+ pos @MMK_L_P euro -90;
+ pos @MMK_L_P braceleft -95;
+ pos @MMK_L_P asciitilde -65;
+ pos @MMK_L_P copyright -25;
+ pos @MMK_L_P quotesinglbase -115;
+ pos @MMK_L_P guillemetleft -100;
+ pos @MMK_L_P semicolon -10;
+ pos @MMK_L_P guilsinglleft -100;
+ pos @MMK_L_P guilsinglright -15;
+ pos @MMK_L_P sterling -60;
+ pos @MMK_L_P questiondown -200;
+ pos @MMK_L_P dollar -30;
+ pos @MMK_L_P hyphen -35;
+ pos @MMK_L_P at -30;
+ pos @MMK_L_P asciicircum -10;
+ pos @MMK_L_P parenright -55;
+ pos @MMK_L_P cent -35;
+ pos @MMK_L_P backslash -70;
+ pos @MMK_L_P ampersand -95;
+ pos @MMK_L_P multiply -45;
+ pos @MMK_L_P plus -10;
+ pos @MMK_L_P numbersign -130;
+ pos @MMK_L_P divide -10;
+ pos @MMK_L_P minus -10;
+ pos @MMK_L_P @MMK_R_dcaron -40;
+ pos @MMK_L_P @MMK_R_oslash -40;
+ pos @MMK_L_P @MMK_R_Oslash -15;
+ pos @MMK_L_P @MMK_R_dcroat -40;
+ pos @MMK_L_P @MMK_R_s -40;
+ pos @MMK_L_P @MMK_R_q -40;
+ pos @MMK_L_P @MMK_R_x -10;
+ pos @MMK_L_P @MMK_R_c -35;
+ pos @MMK_L_P @MMK_R_a -80;
+ pos @MMK_L_P @MMK_R_g -30;
+ pos @MMK_L_P @MMK_R_e -40;
+ pos @MMK_L_P @MMK_R_d -40;
+ pos @MMK_L_P @MMK_R_o -40;
+ pos @MMK_L_P @MMK_R_S -30;
+ pos @MMK_L_P @MMK_R_Q -15;
+ pos @MMK_L_P @MMK_R_W -35;
+ pos @MMK_L_P @MMK_R_V -30;
+ pos @MMK_L_P @MMK_R_T -10;
+ pos @MMK_L_P @MMK_R_Y -45;
+ pos @MMK_L_P @MMK_R_C -15;
+ pos @MMK_L_P @MMK_R_A -115;
+ pos @MMK_L_P @MMK_R_G -15;
+ pos @MMK_L_P @MMK_R_J -285;
+ pos @MMK_L_P @MMK_R_O -15;
+ pos @MMK_L_P @MMK_R_X -50;
+ pos @MMK_L_P @MMK_R_a.alt -35;
+ pos @MMK_L_P @MMK_R_eth -40;
+ pos @MMK_L_C questiondown -10;
+ pos @MMK_L_C sterling -35;
+ pos @MMK_L_C braceright -60;
+ pos @MMK_L_C asciitilde -30;
+ pos @MMK_L_C multiply -45;
+ pos @MMK_L_C quotesinglbase -10;
+ pos @MMK_L_C dollar -30;
+ pos @MMK_L_C euro -90;
+ pos @MMK_L_C quotedblbase -10;
+ pos @MMK_L_C yen -10;
+ pos @MMK_L_C braceleft -65;
+ pos @MMK_L_C ellipsis -10;
+ pos @MMK_L_C question -20;
+ pos @MMK_L_C backslash -30;
+ pos @MMK_L_C semicolon -10;
+ pos @MMK_L_C comma -10;
+ pos @MMK_L_C parenright -20;
+ pos @MMK_L_C numbersign -55;
+ pos @MMK_L_C slash -40;
+ pos @MMK_L_C underscore -120;
+ pos @MMK_L_C @MMK_R_x -10;
+ pos @MMK_L_C @MMK_R_s -30;
+ pos @MMK_L_C @MMK_R_X -15;
+ pos @MMK_L_C @MMK_R_Y -15;
+ pos @MMK_L_C @MMK_R_S -30;
+ pos @MMK_L_C @MMK_R_V -10;
+ pos @MMK_L_C @MMK_R_W -10;
+ pos @MMK_L_C @MMK_R_J -40;
+ pos @MMK_L_C @MMK_R_A -15;
+ pos @MMK_L_Q yen -50;
+ pos @MMK_L_Q multiply -55;
+ pos @MMK_L_Q guillemetright -15;
+ pos @MMK_L_Q asciitilde -35;
+ pos @MMK_L_Q quotedblbase -85;
+ pos @MMK_L_Q questiondown -80;
+ pos @MMK_L_Q sterling -35;
+ pos @MMK_L_Q guilsinglright -15;
+ pos @MMK_L_Q degree -40;
+ pos @MMK_L_Q perthousand -20;
+ pos @MMK_L_Q asterisk -20;
+ pos @MMK_L_Q braceleft -65;
+ pos @MMK_L_Q parenright -120;
+ pos @MMK_L_Q underscore -170;
+ pos @MMK_L_Q semicolon -25;
+ pos @MMK_L_Q slash -115;
+ pos @MMK_L_Q backslash -115;
+ pos @MMK_L_Q numbersign -90;
+ pos @MMK_L_Q ellipsis -85;
+ pos @MMK_L_Q euro -90;
+ pos @MMK_L_Q paragraph -15;
+ pos @MMK_L_Q braceright -60;
+ pos @MMK_L_Q asciicircum -10;
+ pos @MMK_L_Q dollar -50;
+ pos @MMK_L_Q comma -85;
+ pos @MMK_L_Q ampersand -20;
+ pos @MMK_L_Q quotedbl -30;
+ pos @MMK_L_Q quoteright -55;
+ pos @MMK_L_Q quotesingle -30;
+ pos @MMK_L_Q quoteleft -30;
+ pos @MMK_L_Q percent -20;
+ pos @MMK_L_Q quotesinglbase -85;
+ pos @MMK_L_Q quotedblleft -30;
+ pos @MMK_L_Q question -125;
+ pos @MMK_L_Q trademark -30;
+ pos @MMK_L_Q colon -15;
+ pos @MMK_L_Q quotedblright -55;
+ pos @MMK_L_Q @MMK_R_x -35;
+ pos @MMK_L_Q @MMK_R_y -20;
+ pos @MMK_L_Q @MMK_R_s -30;
+ pos @MMK_L_Q @MMK_R_v -15;
+ pos @MMK_L_Q @MMK_R_w -15;
+ pos @MMK_L_Q @MMK_R_t -10;
+ pos @MMK_L_Q @MMK_R_a -30;
+ pos @MMK_L_Q @MMK_R_f -10;
+ pos @MMK_L_Q @MMK_R_Y -80;
+ pos @MMK_L_Q @MMK_R_S -45;
+ pos @MMK_L_Q @MMK_R_V -50;
+ pos @MMK_L_Q @MMK_R_W -60;
+ pos @MMK_L_Q @MMK_R_T -60;
+ pos @MMK_L_Q @MMK_R_J -120;
+ pos @MMK_L_Q @MMK_R_A -75;
+ pos @MMK_L_Q @MMK_R_X -80;
+ pos @MMK_L_Q @MMK_R_tcaron -10;
+ pos @MMK_L_F parenright -20;
+ pos @MMK_L_F braceright -60;
+ pos @MMK_L_F backslash -10;
+ pos @MMK_L_F slash -120;
+ pos @MMK_L_F multiply -45;
+ pos @MMK_L_F braceleft -65;
+ pos @MMK_L_F asciitilde -30;
+ pos @MMK_L_F numbersign -80;
+ pos @MMK_L_F underscore -320;
+ pos @MMK_L_F comma -115;
+ pos @MMK_L_F question -20;
+ pos @MMK_L_F questiondown -185;
+ pos @MMK_L_F quotesinglbase -115;
+ pos @MMK_L_F semicolon -10;
+ pos @MMK_L_F ellipsis -290;
+ pos @MMK_L_F guilsinglright -10;
+ pos @MMK_L_F dollar -30;
+ pos @MMK_L_F quotedblbase -205;
+ pos @MMK_L_F euro -90;
+ pos @MMK_L_F sterling -35;
+ pos @MMK_L_F guillemetright -10;
+ pos @MMK_L_F @MMK_R_S -30;
+ pos @MMK_L_F @MMK_R_A -65;
+ pos @MMK_L_F @MMK_R_J -285;
+ pos @MMK_L_F @MMK_R_s -30;
+ pos @MMK_L_F @MMK_R_x -10;
+ pos @MMK_L_F @MMK_R_a -20;
+ pos @MMK_L_R at -30;
+ pos @MMK_L_R minus -10;
+ pos @MMK_L_R questiondown -55;
+ pos @MMK_L_R sterling -60;
+ pos @MMK_L_R dollar -30;
+ pos @MMK_L_R semicolon -10;
+ pos @MMK_L_R quotesingle -10;
+ pos @MMK_L_R divide -10;
+ pos @MMK_L_R copyright -25;
+ pos @MMK_L_R question -65;
+ pos @MMK_L_R ellipsis -55;
+ pos @MMK_L_R euro -90;
+ pos @MMK_L_R numbersign -130;
+ pos @MMK_L_R slash -70;
+ pos @MMK_L_R hyphen -35;
+ pos @MMK_L_R endash -35;
+ pos @MMK_L_R quotedblright -15;
+ pos @MMK_L_R less -15;
+ pos @MMK_L_R backslash -70;
+ pos @MMK_L_R cent -35;
+ pos @MMK_L_R quotesinglbase -60;
+ pos @MMK_L_R guilsinglleft -100;
+ pos @MMK_L_R yen -30;
+ pos @MMK_L_R quotedblbase -60;
+ pos @MMK_L_R emdash -35;
+ pos @MMK_L_R periodcentered -60;
+ pos @MMK_L_R braceleft -95;
+ pos @MMK_L_R asciitilde -65;
+ pos @MMK_L_R plus -10;
+ pos @MMK_L_R quoteright -15;
+ pos @MMK_L_R degree -10;
+ pos @MMK_L_R parenright -55;
+ pos @MMK_L_R guillemetleft -100;
+ pos @MMK_L_R bullet -35;
+ pos @MMK_L_R quotedbl -10;
+ pos @MMK_L_R guilsinglright -15;
+ pos @MMK_L_R guillemetright -15;
+ pos @MMK_L_R parenleft -25;
+ pos @MMK_L_R comma -60;
+ pos @MMK_L_R asciicircum -10;
+ pos @MMK_L_R braceright -60;
+ pos @MMK_L_R multiply -45;
+ pos @MMK_L_R ampersand -95;
+ pos @MMK_L_R underscore -350;
+ pos @MMK_L_R @MMK_R_q -40;
+ pos @MMK_L_R @MMK_R_dcaron -40;
+ pos @MMK_L_R @MMK_R_A -55;
+ pos @MMK_L_R @MMK_R_C -15;
+ pos @MMK_L_R @MMK_R_G -15;
+ pos @MMK_L_R @MMK_R_J -85;
+ pos @MMK_L_R @MMK_R_O -15;
+ pos @MMK_L_R @MMK_R_Q -15;
+ pos @MMK_L_R @MMK_R_S -30;
+ pos @MMK_L_R @MMK_R_T -10;
+ pos @MMK_L_R @MMK_R_W -35;
+ pos @MMK_L_R @MMK_R_V -30;
+ pos @MMK_L_R @MMK_R_Y -45;
+ pos @MMK_L_R @MMK_R_X -50;
+ pos @MMK_L_R @MMK_R_a -80;
+ pos @MMK_L_R @MMK_R_c -35;
+ pos @MMK_L_R @MMK_R_e -40;
+ pos @MMK_L_R @MMK_R_d -40;
+ pos @MMK_L_R @MMK_R_g -30;
+ pos @MMK_L_R @MMK_R_o -40;
+ pos @MMK_L_R @MMK_R_s -40;
+ pos @MMK_L_R @MMK_R_x -10;
+ pos @MMK_L_R @MMK_R_oslash -40;
+ pos @MMK_L_R @MMK_R_eth -40;
+ pos @MMK_L_R @MMK_R_dcroat -40;
+ pos @MMK_L_R @MMK_R_Oslash -15;
+ pos @MMK_L_R @MMK_R_a.alt -35;
+ pos @MMK_L_Y braceright -70;
+ pos @MMK_L_Y hyphen -95;
+ pos @MMK_L_Y quotedbl -15;
+ pos @MMK_L_Y quotedblleft -35;
+ pos @MMK_L_Y quotedblbase -125;
+ pos @MMK_L_Y asterisk -20;
+ pos @MMK_L_Y dollar -70;
+ pos @MMK_L_Y plus -80;
+ pos @MMK_L_Y asciitilde -130;
+ pos @MMK_L_Y semicolon -65;
+ pos @MMK_L_Y degree -25;
+ pos @MMK_L_Y perthousand -35;
+ pos @MMK_L_Y guilsinglleft -115;
+ pos @MMK_L_Y minus -80;
+ pos @MMK_L_Y quoteleft -35;
+ pos @MMK_L_Y endash -95;
+ pos @MMK_L_Y euro -140;
+ pos @MMK_L_Y guillemetleft -115;
+ pos @MMK_L_Y underscore -365;
+ pos @MMK_L_Y cent -105;
+ pos @MMK_L_Y braceleft -140;
+ pos @MMK_L_Y multiply -110;
+ pos @MMK_L_Y ellipsis -120;
+ pos @MMK_L_Y guillemetright -85;
+ pos @MMK_L_Y less -85;
+ pos @MMK_L_Y trademark -35;
+ pos @MMK_L_Y parenright -40;
+ pos @MMK_L_Y divide -80;
+ pos @MMK_L_Y question -35;
+ pos @MMK_L_Y registered -60;
+ pos @MMK_L_Y paragraph -45;
+ pos @MMK_L_Y quotesinglbase -115;
+ pos @MMK_L_Y comma -115;
+ pos @MMK_L_Y at -100;
+ pos @MMK_L_Y slash -135;
+ pos @MMK_L_Y backslash -10;
+ pos @MMK_L_Y questiondown -120;
+ pos @MMK_L_Y periodcentered -105;
+ pos @MMK_L_Y asciicircum -80;
+ pos @MMK_L_Y ampersand -120;
+ pos @MMK_L_Y bullet -100;
+ pos @MMK_L_Y guilsinglright -85;
+ pos @MMK_L_Y quotesingle -15;
+ pos @MMK_L_Y equal -50;
+ pos @MMK_L_Y copyright -95;
+ pos @MMK_L_Y quoteright -15;
+ pos @MMK_L_Y sterling -125;
+ pos @MMK_L_Y parenleft -95;
+ pos @MMK_L_Y percent -35;
+ pos @MMK_L_Y emdash -95;
+ pos @MMK_L_Y colon -55;
+ pos @MMK_L_Y quotedblright -15;
+ pos @MMK_L_Y numbersign -175;
+ pos @MMK_L_Y @MMK_R_C -80;
+ pos @MMK_L_Y @MMK_R_A -120;
+ pos @MMK_L_Y @MMK_R_G -80;
+ pos @MMK_L_Y @MMK_R_J -140;
+ pos @MMK_L_Y @MMK_R_S -70;
+ pos @MMK_L_Y @MMK_R_Q -80;
+ pos @MMK_L_Y @MMK_R_c -105;
+ pos @MMK_L_Y @MMK_R_a -120;
+ pos @MMK_L_Y @MMK_R_g -100;
+ pos @MMK_L_Y @MMK_R_d -105;
+ pos @MMK_L_Y @MMK_R_e -105;
+ pos @MMK_L_Y @MMK_R_n -50;
+ pos @MMK_L_Y @MMK_R_o -110;
+ pos @MMK_L_Y @MMK_R_m -50;
+ pos @MMK_L_Y @MMK_R_r -50;
+ pos @MMK_L_Y @MMK_R_s -105;
+ pos @MMK_L_Y @MMK_R_q -105;
+ pos @MMK_L_Y @MMK_R_v -50;
+ pos @MMK_L_Y @MMK_R_w -45;
+ pos @MMK_L_Y @MMK_R_t -50;
+ pos @MMK_L_Y @MMK_R_u -50;
+ pos @MMK_L_Y @MMK_R_z -50;
+ pos @MMK_L_Y @MMK_R_x -60;
+ pos @MMK_L_Y @MMK_R_y -50;
+ pos @MMK_L_Y @MMK_R_germandbls -35;
+ pos @MMK_L_Y @MMK_R_a.alt -105;
+ pos @MMK_L_Y @MMK_R_O -80;
+ pos @MMK_L_Y @MMK_R_f -50;
+ pos @MMK_L_Y @MMK_R_p -50;
+ pos @MMK_L_Y @MMK_R_Oslash -80;
+ pos @MMK_L_Y @MMK_R_eth -110;
+ pos @MMK_L_Y @MMK_R_dcaron -105;
+ pos @MMK_L_Y @MMK_R_dcroat -105;
+ pos @MMK_L_Y @MMK_R_tcaron -50;
+ pos @MMK_L_Y @MMK_R_oslash -110;
+ pos @MMK_L_X perthousand -35;
+ pos @MMK_L_X quotedblleft -35;
+ pos @MMK_L_X emdash -55;
+ pos @MMK_L_X guilsinglleft -65;
+ pos @MMK_L_X paragraph -45;
+ pos @MMK_L_X plus -75;
+ pos @MMK_L_X quotesingle -15;
+ pos @MMK_L_X quoteleft -35;
+ pos @MMK_L_X degree -25;
+ pos @MMK_L_X copyright -60;
+ pos @MMK_L_X endash -55;
+ pos @MMK_L_X slash -15;
+ pos @MMK_L_X asterisk -20;
+ pos @MMK_L_X cent -55;
+ pos @MMK_L_X less -85;
+ pos @MMK_L_X question -35;
+ pos @MMK_L_X braceleft -110;
+ pos @MMK_L_X guilsinglright -25;
+ pos @MMK_L_X minus -75;
+ pos @MMK_L_X dollar -45;
+ pos @MMK_L_X euro -140;
+ pos @MMK_L_X quotedbl -15;
+ pos @MMK_L_X percent -35;
+ pos @MMK_L_X underscore -360;
+ pos @MMK_L_X sterling -35;
+ pos @MMK_L_X trademark -35;
+ pos @MMK_L_X equal -45;
+ pos @MMK_L_X numbersign -90;
+ pos @MMK_L_X asciitilde -125;
+ pos @MMK_L_X guillemetleft -65;
+ pos @MMK_L_X quoteright -15;
+ pos @MMK_L_X bullet -80;
+ pos @MMK_L_X divide -75;
+ pos @MMK_L_X hyphen -55;
+ pos @MMK_L_X ampersand -45;
+ pos @MMK_L_X registered -60;
+ pos @MMK_L_X periodcentered -70;
+ pos @MMK_L_X semicolon -10;
+ pos @MMK_L_X parenleft -55;
+ pos @MMK_L_X braceright -60;
+ pos @MMK_L_X asciicircum -80;
+ pos @MMK_L_X at -55;
+ pos @MMK_L_X parenright -40;
+ pos @MMK_L_X guillemetright -25;
+ pos @MMK_L_X multiply -110;
+ pos @MMK_L_X quotedblright -15;
+ pos @MMK_L_X backslash -10;
+ pos @MMK_L_X @MMK_R_dcaron -60;
+ pos @MMK_L_X @MMK_R_y -50;
+ pos @MMK_L_X @MMK_R_s -25;
+ pos @MMK_L_X @MMK_R_q -60;
+ pos @MMK_L_X @MMK_R_w -45;
+ pos @MMK_L_X @MMK_R_v -50;
+ pos @MMK_L_X @MMK_R_u -40;
+ pos @MMK_L_X @MMK_R_t -50;
+ pos @MMK_L_X @MMK_R_o -60;
+ pos @MMK_L_X @MMK_R_c -60;
+ pos @MMK_L_X @MMK_R_a -35;
+ pos @MMK_L_X @MMK_R_g -70;
+ pos @MMK_L_X @MMK_R_f -50;
+ pos @MMK_L_X @MMK_R_e -60;
+ pos @MMK_L_X @MMK_R_d -60;
+ pos @MMK_L_X @MMK_R_S -40;
+ pos @MMK_L_X @MMK_R_J -25;
+ pos @MMK_L_X @MMK_R_O -80;
+ pos @MMK_L_X @MMK_R_C -80;
+ pos @MMK_L_X @MMK_R_G -80;
+ pos @MMK_L_X @MMK_R_eth -55;
+ pos @MMK_L_X @MMK_R_a.alt -55;
+ pos @MMK_L_X @MMK_R_oslash -30;
+ pos @MMK_L_X @MMK_R_dcroat -60;
+ pos @MMK_L_X @MMK_R_Q -80;
+ pos @MMK_L_X @MMK_R_tcaron -50;
+ pos @MMK_L_Oslash quoteright -35;
+ pos @MMK_L_Oslash slash -125;
+ pos @MMK_L_Oslash perthousand -20;
+ pos @MMK_L_Oslash yen -15;
+ pos @MMK_L_Oslash quotesinglbase -110;
+ pos @MMK_L_Oslash dollar -50;
+ pos @MMK_L_Oslash multiply -55;
+ pos @MMK_L_Oslash backslash -20;
+ pos @MMK_L_Oslash quoteleft -30;
+ pos @MMK_L_Oslash quotedblbase -110;
+ pos @MMK_L_Oslash quotesingle -30;
+ pos @MMK_L_Oslash braceleft -65;
+ pos @MMK_L_Oslash guilsinglright -15;
+ pos @MMK_L_Oslash colon -15;
+ pos @MMK_L_Oslash ampersand -20;
+ pos @MMK_L_Oslash paragraph -15;
+ pos @MMK_L_Oslash question -70;
+ pos @MMK_L_Oslash quotedblleft -30;
+ pos @MMK_L_Oslash degree -40;
+ pos @MMK_L_Oslash semicolon -25;
+ pos @MMK_L_Oslash ellipsis -110;
+ pos @MMK_L_Oslash guillemetright -15;
+ pos @MMK_L_Oslash parenright -80;
+ pos @MMK_L_Oslash comma -110;
+ pos @MMK_L_Oslash quotedblright -35;
+ pos @MMK_L_Oslash asciicircum -10;
+ pos @MMK_L_Oslash trademark -30;
+ pos @MMK_L_Oslash sterling -35;
+ pos @MMK_L_Oslash braceright -60;
+ pos @MMK_L_Oslash quotedbl -30;
+ pos @MMK_L_Oslash questiondown -95;
+ pos @MMK_L_Oslash asciitilde -35;
+ pos @MMK_L_Oslash numbersign -90;
+ pos @MMK_L_Oslash euro -90;
+ pos @MMK_L_Oslash percent -20;
+ pos @MMK_L_Oslash asterisk -20;
+ pos @MMK_L_Oslash underscore -230;
+ pos @MMK_L_Oslash @MMK_R_X -15;
+ pos @MMK_L_Oslash @MMK_R_x -35;
+ pos @MMK_L_Oslash @MMK_R_tcaron -10;
+ pos @MMK_L_Oslash @MMK_R_Y -15;
+ pos @MMK_L_Oslash @MMK_R_V -15;
+ pos @MMK_L_Oslash @MMK_R_W -15;
+ pos @MMK_L_Oslash @MMK_R_T -10;
+ pos @MMK_L_Oslash @MMK_R_S -45;
+ pos @MMK_L_Oslash @MMK_R_J -145;
+ pos @MMK_L_Oslash @MMK_R_A -75;
+ pos @MMK_L_Oslash @MMK_R_y -20;
+ pos @MMK_L_Oslash @MMK_R_v -15;
+ pos @MMK_L_Oslash @MMK_R_w -15;
+ pos @MMK_L_Oslash @MMK_R_t -10;
+ pos @MMK_L_Oslash @MMK_R_s -30;
+ pos @MMK_L_Oslash @MMK_R_f -10;
+ pos @MMK_L_Oslash @MMK_R_a -30;
+ pos @MMK_L_W ellipsis -130;
+ pos @MMK_L_W colon -40;
+ pos @MMK_L_W quotedbl -10;
+ pos @MMK_L_W underscore -365;
+ pos @MMK_L_W plus -55;
+ pos @MMK_L_W parenleft -75;
+ pos @MMK_L_W asciicircum -55;
+ pos @MMK_L_W registered -45;
+ pos @MMK_L_W equal -35;
+ pos @MMK_L_W guillemetleft -80;
+ pos @MMK_L_W guilsinglleft -80;
+ pos @MMK_L_W parenright -30;
+ pos @MMK_L_W guilsinglright -60;
+ pos @MMK_L_W asciitilde -105;
+ pos @MMK_L_W hyphen -70;
+ pos @MMK_L_W quoteright -15;
+ pos @MMK_L_W periodcentered -80;
+ pos @MMK_L_W degree -20;
+ pos @MMK_L_W ampersand -95;
+ pos @MMK_L_W quotesingle -10;
+ pos @MMK_L_W semicolon -50;
+ pos @MMK_L_W braceleft -135;
+ pos @MMK_L_W at -75;
+ pos @MMK_L_W asterisk -15;
+ pos @MMK_L_W cent -75;
+ pos @MMK_L_W quotedblleft -25;
+ pos @MMK_L_W perthousand -25;
+ pos @MMK_L_W paragraph -30;
+ pos @MMK_L_W euro -125;
+ pos @MMK_L_W quotedblbase -130;
+ pos @MMK_L_W dollar -60;
+ pos @MMK_L_W quoteleft -25;
+ pos @MMK_L_W comma -115;
+ pos @MMK_L_W braceright -70;
+ pos @MMK_L_W endash -70;
+ pos @MMK_L_W divide -55;
+ pos @MMK_L_W quotesinglbase -115;
+ pos @MMK_L_W questiondown -130;
+ pos @MMK_L_W guillemetright -60;
+ pos @MMK_L_W question -30;
+ pos @MMK_L_W quotedblright -15;
+ pos @MMK_L_W copyright -70;
+ pos @MMK_L_W bullet -75;
+ pos @MMK_L_W backslash -10;
+ pos @MMK_L_W less -60;
+ pos @MMK_L_W multiply -90;
+ pos @MMK_L_W percent -25;
+ pos @MMK_L_W sterling -100;
+ pos @MMK_L_W minus -55;
+ pos @MMK_L_W emdash -70;
+ pos @MMK_L_W slash -150;
+ pos @MMK_L_W numbersign -160;
+ pos @MMK_L_W trademark -25;
+ pos @MMK_L_W @MMK_R_m -35;
+ pos @MMK_L_W @MMK_R_n -35;
+ pos @MMK_L_W @MMK_R_o -80;
+ pos @MMK_L_W @MMK_R_d -80;
+ pos @MMK_L_W @MMK_R_f -35;
+ pos @MMK_L_W @MMK_R_g -75;
+ pos @MMK_L_W @MMK_R_a -100;
+ pos @MMK_L_W @MMK_R_c -80;
+ pos @MMK_L_W @MMK_R_x -45;
+ pos @MMK_L_W @MMK_R_z -35;
+ pos @MMK_L_W @MMK_R_t -35;
+ pos @MMK_L_W @MMK_R_u -35;
+ pos @MMK_L_W @MMK_R_v -35;
+ pos @MMK_L_W @MMK_R_w -30;
+ pos @MMK_L_W @MMK_R_p -35;
+ pos @MMK_L_W @MMK_R_q -80;
+ pos @MMK_L_W @MMK_R_r -35;
+ pos @MMK_L_W @MMK_R_s -85;
+ pos @MMK_L_W @MMK_R_O -60;
+ pos @MMK_L_W @MMK_R_J -150;
+ pos @MMK_L_W @MMK_R_G -60;
+ pos @MMK_L_W @MMK_R_A -135;
+ pos @MMK_L_W @MMK_R_C -60;
+ pos @MMK_L_W @MMK_R_Q -60;
+ pos @MMK_L_W @MMK_R_S -60;
+ pos @MMK_L_W @MMK_R_a.alt -75;
+ pos @MMK_L_W @MMK_R_eth -80;
+ pos @MMK_L_W @MMK_R_germandbls -30;
+ pos @MMK_L_W @MMK_R_Oslash -60;
+ pos @MMK_L_W @MMK_R_y -35;
+ pos @MMK_L_W @MMK_R_tcaron -35;
+ pos @MMK_L_W @MMK_R_e -80;
+ pos @MMK_L_W @MMK_R_oslash -80;
+ pos @MMK_L_W @MMK_R_dcaron -80;
+ pos @MMK_L_W @MMK_R_dcroat -80;
+ pos @MMK_L_L quoteleft -115;
+ pos @MMK_L_L cent -20;
+ pos @MMK_L_L underscore -300;
+ pos @MMK_L_L multiply -135;
+ pos @MMK_L_L equal -300;
+ pos @MMK_L_L asciitilde -240;
+ pos @MMK_L_L divide -230;
+ pos @MMK_L_L registered -195;
+ pos @MMK_L_L quotedblleft -205;
+ pos @MMK_L_L degree -215;
+ pos @MMK_L_L braceright -60;
+ pos @MMK_L_L quotedbl -200;
+ pos @MMK_L_L at -20;
+ pos @MMK_L_L guilsinglleft -95;
+ pos @MMK_L_L dollar -35;
+ pos @MMK_L_L slash -15;
+ pos @MMK_L_L perthousand -105;
+ pos @MMK_L_L asterisk -190;
+ pos @MMK_L_L numbersign -90;
+ pos @MMK_L_L backslash -240;
+ pos @MMK_L_L sterling -35;
+ pos @MMK_L_L parenright -90;
+ pos @MMK_L_L plus -235;
+ pos @MMK_L_L minus -300;
+ pos @MMK_L_L asciicircum -260;
+ pos @MMK_L_L percent -105;
+ pos @MMK_L_L quotedblright -205;
+ pos @MMK_L_L copyright -25;
+ pos @MMK_L_L paragraph -220;
+ pos @MMK_L_L braceleft -110;
+ pos @MMK_L_L question -175;
+ pos @MMK_L_L euro -200;
+ pos @MMK_L_L periodcentered -105;
+ pos @MMK_L_L emdash -300;
+ pos @MMK_L_L bullet -120;
+ pos @MMK_L_L guillemetleft -95;
+ pos @MMK_L_L endash -295;
+ pos @MMK_L_L hyphen -195;
+ pos @MMK_L_L trademark -300;
+ pos @MMK_L_L quotesingle -110;
+ pos @MMK_L_L parenleft -15;
+ pos @MMK_L_L yen -60;
+ pos @MMK_L_L quoteright -115;
+ pos @MMK_L_L less -300;
+ pos @MMK_L_L @MMK_R_dcaron -25;
+ pos @MMK_L_L @MMK_R_tcaron -80;
+ pos @MMK_L_L @MMK_R_oslash -30;
+ pos @MMK_L_L @MMK_R_a.alt -20;
+ pos @MMK_L_L @MMK_R_dcroat -25;
+ pos @MMK_L_L @MMK_R_eth -20;
+ pos @MMK_L_L @MMK_R_Q -55;
+ pos @MMK_L_L @MMK_R_O -55;
+ pos @MMK_L_L @MMK_R_J -20;
+ pos @MMK_L_L @MMK_R_G -60;
+ pos @MMK_L_L @MMK_R_C -55;
+ pos @MMK_L_L @MMK_R_Y -120;
+ pos @MMK_L_L @MMK_R_W -110;
+ pos @MMK_L_L @MMK_R_V -90;
+ pos @MMK_L_L @MMK_R_U -20;
+ pos @MMK_L_L @MMK_R_T -115;
+ pos @MMK_L_L @MMK_R_S -30;
+ pos @MMK_L_L @MMK_R_o -30;
+ pos @MMK_L_L @MMK_R_g -40;
+ pos @MMK_L_L @MMK_R_f -80;
+ pos @MMK_L_L @MMK_R_e -25;
+ pos @MMK_L_L @MMK_R_d -25;
+ pos @MMK_L_L @MMK_R_c -25;
+ pos @MMK_L_L @MMK_R_y -55;
+ pos @MMK_L_L @MMK_R_w -45;
+ pos @MMK_L_L @MMK_R_v -45;
+ pos @MMK_L_L @MMK_R_t -80;
+ pos @MMK_L_L @MMK_R_s -15;
+ pos @MMK_L_L @MMK_R_q -25;
+ pos @MMK_L_T parenleft -80;
+ pos @MMK_L_T colon -55;
+ pos @MMK_L_T less -115;
+ pos @MMK_L_T guillemetright -115;
+ pos @MMK_L_T braceright -60;
+ pos @MMK_L_T backslash -10;
+ pos @MMK_L_T questiondown -115;
+ pos @MMK_L_T hyphen -115;
+ pos @MMK_L_T parenright -20;
+ pos @MMK_L_T asciitilde -145;
+ pos @MMK_L_T periodcentered -105;
+ pos @MMK_L_T semicolon -65;
+ pos @MMK_L_T registered -25;
+ pos @MMK_L_T slash -130;
+ pos @MMK_L_T braceleft -110;
+ pos @MMK_L_T question -20;
+ pos @MMK_L_T asciicircum -90;
+ pos @MMK_L_T minus -115;
+ pos @MMK_L_T endash -115;
+ pos @MMK_L_T guilsinglleft -110;
+ pos @MMK_L_T dollar -35;
+ pos @MMK_L_T ellipsis -115;
+ pos @MMK_L_T sterling -95;
+ pos @MMK_L_T underscore -345;
+ pos @MMK_L_T guilsinglright -115;
+ pos @MMK_L_T quotesinglbase -115;
+ pos @MMK_L_T multiply -160;
+ pos @MMK_L_T equal -115;
+ pos @MMK_L_T guillemetleft -110;
+ pos @MMK_L_T euro -200;
+ pos @MMK_L_T copyright -90;
+ pos @MMK_L_T emdash -115;
+ pos @MMK_L_T ampersand -115;
+ pos @MMK_L_T comma -115;
+ pos @MMK_L_T at -105;
+ pos @MMK_L_T numbersign -170;
+ pos @MMK_L_T cent -115;
+ pos @MMK_L_T quotedblbase -115;
+ pos @MMK_L_T bullet -115;
+ pos @MMK_L_T plus -115;
+ pos @MMK_L_T divide -115;
+ pos @MMK_L_T @MMK_R_Oslash -60;
+ pos @MMK_L_T @MMK_R_eth -115;
+ pos @MMK_L_T @MMK_R_oslash -115;
+ pos @MMK_L_T @MMK_R_S -35;
+ pos @MMK_L_T @MMK_R_Q -60;
+ pos @MMK_L_T @MMK_R_G -60;
+ pos @MMK_L_T @MMK_R_C -60;
+ pos @MMK_L_T @MMK_R_A -115;
+ pos @MMK_L_T @MMK_R_O -60;
+ pos @MMK_L_T @MMK_R_J -135;
+ pos @MMK_L_T @MMK_R_w -110;
+ pos @MMK_L_T @MMK_R_v -115;
+ pos @MMK_L_T @MMK_R_u -115;
+ pos @MMK_L_T @MMK_R_t -80;
+ pos @MMK_L_T @MMK_R_s -130;
+ pos @MMK_L_T @MMK_R_r -115;
+ pos @MMK_L_T @MMK_R_q -115;
+ pos @MMK_L_T @MMK_R_p -115;
+ pos @MMK_L_T @MMK_R_z -115;
+ pos @MMK_L_T @MMK_R_y -115;
+ pos @MMK_L_T @MMK_R_x -115;
+ pos @MMK_L_T @MMK_R_g -115;
+ pos @MMK_L_T @MMK_R_f -80;
+ pos @MMK_L_T @MMK_R_e -115;
+ pos @MMK_L_T @MMK_R_d -115;
+ pos @MMK_L_T @MMK_R_c -115;
+ pos @MMK_L_T @MMK_R_a -115;
+ pos @MMK_L_T @MMK_R_o -115;
+ pos @MMK_L_T @MMK_R_n -115;
+ pos @MMK_L_T @MMK_R_m -115;
+ pos @MMK_L_T @MMK_R_tcaron -80;
+ pos @MMK_L_T @MMK_R_a.alt -115;
+ pos @MMK_L_T @MMK_R_dcaron -115;
+ pos @MMK_L_T @MMK_R_dcroat -115;
+ pos @MMK_L_Lslash euro -205;
+ pos @MMK_L_Lslash quoteleft -115;
+ pos @MMK_L_Lslash braceright -60;
+ pos @MMK_L_Lslash endash -295;
+ pos @MMK_L_Lslash numbersign -90;
+ pos @MMK_L_Lslash backslash -240;
+ pos @MMK_L_Lslash slash -15;
+ pos @MMK_L_Lslash ampersand -10;
+ pos @MMK_L_Lslash hyphen -195;
+ pos @MMK_L_Lslash cent -25;
+ pos @MMK_L_Lslash yen -60;
+ pos @MMK_L_Lslash guillemetleft -105;
+ pos @MMK_L_Lslash underscore -355;
+ pos @MMK_L_Lslash sterling -35;
+ pos @MMK_L_Lslash multiply -140;
+ pos @MMK_L_Lslash percent -105;
+ pos @MMK_L_Lslash quoteright -115;
+ pos @MMK_L_Lslash registered -220;
+ pos @MMK_L_Lslash parenright -90;
+ pos @MMK_L_Lslash paragraph -220;
+ pos @MMK_L_Lslash degree -215;
+ pos @MMK_L_Lslash asciitilde -240;
+ pos @MMK_L_Lslash less -310;
+ pos @MMK_L_Lslash copyright -30;
+ pos @MMK_L_Lslash question -175;
+ pos @MMK_L_Lslash bullet -175;
+ pos @MMK_L_Lslash periodcentered -105;
+ pos @MMK_L_Lslash at -25;
+ pos @MMK_L_Lslash guilsinglleft -105;
+ pos @MMK_L_Lslash minus -330;
+ pos @MMK_L_Lslash plus -235;
+ pos @MMK_L_Lslash perthousand -105;
+ pos @MMK_L_Lslash quotesingle -110;
+ pos @MMK_L_Lslash quotedblleft -205;
+ pos @MMK_L_Lslash braceleft -110;
+ pos @MMK_L_Lslash asterisk -190;
+ pos @MMK_L_Lslash quotedblright -205;
+ pos @MMK_L_Lslash emdash -340;
+ pos @MMK_L_Lslash dollar -35;
+ pos @MMK_L_Lslash divide -235;
+ pos @MMK_L_Lslash trademark -340;
+ pos @MMK_L_Lslash parenleft -20;
+ pos @MMK_L_Lslash equal -330;
+ pos @MMK_L_Lslash asciicircum -260;
+ pos @MMK_L_Lslash quotedbl -200;
+ pos @MMK_L_Lslash @MMK_R_tcaron -80;
+ pos @MMK_L_Lslash @MMK_R_dcroat -30;
+ pos @MMK_L_Lslash @MMK_R_y -60;
+ pos @MMK_L_Lslash @MMK_R_w -50;
+ pos @MMK_L_Lslash @MMK_R_v -45;
+ pos @MMK_L_Lslash @MMK_R_s -15;
+ pos @MMK_L_Lslash @MMK_R_q -30;
+ pos @MMK_L_Lslash @MMK_R_g -45;
+ pos @MMK_L_Lslash @MMK_R_f -80;
+ pos @MMK_L_Lslash @MMK_R_e -30;
+ pos @MMK_L_Lslash @MMK_R_d -30;
+ pos @MMK_L_Lslash @MMK_R_c -25;
+ pos @MMK_L_Lslash @MMK_R_Y -120;
+ pos @MMK_L_Lslash @MMK_R_V -95;
+ pos @MMK_L_Lslash @MMK_R_U -25;
+ pos @MMK_L_Lslash @MMK_R_T -115;
+ pos @MMK_L_Lslash @MMK_R_S -30;
+ pos @MMK_L_Lslash @MMK_R_Q -65;
+ pos @MMK_L_Lslash @MMK_R_O -65;
+ pos @MMK_L_Lslash @MMK_R_J -20;
+ pos @MMK_L_Lslash @MMK_R_G -65;
+ pos @MMK_L_Lslash @MMK_R_C -65;
+ pos @MMK_L_Lslash @MMK_R_eth -25;
+ pos @MMK_L_Lslash @MMK_R_t -80;
+ pos @MMK_L_Lslash @MMK_R_o -30;
+ pos @MMK_L_Lslash @MMK_R_W -110;
+ pos @MMK_L_Lslash @MMK_R_dcaron -30;
+ pos @MMK_L_Lslash @MMK_R_a.alt -25;
+ pos @MMK_L_Lslash @MMK_R_oslash -30;
+ pos @MMK_L_A endash -50;
+ pos @MMK_L_A divide -70;
+ pos @MMK_L_A quoteright -115;
+ pos @MMK_L_A quoteleft -115;
+ pos @MMK_L_A plus -70;
+ pos @MMK_L_A degree -140;
+ pos @MMK_L_A copyright -55;
+ pos @MMK_L_A slash -15;
+ pos @MMK_L_A percent -105;
+ pos @MMK_L_A guillemetright -20;
+ pos @MMK_L_A asterisk -120;
+ pos @MMK_L_A trademark -130;
+ pos @MMK_L_A quotedbl -135;
+ pos @MMK_L_A braceleft -110;
+ pos @MMK_L_A registered -100;
+ pos @MMK_L_A euro -145;
+ pos @MMK_L_A multiply -105;
+ pos @MMK_L_A perthousand -105;
+ pos @MMK_L_A periodcentered -65;
+ pos @MMK_L_A equal -40;
+ pos @MMK_L_A yen -60;
+ pos @MMK_L_A paragraph -120;
+ pos @MMK_L_A semicolon -10;
+ pos @MMK_L_A hyphen -50;
+ pos @MMK_L_A underscore -365;
+ pos @MMK_L_A bullet -70;
+ pos @MMK_L_A backslash -185;
+ pos @MMK_L_A emdash -50;
+ pos @MMK_L_A less -80;
+ pos @MMK_L_A guilsinglleft -60;
+ pos @MMK_L_A at -50;
+ pos @MMK_L_A numbersign -90;
+ pos @MMK_L_A sterling -35;
+ pos @MMK_L_A parenright -90;
+ pos @MMK_L_A minus -70;
+ pos @MMK_L_A ampersand -40;
+ pos @MMK_L_A parenleft -50;
+ pos @MMK_L_A cent -55;
+ pos @MMK_L_A guilsinglright -20;
+ pos @MMK_L_A guillemetleft -60;
+ pos @MMK_L_A question -180;
+ pos @MMK_L_A quotesingle -110;
+ pos @MMK_L_A dollar -40;
+ pos @MMK_L_A asciicircum -115;
+ pos @MMK_L_A braceright -60;
+ pos @MMK_L_A quotedblright -150;
+ pos @MMK_L_A asciitilde -115;
+ pos @MMK_L_A quotedblleft -135;
+ pos @MMK_L_A @MMK_R_w -65;
+ pos @MMK_L_A @MMK_R_V -115;
+ pos @MMK_L_A @MMK_R_o -55;
+ pos @MMK_L_A @MMK_R_c -55;
+ pos @MMK_L_A @MMK_R_a -35;
+ pos @MMK_L_A @MMK_R_f -80;
+ pos @MMK_L_A @MMK_R_g -65;
+ pos @MMK_L_A @MMK_R_d -55;
+ pos @MMK_L_A @MMK_R_e -55;
+ pos @MMK_L_A @MMK_R_y -75;
+ pos @MMK_L_A @MMK_R_s -25;
+ pos @MMK_L_A @MMK_R_q -55;
+ pos @MMK_L_A @MMK_R_v -60;
+ pos @MMK_L_A @MMK_R_t -105;
+ pos @MMK_L_A @MMK_R_u -35;
+ pos @MMK_L_A @MMK_R_J -25;
+ pos @MMK_L_A @MMK_R_O -75;
+ pos @MMK_L_A @MMK_R_C -75;
+ pos @MMK_L_A @MMK_R_G -75;
+ pos @MMK_L_A @MMK_R_Y -120;
+ pos @MMK_L_A @MMK_R_S -40;
+ pos @MMK_L_A @MMK_R_Q -75;
+ pos @MMK_L_A @MMK_R_W -135;
+ pos @MMK_L_A @MMK_R_T -115;
+ pos @MMK_L_A @MMK_R_U -55;
+ pos @MMK_L_A @MMK_R_dcroat -55;
+ pos @MMK_L_A @MMK_R_eth -50;
+ pos @MMK_L_A @MMK_R_tcaron -105;
+ pos @MMK_L_A @MMK_R_oslash -30;
+ pos @MMK_L_A @MMK_R_dcaron -55;
+ pos @MMK_L_A @MMK_R_a.alt -55;
+ pos @MMK_L_O semicolon -25;
+ pos @MMK_L_O dollar -50;
+ pos @MMK_L_O quotedblleft -30;
+ pos @MMK_L_O asciicircum -10;
+ pos @MMK_L_O asterisk -20;
+ pos @MMK_L_O braceright -60;
+ pos @MMK_L_O questiondown -95;
+ pos @MMK_L_O yen -50;
+ pos @MMK_L_O numbersign -90;
+ pos @MMK_L_O slash -125;
+ pos @MMK_L_O paragraph -15;
+ pos @MMK_L_O perthousand -20;
+ pos @MMK_L_O multiply -55;
+ pos @MMK_L_O quotedblright -55;
+ pos @MMK_L_O question -125;
+ pos @MMK_L_O degree -40;
+ pos @MMK_L_O guillemetright -15;
+ pos @MMK_L_O guilsinglright -15;
+ pos @MMK_L_O quoteright -55;
+ pos @MMK_L_O sterling -35;
+ pos @MMK_L_O colon -15;
+ pos @MMK_L_O quotedbl -30;
+ pos @MMK_L_O trademark -30;
+ pos @MMK_L_O percent -20;
+ pos @MMK_L_O quotesinglbase -110;
+ pos @MMK_L_O quoteleft -30;
+ pos @MMK_L_O comma -110;
+ pos @MMK_L_O quotedblbase -110;
+ pos @MMK_L_O parenright -120;
+ pos @MMK_L_O underscore -230;
+ pos @MMK_L_O ampersand -20;
+ pos @MMK_L_O backslash -115;
+ pos @MMK_L_O asciitilde -35;
+ pos @MMK_L_O euro -90;
+ pos @MMK_L_O braceleft -65;
+ pos @MMK_L_O quotesingle -30;
+ pos @MMK_L_O ellipsis -110;
+ pos @MMK_L_O @MMK_R_f -10;
+ pos @MMK_L_O @MMK_R_a -30;
+ pos @MMK_L_O @MMK_R_t -10;
+ pos @MMK_L_O @MMK_R_v -15;
+ pos @MMK_L_O @MMK_R_s -30;
+ pos @MMK_L_O @MMK_R_x -35;
+ pos @MMK_L_O @MMK_R_y -20;
+ pos @MMK_L_O @MMK_R_A -75;
+ pos @MMK_L_O @MMK_R_J -145;
+ pos @MMK_L_O @MMK_R_T -60;
+ pos @MMK_L_O @MMK_R_V -50;
+ pos @MMK_L_O @MMK_R_S -45;
+ pos @MMK_L_O @MMK_R_X -80;
+ pos @MMK_L_O @MMK_R_Y -80;
+ pos @MMK_L_O @MMK_R_w -15;
+ pos @MMK_L_O @MMK_R_W -60;
+ pos @MMK_L_O @MMK_R_tcaron -10;
+ pos @MMK_L_V plus -50;
+ pos @MMK_L_V at -65;
+ pos @MMK_L_V questiondown -110;
+ pos @MMK_L_V quoteleft -20;
+ pos @MMK_L_V guillemetleft -65;
+ pos @MMK_L_V question -25;
+ pos @MMK_L_V guillemetright -55;
+ pos @MMK_L_V guilsinglright -55;
+ pos @MMK_L_V less -50;
+ pos @MMK_L_V ampersand -80;
+ pos @MMK_L_V parenleft -65;
+ pos @MMK_L_V minus -50;
+ pos @MMK_L_V periodcentered -70;
+ pos @MMK_L_V asciitilde -90;
+ pos @MMK_L_V copyright -60;
+ pos @MMK_L_V asterisk -15;
+ pos @MMK_L_V bullet -60;
+ pos @MMK_L_V quotedblright -10;
+ pos @MMK_L_V endash -60;
+ pos @MMK_L_V quotedblbase -110;
+ pos @MMK_L_V percent -25;
+ pos @MMK_L_V ellipsis -110;
+ pos @MMK_L_V quotesingle -10;
+ pos @MMK_L_V comma -110;
+ pos @MMK_L_V registered -40;
+ pos @MMK_L_V semicolon -45;
+ pos @MMK_L_V guilsinglleft -65;
+ pos @MMK_L_V colon -35;
+ pos @MMK_L_V braceright -70;
+ pos @MMK_L_V euro -120;
+ pos @MMK_L_V emdash -60;
+ pos @MMK_L_V equal -30;
+ pos @MMK_L_V multiply -80;
+ pos @MMK_L_V backslash -10;
+ pos @MMK_L_V numbersign -145;
+ pos @MMK_L_V braceleft -125;
+ pos @MMK_L_V underscore -335;
+ pos @MMK_L_V parenright -30;
+ pos @MMK_L_V trademark -20;
+ pos @MMK_L_V divide -50;
+ pos @MMK_L_V perthousand -25;
+ pos @MMK_L_V sterling -90;
+ pos @MMK_L_V quotesinglbase -110;
+ pos @MMK_L_V slash -130;
+ pos @MMK_L_V dollar -55;
+ pos @MMK_L_V degree -15;
+ pos @MMK_L_V cent -65;
+ pos @MMK_L_V paragraph -25;
+ pos @MMK_L_V asciicircum -50;
+ pos @MMK_L_V hyphen -60;
+ pos @MMK_L_V quotedblleft -20;
+ pos @MMK_L_V quotedbl -10;
+ pos @MMK_L_V quoteright -10;
+ pos @MMK_L_V @MMK_R_a.alt -65;
+ pos @MMK_L_V @MMK_R_oslash -65;
+ pos @MMK_L_V @MMK_R_Oslash -50;
+ pos @MMK_L_V @MMK_R_eth -70;
+ pos @MMK_L_V @MMK_R_dcroat -65;
+ pos @MMK_L_V @MMK_R_dcaron -65;
+ pos @MMK_L_V @MMK_R_germandbls -25;
+ pos @MMK_L_V @MMK_R_p -30;
+ pos @MMK_L_V @MMK_R_S -55;
+ pos @MMK_L_V @MMK_R_tcaron -30;
+ pos @MMK_L_V @MMK_R_e -65;
+ pos @MMK_L_V @MMK_R_d -65;
+ pos @MMK_L_V @MMK_R_g -60;
+ pos @MMK_L_V @MMK_R_f -30;
+ pos @MMK_L_V @MMK_R_a -85;
+ pos @MMK_L_V @MMK_R_c -65;
+ pos @MMK_L_V @MMK_R_m -30;
+ pos @MMK_L_V @MMK_R_o -65;
+ pos @MMK_L_V @MMK_R_n -30;
+ pos @MMK_L_V @MMK_R_u -30;
+ pos @MMK_L_V @MMK_R_t -30;
+ pos @MMK_L_V @MMK_R_w -25;
+ pos @MMK_L_V @MMK_R_v -30;
+ pos @MMK_L_V @MMK_R_q -65;
+ pos @MMK_L_V @MMK_R_s -75;
+ pos @MMK_L_V @MMK_R_r -30;
+ pos @MMK_L_V @MMK_R_y -30;
+ pos @MMK_L_V @MMK_R_x -40;
+ pos @MMK_L_V @MMK_R_z -30;
+ pos @MMK_L_V @MMK_R_G -50;
+ pos @MMK_L_V @MMK_R_A -115;
+ pos @MMK_L_V @MMK_R_C -50;
+ pos @MMK_L_V @MMK_R_O -50;
+ pos @MMK_L_V @MMK_R_J -125;
+ pos @MMK_L_V @MMK_R_Q -50;
+ pos @MMK_L_H braceright -60;
+ pos @MMK_L_H backslash -10;
+ pos @MMK_L_H parenright -20;
+ pos @MMK_L_H slash -15;
+ pos @MMK_L_H sterling -35;
+ pos @MMK_L_H euro -90;
+ pos @MMK_L_H braceleft -65;
+ pos @MMK_L_H asciitilde -30;
+ pos @MMK_L_H multiply -45;
+ pos @MMK_L_H numbersign -55;
+ pos @MMK_L_H question -20;
+ pos @MMK_L_H dollar -30;
+ pos @MMK_L_H underscore -355;
+ pos @MMK_L_H @MMK_R_s -15;
+ pos @MMK_L_H @MMK_R_J -20;
+ pos @MMK_L_H @MMK_R_S -30;
+ pos @MMK_L_J underscore -110;
+ pos @MMK_L_J numbersign -60;
+ pos @MMK_L_J dollar -30;
+ pos @MMK_L_J euro -90;
+ pos @MMK_L_J ellipsis -40;
+ pos @MMK_L_J sterling -35;
+ pos @MMK_L_J quotesinglbase -45;
+ pos @MMK_L_J semicolon -10;
+ pos @MMK_L_J backslash -10;
+ pos @MMK_L_J multiply -45;
+ pos @MMK_L_J slash -75;
+ pos @MMK_L_J comma -45;
+ pos @MMK_L_J asciitilde -30;
+ pos @MMK_L_J question -20;
+ pos @MMK_L_J parenright -20;
+ pos @MMK_L_J questiondown -40;
+ pos @MMK_L_J quotedblbase -45;
+ pos @MMK_L_J braceright -60;
+ pos @MMK_L_J braceleft -65;
+ pos @MMK_L_J guillemetright -10;
+ pos @MMK_L_J guilsinglright -10;
+ pos @MMK_L_J @MMK_R_s -30;
+ pos @MMK_L_J @MMK_R_x -10;
+ pos @MMK_L_J @MMK_R_S -30;
+ pos @MMK_L_J @MMK_R_J -70;
+ pos @MMK_L_J @MMK_R_A -45;
+ pos @MMK_L_K multiply -100;
+ pos @MMK_L_K euro -140;
+ pos @MMK_L_K less -70;
+ pos @MMK_L_K periodcentered -60;
+ pos @MMK_L_K numbersign -85;
+ pos @MMK_L_K paragraph -50;
+ pos @MMK_L_K emdash -50;
+ pos @MMK_L_K semicolon -10;
+ pos @MMK_L_K plus -60;
+ pos @MMK_L_K cent -50;
+ pos @MMK_L_K parenleft -45;
+ pos @MMK_L_K asciicircum -100;
+ pos @MMK_L_K equal -35;
+ pos @MMK_L_K copyright -55;
+ pos @MMK_L_K braceright -60;
+ pos @MMK_L_K question -40;
+ pos @MMK_L_K dollar -40;
+ pos @MMK_L_K trademark -40;
+ pos @MMK_L_K quotesingle -20;
+ pos @MMK_L_K percent -40;
+ pos @MMK_L_K guilsinglleft -55;
+ pos @MMK_L_K quotedbl -20;
+ pos @MMK_L_K sterling -35;
+ pos @MMK_L_K degree -25;
+ pos @MMK_L_K hyphen -50;
+ pos @MMK_L_K slash -15;
+ pos @MMK_L_K quotedblright -20;
+ pos @MMK_L_K guillemetleft -55;
+ pos @MMK_L_K minus -60;
+ pos @MMK_L_K quoteleft -40;
+ pos @MMK_L_K asterisk -25;
+ pos @MMK_L_K quotedblleft -40;
+ pos @MMK_L_K quoteright -20;
+ pos @MMK_L_K asciitilde -110;
+ pos @MMK_L_K divide -60;
+ pos @MMK_L_K braceleft -110;
+ pos @MMK_L_K perthousand -40;
+ pos @MMK_L_K guillemetright -20;
+ pos @MMK_L_K guilsinglright -20;
+ pos @MMK_L_K endash -50;
+ pos @MMK_L_K at -50;
+ pos @MMK_L_K underscore -335;
+ pos @MMK_L_K ampersand -40;
+ pos @MMK_L_K registered -70;
+ pos @MMK_L_K backslash -10;
+ pos @MMK_L_K bullet -65;
+ pos @MMK_L_K parenright -45;
+ pos @MMK_L_K @MMK_R_dcaron -50;
+ pos @MMK_L_K @MMK_R_w -60;
+ pos @MMK_L_K @MMK_R_C -70;
+ pos @MMK_L_K @MMK_R_tcaron -65;
+ pos @MMK_L_K @MMK_R_oslash -30;
+ pos @MMK_L_K @MMK_R_dcroat -50;
+ pos @MMK_L_K @MMK_R_G -70;
+ pos @MMK_L_K @MMK_R_J -25;
+ pos @MMK_L_K @MMK_R_O -70;
+ pos @MMK_L_K @MMK_R_Q -70;
+ pos @MMK_L_K @MMK_R_S -40;
+ pos @MMK_L_K @MMK_R_a -30;
+ pos @MMK_L_K @MMK_R_c -50;
+ pos @MMK_L_K @MMK_R_d -50;
+ pos @MMK_L_K @MMK_R_e -50;
+ pos @MMK_L_K @MMK_R_f -65;
+ pos @MMK_L_K @MMK_R_g -60;
+ pos @MMK_L_K @MMK_R_o -55;
+ pos @MMK_L_K @MMK_R_q -50;
+ pos @MMK_L_K @MMK_R_s -25;
+ pos @MMK_L_K @MMK_R_t -65;
+ pos @MMK_L_K @MMK_R_u -35;
+ pos @MMK_L_K @MMK_R_v -60;
+ pos @MMK_L_K @MMK_R_y -65;
+ pos @MMK_L_K @MMK_R_eth -50;
+ pos @MMK_L_K @MMK_R_a.alt -50;
+ pos @MMK_L_M multiply -45;
+ pos @MMK_L_M question -20;
+ pos @MMK_L_M sterling -35;
+ pos @MMK_L_M numbersign -55;
+ pos @MMK_L_M slash -15;
+ pos @MMK_L_M euro -90;
+ pos @MMK_L_M backslash -10;
+ pos @MMK_L_M underscore -365;
+ pos @MMK_L_M braceright -60;
+ pos @MMK_L_M parenright -20;
+ pos @MMK_L_M braceleft -65;
+ pos @MMK_L_M asciitilde -30;
+ pos @MMK_L_M dollar -30;
+ pos @MMK_L_M @MMK_R_S -30;
+ pos @MMK_L_M @MMK_R_J -20;
+ pos @MMK_L_M @MMK_R_s -15;
+ pos @MMK_L_E euro -90;
+ pos @MMK_L_E numbersign -55;
+ pos @MMK_L_E slash -15;
+ pos @MMK_L_E multiply -45;
+ pos @MMK_L_E dollar -30;
+ pos @MMK_L_E backslash -10;
+ pos @MMK_L_E question -20;
+ pos @MMK_L_E underscore -310;
+ pos @MMK_L_E braceright -60;
+ pos @MMK_L_E parenright -20;
+ pos @MMK_L_E braceleft -65;
+ pos @MMK_L_E asciitilde -30;
+ pos @MMK_L_E sterling -35;
+ pos @MMK_L_E @MMK_R_J -20;
+ pos @MMK_L_E @MMK_R_S -30;
+ pos @MMK_L_E @MMK_R_s -15;
+ pos @MMK_L_G euro -90;
+ pos @MMK_L_G asciitilde -30;
+ pos @MMK_L_G underscore -135;
+ pos @MMK_L_G braceleft -65;
+ pos @MMK_L_G yen -10;
+ pos @MMK_L_G sterling -35;
+ pos @MMK_L_G numbersign -55;
+ pos @MMK_L_G dollar -30;
+ pos @MMK_L_G quotedblbase -15;
+ pos @MMK_L_G backslash -35;
+ pos @MMK_L_G parenright -20;
+ pos @MMK_L_G questiondown -10;
+ pos @MMK_L_G ellipsis -10;
+ pos @MMK_L_G comma -15;
+ pos @MMK_L_G multiply -45;
+ pos @MMK_L_G question -25;
+ pos @MMK_L_G braceright -60;
+ pos @MMK_L_G slash -45;
+ pos @MMK_L_G semicolon -10;
+ pos @MMK_L_G quotesinglbase -15;
+ pos @MMK_L_G @MMK_R_A -20;
+ pos @MMK_L_G @MMK_R_X -20;
+ pos @MMK_L_G @MMK_R_Y -20;
+ pos @MMK_L_G @MMK_R_V -10;
+ pos @MMK_L_G @MMK_R_W -15;
+ pos @MMK_L_G @MMK_R_S -30;
+ pos @MMK_L_G @MMK_R_J -45;
+ pos @MMK_L_G @MMK_R_x -10;
+ pos @MMK_L_G @MMK_R_s -30;
+ pos @MMK_L_Z parenright -20;
+ pos @MMK_L_Z question -20;
+ pos @MMK_L_Z numbersign -55;
+ pos @MMK_L_Z braceright -60;
+ pos @MMK_L_Z backslash -10;
+ pos @MMK_L_Z multiply -45;
+ pos @MMK_L_Z slash -15;
+ pos @MMK_L_Z euro -90;
+ pos @MMK_L_Z asciitilde -30;
+ pos @MMK_L_Z sterling -35;
+ pos @MMK_L_Z dollar -30;
+ pos @MMK_L_Z underscore -325;
+ pos @MMK_L_Z braceleft -65;
+ pos @MMK_L_Z @MMK_R_J -20;
+ pos @MMK_L_Z @MMK_R_S -30;
+ pos @MMK_L_Z @MMK_R_s -15;
+ pos @MMK_L_U braceleft -65;
+ pos @MMK_L_U asciitilde -30;
+ pos @MMK_L_U ellipsis -65;
+ pos @MMK_L_U guillemetright -10;
+ pos @MMK_L_U multiply -45;
+ pos @MMK_L_U sterling -35;
+ pos @MMK_L_U underscore -150;
+ pos @MMK_L_U numbersign -70;
+ pos @MMK_L_U comma -65;
+ pos @MMK_L_U quotesinglbase -65;
+ pos @MMK_L_U braceright -60;
+ pos @MMK_L_U quotedblbase -65;
+ pos @MMK_L_U questiondown -55;
+ pos @MMK_L_U slash -90;
+ pos @MMK_L_U semicolon -10;
+ pos @MMK_L_U parenright -20;
+ pos @MMK_L_U euro -90;
+ pos @MMK_L_U question -20;
+ pos @MMK_L_U guilsinglright -10;
+ pos @MMK_L_U backslash -10;
+ pos @MMK_L_U dollar -30;
+ pos @MMK_L_U @MMK_R_s -30;
+ pos @MMK_L_U @MMK_R_S -30;
+ pos @MMK_L_U @MMK_R_J -95;
+ pos @MMK_L_U @MMK_R_A -55;
+ pos @MMK_L_U @MMK_R_x -10;
+ pos @MMK_L_U @MMK_R_a -10;
+ subtable;
+ } kern_latn;
+ lookupflag 0;
+} kern;
+
+ markClass [dotaccentcomb] @mark_top;
+ markClass [commaaccentcomb] @mark_top;
+feature mark {
+ lookup markDFLT {
+ pos base [cent] mark @mark_top;
+ pos base [dollar] mark @mark_top;
+ pos base [euro] mark @mark_top;
+ pos base [yen] mark @mark_top;
+ pos base [asciitilde] mark @mark_top;
+ } markDFLT;
+ lookup marklatn {
+ pos base [A] mark @mark_top;
+ pos base [Aacute] mark @mark_top;
+ pos base [Abreve] mark @mark_top;
+ pos base [Acircumflex] mark @mark_top;
+ pos base [Adieresis] mark @mark_top;
+ pos base [Agrave] mark @mark_top;
+ pos base [Amacron] mark @mark_top;
+ pos base [Aogonek] mark @mark_top;
+ pos base [Aring] mark @mark_top;
+ pos base [Atilde] mark @mark_top;
+ pos base [C] mark @mark_top;
+ pos base [Cacute] mark @mark_top;
+ pos base [Ccaron] mark @mark_top;
+ pos base [Ccedilla] mark @mark_top;
+ pos base [D] mark @mark_top;
+ pos base [Dcaron] mark @mark_top;
+ pos base [E] mark @mark_top;
+ pos base [Eacute] mark @mark_top;
+ pos base [Ecaron] mark @mark_top;
+ pos base [Ecircumflex] mark @mark_top;
+ pos base [Edieresis] mark @mark_top;
+ pos base [Edotaccent] mark @mark_top;
+ pos base [Edotbelow] mark @mark_top;
+ pos base [Egrave] mark @mark_top;
+ pos base [Emacron] mark @mark_top;
+ pos base [Eogonek] mark @mark_top;
+ pos base [Etilde] mark @mark_top;
+ pos base [G] mark @mark_top;
+ pos base [Gbreve] mark @mark_top;
+ pos base [Gcommaaccent] mark @mark_top;
+ pos base [I] mark @mark_top;
+ pos base [Iacute] mark @mark_top;
+ pos base [Icircumflex] mark @mark_top;
+ pos base [Idieresis] mark @mark_top;
+ pos base [Idotaccent] mark @mark_top;
+ pos base [Igrave] mark @mark_top;
+ pos base [Imacron] mark @mark_top;
+ pos base [Iogonek] mark @mark_top;
+ pos base [L] mark @mark_top;
+ pos base [Lacute] mark @mark_top;
+ pos base [Lcaron] mark @mark_top;
+ pos base [Lslash] mark @mark_top;
+ pos base [N] mark @mark_top;
+ pos base [Nacute] mark @mark_top;
+ pos base [Ncaron] mark @mark_top;
+ pos base [Ncommaaccent] mark @mark_top;
+ pos base [Ntilde] mark @mark_top;
+ pos base [O] mark @mark_top;
+ pos base [Oacute] mark @mark_top;
+ pos base [Ocircumflex] mark @mark_top;
+ pos base [Odieresis] mark @mark_top;
+ pos base [Ograve] mark @mark_top;
+ pos base [Ohungarumlaut] mark @mark_top;
+ pos base [Omacron] mark @mark_top;
+ pos base [Oslash] mark @mark_top;
+ pos base [Otilde] mark @mark_top;
+ pos base [Q] mark @mark_top;
+ pos base [R] mark @mark_top;
+ pos base [Racute] mark @mark_top;
+ pos base [Rcaron] mark @mark_top;
+ pos base [Rcommaaccent] mark @mark_top;
+ pos base [S] mark @mark_top;
+ pos base [Sacute] mark @mark_top;
+ pos base [Scaron] mark @mark_top;
+ pos base [Scedilla] mark @mark_top;
+ pos base [T] mark @mark_top;
+ pos base [Tcaron] mark @mark_top;
+ pos base [Tcedilla] mark @mark_top;
+ pos base [U] mark @mark_top;
+ pos base [Uacute] mark @mark_top;
+ pos base [Ucircumflex] mark @mark_top;
+ pos base [Udieresis] mark @mark_top;
+ pos base [Ugrave] mark @mark_top;
+ pos base [Uhungarumlaut] mark @mark_top;
+ pos base [Umacron] mark @mark_top;
+ pos base [Uogonek] mark @mark_top;
+ pos base [Uring] mark @mark_top;
+ pos base [W] mark @mark_top;
+ pos base [Wacute] mark @mark_top;
+ pos base [Wcircumflex] mark @mark_top;
+ pos base [Wdieresis] mark @mark_top;
+ pos base [Wgrave] mark @mark_top;
+ pos base [Y] mark @mark_top;
+ pos base [Yacute] mark @mark_top;
+ pos base [Ycircumflex] mark @mark_top;
+ pos base [Ydieresis] mark @mark_top;
+ pos base [Ygrave] mark @mark_top;
+ pos base [Z] mark @mark_top;
+ pos base [Zacute] mark @mark_top;
+ pos base [Zcaron] mark @mark_top;
+ pos base [Zdotaccent] mark @mark_top;
+ pos base [a] mark @mark_top;
+ pos base [aacute] mark @mark_top;
+ pos base [abreve] mark @mark_top;
+ pos base [acircumflex] mark @mark_top;
+ pos base [adieresis] mark @mark_top;
+ pos base [agrave] mark @mark_top;
+ pos base [amacron] mark @mark_top;
+ pos base [aogonek] mark @mark_top;
+ pos base [aring] mark @mark_top;
+ pos base [atilde] mark @mark_top;
+ pos base [ae] mark @mark_top;
+ pos base [c] mark @mark_top;
+ pos base [cacute] mark @mark_top;
+ pos base [ccaron] mark @mark_top;
+ pos base [ccedilla] mark @mark_top;
+ pos base [e] mark @mark_top;
+ pos base [eacute] mark @mark_top;
+ pos base [ecaron] mark @mark_top;
+ pos base [ecircumflex] mark @mark_top;
+ pos base [edieresis] mark @mark_top;
+ pos base [edotaccent] mark @mark_top;
+ pos base [edotbelow] mark @mark_top;
+ pos base [egrave] mark @mark_top;
+ pos base [emacron] mark @mark_top;
+ pos base [eogonek] mark @mark_top;
+ pos base [etilde] mark @mark_top;
+ pos base [g] mark @mark_top;
+ pos base [gbreve] mark @mark_top;
+ pos base [gcommaaccent] mark @mark_top;
+ pos base [i] mark @mark_top;
+ pos base [idotless] mark @mark_top;
+ pos base [iacute] mark @mark_top;
+ pos base [icircumflex] mark @mark_top;
+ pos base [idieresis] mark @mark_top;
+ pos base [igrave] mark @mark_top;
+ pos base [imacron] mark @mark_top;
+ pos base [iogonek] mark @mark_top;
+ pos base [j] mark @mark_top;
+ pos base [jdotless] mark @mark_top;
+ pos base [l] mark @mark_top;
+ pos base [lacute] mark @mark_top;
+ pos base [lcaron] mark @mark_top;
+ pos base [lslash] mark @mark_top;
+ pos base [n] mark @mark_top;
+ pos base [nacute] mark @mark_top;
+ pos base [ncaron] mark @mark_top;
+ pos base [ncommaaccent] mark @mark_top;
+ pos base [ntilde] mark @mark_top;
+ pos base [o] mark @mark_top;
+ pos base [oacute] mark @mark_top;
+ pos base [ocircumflex] mark @mark_top;
+ pos base [odieresis] mark @mark_top;
+ pos base [ograve] mark @mark_top;
+ pos base [ohungarumlaut] mark @mark_top;
+ pos base [omacron] mark @mark_top;
+ pos base [oslash] mark @mark_top;
+ pos base [otilde] mark @mark_top;
+ pos base [oe] mark @mark_top;
+ pos base [r] mark @mark_top;
+ pos base [racute] mark @mark_top;
+ pos base [rcaron] mark @mark_top;
+ pos base [rcommaaccent] mark @mark_top;
+ pos base [s] mark @mark_top;
+ pos base [sacute] mark @mark_top;
+ pos base [scaron] mark @mark_top;
+ pos base [scedilla] mark @mark_top;
+ pos base [u] mark @mark_top;
+ pos base [uacute] mark @mark_top;
+ pos base [ucircumflex] mark @mark_top;
+ pos base [udieresis] mark @mark_top;
+ pos base [ugrave] mark @mark_top;
+ pos base [uhungarumlaut] mark @mark_top;
+ pos base [umacron] mark @mark_top;
+ pos base [uogonek] mark @mark_top;
+ pos base [uring] mark @mark_top;
+ pos base [w] mark @mark_top;
+ pos base [wacute] mark @mark_top;
+ pos base [wcircumflex] mark @mark_top;
+ pos base [wdieresis] mark @mark_top;
+ pos base [wgrave] mark @mark_top;
+ pos base [y] mark @mark_top;
+ pos base [yacute] mark @mark_top;
+ pos base [ycircumflex] mark @mark_top;
+ pos base [ydieresis] mark @mark_top;
+ pos base [ygrave] mark @mark_top;
+ pos base [z] mark @mark_top;
+ pos base [zacute] mark @mark_top;
+ pos base [zcaron] mark @mark_top;
+ pos base [zdotaccent] mark @mark_top;
+ pos base [a.alt] mark @mark_top;
+ pos base [aacute.alt] mark @mark_top;
+ pos base [abreve.alt] mark @mark_top;
+ pos base [acircumflex.alt] mark @mark_top;
+ pos base [adieresis.alt] mark @mark_top;
+ pos base [agrave.alt] mark @mark_top;
+ pos base [amacron.alt] mark @mark_top;
+ pos base [aogonek.alt] mark @mark_top;
+ pos base [aring.alt] mark @mark_top;
+ pos base [atilde.alt] mark @mark_top;
+ } marklatn;
+ lookupflag 0;
+} mark;
+feature mkmk {
+ lookup mkmk_DFLT_top {
+ lookupflag MarkAttachmentType @mark_top;
+ pos mark [dieresis] mark @mark_top;
+ pos mark [dotaccent] mark @mark_top;
+ pos mark [grave] mark @mark_top;
+ pos mark [acute] mark @mark_top;
+ pos mark [hungarumlaut] mark @mark_top;
+ pos mark [circumflex] mark @mark_top;
+ pos mark [caron] mark @mark_top;
+ pos mark [breve] mark @mark_top;
+ pos mark [ring] mark @mark_top;
+ pos mark [tilde] mark @mark_top;
+ pos mark [macron] mark @mark_top;
+ } mkmk_DFLT_top;
+ lookupflag 0;
+} mkmk;
+table GDEF {
+ GlyphClassDef [A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde C Cacute Ccaron Ccedilla D Dcaron E Eacute Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Emacron Eogonek Etilde G Gbreve Gcommaaccent I Iacute Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek L Lacute Lcaron Lslash N Nacute Ncaron Ncommaaccent Ntilde O Oacute Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla T Tcaron Tcedilla U Uacute Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring W Wacute Wcircumflex Wdieresis Wgrave Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex adieresis agrave amacron aogonek aring atilde ae c cacute ccaron ccedilla e eacute ecaron ecircumflex edieresis edotaccent edotbelow egrave emacron eogonek etilde g gbreve gcommaaccent i idotless iacute icircumflex idieresis igrave imacron iogonek j jdotless l lacute lcaron lslash n nacute ncaron ncommaaccent ntilde o oacute ocircumflex odieresis ograve ohungarumlaut omacron oslash otilde oe r racute rcaron rcommaaccent s sacute scaron scedilla u uacute ucircumflex udieresis ugrave uhungarumlaut umacron uogonek uring w wacute wcircumflex wdieresis wgrave y yacute ycircumflex ydieresis ygrave z zacute zcaron zdotaccent a.alt aacute.alt abreve.alt acircumflex.alt adieresis.alt agrave.alt amacron.alt aogonek.alt aring.alt atilde.alt cent dollar euro yen asciitilde],# Base
+ , # Liga
+ [dotaccentcomb commaaccentcomb], # Mark
+ ;
+ } GDEF;
diff --git a/Source/Metropolis-Bold.ufo/fontinfo.plist b/Fonts/UFO/Metropolis-Black.ufo/fontinfo.plist
similarity index 74%
rename from Source/Metropolis-Bold.ufo/fontinfo.plist
rename to Fonts/UFO/Metropolis-Black.ufo/fontinfo.plist
index a6df4b9..4ac3a7c 100644
--- a/Source/Metropolis-Bold.ufo/fontinfo.plist
+++ b/Fonts/UFO/Metropolis-Black.ufo/fontinfo.plist
@@ -1,31 +1,25 @@
-
+
ascender
795
capHeight
687
- copyright
- Copyright (c) 2015 Chris Simpson
descender
-205
familyName
Metropolis
openTypeHeadCreated
- 2015/11/24 21:02:39
+ 2020/01/02 11:09:40
openTypeHheaAscender
795
openTypeHheaDescender
-205
- openTypeNameDesigner
- Chris Simpson
openTypeNameDesignerURL
https://github.com/chrismsimpson/Metropolis
- openTypeNameManufacturer
- Victory One Media Pty Ltd
openTypeNameManufacturerURL
- http://victoryonemedia.com
+ https://github.com/chrismsimpson/Metropolis
openTypeNamePreferredFamilyName
Metropolis
openTypeNamePreferredSubfamilyName
@@ -46,22 +40,36 @@
205
postscriptBlueValues
- -16
+ -12
0
517
- 533
+ 529
687
- 703
+ 699
795
- 811
+ 807
postscriptFontName
Metropolis-Black
postscriptOtherBlues
- -221
+ -217
-205
+ postscriptStemSnapH
+
+ 152
+ 160
+ 173
+ 176
+
+ postscriptStemSnapV
+
+ 184
+ 193
+ 194
+ 200
+
postscriptUnderlinePosition
-133
postscriptUnderlineThickness
@@ -75,7 +83,7 @@
unitsPerEm
1000
versionMajor
- 1
+ 11
versionMinor
0
xHeight
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_.glif
new file mode 100644
index 0000000..f7e4cba
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_.glif
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_E_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_E_.glif
new file mode 100644
index 0000000..2deb468
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_E_.glif
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_acute.glif
new file mode 100644
index 0000000..8bf17dc
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_acute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_breve.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_breve.glif
new file mode 100644
index 0000000..a524fab
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_breve.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ breve
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_circumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_circumflex.glif
new file mode 100644
index 0000000..25c917b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_circumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_dieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_dieresis.glif
new file mode 100644
index 0000000..af0fe2d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_dieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_grave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_grave.glif
new file mode 100644
index 0000000..2a3f1c2
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_grave.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ grave
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_macron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_macron.glif
new file mode 100644
index 0000000..d6adbb3
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_macron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_ogonek.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_ogonek.glif
new file mode 100644
index 0000000..0259254
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_ogonek.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_ring.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_ring.glif
new file mode 100644
index 0000000..22b3e59
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_ring.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_tilde.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_tilde.glif
new file mode 100644
index 0000000..e9f4f63
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/A_tilde.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/B_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/B_.glif
new file mode 100644
index 0000000..fb40c4c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/B_.glif
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_.glif
new file mode 100644
index 0000000..bb3a282
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_.glif
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_acute.glif
new file mode 100644
index 0000000..bcb95f4
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_acute.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ acute
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_caron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_caron.glif
new file mode 100644
index 0000000..bcc9dda
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_caron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_cedilla.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_cedilla.glif
new file mode 100644
index 0000000..4f73b63
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/C_cedilla.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/D_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/D_.glif
new file mode 100644
index 0000000..663864e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/D_.glif
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/D_caron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/D_caron.glif
new file mode 100644
index 0000000..62ef9ed
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/D_caron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/D_croat.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/D_croat.glif
new file mode 100644
index 0000000..6133749
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/D_croat.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_.glif
new file mode 100644
index 0000000..e9a0486
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_.glif
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_acute.glif
new file mode 100644
index 0000000..caaa176
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_acute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_caron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_caron.glif
new file mode 100644
index 0000000..215b9cd
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_caron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_circumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_circumflex.glif
new file mode 100644
index 0000000..c0f379d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_circumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_dieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_dieresis.glif
new file mode 100644
index 0000000..82470ae
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_dieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_dotaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_dotaccent.glif
new file mode 100644
index 0000000..9de4a77
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_dotaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_dotbelow.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_dotbelow.glif
new file mode 100644
index 0000000..ff49995
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_dotbelow.glif
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ -1
+ index
+ 0
+ name
+ dotaccent
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_grave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_grave.glif
new file mode 100644
index 0000000..538ede2
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_grave.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_macron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_macron.glif
new file mode 100644
index 0000000..b214068
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_macron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_ogonek.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_ogonek.glif
new file mode 100644
index 0000000..4cf5d8a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_ogonek.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_th.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_th.glif
new file mode 100644
index 0000000..62c4bd6
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_th.glif
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_tilde.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_tilde.glif
new file mode 100644
index 0000000..6b833e5
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/E_tilde.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/F_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/F_.glif
new file mode 100644
index 0000000..c2ba3d4
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/F_.glif
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/G_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/G_.glif
new file mode 100644
index 0000000..9bcfbdd
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/G_.glif
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/G_breve.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/G_breve.glif
new file mode 100644
index 0000000..af69af5
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/G_breve.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/G_commaaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/G_commaaccent.glif
new file mode 100644
index 0000000..87056be
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/G_commaaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/H_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/H_.glif
new file mode 100644
index 0000000..56bd102
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/H_.glif
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_.glif
new file mode 100644
index 0000000..c9cd036
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_.glif
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_acute.glif
new file mode 100644
index 0000000..4d2cce3
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_acute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_circumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_circumflex.glif
new file mode 100644
index 0000000..8996be7
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_circumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_dieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_dieresis.glif
new file mode 100644
index 0000000..56bb32c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_dieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_dotaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_dotaccent.glif
new file mode 100644
index 0000000..f41640e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_dotaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_grave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_grave.glif
new file mode 100644
index 0000000..47b83c5
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_grave.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ grave
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_macron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_macron.glif
new file mode 100644
index 0000000..e54043b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_macron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_ogonek.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_ogonek.glif
new file mode 100644
index 0000000..b8b8ff9
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/I_ogonek.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/J_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/J_.glif
new file mode 100644
index 0000000..d44b253
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/J_.glif
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/K_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/K_.glif
new file mode 100644
index 0000000..1862dd6
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/K_.glif
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/K_commaaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/K_commaaccent.glif
new file mode 100644
index 0000000..5700196
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/K_commaaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_.glif
new file mode 100644
index 0000000..0ecdc26
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_.glif
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_acute.glif
new file mode 100644
index 0000000..3159b1f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_acute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_caron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_caron.glif
new file mode 100644
index 0000000..b71acfc
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_caron.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ -1
+ index
+ 1
+ name
+ commaaccentcomb
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_slash.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_slash.glif
new file mode 100644
index 0000000..1643e28
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/L_slash.glif
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/M_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/M_.glif
new file mode 100644
index 0000000..c83724b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/M_.glif
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_.glif
new file mode 100644
index 0000000..a1a3fbc
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_.glif
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_acute.glif
new file mode 100644
index 0000000..d2048a2
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_acute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_caron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_caron.glif
new file mode 100644
index 0000000..1ece34d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_caron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_commaaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_commaaccent.glif
new file mode 100644
index 0000000..d86c483
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_commaaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_tilde.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_tilde.glif
new file mode 100644
index 0000000..05378a9
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/N_tilde.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_.glif
new file mode 100644
index 0000000..64dfe53
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_.glif
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_E_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_E_.glif
new file mode 100644
index 0000000..1466ac7
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_E_.glif
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_acute.glif
new file mode 100644
index 0000000..024f85e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_acute.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ acute
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_circumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_circumflex.glif
new file mode 100644
index 0000000..7f99254
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_circumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_dieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_dieresis.glif
new file mode 100644
index 0000000..75ba617
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_dieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_grave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_grave.glif
new file mode 100644
index 0000000..0ec4713
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_grave.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ grave
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_hungarumlaut.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_hungarumlaut.glif
new file mode 100644
index 0000000..4c5e46f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_hungarumlaut.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ hungarumlaut
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_macron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_macron.glif
new file mode 100644
index 0000000..7494df4
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_macron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_slash.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_slash.glif
new file mode 100644
index 0000000..d7dd435
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_slash.glif
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_tilde.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_tilde.glif
new file mode 100644
index 0000000..782e4bd
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/O_tilde.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/P_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/P_.glif
new file mode 100644
index 0000000..04957b2
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/P_.glif
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/Q_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Q_.glif
new file mode 100644
index 0000000..c99f2c0
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Q_.glif
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_.glif
new file mode 100644
index 0000000..606c6f2
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_.glif
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_acute.glif
new file mode 100644
index 0000000..9a7e228
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_acute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_caron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_caron.glif
new file mode 100644
index 0000000..65d1529
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_caron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_commaaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_commaaccent.glif
new file mode 100644
index 0000000..92e2c2f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/R_commaaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_.glif
new file mode 100644
index 0000000..314a1c4
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_.glif
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_acute.glif
new file mode 100644
index 0000000..cf937ab
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_acute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_caron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_caron.glif
new file mode 100644
index 0000000..c36c643
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_caron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_cedilla.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_cedilla.glif
new file mode 100644
index 0000000..db40143
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/S_cedilla.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_.glif
new file mode 100644
index 0000000..8929f90
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_caron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_caron.glif
new file mode 100644
index 0000000..551207b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_caron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_cedilla.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_cedilla.glif
new file mode 100644
index 0000000..61a089a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_cedilla.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_horn.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_horn.glif
new file mode 100644
index 0000000..2fe923a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/T_horn.glif
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_.glif
new file mode 100644
index 0000000..ff72d91
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_.glif
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_acute.glif
new file mode 100644
index 0000000..481069f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_acute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_circumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_circumflex.glif
new file mode 100644
index 0000000..2458f09
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_circumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_dieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_dieresis.glif
new file mode 100644
index 0000000..b04de42
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_dieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_grave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_grave.glif
new file mode 100644
index 0000000..d64dd79
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_grave.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_hungarumlaut.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_hungarumlaut.glif
new file mode 100644
index 0000000..c51ab22
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_hungarumlaut.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_macron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_macron.glif
new file mode 100644
index 0000000..ccc8084
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_macron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_ogonek.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_ogonek.glif
new file mode 100644
index 0000000..18a69ad
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_ogonek.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_ring.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_ring.glif
new file mode 100644
index 0000000..aefc9cf
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/U_ring.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/V_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/V_.glif
new file mode 100644
index 0000000..ec15286
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/V_.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_.glif
new file mode 100644
index 0000000..d75ca93
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_.glif
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_acute.glif
new file mode 100644
index 0000000..eb36ac8
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_acute.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ acute
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_circumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_circumflex.glif
new file mode 100644
index 0000000..1ad229b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_circumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_dieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_dieresis.glif
new file mode 100644
index 0000000..b68b227
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_dieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_grave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_grave.glif
new file mode 100644
index 0000000..9248665
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/W_grave.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ grave
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/X_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/X_.glif
new file mode 100644
index 0000000..d47aa34
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/X_.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_.glif
new file mode 100644
index 0000000..4fa17b2
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_acute.glif
new file mode 100644
index 0000000..fa3315e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_acute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_circumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_circumflex.glif
new file mode 100644
index 0000000..737c794
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_circumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_dieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_dieresis.glif
new file mode 100644
index 0000000..78c34e1
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_dieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_grave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_grave.glif
new file mode 100644
index 0000000..ac3791f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Y_grave.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_.glif
new file mode 100644
index 0000000..56c8469
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_.glif
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_acute.glif
new file mode 100644
index 0000000..24119b1
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_acute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_caron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_caron.glif
new file mode 100644
index 0000000..f4e404f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_caron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_dotaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_dotaccent.glif
new file mode 100644
index 0000000..ab7ec6b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/Z_dotaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/_areas.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/_areas.glif
new file mode 100644
index 0000000..7d83459
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/_areas.glif
@@ -0,0 +1,232 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/a.alt.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/a.alt.glif
new file mode 100644
index 0000000..eee6d82
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/a.alt.glif
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/a.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/a.glif
new file mode 100644
index 0000000..7dca85f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/a.glif
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/aacute.alt.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aacute.alt.glif
new file mode 100644
index 0000000..c0b9904
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aacute.alt.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/aacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aacute.glif
new file mode 100644
index 0000000..75d8d64
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aacute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/abreve.alt.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/abreve.alt.glif
new file mode 100644
index 0000000..e4af8a4
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/abreve.alt.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/abreve.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/abreve.glif
new file mode 100644
index 0000000..ba976f8
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/abreve.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/acircumflex.alt.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/acircumflex.alt.glif
new file mode 100644
index 0000000..b910f46
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/acircumflex.alt.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/acircumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/acircumflex.glif
new file mode 100644
index 0000000..a9b4798
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/acircumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/acute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/acute.glif
new file mode 100644
index 0000000..1ec352b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/acute.glif
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/adieresis.alt.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/adieresis.alt.glif
new file mode 100644
index 0000000..cd20728
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/adieresis.alt.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/adieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/adieresis.glif
new file mode 100644
index 0000000..5c50bf1
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/adieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ae.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ae.glif
new file mode 100644
index 0000000..9c44258
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ae.glif
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ae_upper.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ae_upper.glif
new file mode 100644
index 0000000..272cfe8
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ae_upper.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/agrave.alt.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/agrave.alt.glif
new file mode 100644
index 0000000..81d2e93
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/agrave.alt.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/agrave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/agrave.glif
new file mode 100644
index 0000000..954216d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/agrave.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/amacron.alt.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/amacron.alt.glif
new file mode 100644
index 0000000..84cda04
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/amacron.alt.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/amacron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/amacron.glif
new file mode 100644
index 0000000..f80f2d7
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/amacron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ampersand.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ampersand.glif
new file mode 100644
index 0000000..f301b7c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ampersand.glif
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/aogonek.alt.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aogonek.alt.glif
new file mode 100644
index 0000000..d6faf00
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aogonek.alt.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/aogonek.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aogonek.glif
new file mode 100644
index 0000000..42178ea
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aogonek.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/aring.alt.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aring.alt.glif
new file mode 100644
index 0000000..a461675
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aring.alt.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/aring.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aring.glif
new file mode 100644
index 0000000..363de63
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/aring.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ascender.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ascender.glif
new file mode 100644
index 0000000..6e3def5
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ascender.glif
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/asciicircum.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/asciicircum.glif
new file mode 100644
index 0000000..254c6a5
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/asciicircum.glif
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/asciitilde.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/asciitilde.glif
new file mode 100644
index 0000000..03fdf3c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/asciitilde.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/asterisk.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/asterisk.glif
new file mode 100644
index 0000000..7d4e510
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/asterisk.glif
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/at.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/at.glif
new file mode 100644
index 0000000..17813f4
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/at.glif
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/atilde.alt.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/atilde.alt.glif
new file mode 100644
index 0000000..528369d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/atilde.alt.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/atilde.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/atilde.glif
new file mode 100644
index 0000000..af7a5d3
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/atilde.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/b.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/b.glif
new file mode 100644
index 0000000..ff792cc
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/b.glif
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/backslash.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/backslash.glif
new file mode 100644
index 0000000..c90cdf9
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/backslash.glif
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/bar.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/bar.glif
new file mode 100644
index 0000000..9adc576
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/bar.glif
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/braceleft.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/braceleft.glif
new file mode 100644
index 0000000..b6198d9
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/braceleft.glif
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/braceright.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/braceright.glif
new file mode 100644
index 0000000..ed8f212
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/braceright.glif
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/bracketleft.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/bracketleft.glif
new file mode 100644
index 0000000..d418392
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/bracketleft.glif
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/bracketright.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/bracketright.glif
new file mode 100644
index 0000000..df5358d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/bracketright.glif
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/breve.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/breve.glif
new file mode 100644
index 0000000..8ca38e6
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/breve.glif
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/bullet.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/bullet.glif
new file mode 100644
index 0000000..32b06ac
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/bullet.glif
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/c.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/c.glif
new file mode 100644
index 0000000..10578e7
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/c.glif
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/cacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/cacute.glif
new file mode 100644
index 0000000..291aedf
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/cacute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/capital_V_.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/capital_V_.glif
new file mode 100644
index 0000000..4e051b3
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/capital_V_.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/caron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/caron.glif
new file mode 100644
index 0000000..8d23e96
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/caron.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ccaron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ccaron.glif
new file mode 100644
index 0000000..a645271
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ccaron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ccedilla.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ccedilla.glif
new file mode 100644
index 0000000..d51a76b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ccedilla.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/cedilla.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/cedilla.glif
new file mode 100644
index 0000000..20ac6f8
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/cedilla.glif
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/cent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/cent.glif
new file mode 100644
index 0000000..6b51a8f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/cent.glif
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/circumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/circumflex.glif
new file mode 100644
index 0000000..3ad094a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/circumflex.glif
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/colon.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/colon.glif
new file mode 100644
index 0000000..8485cbb
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/colon.glif
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/comma.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/comma.glif
new file mode 100644
index 0000000..f1801b8
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/comma.glif
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/commaaccentcomb.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/commaaccentcomb.glif
new file mode 100644
index 0000000..b50a1d7
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/commaaccentcomb.glif
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Source/Metropolis-Regular.ufo/glyphs/contents.plist b/Fonts/UFO/Metropolis-Black.ufo/glyphs/contents.plist
similarity index 58%
rename from Source/Metropolis-Regular.ufo/glyphs/contents.plist
rename to Fonts/UFO/Metropolis-Black.ufo/glyphs/contents.plist
index e491f9a..31805f1 100644
--- a/Source/Metropolis-Regular.ufo/glyphs/contents.plist
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/contents.plist
@@ -1,17 +1,25 @@
-
+
A
A_.glif
+ AE
+ A_E_.glif
Aacute
A_acute.glif
+ Abreve
+ A_breve.glif
Acircumflex
A_circumflex.glif
Adieresis
A_dieresis.glif
Agrave
A_grave.glif
+ Amacron
+ A_macron.glif
+ Aogonek
+ A_ogonek.glif
Aring
A_ring.glif
Atilde
@@ -20,24 +28,50 @@
B_.glif
C
C_.glif
+ Cacute
+ C_acute.glif
+ Ccaron
+ C_caron.glif
Ccedilla
C_cedilla.glif
D
D_.glif
+ Dcaron
+ D_caron.glif
+ Dcroat
+ D_croat.glif
E
E_.glif
Eacute
E_acute.glif
+ Ecaron
+ E_caron.glif
Ecircumflex
E_circumflex.glif
Edieresis
E_dieresis.glif
+ Edotaccent
+ E_dotaccent.glif
+ Edotbelow
+ E_dotbelow.glif
Egrave
E_grave.glif
+ Emacron
+ E_macron.glif
+ Eogonek
+ E_ogonek.glif
+ Eth
+ E_th.glif
+ Etilde
+ E_tilde.glif
F
F_.glif
G
G_.glif
+ Gbreve
+ G_breve.glif
+ Gcommaaccent
+ G_commaaccent.glif
H
H_.glif
I
@@ -48,22 +82,44 @@
I_circumflex.glif
Idieresis
I_dieresis.glif
+ Idotaccent
+ I_dotaccent.glif
Igrave
I_grave.glif
+ Imacron
+ I_macron.glif
+ Iogonek
+ I_ogonek.glif
J
J_.glif
K
K_.glif
+ Kcommaaccent
+ K_commaaccent.glif
L
L_.glif
+ Lacute
+ L_acute.glif
+ Lcaron
+ L_caron.glif
+ Lslash
+ L_slash.glif
M
M_.glif
N
N_.glif
+ Nacute
+ N_acute.glif
+ Ncaron
+ N_caron.glif
+ Ncommaaccent
+ N_commaaccent.glif
Ntilde
N_tilde.glif
O
O_.glif
+ OE
+ O_E_.glif
Oacute
O_acute.glif
Ocircumflex
@@ -72,6 +128,10 @@
O_dieresis.glif
Ograve
O_grave.glif
+ Ohungarumlaut
+ O_hungarumlaut.glif
+ Omacron
+ O_macron.glif
Oslash
O_slash.glif
Otilde
@@ -82,10 +142,28 @@
Q_.glif
R
R_.glif
+ Racute
+ R_acute.glif
+ Rcaron
+ R_caron.glif
+ Rcommaaccent
+ R_commaaccent.glif
S
S_.glif
+ Sacute
+ S_acute.glif
+ Scaron
+ S_caron.glif
+ Scedilla
+ S_cedilla.glif
T
T_.glif
+ Tcaron
+ T_caron.glif
+ Tcedilla
+ T_cedilla.glif
+ Thorn
+ T_horn.glif
U
U_.glif
Uacute
@@ -96,6 +174,14 @@
U_dieresis.glif
Ugrave
U_grave.glif
+ Uhungarumlaut
+ U_hungarumlaut.glif
+ Umacron
+ U_macron.glif
+ Uogonek
+ U_ogonek.glif
+ Uring
+ U_ring.glif
V
V_.glif
W
@@ -122,6 +208,14 @@
Y_grave.glif
Z
Z_.glif
+ Zacute
+ Z_acute.glif
+ Zcaron
+ Z_caron.glif
+ Zdotaccent
+ Z_dotaccent.glif
+ _areas
+ _areas.glif
a
a.glif
a.alt
@@ -130,6 +224,10 @@
aacute.glif
aacute.alt
aacute.alt.glif
+ abreve
+ abreve.glif
+ abreve.alt
+ abreve.alt.glif
acircumflex
acircumflex.glif
acircumflex.alt
@@ -140,16 +238,30 @@
adieresis.glif
adieresis.alt
adieresis.alt.glif
+ ae
+ ae.glif
+ ae_upper
+ ae_upper.glif
agrave
agrave.glif
agrave.alt
agrave.alt.glif
+ amacron
+ amacron.glif
+ amacron.alt
+ amacron.alt.glif
ampersand
ampersand.glif
+ aogonek
+ aogonek.glif
+ aogonek.alt
+ aogonek.alt.glif
aring
aring.glif
aring.alt
aring.alt.glif
+ ascender
+ ascender.glif
asciicircum
asciicircum.glif
asciitilde
@@ -176,8 +288,20 @@
bracketleft.glif
bracketright
bracketright.glif
+ breve
+ breve.glif
+ bullet
+ bullet.glif
c
c.glif
+ cacute
+ cacute.glif
+ capital_V
+ capital_V_.glif
+ caron
+ caron.glif
+ ccaron
+ ccaron.glif
ccedilla
ccedilla.glif
cedilla
@@ -190,8 +314,20 @@
colon.glif
comma
comma.glif
+ commaaccentcomb
+ commaaccentcomb.glif
+ copyright
+ copyright.glif
d
d.glif
+ dcaron
+ dcaron.glif
+ dcroat
+ dcroat.glif
+ degree
+ degree.glif
+ descender
+ descender.glif
dieresis
dieresis.glif
divide
@@ -200,26 +336,46 @@
dollar.glif
dotaccent
dotaccent.glif
+ dotaccentcomb
+ dotaccentcomb.glif
e
e.glif
eacute
eacute.glif
+ ecaron
+ ecaron.glif
ecircumflex
ecircumflex.glif
edieresis
edieresis.glif
+ edotaccent
+ edotaccent.glif
+ edotbelow
+ edotbelow.glif
egrave
egrave.glif
eight
eight.glif
ellipsis
ellipsis.glif
+ emacron
+ emacron.glif
emdash
emdash.glif
+ emspace
+ emspace.glif
endash
endash.glif
+ enspace
+ enspace.glif
+ eogonek
+ eogonek.glif
equal
equal.glif
+ eth
+ eth.glif
+ etilde
+ etilde.glif
euro
euro.glif
exclam
@@ -232,16 +388,32 @@
five.glif
four
four.glif
+ fourperemspace
+ fourperemspace.glif
g
g.glif
+ gbreve
+ gbreve.glif
+ gcommaaccent
+ gcommaaccent.glif
germandbls
germandbls.glif
grave
grave.glif
greater
greater.glif
+ guillemetleft
+ guillemetleft.glif
+ guillemetright
+ guillemetright.glif
+ guilsinglleft
+ guilsinglleft.glif
+ guilsinglright
+ guilsinglright.glif
h
h.glif
+ hungarumlaut
+ hungarumlaut.glif
hyphen
hyphen.glif
i
@@ -256,22 +428,44 @@
idotless.glif
igrave
igrave.glif
+ imacron
+ imacron.glif
+ iogonek
+ iogonek.glif
j
j.glif
jdotless
jdotless.glif
k
k.glif
+ k_arms
+ k_arms.glif
+ kcommaaccent
+ kcommaaccent.glif
l
l.glif
+ lacute
+ lacute.glif
+ lcaron
+ lcaron.glif
less
less.glif
lowercase_loop
lowercase_loop.glif
+ lowercase_loop_reverse
+ lowercase_loop_reverse.glif
+ lowercase_m_shoulder
+ lowercase_m_shoulder.glif
lowercase_nh_shoulder
lowercase_nh_shoulder.glif
+ lowercase_r_shoulder
+ lowercase_r_shoulder.glif
+ lslash
+ lslash.glif
m
m.glif
+ macron
+ macron.glif
minus
minus.glif
multiply
@@ -280,6 +474,12 @@
n.glif
nacute
nacute.glif
+ narrownbspace
+ narrownbspace.glif
+ ncaron
+ ncaron.glif
+ ncommaaccent
+ ncommaaccent.glif
nine
nine.glif
ntilde
@@ -294,8 +494,16 @@
ocircumflex.glif
odieresis
odieresis.glif
+ oe
+ oe.glif
+ ogonek
+ ogonek.glif
ograve
ograve.glif
+ ohungarumlaut
+ ohungarumlaut.glif
+ omacron
+ omacron.glif
one
one.glif
oslash
@@ -304,6 +512,8 @@
otilde.glif
p
p.glif
+ paragraph
+ paragraph.glif
parenleft
parenleft.glif
parenright
@@ -312,6 +522,8 @@
percent.glif
period
period.glif
+ periodcentered
+ periodcentered.glif
perthousand
perthousand.glif
plus
@@ -324,6 +536,8 @@
questiondown.glif
quotedbl
quotedbl.glif
+ quotedblbase
+ quotedblbase.glif
quotedblleft
quotedblleft.glif
quotedblright
@@ -332,20 +546,38 @@
quoteleft.glif
quoteright
quoteright.glif
+ quotesinglbase
+ quotesinglbase.glif
quotesingle
quotesingle.glif
r
r.glif
+ racute
+ racute.glif
+ rcaron
+ rcaron.glif
+ rcommaaccent
+ rcommaaccent.glif
+ registered
+ registered.glif
ring
ring.glif
s
s.glif
+ sacute
+ sacute.glif
+ scaron
+ scaron.glif
+ scedilla
+ scedilla.glif
semicolon
semicolon.glif
seven
seven.glif
six
six.glif
+ sixperemspace
+ sixperemspace.glif
slash
slash.glif
space
@@ -354,10 +586,22 @@
sterling.glif
t
t.glif
+ tcaron
+ tcaron.glif
+ tcedilla
+ tcedilla.glif
+ thorn
+ thorn.glif
+ thorn_stem
+ thorn_stem.glif
three
three.glif
+ threeperemspace
+ threeperemspace.glif
tilde
tilde.glif
+ trademark
+ trademark.glif
two
two.glif
u
@@ -370,8 +614,16 @@
udieresis.glif
ugrave
ugrave.glif
+ uhungarumlaut
+ uhungarumlaut.glif
+ umacron
+ umacron.glif
underscore
underscore.glif
+ uogonek
+ uogonek.glif
+ uring
+ uring.glif
v
v.glif
w
@@ -400,6 +652,12 @@
ygrave.glif
z
z.glif
+ zacute
+ zacute.glif
+ zcaron
+ zcaron.glif
+ zdotaccent
+ zdotaccent.glif
zero
zero.glif
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/copyright.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/copyright.glif
new file mode 100644
index 0000000..c0e73c9
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/copyright.glif
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/d.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/d.glif
new file mode 100644
index 0000000..732fb1a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/d.glif
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/dcaron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dcaron.glif
new file mode 100644
index 0000000..2a9c3d6
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dcaron.glif
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/dcroat.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dcroat.glif
new file mode 100644
index 0000000..c7f8edf
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dcroat.glif
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/degree.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/degree.glif
new file mode 100644
index 0000000..5f9ed44
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/degree.glif
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/descender.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/descender.glif
new file mode 100644
index 0000000..66758db
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/descender.glif
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/dieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dieresis.glif
new file mode 100644
index 0000000..e8d4c56
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dieresis.glif
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/divide.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/divide.glif
new file mode 100644
index 0000000..de46409
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/divide.glif
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/dollar.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dollar.glif
new file mode 100644
index 0000000..e267165
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dollar.glif
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/dotaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dotaccent.glif
new file mode 100644
index 0000000..dcb7a67
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dotaccent.glif
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/dotaccentcomb.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dotaccentcomb.glif
new file mode 100644
index 0000000..ec95d29
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/dotaccentcomb.glif
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/e.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/e.glif
new file mode 100644
index 0000000..880b31b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/e.glif
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/eacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/eacute.glif
new file mode 100644
index 0000000..a66d5e0
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/eacute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ecaron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ecaron.glif
new file mode 100644
index 0000000..016f6a2
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ecaron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ecircumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ecircumflex.glif
new file mode 100644
index 0000000..58353f7
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ecircumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/edieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/edieresis.glif
new file mode 100644
index 0000000..e58d48b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/edieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/edotaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/edotaccent.glif
new file mode 100644
index 0000000..2307e9b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/edotaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/edotbelow.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/edotbelow.glif
new file mode 100644
index 0000000..7be4ba9
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/edotbelow.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ -1
+ index
+ 1
+ name
+ dotaccent
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/egrave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/egrave.glif
new file mode 100644
index 0000000..ddd2b80
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/egrave.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/eight.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/eight.glif
new file mode 100644
index 0000000..bb5a8fa
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/eight.glif
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ellipsis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ellipsis.glif
new file mode 100644
index 0000000..aaf1b68
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ellipsis.glif
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/emacron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/emacron.glif
new file mode 100644
index 0000000..3c5e9b3
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/emacron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/emdash.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/emdash.glif
new file mode 100644
index 0000000..6ebd3fe
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/emdash.glif
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/emspace.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/emspace.glif
new file mode 100644
index 0000000..179678c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/emspace.glif
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/endash.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/endash.glif
new file mode 100644
index 0000000..6b4b219
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/endash.glif
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/enspace.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/enspace.glif
new file mode 100644
index 0000000..af3ddb0
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/enspace.glif
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/eogonek.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/eogonek.glif
new file mode 100644
index 0000000..e1c0f37
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/eogonek.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ -1
+ index
+ 1
+ name
+ ogonek
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/equal.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/equal.glif
new file mode 100644
index 0000000..0bb3e27
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/equal.glif
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/eth.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/eth.glif
new file mode 100644
index 0000000..12cbf88
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/eth.glif
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/etilde.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/etilde.glif
new file mode 100644
index 0000000..298351a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/etilde.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/euro.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/euro.glif
new file mode 100644
index 0000000..91158ab
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/euro.glif
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/exclam.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/exclam.glif
new file mode 100644
index 0000000..fad29d9
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/exclam.glif
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/exclamdown.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/exclamdown.glif
new file mode 100644
index 0000000..e9c65f3
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/exclamdown.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/f.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/f.glif
new file mode 100644
index 0000000..43ef80e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/f.glif
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/five.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/five.glif
new file mode 100644
index 0000000..3c67dcb
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/five.glif
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/four.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/four.glif
new file mode 100644
index 0000000..b06cbc8
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/four.glif
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/fourperemspace.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/fourperemspace.glif
new file mode 100644
index 0000000..a3e3f9e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/fourperemspace.glif
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/g.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/g.glif
new file mode 100644
index 0000000..4086314
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/g.glif
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/gbreve.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/gbreve.glif
new file mode 100644
index 0000000..633210d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/gbreve.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/gcommaaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/gcommaaccent.glif
new file mode 100644
index 0000000..1efc227
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/gcommaaccent.glif
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ -1
+ index
+ 0
+ name
+ g
+
+
+ alignment
+ -1
+ index
+ 1
+ name
+ commaaccentcomb
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/germandbls.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/germandbls.glif
new file mode 100644
index 0000000..7dc7544
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/germandbls.glif
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/grave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/grave.glif
new file mode 100644
index 0000000..555ea4e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/grave.glif
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/greater.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/greater.glif
new file mode 100644
index 0000000..0110d05
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/greater.glif
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/guillemetleft.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/guillemetleft.glif
new file mode 100644
index 0000000..eb222fe
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/guillemetleft.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/guillemetright.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/guillemetright.glif
new file mode 100644
index 0000000..1093ac8
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/guillemetright.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/guilsinglleft.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/guilsinglleft.glif
new file mode 100644
index 0000000..4ea4947
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/guilsinglleft.glif
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/guilsinglright.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/guilsinglright.glif
new file mode 100644
index 0000000..8924e4e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/guilsinglright.glif
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/h.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/h.glif
new file mode 100644
index 0000000..a5e8355
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/h.glif
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/hungarumlaut.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/hungarumlaut.glif
new file mode 100644
index 0000000..c126fea
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/hungarumlaut.glif
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/hyphen.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/hyphen.glif
new file mode 100644
index 0000000..f85a722
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/hyphen.glif
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/i.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/i.glif
new file mode 100644
index 0000000..dbf4022
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/i.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/iacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/iacute.glif
new file mode 100644
index 0000000..7b38444
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/iacute.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ acute
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/icircumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/icircumflex.glif
new file mode 100644
index 0000000..5f094d3
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/icircumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/idieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/idieresis.glif
new file mode 100644
index 0000000..50c1f3c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/idieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/idotless.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/idotless.glif
new file mode 100644
index 0000000..313f48d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/idotless.glif
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/igrave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/igrave.glif
new file mode 100644
index 0000000..3b12e3d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/igrave.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ grave
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/imacron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/imacron.glif
new file mode 100644
index 0000000..5d1eb88
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/imacron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/iogonek.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/iogonek.glif
new file mode 100644
index 0000000..22abd2e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/iogonek.glif
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/j.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/j.glif
new file mode 100644
index 0000000..d2581b4
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/j.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ -1
+ index
+ 0
+ name
+ jdotless
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/jdotless.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/jdotless.glif
new file mode 100644
index 0000000..d4c29de
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/jdotless.glif
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/k.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/k.glif
new file mode 100644
index 0000000..3a5856a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/k.glif
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/k_arms.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/k_arms.glif
new file mode 100644
index 0000000..2415462
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/k_arms.glif
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/kcommaaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/kcommaaccent.glif
new file mode 100644
index 0000000..5af6947
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/kcommaaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/l.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/l.glif
new file mode 100644
index 0000000..26536e7
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/l.glif
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/lacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lacute.glif
new file mode 100644
index 0000000..04543d6
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lacute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/lcaron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lcaron.glif
new file mode 100644
index 0000000..869fdc5
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lcaron.glif
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/less.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/less.glif
new file mode 100644
index 0000000..414eb33
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/less.glif
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_loop.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_loop.glif
new file mode 100644
index 0000000..9d95880
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_loop.glif
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_loop_reverse.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_loop_reverse.glif
new file mode 100644
index 0000000..90ed293
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_loop_reverse.glif
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_m_shoulder.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_m_shoulder.glif
new file mode 100644
index 0000000..e4fcfeb
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_m_shoulder.glif
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_nh_shoulder.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_nh_shoulder.glif
new file mode 100644
index 0000000..36cc0d0
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_nh_shoulder.glif
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_r_shoulder.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_r_shoulder.glif
new file mode 100644
index 0000000..6165a9d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lowercase_r_shoulder.glif
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/lslash.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lslash.glif
new file mode 100644
index 0000000..5558989
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/lslash.glif
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/m.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/m.glif
new file mode 100644
index 0000000..fb4d41c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/m.glif
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/macron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/macron.glif
new file mode 100644
index 0000000..ac76758
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/macron.glif
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/minus.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/minus.glif
new file mode 100644
index 0000000..05a6dc8
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/minus.glif
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/multiply.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/multiply.glif
new file mode 100644
index 0000000..af08448
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/multiply.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/n.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/n.glif
new file mode 100644
index 0000000..8bd6f47
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/n.glif
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/nacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/nacute.glif
new file mode 100644
index 0000000..47155ce
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/nacute.glif
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/narrownbspace.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/narrownbspace.glif
new file mode 100644
index 0000000..ee7f134
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/narrownbspace.glif
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ncaron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ncaron.glif
new file mode 100644
index 0000000..902f2df
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ncaron.glif
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ncommaaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ncommaaccent.glif
new file mode 100644
index 0000000..ab73bfe
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ncommaaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/nine.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/nine.glif
new file mode 100644
index 0000000..a1a5b74
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/nine.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ntilde.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ntilde.glif
new file mode 100644
index 0000000..8bd9daf
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ntilde.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/numbersign.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/numbersign.glif
new file mode 100644
index 0000000..62f47d1
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/numbersign.glif
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/o.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/o.glif
new file mode 100644
index 0000000..1e37544
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/o.glif
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/oacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/oacute.glif
new file mode 100644
index 0000000..9abd04a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/oacute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ocircumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ocircumflex.glif
new file mode 100644
index 0000000..a19d0ca
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ocircumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/odieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/odieresis.glif
new file mode 100644
index 0000000..a2c8cc5
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/odieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/oe.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/oe.glif
new file mode 100644
index 0000000..1b4a9ad
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/oe.glif
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ogonek.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ogonek.glif
new file mode 100644
index 0000000..eca7270
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ogonek.glif
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ograve.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ograve.glif
new file mode 100644
index 0000000..b9837fc
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ograve.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ohungarumlaut.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ohungarumlaut.glif
new file mode 100644
index 0000000..451fd07
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ohungarumlaut.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ hungarumlaut
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/omacron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/omacron.glif
new file mode 100644
index 0000000..19b2686
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/omacron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/one.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/one.glif
new file mode 100644
index 0000000..1118b34
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/one.glif
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/oslash.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/oslash.glif
new file mode 100644
index 0000000..585a8d7
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/oslash.glif
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/otilde.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/otilde.glif
new file mode 100644
index 0000000..0546907
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/otilde.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/p.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/p.glif
new file mode 100644
index 0000000..8f74c77
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/p.glif
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/paragraph.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/paragraph.glif
new file mode 100644
index 0000000..c8e312c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/paragraph.glif
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/parenleft.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/parenleft.glif
new file mode 100644
index 0000000..23bea5a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/parenleft.glif
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/parenright.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/parenright.glif
new file mode 100644
index 0000000..df6b6af
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/parenright.glif
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/percent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/percent.glif
new file mode 100644
index 0000000..04b8935
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/percent.glif
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/period.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/period.glif
new file mode 100644
index 0000000..2b53a9c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/period.glif
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/periodcentered.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/periodcentered.glif
new file mode 100644
index 0000000..06d311c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/periodcentered.glif
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/perthousand.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/perthousand.glif
new file mode 100644
index 0000000..dd92fab
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/perthousand.glif
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/plus.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/plus.glif
new file mode 100644
index 0000000..e8ca8d9
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/plus.glif
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/q.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/q.glif
new file mode 100644
index 0000000..6e09caa
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/q.glif
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/question.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/question.glif
new file mode 100644
index 0000000..251d721
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/question.glif
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/questiondown.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/questiondown.glif
new file mode 100644
index 0000000..b8746e9
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/questiondown.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedbl.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedbl.glif
new file mode 100644
index 0000000..d53e84f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedbl.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedblbase.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedblbase.glif
new file mode 100644
index 0000000..0e80d29
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedblbase.glif
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedblleft.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedblleft.glif
new file mode 100644
index 0000000..7132f22
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedblleft.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedblright.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedblright.glif
new file mode 100644
index 0000000..fff318b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotedblright.glif
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/quoteleft.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quoteleft.glif
new file mode 100644
index 0000000..cf81413
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quoteleft.glif
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/quoteright.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quoteright.glif
new file mode 100644
index 0000000..8ad7596
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quoteright.glif
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotesinglbase.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotesinglbase.glif
new file mode 100644
index 0000000..ad0f28e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotesinglbase.glif
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotesingle.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotesingle.glif
new file mode 100644
index 0000000..98ef38c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/quotesingle.glif
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/r.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/r.glif
new file mode 100644
index 0000000..61ed7c0
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/r.glif
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/racute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/racute.glif
new file mode 100644
index 0000000..a05a8ed
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/racute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/rcaron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/rcaron.glif
new file mode 100644
index 0000000..70f9576
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/rcaron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/rcommaaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/rcommaaccent.glif
new file mode 100644
index 0000000..0db229d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/rcommaaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/registered.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/registered.glif
new file mode 100644
index 0000000..571a7e2
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/registered.glif
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ring.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ring.glif
new file mode 100644
index 0000000..800ead5
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ring.glif
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/s.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/s.glif
new file mode 100644
index 0000000..87a80a5
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/s.glif
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/sacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/sacute.glif
new file mode 100644
index 0000000..01e7508
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/sacute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/scaron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/scaron.glif
new file mode 100644
index 0000000..0fc43d5
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/scaron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/scedilla.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/scedilla.glif
new file mode 100644
index 0000000..b46b8db
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/scedilla.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/semicolon.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/semicolon.glif
new file mode 100644
index 0000000..f825d58
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/semicolon.glif
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/seven.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/seven.glif
new file mode 100644
index 0000000..ada203f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/seven.glif
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/six.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/six.glif
new file mode 100644
index 0000000..f1d8cc9
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/six.glif
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/sixperemspace.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/sixperemspace.glif
new file mode 100644
index 0000000..2a1fed0
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/sixperemspace.glif
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/slash.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/slash.glif
new file mode 100644
index 0000000..d3275e0
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/slash.glif
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/space.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/space.glif
new file mode 100644
index 0000000..5a2d3ff
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/space.glif
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/sterling.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/sterling.glif
new file mode 100644
index 0000000..e899143
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/sterling.glif
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/t.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/t.glif
new file mode 100644
index 0000000..69c3c5f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/t.glif
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/tcaron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/tcaron.glif
new file mode 100644
index 0000000..f469f5f
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/tcaron.glif
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/tcedilla.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/tcedilla.glif
new file mode 100644
index 0000000..b246b95
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/tcedilla.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/thorn.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/thorn.glif
new file mode 100644
index 0000000..eae369b
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/thorn.glif
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/thorn_stem.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/thorn_stem.glif
new file mode 100644
index 0000000..fb54726
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/thorn_stem.glif
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.Export
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/three.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/three.glif
new file mode 100644
index 0000000..0fa5f18
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/three.glif
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/threeperemspace.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/threeperemspace.glif
new file mode 100644
index 0000000..dd3cef4
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/threeperemspace.glif
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/tilde.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/tilde.glif
new file mode 100644
index 0000000..f80ca6c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/tilde.glif
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/trademark.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/trademark.glif
new file mode 100644
index 0000000..d32a386
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/trademark.glif
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/two.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/two.glif
new file mode 100644
index 0000000..80c4163
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/two.glif
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/u.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/u.glif
new file mode 100644
index 0000000..2aa307c
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/u.glif
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/uacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/uacute.glif
new file mode 100644
index 0000000..6784186
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/uacute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ucircumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ucircumflex.glif
new file mode 100644
index 0000000..2bc1bfd
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ucircumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/udieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/udieresis.glif
new file mode 100644
index 0000000..49b88b1
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/udieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ugrave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ugrave.glif
new file mode 100644
index 0000000..2d8e390
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ugrave.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/uhungarumlaut.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/uhungarumlaut.glif
new file mode 100644
index 0000000..b4888dc
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/uhungarumlaut.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ hungarumlaut
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/umacron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/umacron.glif
new file mode 100644
index 0000000..2c09f02
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/umacron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/underscore.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/underscore.glif
new file mode 100644
index 0000000..add272a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/underscore.glif
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/uogonek.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/uogonek.glif
new file mode 100644
index 0000000..3a2489e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/uogonek.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/uring.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/uring.glif
new file mode 100644
index 0000000..6101f49
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/uring.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/v.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/v.glif
new file mode 100644
index 0000000..d0562fe
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/v.glif
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/w.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/w.glif
new file mode 100644
index 0000000..32bebdf
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/w.glif
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/wacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/wacute.glif
new file mode 100644
index 0000000..b1f0273
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/wacute.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ acute
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/wcircumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/wcircumflex.glif
new file mode 100644
index 0000000..7273c90
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/wcircumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/wdieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/wdieresis.glif
new file mode 100644
index 0000000..503be18
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/wdieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/wgrave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/wgrave.glif
new file mode 100644
index 0000000..5b0b964
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/wgrave.glif
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+ com.schriftgestaltung.Glyphs.ComponentInfo
+
+
+ alignment
+ 1
+ index
+ 1
+ name
+ grave
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/x.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/x.glif
new file mode 100644
index 0000000..e736f2a
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/x.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/y.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/y.glif
new file mode 100644
index 0000000..e96c1fb
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/y.glif
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/yacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/yacute.glif
new file mode 100644
index 0000000..a7e0254
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/yacute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ycircumflex.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ycircumflex.glif
new file mode 100644
index 0000000..8471d76
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ycircumflex.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ydieresis.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ydieresis.glif
new file mode 100644
index 0000000..d6a866d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ydieresis.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/yen.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/yen.glif
new file mode 100644
index 0000000..5f32bca
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/yen.glif
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/ygrave.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ygrave.glif
new file mode 100644
index 0000000..a783167
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/ygrave.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/z.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/z.glif
new file mode 100644
index 0000000..40f5645
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/z.glif
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.markColor
+ 0.99,0.62,0.11,1
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/zacute.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/zacute.glif
new file mode 100644
index 0000000..bc15cf7
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/zacute.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/zcaron.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/zcaron.glif
new file mode 100644
index 0000000..656c3a3
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/zcaron.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/zdotaccent.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/zdotaccent.glif
new file mode 100644
index 0000000..066ed50
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/zdotaccent.glif
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/glyphs/zero.glif b/Fonts/UFO/Metropolis-Black.ufo/glyphs/zero.glif
new file mode 100644
index 0000000..d6d719d
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/glyphs/zero.glif
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/groups.plist b/Fonts/UFO/Metropolis-Black.ufo/groups.plist
new file mode 100644
index 0000000..bc8f568
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/groups.plist
@@ -0,0 +1,847 @@
+
+
+
+
+ public.kern1.A
+
+ A
+ Aacute
+ Abreve
+ Acircumflex
+ Adieresis
+ Agrave
+ Amacron
+ Aogonek
+ Aring
+ Atilde
+
+ public.kern1.B
+
+ B
+
+ public.kern1.C
+
+ C
+ Cacute
+ Ccaron
+ Ccedilla
+
+ public.kern1.D
+
+ D
+ Eth
+ Dcaron
+ Dcroat
+
+ public.kern1.E
+
+ AE
+ E
+ Eacute
+ Ecaron
+ Ecircumflex
+ Edieresis
+ Edotaccent
+ Edotbelow
+ Egrave
+ Emacron
+ Eogonek
+ Etilde
+ OE
+
+ public.kern1.F
+
+ F
+
+ public.kern1.G
+
+ G
+ Gbreve
+ Gcommaaccent
+
+ public.kern1.H
+
+ H
+
+ public.kern1.I
+
+ I
+ Iacute
+ Icircumflex
+ Idieresis
+ Idotaccent
+ Igrave
+ Imacron
+ Iogonek
+
+ public.kern1.J
+
+ J
+
+ public.kern1.K
+
+ K
+ Kcommaaccent
+
+ public.kern1.L
+
+ L
+ Lacute
+ Lcaron
+
+ public.kern1.Lslash
+
+ Lslash
+
+ public.kern1.M
+
+ M
+
+ public.kern1.N
+
+ N
+ Nacute
+ Ncaron
+ Ncommaaccent
+ Ntilde
+
+ public.kern1.O
+
+ O
+ Oacute
+ Ocircumflex
+ Odieresis
+ Ograve
+ Ohungarumlaut
+ Omacron
+ Otilde
+
+ public.kern1.Oslash
+
+ Oslash
+
+ public.kern1.P
+
+ P
+
+ public.kern1.Q
+
+ Q
+
+ public.kern1.R
+
+ R
+ Racute
+ Rcaron
+ Rcommaaccent
+
+ public.kern1.S
+
+ S
+ Sacute
+ Scaron
+ Scedilla
+
+ public.kern1.T
+
+ T
+ Tcaron
+ Tcedilla
+
+ public.kern1.Thorn
+
+ Thorn
+
+ public.kern1.U
+
+ U
+ Uacute
+ Ucircumflex
+ Udieresis
+ Ugrave
+ Uhungarumlaut
+ Umacron
+ Uogonek
+ Uring
+
+ public.kern1.V
+
+ V
+
+ public.kern1.W
+
+ W
+ Wacute
+ Wcircumflex
+ Wdieresis
+ Wgrave
+
+ public.kern1.X
+
+ X
+
+ public.kern1.Y
+
+ Y
+ Yacute
+ Ycircumflex
+ Ydieresis
+ Ygrave
+
+ public.kern1.Z
+
+ Z
+ Zacute
+ Zcaron
+ Zdotaccent
+
+ public.kern1.a
+
+ a
+ aacute
+ abreve
+ acircumflex
+ adieresis
+ agrave
+ amacron
+ aogonek
+ aring
+ atilde
+
+ public.kern1.a.alt
+
+ a.alt
+ aacute.alt
+ abreve.alt
+ acircumflex.alt
+ adieresis.alt
+ agrave.alt
+ amacron.alt
+ aogonek.alt
+ aring.alt
+ atilde.alt
+
+ public.kern1.b
+
+ b
+
+ public.kern1.c
+
+ c
+ cacute
+ ccaron
+ ccedilla
+
+ public.kern1.d
+
+ d
+
+ public.kern1.dcaron
+
+ dcaron
+
+ public.kern1.dcroat
+
+ dcroat
+
+ public.kern1.e
+
+ ae
+ e
+ eacute
+ ecaron
+ ecircumflex
+ edieresis
+ edotaccent
+ edotbelow
+ egrave
+ emacron
+ eogonek
+ etilde
+ oe
+
+ public.kern1.eth
+
+ eth
+
+ public.kern1.f
+
+ f
+
+ public.kern1.g
+
+ g
+ gbreve
+ gcommaaccent
+
+ public.kern1.germandbls
+
+ germandbls
+
+ public.kern1.h
+
+ h
+
+ public.kern1.i
+
+ i
+ idotless
+ iacute
+ icircumflex
+ idieresis
+ igrave
+ imacron
+ iogonek
+
+ public.kern1.j
+
+ j
+ jdotless
+
+ public.kern1.k
+
+ k
+ kcommaaccent
+
+ public.kern1.l
+
+ l
+ lacute
+
+ public.kern1.lcaron
+
+ lcaron
+
+ public.kern1.lslash
+
+ lslash
+
+ public.kern1.m
+
+ m
+
+ public.kern1.n
+
+ n
+ nacute
+ ncaron
+ ncommaaccent
+ ntilde
+
+ public.kern1.o
+
+ o
+ oacute
+ ocircumflex
+ odieresis
+ ograve
+ ohungarumlaut
+ omacron
+ otilde
+
+ public.kern1.oslash
+
+ oslash
+
+ public.kern1.p
+
+ p
+
+ public.kern1.q
+
+ q
+
+ public.kern1.r
+
+ r
+ racute
+ rcaron
+ rcommaaccent
+
+ public.kern1.s
+
+ s
+ sacute
+ scaron
+ scedilla
+
+ public.kern1.t
+
+ t
+ tcedilla
+
+ public.kern1.tcaron
+
+ tcaron
+
+ public.kern1.thorn
+
+ thorn
+
+ public.kern1.u
+
+ u
+ uacute
+ ucircumflex
+ udieresis
+ ugrave
+ uhungarumlaut
+ umacron
+ uogonek
+ uring
+
+ public.kern1.v
+
+ v
+
+ public.kern1.w
+
+ w
+ wacute
+ wcircumflex
+ wdieresis
+ wgrave
+
+ public.kern1.x
+
+ x
+
+ public.kern1.y
+
+ y
+ yacute
+ ycircumflex
+ ydieresis
+ ygrave
+
+ public.kern1.z
+
+ z
+ zacute
+ zcaron
+ zdotaccent
+
+ public.kern2.A
+
+ A
+ Aacute
+ Abreve
+ Acircumflex
+ Adieresis
+ Agrave
+ Amacron
+ Aogonek
+ Aring
+ Atilde
+ AE
+
+ public.kern2.B
+
+ B
+
+ public.kern2.C
+
+ C
+ Cacute
+ Ccaron
+ Ccedilla
+
+ public.kern2.D
+
+ D
+ Dcaron
+
+ public.kern2.E
+
+ E
+ Eacute
+ Ecaron
+ Ecircumflex
+ Edieresis
+ Edotaccent
+ Edotbelow
+ Egrave
+ Emacron
+ Eogonek
+ Etilde
+
+ public.kern2.Eth
+
+ Eth
+ Dcroat
+
+ public.kern2.F
+
+ F
+
+ public.kern2.G
+
+ G
+ Gbreve
+ Gcommaaccent
+
+ public.kern2.H
+
+ H
+
+ public.kern2.I
+
+ I
+ Iacute
+ Icircumflex
+ Idieresis
+ Idotaccent
+ Igrave
+ Imacron
+ Iogonek
+
+ public.kern2.J
+
+ J
+
+ public.kern2.K
+
+ K
+ Kcommaaccent
+
+ public.kern2.L
+
+ L
+ Lacute
+ Lcaron
+
+ public.kern2.Lslash
+
+ Lslash
+
+ public.kern2.M
+
+ M
+
+ public.kern2.N
+
+ N
+ Nacute
+ Ncaron
+ Ncommaaccent
+ Ntilde
+
+ public.kern2.O
+
+ O
+ Oacute
+ Ocircumflex
+ Odieresis
+ Ograve
+ Ohungarumlaut
+ Omacron
+ Otilde
+ OE
+
+ public.kern2.Oslash
+
+ Oslash
+
+ public.kern2.P
+
+ P
+
+ public.kern2.Q
+
+ Q
+
+ public.kern2.R
+
+ R
+ Racute
+ Rcaron
+ Rcommaaccent
+
+ public.kern2.S
+
+ S
+ Sacute
+ Scaron
+ Scedilla
+
+ public.kern2.T
+
+ T
+ Tcaron
+ Tcedilla
+
+ public.kern2.Thorn
+
+ Thorn
+
+ public.kern2.U
+
+ U
+ Uacute
+ Ucircumflex
+ Udieresis
+ Ugrave
+ Uhungarumlaut
+ Umacron
+ Uogonek
+ Uring
+
+ public.kern2.V
+
+ V
+
+ public.kern2.W
+
+ W
+ Wacute
+ Wcircumflex
+ Wdieresis
+ Wgrave
+
+ public.kern2.X
+
+ X
+
+ public.kern2.Y
+
+ Y
+ Yacute
+ Ycircumflex
+ Ydieresis
+ Ygrave
+
+ public.kern2.Z
+
+ Z
+ Zacute
+ Zcaron
+ Zdotaccent
+
+ public.kern2.a
+
+ a
+ aacute
+ abreve
+ acircumflex
+ adieresis
+ agrave
+ amacron
+ aogonek
+ aring
+ atilde
+ ae
+
+ public.kern2.a.alt
+
+ a.alt
+ aacute.alt
+ abreve.alt
+ acircumflex.alt
+ adieresis.alt
+ agrave.alt
+ amacron.alt
+ aogonek.alt
+ aring.alt
+ atilde.alt
+
+ public.kern2.b
+
+ b
+
+ public.kern2.c
+
+ c
+ cacute
+ ccaron
+ ccedilla
+
+ public.kern2.d
+
+ d
+
+ public.kern2.dcaron
+
+ dcaron
+
+ public.kern2.dcroat
+
+ dcroat
+
+ public.kern2.e
+
+ e
+ eacute
+ ecaron
+ ecircumflex
+ edieresis
+ edotaccent
+ edotbelow
+ egrave
+ emacron
+ eogonek
+ etilde
+
+ public.kern2.eth
+
+ eth
+
+ public.kern2.f
+
+ f
+
+ public.kern2.g
+
+ g
+ gbreve
+ gcommaaccent
+
+ public.kern2.germandbls
+
+ germandbls
+
+ public.kern2.h
+
+ h
+
+ public.kern2.i
+
+ i
+ idotless
+ iacute
+ icircumflex
+ idieresis
+ igrave
+ imacron
+ iogonek
+
+ public.kern2.j
+
+ j
+ jdotless
+
+ public.kern2.k
+
+ k
+ kcommaaccent
+
+ public.kern2.l
+
+ l
+ lacute
+
+ public.kern2.lcaron
+
+ lcaron
+
+ public.kern2.lslash
+
+ lslash
+
+ public.kern2.m
+
+ m
+
+ public.kern2.n
+
+ n
+ nacute
+ ncaron
+ ncommaaccent
+ ntilde
+
+ public.kern2.o
+
+ o
+ oacute
+ ocircumflex
+ odieresis
+ ograve
+ ohungarumlaut
+ omacron
+ otilde
+ oe
+
+ public.kern2.oslash
+
+ oslash
+
+ public.kern2.p
+
+ p
+
+ public.kern2.q
+
+ q
+
+ public.kern2.r
+
+ r
+ racute
+ rcaron
+ rcommaaccent
+
+ public.kern2.s
+
+ s
+ sacute
+ scaron
+ scedilla
+
+ public.kern2.t
+
+ t
+ tcedilla
+
+ public.kern2.tcaron
+
+ tcaron
+
+ public.kern2.thorn
+
+ thorn
+
+ public.kern2.u
+
+ u
+ uacute
+ ucircumflex
+ udieresis
+ ugrave
+ uhungarumlaut
+ umacron
+ uogonek
+ uring
+
+ public.kern2.v
+
+ v
+
+ public.kern2.w
+
+ w
+ wacute
+ wcircumflex
+ wdieresis
+ wgrave
+
+ public.kern2.x
+
+ x
+
+ public.kern2.y
+
+ y
+ yacute
+ ycircumflex
+ ydieresis
+ ygrave
+
+ public.kern2.z
+
+ z
+ zacute
+ zcaron
+ zdotaccent
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/kerning.plist b/Fonts/UFO/Metropolis-Black.ufo/kerning.plist
new file mode 100644
index 0000000..0994c8e
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/kerning.plist
@@ -0,0 +1,14240 @@
+
+
+
+
+ ampersand
+
+ ampersand
+ -20
+ asciicircum
+ -140
+ asciitilde
+ -60
+ asterisk
+ -125
+ at
+ -10
+ backslash
+ -140
+ braceleft
+ -35
+ braceright
+ -35
+ bullet
+ -10
+ cent
+ -10
+ colon
+ -10
+ comma
+ -10
+ copyright
+ -10
+ degree
+ -115
+ divide
+ -10
+ dollar
+ -25
+ ellipsis
+ -10
+ emdash
+ -10
+ endash
+ -10
+ equal
+ -10
+ euro
+ -70
+ guillemetleft
+ 15
+ guillemetright
+ -10
+ guilsinglleft
+ 15
+ guilsinglright
+ -10
+ hyphen
+ -10
+ less
+ -10
+ minus
+ -10
+ multiply
+ -45
+ numbersign
+ -50
+ paragraph
+ -100
+ parenleft
+ -10
+ parenright
+ -85
+ percent
+ -115
+ periodcentered
+ -10
+ perthousand
+ -115
+ plus
+ -10
+ public.kern2.A
+ -15
+ public.kern2.C
+ -15
+ public.kern2.G
+ -15
+ public.kern2.J
+ 25
+ public.kern2.O
+ -15
+ public.kern2.Oslash
+ -15
+ public.kern2.Q
+ -15
+ public.kern2.T
+ -85
+ public.kern2.U
+ -10
+ public.kern2.V
+ -75
+ public.kern2.W
+ -55
+ public.kern2.X
+ -20
+ public.kern2.Y
+ -80
+ public.kern2.a
+ -25
+ public.kern2.a.alt
+ -10
+ public.kern2.c
+ -10
+ public.kern2.d
+ -10
+ public.kern2.dcaron
+ -10
+ public.kern2.dcroat
+ -10
+ public.kern2.e
+ -10
+ public.kern2.eth
+ -10
+ public.kern2.f
+ -45
+ public.kern2.g
+ -10
+ public.kern2.o
+ -10
+ public.kern2.oslash
+ -10
+ public.kern2.q
+ -10
+ public.kern2.s
+ -25
+ public.kern2.t
+ -45
+ public.kern2.tcaron
+ -45
+ public.kern2.u
+ -10
+ public.kern2.v
+ -30
+ public.kern2.w
+ -35
+ public.kern2.x
+ -15
+ public.kern2.y
+ -55
+ question
+ -95
+ questiondown
+ -10
+ quotedbl
+ -125
+ quotedblbase
+ -10
+ quotedblleft
+ -115
+ quotedblright
+ -125
+ quoteleft
+ -115
+ quoteright
+ -125
+ quotesinglbase
+ -10
+ quotesingle
+ -125
+ registered
+ -50
+ semicolon
+ -10
+ slash
+ -10
+ sterling
+ -15
+ trademark
+ -95
+ underscore
+ -190
+ yen
+ -70
+
+ asciicircum
+
+ ampersand
+ -115
+ asciitilde
+ -45
+ at
+ -30
+ backslash
+ -85
+ braceleft
+ -75
+ braceright
+ -35
+ bullet
+ -45
+ cent
+ -50
+ comma
+ -155
+ copyright
+ -25
+ degree
+ -40
+ dollar
+ -35
+ ellipsis
+ -250
+ emdash
+ -250
+ endash
+ -250
+ euro
+ -65
+ guillemetleft
+ -100
+ guillemetright
+ 15
+ guilsinglleft
+ -100
+ guilsinglright
+ 15
+ hyphen
+ -180
+ multiply
+ -15
+ numbersign
+ -100
+ paragraph
+ -10
+ parenleft
+ -25
+ parenright
+ -75
+ percent
+ -25
+ periodcentered
+ -110
+ perthousand
+ -25
+ public.kern2.A
+ -75
+ public.kern2.C
+ -10
+ public.kern2.G
+ -10
+ public.kern2.J
+ -250
+ public.kern2.O
+ -10
+ public.kern2.Oslash
+ -10
+ public.kern2.Q
+ -10
+ public.kern2.S
+ -10
+ public.kern2.T
+ -15
+ public.kern2.V
+ -45
+ public.kern2.W
+ -35
+ public.kern2.X
+ -60
+ public.kern2.Y
+ -50
+ public.kern2.a
+ -80
+ public.kern2.a.alt
+ -40
+ public.kern2.c
+ -55
+ public.kern2.d
+ -40
+ public.kern2.dcaron
+ -40
+ public.kern2.dcroat
+ -40
+ public.kern2.e
+ -50
+ public.kern2.eth
+ -55
+ public.kern2.g
+ -35
+ public.kern2.o
+ -55
+ public.kern2.oslash
+ -55
+ public.kern2.q
+ -40
+ public.kern2.s
+ -35
+ public.kern2.v
+ -15
+ public.kern2.w
+ -15
+ public.kern2.x
+ -25
+ public.kern2.y
+ -25
+ question
+ -100
+ questiondown
+ -115
+ quotedbl
+ -45
+ quotedblbase
+ -250
+ quotedblleft
+ -10
+ quotedblright
+ -65
+ quoteleft
+ -10
+ quoteright
+ -65
+ quotesinglbase
+ -155
+ quotesingle
+ -45
+ slash
+ -155
+ sterling
+ -115
+ trademark
+ -20
+ underscore
+ -250
+ yen
+ -50
+
+ asciitilde
+
+ ampersand
+ -70
+ asciicircum
+ -10
+ asciitilde
+ -35
+ asterisk
+ -10
+ at
+ -30
+ backslash
+ -90
+ braceleft
+ -45
+ braceright
+ -40
+ bullet
+ -30
+ cent
+ -35
+ comma
+ -155
+ copyright
+ -25
+ degree
+ -45
+ dollar
+ -40
+ ellipsis
+ -210
+ emdash
+ -10
+ endash
+ -10
+ euro
+ -70
+ guillemetleft
+ -50
+ guillemetright
+ 0
+ guilsinglleft
+ -50
+ guilsinglright
+ 0
+ hyphen
+ -10
+ multiply
+ -20
+ numbersign
+ -105
+ paragraph
+ -15
+ parenleft
+ -25
+ parenright
+ -110
+ percent
+ -25
+ periodcentered
+ -40
+ perthousand
+ -25
+ public.kern2.A
+ -75
+ public.kern2.C
+ -15
+ public.kern2.G
+ -15
+ public.kern2.J
+ -245
+ public.kern2.O
+ -15
+ public.kern2.Oslash
+ -15
+ public.kern2.Q
+ -15
+ public.kern2.S
+ -15
+ public.kern2.T
+ -90
+ public.kern2.V
+ -50
+ public.kern2.W
+ -40
+ public.kern2.X
+ -65
+ public.kern2.Y
+ -55
+ public.kern2.a
+ -85
+ public.kern2.a.alt
+ -35
+ public.kern2.c
+ -40
+ public.kern2.d
+ -35
+ public.kern2.dcaron
+ -35
+ public.kern2.dcroat
+ -35
+ public.kern2.e
+ -35
+ public.kern2.eth
+ -40
+ public.kern2.g
+ -30
+ public.kern2.o
+ -40
+ public.kern2.oslash
+ -40
+ public.kern2.q
+ -35
+ public.kern2.s
+ -35
+ public.kern2.v
+ -15
+ public.kern2.w
+ -20
+ public.kern2.x
+ -30
+ public.kern2.y
+ -25
+ question
+ -145
+ questiondown
+ -120
+ quotedbl
+ -50
+ quotedblbase
+ -210
+ quotedblleft
+ -15
+ quotedblright
+ -60
+ quoteleft
+ -15
+ quoteright
+ -60
+ quotesinglbase
+ -155
+ quotesingle
+ -50
+ semicolon
+ -10
+ slash
+ -145
+ sterling
+ -50
+ trademark
+ -95
+ underscore
+ -245
+ yen
+ -55
+
+ asterisk
+
+ ampersand
+ -100
+ asciitilde
+ -40
+ at
+ -30
+ braceleft
+ -65
+ braceright
+ -35
+ bullet
+ -40
+ cent
+ -45
+ comma
+ -155
+ copyright
+ -25
+ dollar
+ -30
+ ellipsis
+ -215
+ emdash
+ -10
+ endash
+ -10
+ euro
+ -60
+ guillemetleft
+ -90
+ guillemetright
+ 10
+ guilsinglleft
+ -90
+ guilsinglright
+ 10
+ hyphen
+ -10
+ multiply
+ -15
+ numbersign
+ -100
+ parenleft
+ -25
+ percent
+ -10
+ periodcentered
+ -65
+ perthousand
+ -10
+ public.kern2.A
+ -75
+ public.kern2.C
+ -10
+ public.kern2.G
+ -10
+ public.kern2.J
+ -215
+ public.kern2.O
+ -10
+ public.kern2.Oslash
+ -15
+ public.kern2.Q
+ -10
+ public.kern2.V
+ -15
+ public.kern2.W
+ -10
+ public.kern2.X
+ -20
+ public.kern2.Y
+ -15
+ public.kern2.a
+ -55
+ public.kern2.a.alt
+ -40
+ public.kern2.c
+ -50
+ public.kern2.d
+ -40
+ public.kern2.dcaron
+ -40
+ public.kern2.dcroat
+ -40
+ public.kern2.e
+ -45
+ public.kern2.eth
+ -50
+ public.kern2.g
+ -35
+ public.kern2.o
+ -50
+ public.kern2.oslash
+ -50
+ public.kern2.q
+ -40
+ public.kern2.s
+ -35
+ public.kern2.v
+ -10
+ public.kern2.w
+ -10
+ public.kern2.x
+ -20
+ public.kern2.y
+ -15
+ questiondown
+ -115
+ quotedblbase
+ -215
+ quotesinglbase
+ -155
+ slash
+ -155
+ sterling
+ -60
+ underscore
+ -215
+ yen
+ -20
+
+ at
+
+ ampersand
+ -10
+ asciicircum
+ -15
+ asterisk
+ -15
+ backslash
+ -85
+ braceleft
+ -25
+ braceright
+ -35
+ colon
+ -10
+ comma
+ -35
+ degree
+ -40
+ dollar
+ -40
+ ellipsis
+ -35
+ euro
+ -60
+ guillemetleft
+ 30
+ guilsinglleft
+ 30
+ multiply
+ -20
+ numbersign
+ -60
+ paragraph
+ -15
+ parenright
+ -80
+ percent
+ -25
+ perthousand
+ -25
+ public.kern2.A
+ -45
+ public.kern2.J
+ -35
+ public.kern2.S
+ -15
+ public.kern2.T
+ -15
+ public.kern2.V
+ -55
+ public.kern2.W
+ -40
+ public.kern2.X
+ -60
+ public.kern2.Y
+ -55
+ public.kern2.a
+ -20
+ public.kern2.s
+ -20
+ public.kern2.v
+ -15
+ public.kern2.w
+ -20
+ public.kern2.x
+ -30
+ public.kern2.y
+ -30
+ question
+ -120
+ questiondown
+ -60
+ quotedbl
+ -50
+ quotedblbase
+ -35
+ quotedblleft
+ -20
+ quotedblright
+ -60
+ quoteleft
+ -20
+ quoteright
+ -60
+ quotesinglbase
+ -35
+ quotesingle
+ -50
+ semicolon
+ -10
+ slash
+ -65
+ sterling
+ -35
+ trademark
+ -20
+ underscore
+ -120
+ yen
+ -60
+
+ backslash
+
+ ampersand
+ -35
+ asciicircum
+ -155
+ asciitilde
+ -115
+ asterisk
+ -155
+ at
+ -50
+ backslash
+ -235
+ bar
+ 50
+ braceleft
+ -35
+ braceright
+ 10
+ bracketleft
+ 50
+ bracketright
+ 50
+ bullet
+ -85
+ cent
+ -60
+ copyright
+ -55
+ degree
+ -185
+ divide
+ -65
+ dollar
+ -20
+ emdash
+ -40
+ endash
+ -40
+ equal
+ -20
+ euro
+ -120
+ greater
+ 20
+ guillemetleft
+ -50
+ guilsinglleft
+ -50
+ hyphen
+ -40
+ less
+ -80
+ minus
+ -65
+ multiply
+ -95
+ paragraph
+ -155
+ parenleft
+ -40
+ parenright
+ 35
+ percent
+ -55
+ periodcentered
+ -80
+ perthousand
+ -65
+ plus
+ -65
+ public.kern2.A
+ 20
+ public.kern2.B
+ 30
+ public.kern2.C
+ -90
+ public.kern2.D
+ 30
+ public.kern2.E
+ 20
+ public.kern2.Eth
+ 30
+ public.kern2.F
+ 20
+ public.kern2.G
+ -90
+ public.kern2.H
+ 20
+ public.kern2.I
+ 20
+ public.kern2.J
+ 30
+ public.kern2.K
+ 20
+ public.kern2.L
+ 20
+ public.kern2.Lslash
+ 20
+ public.kern2.M
+ 20
+ public.kern2.N
+ 20
+ public.kern2.O
+ -90
+ public.kern2.Oslash
+ 20
+ public.kern2.P
+ 20
+ public.kern2.Q
+ -90
+ public.kern2.R
+ 20
+ public.kern2.T
+ -60
+ public.kern2.Thorn
+ 20
+ public.kern2.U
+ -70
+ public.kern2.V
+ -90
+ public.kern2.W
+ -60
+ public.kern2.X
+ 20
+ public.kern2.Y
+ -60
+ public.kern2.Z
+ 20
+ public.kern2.a
+ -25
+ public.kern2.a.alt
+ -55
+ public.kern2.b
+ 20
+ public.kern2.c
+ -65
+ public.kern2.d
+ -55
+ public.kern2.dcaron
+ -55
+ public.kern2.dcroat
+ -55
+ public.kern2.e
+ -60
+ public.kern2.eth
+ -55
+ public.kern2.f
+ -15
+ public.kern2.g
+ -30
+ public.kern2.germandbls
+ 20
+ public.kern2.h
+ 20
+ public.kern2.i
+ 20
+ public.kern2.j
+ 85
+ public.kern2.l
+ 20
+ public.kern2.lcaron
+ 20
+ public.kern2.lslash
+ 20
+ public.kern2.m
+ 20
+ public.kern2.n
+ 20
+ public.kern2.o
+ -65
+ public.kern2.oslash
+ 20
+ public.kern2.p
+ 50
+ public.kern2.q
+ -55
+ public.kern2.r
+ 20
+ public.kern2.t
+ -60
+ public.kern2.tcaron
+ -60
+ public.kern2.thorn
+ 50
+ public.kern2.u
+ -35
+ public.kern2.v
+ -30
+ public.kern2.w
+ -35
+ public.kern2.x
+ 20
+ public.kern2.y
+ -15
+ public.kern2.z
+ 20
+ question
+ -95
+ questiondown
+ 30
+ quotedbl
+ -190
+ quotedblleft
+ -160
+ quotedblright
+ -200
+ quoteleft
+ -155
+ quoteright
+ -155
+ quotesingle
+ -145
+ registered
+ -130
+ slash
+ 100
+ sterling
+ 10
+ trademark
+ -165
+ underscore
+ 50
+ yen
+ -45
+
+ bar
+
+ backslash
+ 50
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ public.kern2.j
+ 35
+ slash
+ 50
+ sterling
+ -10
+
+ braceleft
+
+ ampersand
+ -35
+ asciicircum
+ -35
+ asciitilde
+ -40
+ asterisk
+ -35
+ at
+ -30
+ bar
+ -30
+ braceleft
+ -60
+ braceright
+ -65
+ bracketleft
+ -30
+ bracketright
+ -30
+ bullet
+ -30
+ cent
+ -30
+ colon
+ -30
+ comma
+ -35
+ copyright
+ -30
+ degree
+ -35
+ divide
+ -30
+ dollar
+ -50
+ ellipsis
+ -35
+ emdash
+ -30
+ endash
+ -30
+ equal
+ -30
+ euro
+ -95
+ greater
+ -30
+ guillemetright
+ -15
+ guilsinglright
+ -15
+ hyphen
+ -30
+ less
+ -30
+ minus
+ -30
+ multiply
+ -45
+ numbersign
+ -55
+ paragraph
+ -30
+ parenleft
+ -30
+ parenright
+ -40
+ percent
+ -30
+ periodcentered
+ -30
+ perthousand
+ -30
+ plus
+ -30
+ public.kern2.A
+ -35
+ public.kern2.B
+ -30
+ public.kern2.C
+ -30
+ public.kern2.D
+ -30
+ public.kern2.E
+ -30
+ public.kern2.Eth
+ -30
+ public.kern2.F
+ -30
+ public.kern2.G
+ -30
+ public.kern2.H
+ -30
+ public.kern2.I
+ -30
+ public.kern2.K
+ -30
+ public.kern2.L
+ -30
+ public.kern2.Lslash
+ -30
+ public.kern2.M
+ -30
+ public.kern2.N
+ -30
+ public.kern2.O
+ -30
+ public.kern2.Oslash
+ -35
+ public.kern2.P
+ -30
+ public.kern2.Q
+ -30
+ public.kern2.R
+ -30
+ public.kern2.S
+ -30
+ public.kern2.T
+ -30
+ public.kern2.Thorn
+ -30
+ public.kern2.U
+ -30
+ public.kern2.V
+ -50
+ public.kern2.W
+ -50
+ public.kern2.X
+ -35
+ public.kern2.Y
+ -50
+ public.kern2.Z
+ -30
+ public.kern2.a
+ -35
+ public.kern2.a.alt
+ -30
+ public.kern2.b
+ -30
+ public.kern2.c
+ -30
+ public.kern2.d
+ -30
+ public.kern2.dcaron
+ -30
+ public.kern2.dcroat
+ -30
+ public.kern2.e
+ -30
+ public.kern2.eth
+ -35
+ public.kern2.f
+ -30
+ public.kern2.g
+ -30
+ public.kern2.germandbls
+ -30
+ public.kern2.h
+ -30
+ public.kern2.i
+ -30
+ public.kern2.l
+ -30
+ public.kern2.lcaron
+ -30
+ public.kern2.lslash
+ -30
+ public.kern2.m
+ -30
+ public.kern2.n
+ -30
+ public.kern2.o
+ -30
+ public.kern2.oslash
+ -30
+ public.kern2.p
+ -30
+ public.kern2.q
+ -30
+ public.kern2.r
+ -30
+ public.kern2.s
+ -40
+ public.kern2.t
+ -30
+ public.kern2.tcaron
+ -30
+ public.kern2.thorn
+ -30
+ public.kern2.u
+ -30
+ public.kern2.v
+ -35
+ public.kern2.w
+ -35
+ public.kern2.x
+ -35
+ public.kern2.y
+ -35
+ public.kern2.z
+ -30
+ question
+ -40
+ questiondown
+ -35
+ quotedbl
+ -40
+ quotedblbase
+ -35
+ quotedblleft
+ -30
+ quotedblright
+ -40
+ quoteleft
+ -30
+ quoteright
+ -40
+ quotesinglbase
+ -35
+ quotesingle
+ -40
+ registered
+ -30
+ semicolon
+ -35
+ slash
+ 0
+ sterling
+ -45
+ trademark
+ -30
+ underscore
+ -35
+ yen
+ -50
+
+ braceright
+
+ ampersand
+ -25
+ asciicircum
+ -75
+ asciitilde
+ -35
+ asterisk
+ -65
+ at
+ -25
+ backslash
+ -90
+ bar
+ -25
+ braceleft
+ -55
+ braceright
+ -60
+ bracketleft
+ -25
+ bracketright
+ -25
+ bullet
+ -25
+ cent
+ -25
+ colon
+ -35
+ comma
+ -35
+ copyright
+ -25
+ degree
+ -70
+ divide
+ -25
+ dollar
+ -75
+ ellipsis
+ -35
+ emdash
+ -25
+ endash
+ -25
+ equal
+ -25
+ euro
+ -90
+ greater
+ -25
+ guillemetright
+ -50
+ guilsinglright
+ -50
+ hyphen
+ -25
+ less
+ -25
+ minus
+ -25
+ multiply
+ -45
+ numbersign
+ -60
+ paragraph
+ -50
+ parenleft
+ -25
+ parenright
+ -75
+ percent
+ -70
+ periodcentered
+ -25
+ perthousand
+ -70
+ plus
+ -25
+ public.kern2.A
+ -55
+ public.kern2.B
+ -25
+ public.kern2.C
+ -25
+ public.kern2.D
+ -25
+ public.kern2.E
+ -25
+ public.kern2.Eth
+ -25
+ public.kern2.F
+ -25
+ public.kern2.G
+ -25
+ public.kern2.H
+ -25
+ public.kern2.I
+ -25
+ public.kern2.J
+ -40
+ public.kern2.K
+ -25
+ public.kern2.L
+ -25
+ public.kern2.Lslash
+ -25
+ public.kern2.M
+ -25
+ public.kern2.N
+ -25
+ public.kern2.O
+ -25
+ public.kern2.Oslash
+ -30
+ public.kern2.P
+ -25
+ public.kern2.Q
+ -25
+ public.kern2.R
+ -25
+ public.kern2.S
+ -50
+ public.kern2.T
+ -70
+ public.kern2.Thorn
+ -25
+ public.kern2.U
+ -25
+ public.kern2.V
+ -80
+ public.kern2.W
+ -65
+ public.kern2.X
+ -65
+ public.kern2.Y
+ -85
+ public.kern2.Z
+ -25
+ public.kern2.a
+ -25
+ public.kern2.a.alt
+ -25
+ public.kern2.b
+ -25
+ public.kern2.c
+ -25
+ public.kern2.d
+ -25
+ public.kern2.dcaron
+ -25
+ public.kern2.dcroat
+ -25
+ public.kern2.e
+ -25
+ public.kern2.eth
+ -25
+ public.kern2.f
+ -25
+ public.kern2.g
+ -25
+ public.kern2.germandbls
+ -25
+ public.kern2.h
+ -25
+ public.kern2.i
+ -25
+ public.kern2.j
+ -25
+ public.kern2.l
+ -25
+ public.kern2.lcaron
+ -25
+ public.kern2.lslash
+ -25
+ public.kern2.m
+ -25
+ public.kern2.n
+ -25
+ public.kern2.o
+ -25
+ public.kern2.oslash
+ -25
+ public.kern2.p
+ -25
+ public.kern2.q
+ -25
+ public.kern2.r
+ -25
+ public.kern2.s
+ -45
+ public.kern2.t
+ -25
+ public.kern2.tcaron
+ -25
+ public.kern2.thorn
+ -25
+ public.kern2.u
+ -25
+ public.kern2.v
+ -40
+ public.kern2.w
+ -45
+ public.kern2.x
+ -55
+ public.kern2.y
+ -55
+ public.kern2.z
+ -25
+ question
+ -90
+ questiondown
+ -70
+ quotedbl
+ -75
+ quotedblbase
+ -35
+ quotedblleft
+ -55
+ quotedblright
+ -75
+ quoteleft
+ -55
+ quoteright
+ -75
+ quotesinglbase
+ -35
+ quotesingle
+ -75
+ registered
+ -35
+ semicolon
+ -35
+ slash
+ -35
+ sterling
+ -65
+ trademark
+ -70
+ underscore
+ -70
+ yen
+ -85
+
+ bracketleft
+
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ public.kern2.j
+ 50
+ slash
+ 50
+ sterling
+ -10
+
+ bracketright
+
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ public.kern2.j
+ 50
+ slash
+ 50
+ sterling
+ -10
+
+ bullet
+
+ ampersand
+ -10
+ asciicircum
+ -45
+ asterisk
+ -40
+ backslash
+ -115
+ braceleft
+ -25
+ braceright
+ -35
+ colon
+ -25
+ comma
+ -60
+ degree
+ -85
+ dollar
+ -60
+ ellipsis
+ -60
+ euro
+ -60
+ guillemetleft
+ 30
+ guillemetright
+ -30
+ guilsinglleft
+ 30
+ guilsinglright
+ -30
+ multiply
+ -25
+ numbersign
+ -65
+ paragraph
+ -35
+ parenright
+ -125
+ percent
+ -60
+ perthousand
+ -60
+ public.kern2.A
+ -45
+ public.kern2.J
+ -120
+ public.kern2.S
+ -35
+ public.kern2.T
+ -65
+ public.kern2.V
+ -60
+ public.kern2.W
+ -45
+ public.kern2.X
+ -60
+ public.kern2.Y
+ -65
+ public.kern2.a
+ -30
+ public.kern2.s
+ -20
+ public.kern2.v
+ -20
+ public.kern2.w
+ -25
+ public.kern2.x
+ -35
+ public.kern2.y
+ -40
+ question
+ -140
+ questiondown
+ -105
+ quotedbl
+ -70
+ quotedblbase
+ -60
+ quotedblleft
+ -40
+ quotedblright
+ -85
+ quoteleft
+ -40
+ quoteright
+ -85
+ quotesinglbase
+ -60
+ quotesingle
+ -70
+ registered
+ -20
+ semicolon
+ -25
+ slash
+ -85
+ sterling
+ -35
+ trademark
+ -75
+ underscore
+ -190
+ yen
+ -65
+
+ cent
+
+ backslash
+ -65
+ braceleft
+ -25
+ braceright
+ -30
+ degree
+ -15
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ parenright
+ -70
+ public.kern2.A
+ -10
+ public.kern2.J
+ 30
+ public.kern2.V
+ -40
+ public.kern2.W
+ -25
+ public.kern2.X
+ -15
+ public.kern2.Y
+ -40
+ public.kern2.s
+ -10
+ public.kern2.x
+ -10
+ public.kern2.y
+ -10
+ question
+ -85
+ quotedbl
+ -30
+ quotedblright
+ -55
+ quoteright
+ -55
+ quotesingle
+ -30
+ sterling
+ -10
+ underscore
+ -85
+ yen
+ -40
+
+ colon
+
+ ampersand
+ -10
+ asciitilde
+ -30
+ at
+ -20
+ backslash
+ -65
+ braceleft
+ -35
+ braceright
+ -30
+ bullet
+ -25
+ cent
+ -25
+ copyright
+ -20
+ degree
+ -20
+ dollar
+ -20
+ euro
+ -60
+ guillemetleft
+ -40
+ guillemetright
+ 15
+ guilsinglleft
+ -40
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ parenleft
+ -15
+ parenright
+ -65
+ percent
+ -10
+ periodcentered
+ -40
+ perthousand
+ -10
+ public.kern2.A
+ -15
+ public.kern2.J
+ 25
+ public.kern2.Oslash
+ -10
+ public.kern2.V
+ -40
+ public.kern2.W
+ -30
+ public.kern2.X
+ -20
+ public.kern2.Y
+ -45
+ public.kern2.a.alt
+ -20
+ public.kern2.c
+ -30
+ public.kern2.d
+ -20
+ public.kern2.dcaron
+ -20
+ public.kern2.dcroat
+ -20
+ public.kern2.e
+ -25
+ public.kern2.eth
+ -25
+ public.kern2.g
+ -25
+ public.kern2.o
+ -30
+ public.kern2.oslash
+ -25
+ public.kern2.q
+ -20
+ public.kern2.s
+ -15
+ public.kern2.v
+ -10
+ public.kern2.w
+ -10
+ public.kern2.x
+ -15
+ public.kern2.y
+ -15
+ question
+ -85
+ questiondown
+ -10
+ quotedbl
+ -30
+ quotedblright
+ -40
+ quoteright
+ -40
+ quotesingle
+ -30
+ sterling
+ -10
+ underscore
+ -55
+ yen
+ -45
+
+ comma
+
+ ampersand
+ -15
+ asciicircum
+ -155
+ asciitilde
+ -155
+ asterisk
+ -155
+ at
+ -25
+ backslash
+ -155
+ braceleft
+ -45
+ braceright
+ -30
+ bullet
+ -70
+ cent
+ -35
+ copyright
+ -35
+ degree
+ -155
+ divide
+ -50
+ dollar
+ -15
+ emdash
+ -15
+ endash
+ -15
+ euro
+ -105
+ guillemetleft
+ -50
+ guillemetright
+ 10
+ guilsinglleft
+ -50
+ guilsinglright
+ 10
+ hyphen
+ -15
+ less
+ -80
+ minus
+ -50
+ multiply
+ -100
+ numbersign
+ -25
+ paragraph
+ -155
+ parenleft
+ -25
+ parenright
+ -25
+ percent
+ -90
+ periodcentered
+ -65
+ perthousand
+ -100
+ plus
+ -50
+ public.kern2.A
+ -10
+ public.kern2.C
+ -70
+ public.kern2.G
+ -70
+ public.kern2.J
+ 30
+ public.kern2.O
+ -70
+ public.kern2.Oslash
+ -10
+ public.kern2.Q
+ -65
+ public.kern2.T
+ -80
+ public.kern2.U
+ -45
+ public.kern2.V
+ -100
+ public.kern2.W
+ -70
+ public.kern2.X
+ -10
+ public.kern2.Y
+ -80
+ public.kern2.a
+ -10
+ public.kern2.a.alt
+ -30
+ public.kern2.c
+ -40
+ public.kern2.d
+ -30
+ public.kern2.dcaron
+ -30
+ public.kern2.dcroat
+ -30
+ public.kern2.e
+ -35
+ public.kern2.eth
+ -30
+ public.kern2.f
+ -40
+ public.kern2.g
+ -45
+ public.kern2.j
+ 15
+ public.kern2.o
+ -40
+ public.kern2.oslash
+ -10
+ public.kern2.q
+ -30
+ public.kern2.t
+ -45
+ public.kern2.tcaron
+ -45
+ public.kern2.u
+ -15
+ public.kern2.v
+ -45
+ public.kern2.w
+ -50
+ public.kern2.x
+ -10
+ public.kern2.y
+ -85
+ question
+ -90
+ quotedbl
+ -155
+ quotedblleft
+ -155
+ quotedblright
+ -155
+ quoteleft
+ -155
+ quoteright
+ -155
+ quotesingle
+ -145
+ registered
+ -145
+ slash
+ 15
+ sterling
+ -10
+ trademark
+ -155
+ underscore
+ -15
+ yen
+ -65
+
+ copyright
+
+ asciicircum
+ -25
+ asciitilde
+ -10
+ asterisk
+ -25
+ backslash
+ -105
+ braceleft
+ -25
+ braceright
+ -30
+ colon
+ -20
+ comma
+ -25
+ degree
+ -55
+ dollar
+ -55
+ ellipsis
+ -25
+ euro
+ -60
+ guillemetleft
+ 35
+ guilsinglleft
+ 35
+ multiply
+ -20
+ numbersign
+ -50
+ paragraph
+ -25
+ parenright
+ -105
+ percent
+ -40
+ perthousand
+ -40
+ public.kern2.A
+ -40
+ public.kern2.J
+ -25
+ public.kern2.S
+ -25
+ public.kern2.T
+ -30
+ public.kern2.V
+ -60
+ public.kern2.W
+ -45
+ public.kern2.X
+ -50
+ public.kern2.Y
+ -65
+ public.kern2.a
+ -15
+ public.kern2.s
+ -20
+ public.kern2.v
+ -20
+ public.kern2.w
+ -25
+ public.kern2.x
+ -35
+ public.kern2.y
+ -40
+ question
+ -110
+ questiondown
+ -50
+ quotedbl
+ -65
+ quotedblbase
+ -25
+ quotedblleft
+ -30
+ quotedblright
+ -70
+ quoteleft
+ -30
+ quoteright
+ -70
+ quotesinglbase
+ -25
+ quotesingle
+ -65
+ registered
+ -15
+ semicolon
+ -20
+ slash
+ -55
+ sterling
+ -35
+ trademark
+ -35
+ underscore
+ -115
+ yen
+ -65
+
+ degree
+
+ ampersand
+ -95
+ asciicircum
+ -40
+ asciitilde
+ -80
+ at
+ -65
+ backslash
+ -10
+ braceleft
+ -70
+ braceright
+ -35
+ bullet
+ -85
+ cent
+ -85
+ colon
+ -20
+ comma
+ -155
+ copyright
+ -55
+ divide
+ -20
+ dollar
+ -30
+ ellipsis
+ -210
+ emdash
+ -55
+ endash
+ -55
+ euro
+ -70
+ guillemetleft
+ -135
+ guillemetright
+ -25
+ guilsinglleft
+ -135
+ guilsinglright
+ -25
+ hyphen
+ -55
+ less
+ -20
+ minus
+ -20
+ multiply
+ -50
+ numbersign
+ -120
+ parenleft
+ -50
+ periodcentered
+ -120
+ plus
+ -20
+ public.kern2.A
+ -85
+ public.kern2.C
+ -35
+ public.kern2.G
+ -35
+ public.kern2.J
+ -210
+ public.kern2.O
+ -35
+ public.kern2.Oslash
+ -35
+ public.kern2.Q
+ -35
+ public.kern2.V
+ -20
+ public.kern2.W
+ -15
+ public.kern2.X
+ -25
+ public.kern2.Y
+ -20
+ public.kern2.a
+ -45
+ public.kern2.a.alt
+ -75
+ public.kern2.c
+ -95
+ public.kern2.d
+ -75
+ public.kern2.dcaron
+ -75
+ public.kern2.dcroat
+ -75
+ public.kern2.e
+ -85
+ public.kern2.eth
+ -90
+ public.kern2.g
+ -70
+ public.kern2.o
+ -95
+ public.kern2.oslash
+ -90
+ public.kern2.q
+ -75
+ public.kern2.s
+ -65
+ public.kern2.x
+ -15
+ question
+ -10
+ questiondown
+ -135
+ quotedblbase
+ -210
+ quotesinglbase
+ -155
+ registered
+ -15
+ semicolon
+ -20
+ slash
+ -185
+ sterling
+ -115
+ underscore
+ -210
+ yen
+ -20
+
+ divide
+
+ backslash
+ -70
+ braceleft
+ -25
+ braceright
+ -30
+ comma
+ -40
+ degree
+ -20
+ dollar
+ -30
+ ellipsis
+ -40
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -45
+ parenright
+ -85
+ percent
+ -10
+ perthousand
+ -10
+ public.kern2.A
+ -35
+ public.kern2.J
+ -115
+ public.kern2.V
+ -40
+ public.kern2.W
+ -30
+ public.kern2.X
+ -45
+ public.kern2.Y
+ -40
+ public.kern2.a
+ -10
+ public.kern2.s
+ -20
+ public.kern2.w
+ -10
+ public.kern2.x
+ -20
+ public.kern2.y
+ -15
+ question
+ -125
+ questiondown
+ -100
+ quotedbl
+ -30
+ quotedblbase
+ -40
+ quotedblright
+ -55
+ quoteright
+ -55
+ quotesinglbase
+ -40
+ quotesingle
+ -30
+ slash
+ -65
+ sterling
+ -35
+ underscore
+ -295
+ yen
+ -45
+
+ dollar
+
+ asciicircum
+ -120
+ asciitilde
+ -25
+ asterisk
+ -75
+ backslash
+ -35
+ braceleft
+ -30
+ braceright
+ -35
+ colon
+ -15
+ comma
+ -15
+ degree
+ -75
+ dollar
+ -65
+ ellipsis
+ -15
+ euro
+ -60
+ guillemetleft
+ 30
+ guillemetright
+ -15
+ guilsinglleft
+ 30
+ guilsinglright
+ -15
+ multiply
+ -20
+ numbersign
+ -40
+ paragraph
+ -70
+ parenright
+ -105
+ percent
+ -90
+ perthousand
+ -90
+ public.kern2.A
+ -35
+ public.kern2.C
+ -15
+ public.kern2.G
+ -15
+ public.kern2.J
+ -15
+ public.kern2.O
+ -15
+ public.kern2.Oslash
+ -15
+ public.kern2.Q
+ -15
+ public.kern2.S
+ -30
+ public.kern2.T
+ -50
+ public.kern2.V
+ -55
+ public.kern2.W
+ -50
+ public.kern2.X
+ -40
+ public.kern2.Y
+ -55
+ public.kern2.f
+ -20
+ public.kern2.s
+ -35
+ public.kern2.t
+ -20
+ public.kern2.tcaron
+ -20
+ public.kern2.v
+ -30
+ public.kern2.w
+ -35
+ public.kern2.x
+ -35
+ public.kern2.y
+ -55
+ question
+ -65
+ questiondown
+ -40
+ quotedbl
+ -55
+ quotedblbase
+ -15
+ quotedblleft
+ -80
+ quotedblright
+ -60
+ quoteleft
+ -80
+ quoteright
+ -60
+ quotesinglbase
+ -15
+ quotesingle
+ -55
+ registered
+ -40
+ semicolon
+ -15
+ slash
+ -45
+ sterling
+ -35
+ trademark
+ -95
+ underscore
+ -135
+ yen
+ -55
+
+ ellipsis
+
+ ampersand
+ -10
+ asciicircum
+ -250
+ asciitilde
+ -245
+ asterisk
+ -215
+ at
+ -20
+ backslash
+ -200
+ braceleft
+ -35
+ braceright
+ -30
+ bullet
+ -60
+ cent
+ -25
+ copyright
+ -25
+ degree
+ -210
+ divide
+ -40
+ dollar
+ -20
+ euro
+ -95
+ guillemetleft
+ -40
+ guillemetright
+ 10
+ guilsinglleft
+ -40
+ guilsinglright
+ 10
+ less
+ -70
+ minus
+ -40
+ multiply
+ -90
+ numbersign
+ -20
+ paragraph
+ -245
+ parenleft
+ -15
+ parenright
+ -70
+ percent
+ -115
+ periodcentered
+ -55
+ perthousand
+ -125
+ plus
+ -40
+ public.kern2.A
+ -15
+ public.kern2.C
+ -60
+ public.kern2.G
+ -60
+ public.kern2.J
+ 25
+ public.kern2.O
+ -60
+ public.kern2.Oslash
+ -40
+ public.kern2.Q
+ -55
+ public.kern2.T
+ -80
+ public.kern2.U
+ -35
+ public.kern2.V
+ -95
+ public.kern2.W
+ -65
+ public.kern2.X
+ -20
+ public.kern2.Y
+ -80
+ public.kern2.a.alt
+ -20
+ public.kern2.c
+ -30
+ public.kern2.d
+ -20
+ public.kern2.dcaron
+ -20
+ public.kern2.dcroat
+ -20
+ public.kern2.e
+ -25
+ public.kern2.eth
+ -25
+ public.kern2.f
+ -40
+ public.kern2.g
+ -35
+ public.kern2.o
+ -30
+ public.kern2.oslash
+ -30
+ public.kern2.q
+ -20
+ public.kern2.s
+ -15
+ public.kern2.t
+ -40
+ public.kern2.tcaron
+ -40
+ public.kern2.u
+ -10
+ public.kern2.v
+ -40
+ public.kern2.w
+ -45
+ public.kern2.x
+ -15
+ public.kern2.y
+ -80
+ question
+ -85
+ questiondown
+ -10
+ quotedbl
+ -285
+ quotedblleft
+ -305
+ quotedblright
+ -305
+ quoteleft
+ -155
+ quoteright
+ -155
+ quotesingle
+ -145
+ registered
+ -135
+ slash
+ -10
+ sterling
+ -10
+ trademark
+ -385
+ underscore
+ -60
+ yen
+ -65
+
+ emdash
+
+ asciicircum
+ -250
+ asterisk
+ -10
+ backslash
+ -90
+ braceleft
+ -25
+ braceright
+ -30
+ degree
+ -55
+ dollar
+ -35
+ euro
+ -60
+ guillemetleft
+ 35
+ guilsinglleft
+ 35
+ multiply
+ -20
+ numbersign
+ -35
+ paragraph
+ -10
+ parenright
+ -110
+ percent
+ -30
+ perthousand
+ -30
+ public.kern2.A
+ -25
+ public.kern2.J
+ -55
+ public.kern2.S
+ -10
+ public.kern2.T
+ -80
+ public.kern2.V
+ -50
+ public.kern2.W
+ -35
+ public.kern2.X
+ -35
+ public.kern2.Y
+ -50
+ public.kern2.s
+ -20
+ public.kern2.v
+ -10
+ public.kern2.w
+ -15
+ public.kern2.x
+ -25
+ public.kern2.y
+ -25
+ question
+ -90
+ questiondown
+ -40
+ quotedbl
+ -45
+ quotedblleft
+ -15
+ quotedblright
+ -55
+ quoteleft
+ -15
+ quoteright
+ -55
+ quotesingle
+ -45
+ slash
+ -40
+ sterling
+ -35
+ trademark
+ -85
+ underscore
+ -330
+ yen
+ -50
+
+ endash
+
+ asciicircum
+ -250
+ asterisk
+ -10
+ backslash
+ -90
+ braceleft
+ -25
+ braceright
+ -30
+ degree
+ -55
+ dollar
+ -35
+ euro
+ -60
+ guillemetleft
+ 35
+ guilsinglleft
+ 35
+ multiply
+ -20
+ numbersign
+ -35
+ paragraph
+ -10
+ parenright
+ -110
+ percent
+ -30
+ perthousand
+ -30
+ public.kern2.A
+ -25
+ public.kern2.J
+ -55
+ public.kern2.S
+ -10
+ public.kern2.T
+ -80
+ public.kern2.V
+ -50
+ public.kern2.W
+ -35
+ public.kern2.X
+ -35
+ public.kern2.Y
+ -50
+ public.kern2.s
+ -20
+ public.kern2.v
+ -10
+ public.kern2.w
+ -15
+ public.kern2.x
+ -25
+ public.kern2.y
+ -25
+ question
+ -90
+ questiondown
+ -40
+ quotedbl
+ -45
+ quotedblleft
+ -15
+ quotedblright
+ -55
+ quoteleft
+ -15
+ quoteright
+ -55
+ quotesingle
+ -45
+ slash
+ -40
+ sterling
+ -35
+ trademark
+ -85
+ underscore
+ -285
+ yen
+ -50
+
+ equal
+
+ backslash
+ -15
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -25
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.A
+ -15
+ public.kern2.V
+ -20
+ public.kern2.W
+ -10
+ public.kern2.X
+ -20
+ public.kern2.Y
+ -20
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ question
+ -35
+ questiondown
+ -15
+ slash
+ -20
+ sterling
+ -10
+ underscore
+ -330
+ yen
+ -20
+
+ euro
+
+ backslash
+ -10
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -25
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.A
+ -15
+ public.kern2.J
+ 0
+ public.kern2.V
+ -15
+ public.kern2.W
+ -10
+ public.kern2.X
+ -20
+ public.kern2.Y
+ -15
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ question
+ -20
+ questiondown
+ -15
+ slash
+ -20
+ sterling
+ -10
+ underscore
+ -145
+ yen
+ -20
+
+ greater
+
+ backslash
+ -70
+ braceleft
+ -25
+ braceright
+ -30
+ comma
+ -70
+ degree
+ -20
+ dollar
+ -30
+ ellipsis
+ -70
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -55
+ parenright
+ -85
+ percent
+ -10
+ perthousand
+ -10
+ public.kern2.A
+ -40
+ public.kern2.J
+ -145
+ public.kern2.V
+ -40
+ public.kern2.W
+ -30
+ public.kern2.X
+ -50
+ public.kern2.Y
+ -40
+ public.kern2.a
+ -25
+ public.kern2.s
+ -20
+ public.kern2.w
+ -10
+ public.kern2.x
+ -20
+ public.kern2.y
+ -15
+ question
+ -140
+ questiondown
+ -115
+ quotedbl
+ -30
+ quotedblbase
+ -70
+ quotedblright
+ -55
+ quoteright
+ -55
+ quotesinglbase
+ -70
+ quotesingle
+ -30
+ slash
+ -80
+ sterling
+ -35
+ underscore
+ -300
+ yen
+ -45
+
+ guillemetleft
+
+ asciicircum
+ 15
+ asciitilde
+ -25
+ asterisk
+ 10
+ at
+ -15
+ backslash
+ -65
+ bar
+ 15
+ braceleft
+ -50
+ braceright
+ -15
+ bracketleft
+ 15
+ bracketright
+ 15
+ bullet
+ -30
+ cent
+ -30
+ colon
+ 15
+ comma
+ 10
+ degree
+ -25
+ divide
+ 15
+ dollar
+ -15
+ ellipsis
+ 10
+ equal
+ 15
+ euro
+ -45
+ greater
+ 15
+ guillemetleft
+ -75
+ guillemetright
+ 30
+ guilsinglleft
+ -75
+ guilsinglright
+ 30
+ less
+ 15
+ minus
+ 15
+ numbersign
+ -10
+ paragraph
+ 10
+ parenright
+ -80
+ periodcentered
+ -55
+ plus
+ 15
+ public.kern2.B
+ 15
+ public.kern2.C
+ 0
+ public.kern2.D
+ 15
+ public.kern2.E
+ 15
+ public.kern2.Eth
+ 15
+ public.kern2.F
+ 15
+ public.kern2.G
+ 0
+ public.kern2.H
+ 15
+ public.kern2.I
+ 15
+ public.kern2.J
+ 20
+ public.kern2.K
+ 15
+ public.kern2.L
+ 15
+ public.kern2.Lslash
+ 15
+ public.kern2.M
+ 15
+ public.kern2.N
+ 15
+ public.kern2.O
+ 0
+ public.kern2.P
+ 15
+ public.kern2.Q
+ 0
+ public.kern2.R
+ 15
+ public.kern2.S
+ 10
+ public.kern2.T
+ -65
+ public.kern2.Thorn
+ 15
+ public.kern2.U
+ 15
+ public.kern2.V
+ -30
+ public.kern2.W
+ -15
+ public.kern2.X
+ -10
+ public.kern2.Y
+ -30
+ public.kern2.Z
+ 15
+ public.kern2.a.alt
+ -20
+ public.kern2.b
+ 15
+ public.kern2.c
+ -40
+ public.kern2.d
+ -20
+ public.kern2.dcaron
+ -25
+ public.kern2.dcroat
+ -25
+ public.kern2.e
+ -30
+ public.kern2.eth
+ -30
+ public.kern2.f
+ 15
+ public.kern2.g
+ -15
+ public.kern2.germandbls
+ 15
+ public.kern2.h
+ 15
+ public.kern2.i
+ 15
+ public.kern2.j
+ 15
+ public.kern2.l
+ 15
+ public.kern2.lcaron
+ 15
+ public.kern2.lslash
+ 15
+ public.kern2.m
+ 15
+ public.kern2.n
+ 15
+ public.kern2.o
+ -35
+ public.kern2.oslash
+ -35
+ public.kern2.p
+ 15
+ public.kern2.q
+ -20
+ public.kern2.r
+ 15
+ public.kern2.s
+ -15
+ public.kern2.t
+ 15
+ public.kern2.tcaron
+ 15
+ public.kern2.thorn
+ 15
+ public.kern2.u
+ 15
+ public.kern2.z
+ 15
+ question
+ -75
+ quotedbl
+ -25
+ quotedblbase
+ 10
+ quotedblleft
+ 0
+ quotedblright
+ -45
+ quoteleft
+ 0
+ quoteright
+ -45
+ quotesinglbase
+ 10
+ quotesingle
+ -25
+ registered
+ 15
+ semicolon
+ 15
+ trademark
+ -70
+ underscore
+ -315
+ yen
+ -30
+
+ guillemetright
+
+ ampersand
+ 25
+ asciicircum
+ -100
+ asciitilde
+ -15
+ asterisk
+ -90
+ at
+ 35
+ backslash
+ -115
+ bar
+ 35
+ bracketleft
+ 35
+ bracketright
+ 35
+ bullet
+ 30
+ cent
+ 35
+ colon
+ -40
+ comma
+ -40
+ copyright
+ 35
+ degree
+ -135
+ divide
+ 35
+ dollar
+ -95
+ ellipsis
+ -40
+ emdash
+ 35
+ endash
+ 35
+ equal
+ 35
+ euro
+ -25
+ greater
+ 35
+ guillemetleft
+ 70
+ guillemetright
+ -75
+ guilsinglleft
+ 70
+ guilsinglright
+ -75
+ hyphen
+ 35
+ less
+ 35
+ minus
+ 35
+ multiply
+ 15
+ numbersign
+ -25
+ paragraph
+ -70
+ parenleft
+ 35
+ parenright
+ -95
+ percent
+ -105
+ periodcentered
+ 35
+ perthousand
+ -105
+ plus
+ 35
+ public.kern2.A
+ -10
+ public.kern2.B
+ 35
+ public.kern2.C
+ 25
+ public.kern2.D
+ 35
+ public.kern2.E
+ 35
+ public.kern2.Eth
+ 35
+ public.kern2.F
+ 35
+ public.kern2.G
+ 25
+ public.kern2.H
+ 35
+ public.kern2.I
+ 35
+ public.kern2.J
+ -85
+ public.kern2.K
+ 35
+ public.kern2.L
+ 35
+ public.kern2.Lslash
+ 35
+ public.kern2.M
+ 35
+ public.kern2.N
+ 35
+ public.kern2.O
+ 25
+ public.kern2.Oslash
+ 25
+ public.kern2.P
+ 35
+ public.kern2.Q
+ 25
+ public.kern2.R
+ 35
+ public.kern2.S
+ -75
+ public.kern2.T
+ -50
+ public.kern2.Thorn
+ 35
+ public.kern2.U
+ 30
+ public.kern2.V
+ -35
+ public.kern2.W
+ -15
+ public.kern2.X
+ -25
+ public.kern2.Y
+ -40
+ public.kern2.Z
+ 35
+ public.kern2.a.alt
+ 35
+ public.kern2.b
+ 35
+ public.kern2.c
+ 35
+ public.kern2.d
+ 35
+ public.kern2.dcaron
+ 35
+ public.kern2.dcroat
+ 35
+ public.kern2.e
+ 35
+ public.kern2.eth
+ 35
+ public.kern2.g
+ 35
+ public.kern2.germandbls
+ 35
+ public.kern2.h
+ 35
+ public.kern2.i
+ 35
+ public.kern2.j
+ 35
+ public.kern2.l
+ 35
+ public.kern2.lcaron
+ 35
+ public.kern2.lslash
+ 35
+ public.kern2.m
+ 35
+ public.kern2.n
+ 35
+ public.kern2.o
+ 35
+ public.kern2.oslash
+ 35
+ public.kern2.p
+ 35
+ public.kern2.q
+ 35
+ public.kern2.r
+ 35
+ public.kern2.s
+ -10
+ public.kern2.thorn
+ 35
+ public.kern2.u
+ 35
+ public.kern2.v
+ 0
+ public.kern2.x
+ -10
+ public.kern2.y
+ -20
+ public.kern2.z
+ 35
+ question
+ -115
+ questiondown
+ -90
+ quotedbl
+ -115
+ quotedblbase
+ -40
+ quotedblleft
+ -80
+ quotedblright
+ -135
+ quoteleft
+ -80
+ quoteright
+ -135
+ quotesinglbase
+ -40
+ quotesingle
+ -115
+ registered
+ -20
+ semicolon
+ -40
+ slash
+ -50
+ trademark
+ -70
+ underscore
+ -315
+ yen
+ -35
+
+ guilsinglleft
+
+ asciicircum
+ 15
+ asciitilde
+ -25
+ asterisk
+ 10
+ at
+ -15
+ backslash
+ -65
+ bar
+ 15
+ braceleft
+ -50
+ braceright
+ -15
+ bracketleft
+ 15
+ bracketright
+ 15
+ bullet
+ -30
+ cent
+ -30
+ colon
+ 15
+ comma
+ 10
+ degree
+ -25
+ divide
+ 15
+ dollar
+ -15
+ ellipsis
+ 10
+ equal
+ 15
+ euro
+ -45
+ greater
+ 15
+ guillemetleft
+ -75
+ guillemetright
+ 30
+ guilsinglleft
+ -75
+ guilsinglright
+ 30
+ less
+ 15
+ minus
+ 15
+ numbersign
+ -10
+ paragraph
+ 10
+ parenright
+ -80
+ periodcentered
+ -55
+ plus
+ 15
+ public.kern2.B
+ 15
+ public.kern2.C
+ 0
+ public.kern2.D
+ 15
+ public.kern2.E
+ 15
+ public.kern2.Eth
+ 15
+ public.kern2.F
+ 15
+ public.kern2.G
+ 0
+ public.kern2.H
+ 15
+ public.kern2.I
+ 15
+ public.kern2.J
+ 20
+ public.kern2.K
+ 15
+ public.kern2.L
+ 15
+ public.kern2.Lslash
+ 15
+ public.kern2.M
+ 15
+ public.kern2.N
+ 15
+ public.kern2.O
+ 0
+ public.kern2.P
+ 15
+ public.kern2.Q
+ 0
+ public.kern2.R
+ 15
+ public.kern2.S
+ 10
+ public.kern2.T
+ -65
+ public.kern2.Thorn
+ 15
+ public.kern2.U
+ 15
+ public.kern2.V
+ -30
+ public.kern2.W
+ -15
+ public.kern2.X
+ -10
+ public.kern2.Y
+ -30
+ public.kern2.Z
+ 15
+ public.kern2.a.alt
+ -20
+ public.kern2.b
+ 15
+ public.kern2.c
+ -40
+ public.kern2.d
+ -20
+ public.kern2.dcaron
+ -25
+ public.kern2.dcroat
+ -25
+ public.kern2.e
+ -30
+ public.kern2.eth
+ -30
+ public.kern2.f
+ 15
+ public.kern2.g
+ -15
+ public.kern2.germandbls
+ 15
+ public.kern2.h
+ 15
+ public.kern2.i
+ 15
+ public.kern2.j
+ 15
+ public.kern2.l
+ 15
+ public.kern2.lcaron
+ 15
+ public.kern2.lslash
+ 15
+ public.kern2.m
+ 15
+ public.kern2.n
+ 15
+ public.kern2.o
+ -35
+ public.kern2.oslash
+ -35
+ public.kern2.p
+ 15
+ public.kern2.q
+ -20
+ public.kern2.r
+ 15
+ public.kern2.s
+ -15
+ public.kern2.t
+ 15
+ public.kern2.tcaron
+ 15
+ public.kern2.thorn
+ 15
+ public.kern2.u
+ 15
+ public.kern2.z
+ 15
+ question
+ -75
+ quotedbl
+ -25
+ quotedblbase
+ 10
+ quotedblleft
+ 0
+ quotedblright
+ -45
+ quoteleft
+ 0
+ quoteright
+ -45
+ quotesinglbase
+ 10
+ quotesingle
+ -25
+ registered
+ 15
+ semicolon
+ 15
+ trademark
+ -70
+ underscore
+ -185
+ yen
+ -30
+
+ guilsinglright
+
+ ampersand
+ 25
+ asciicircum
+ -100
+ asciitilde
+ -15
+ asterisk
+ -90
+ at
+ 35
+ backslash
+ -115
+ bar
+ 35
+ bracketleft
+ 35
+ bracketright
+ 35
+ bullet
+ 30
+ cent
+ 35
+ colon
+ -40
+ comma
+ -40
+ copyright
+ 35
+ degree
+ -135
+ divide
+ 35
+ dollar
+ -95
+ ellipsis
+ -40
+ emdash
+ 35
+ endash
+ 35
+ equal
+ 35
+ euro
+ -25
+ greater
+ 35
+ guillemetleft
+ 70
+ guillemetright
+ -75
+ guilsinglleft
+ 70
+ guilsinglright
+ -75
+ hyphen
+ 35
+ less
+ 35
+ minus
+ 35
+ multiply
+ 15
+ numbersign
+ -25
+ paragraph
+ -70
+ parenleft
+ 35
+ parenright
+ -95
+ percent
+ -105
+ periodcentered
+ 35
+ perthousand
+ -105
+ plus
+ 35
+ public.kern2.A
+ -10
+ public.kern2.B
+ 35
+ public.kern2.C
+ 25
+ public.kern2.D
+ 35
+ public.kern2.E
+ 35
+ public.kern2.Eth
+ 35
+ public.kern2.F
+ 35
+ public.kern2.G
+ 25
+ public.kern2.H
+ 35
+ public.kern2.I
+ 35
+ public.kern2.J
+ -85
+ public.kern2.K
+ 35
+ public.kern2.L
+ 35
+ public.kern2.Lslash
+ 35
+ public.kern2.M
+ 35
+ public.kern2.N
+ 35
+ public.kern2.O
+ 25
+ public.kern2.Oslash
+ 25
+ public.kern2.P
+ 35
+ public.kern2.Q
+ 25
+ public.kern2.R
+ 35
+ public.kern2.S
+ -75
+ public.kern2.T
+ -50
+ public.kern2.Thorn
+ 35
+ public.kern2.U
+ 30
+ public.kern2.V
+ -35
+ public.kern2.W
+ -15
+ public.kern2.X
+ -25
+ public.kern2.Y
+ -40
+ public.kern2.Z
+ 35
+ public.kern2.a.alt
+ 35
+ public.kern2.b
+ 35
+ public.kern2.c
+ 35
+ public.kern2.d
+ 35
+ public.kern2.dcaron
+ 35
+ public.kern2.dcroat
+ 35
+ public.kern2.e
+ 35
+ public.kern2.eth
+ 35
+ public.kern2.g
+ 35
+ public.kern2.germandbls
+ 35
+ public.kern2.h
+ 35
+ public.kern2.i
+ 35
+ public.kern2.j
+ 35
+ public.kern2.l
+ 35
+ public.kern2.lcaron
+ 35
+ public.kern2.lslash
+ 35
+ public.kern2.m
+ 35
+ public.kern2.n
+ 35
+ public.kern2.o
+ 35
+ public.kern2.oslash
+ 35
+ public.kern2.p
+ 35
+ public.kern2.q
+ 35
+ public.kern2.r
+ 35
+ public.kern2.s
+ -10
+ public.kern2.thorn
+ 35
+ public.kern2.u
+ 35
+ public.kern2.v
+ 0
+ public.kern2.x
+ -10
+ public.kern2.y
+ -20
+ public.kern2.z
+ 35
+ question
+ -115
+ questiondown
+ -90
+ quotedbl
+ -115
+ quotedblbase
+ -40
+ quotedblleft
+ -80
+ quotedblright
+ -135
+ quoteleft
+ -80
+ quoteright
+ -135
+ quotesinglbase
+ -40
+ quotesingle
+ -115
+ registered
+ -20
+ semicolon
+ -40
+ slash
+ -50
+ trademark
+ -70
+ underscore
+ -185
+ yen
+ -35
+
+ hyphen
+
+ asciicircum
+ -180
+ asterisk
+ -10
+ backslash
+ -90
+ braceleft
+ -25
+ braceright
+ -30
+ degree
+ -55
+ dollar
+ -35
+ euro
+ -60
+ guillemetleft
+ 35
+ guilsinglleft
+ 35
+ multiply
+ -20
+ numbersign
+ -35
+ paragraph
+ -10
+ parenright
+ -110
+ percent
+ -30
+ perthousand
+ -30
+ public.kern2.A
+ -25
+ public.kern2.J
+ -55
+ public.kern2.S
+ -10
+ public.kern2.T
+ -80
+ public.kern2.V
+ -50
+ public.kern2.W
+ -35
+ public.kern2.X
+ -35
+ public.kern2.Y
+ -50
+ public.kern2.s
+ -20
+ public.kern2.v
+ -10
+ public.kern2.w
+ -15
+ public.kern2.x
+ -25
+ public.kern2.y
+ -25
+ question
+ -90
+ questiondown
+ -40
+ quotedbl
+ -45
+ quotedblleft
+ -15
+ quotedblright
+ -55
+ quoteleft
+ -15
+ quoteright
+ -55
+ quotesingle
+ -45
+ slash
+ -40
+ sterling
+ -35
+ trademark
+ -85
+ underscore
+ -180
+ yen
+ -50
+
+ less
+
+ backslash
+ 30
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -300
+
+ minus
+
+ backslash
+ -70
+ braceleft
+ -25
+ braceright
+ -30
+ comma
+ -40
+ degree
+ -20
+ dollar
+ -30
+ ellipsis
+ -40
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -45
+ parenright
+ -85
+ percent
+ -10
+ perthousand
+ -10
+ public.kern2.A
+ -35
+ public.kern2.J
+ -115
+ public.kern2.V
+ -40
+ public.kern2.W
+ -30
+ public.kern2.X
+ -45
+ public.kern2.Y
+ -40
+ public.kern2.a
+ -10
+ public.kern2.s
+ -20
+ public.kern2.w
+ -10
+ public.kern2.x
+ -20
+ public.kern2.y
+ -15
+ question
+ -125
+ questiondown
+ -100
+ quotedbl
+ -30
+ quotedblbase
+ -40
+ quotedblright
+ -55
+ quoteright
+ -55
+ quotesinglbase
+ -40
+ quotesingle
+ -30
+ slash
+ -65
+ sterling
+ -35
+ underscore
+ -325
+ yen
+ -45
+
+ multiply
+
+ ampersand
+ -15
+ asciicircum
+ -20
+ asciitilde
+ -55
+ asterisk
+ -20
+ at
+ -10
+ backslash
+ -95
+ bar
+ -10
+ braceleft
+ -35
+ braceright
+ -40
+ bracketleft
+ -10
+ bracketright
+ -10
+ bullet
+ -15
+ cent
+ -10
+ colon
+ -15
+ comma
+ -90
+ copyright
+ -10
+ degree
+ -55
+ divide
+ -10
+ dollar
+ -45
+ ellipsis
+ -90
+ emdash
+ -10
+ endash
+ -10
+ equal
+ -10
+ euro
+ -70
+ greater
+ -10
+ guillemetleft
+ 20
+ guilsinglleft
+ 20
+ hyphen
+ -10
+ less
+ -10
+ minus
+ -10
+ multiply
+ -25
+ numbersign
+ -65
+ paragraph
+ -20
+ parenleft
+ -10
+ parenright
+ -115
+ percent
+ -35
+ periodcentered
+ -15
+ perthousand
+ -35
+ plus
+ -10
+ public.kern2.A
+ -50
+ public.kern2.B
+ -10
+ public.kern2.C
+ -25
+ public.kern2.D
+ -10
+ public.kern2.E
+ -10
+ public.kern2.Eth
+ -10
+ public.kern2.F
+ -10
+ public.kern2.G
+ -25
+ public.kern2.H
+ -10
+ public.kern2.I
+ -10
+ public.kern2.J
+ -160
+ public.kern2.K
+ -10
+ public.kern2.L
+ -10
+ public.kern2.Lslash
+ -10
+ public.kern2.M
+ -10
+ public.kern2.N
+ -10
+ public.kern2.O
+ -25
+ public.kern2.Oslash
+ -25
+ public.kern2.P
+ -10
+ public.kern2.Q
+ -20
+ public.kern2.R
+ -10
+ public.kern2.S
+ -20
+ public.kern2.T
+ -30
+ public.kern2.Thorn
+ -10
+ public.kern2.U
+ -15
+ public.kern2.V
+ -60
+ public.kern2.W
+ -45
+ public.kern2.X
+ -65
+ public.kern2.Y
+ -60
+ public.kern2.Z
+ -10
+ public.kern2.a
+ -40
+ public.kern2.a.alt
+ -10
+ public.kern2.b
+ -10
+ public.kern2.c
+ -10
+ public.kern2.d
+ -10
+ public.kern2.dcaron
+ -10
+ public.kern2.dcroat
+ -10
+ public.kern2.e
+ -10
+ public.kern2.eth
+ -10
+ public.kern2.f
+ -15
+ public.kern2.g
+ -10
+ public.kern2.germandbls
+ -10
+ public.kern2.h
+ -10
+ public.kern2.i
+ -10
+ public.kern2.j
+ -10
+ public.kern2.l
+ -10
+ public.kern2.lcaron
+ -10
+ public.kern2.lslash
+ -10
+ public.kern2.m
+ -10
+ public.kern2.n
+ -10
+ public.kern2.o
+ -10
+ public.kern2.oslash
+ -10
+ public.kern2.p
+ -10
+ public.kern2.q
+ -10
+ public.kern2.r
+ -10
+ public.kern2.s
+ -45
+ public.kern2.t
+ -15
+ public.kern2.tcaron
+ -15
+ public.kern2.thorn
+ -10
+ public.kern2.u
+ -10
+ public.kern2.v
+ -25
+ public.kern2.w
+ -25
+ public.kern2.x
+ -35
+ public.kern2.y
+ -35
+ public.kern2.z
+ -10
+ question
+ -155
+ questiondown
+ -130
+ quotedbl
+ -55
+ quotedblbase
+ -90
+ quotedblleft
+ -25
+ quotedblright
+ -80
+ quoteleft
+ -25
+ quoteright
+ -80
+ quotesinglbase
+ -90
+ quotesingle
+ -55
+ registered
+ -15
+ semicolon
+ -15
+ slash
+ -90
+ sterling
+ -45
+ trademark
+ -40
+ underscore
+ -275
+ yen
+ -65
+
+ numbersign
+
+ ampersand
+ -105
+ asciicircum
+ -65
+ asciitilde
+ -90
+ asterisk
+ -20
+ at
+ -85
+ bar
+ -20
+ braceleft
+ -100
+ braceright
+ -60
+ bracketleft
+ -20
+ bracketright
+ -20
+ bullet
+ -85
+ cent
+ -90
+ colon
+ -55
+ comma
+ -135
+ copyright
+ -80
+ degree
+ -25
+ divide
+ -55
+ dollar
+ -65
+ ellipsis
+ -135
+ emdash
+ -65
+ endash
+ -65
+ equal
+ -20
+ euro
+ -105
+ greater
+ -20
+ guillemetleft
+ -65
+ guillemetright
+ -45
+ guilsinglleft
+ -65
+ guilsinglright
+ -45
+ hyphen
+ -65
+ less
+ -55
+ minus
+ -55
+ multiply
+ -70
+ numbersign
+ -160
+ paragraph
+ -40
+ parenleft
+ -80
+ parenright
+ -25
+ percent
+ -30
+ periodcentered
+ -90
+ perthousand
+ -30
+ plus
+ -55
+ public.kern2.A
+ -115
+ public.kern2.B
+ -20
+ public.kern2.C
+ -70
+ public.kern2.D
+ -20
+ public.kern2.E
+ -20
+ public.kern2.Eth
+ -20
+ public.kern2.F
+ -20
+ public.kern2.G
+ -70
+ public.kern2.H
+ -20
+ public.kern2.I
+ -20
+ public.kern2.J
+ -145
+ public.kern2.K
+ -20
+ public.kern2.L
+ -20
+ public.kern2.Lslash
+ -20
+ public.kern2.M
+ -20
+ public.kern2.N
+ -20
+ public.kern2.O
+ -70
+ public.kern2.Oslash
+ -70
+ public.kern2.P
+ -20
+ public.kern2.Q
+ -70
+ public.kern2.R
+ -20
+ public.kern2.S
+ -40
+ public.kern2.T
+ -20
+ public.kern2.Thorn
+ -20
+ public.kern2.U
+ -20
+ public.kern2.V
+ -30
+ public.kern2.W
+ -30
+ public.kern2.X
+ -30
+ public.kern2.Y
+ -30
+ public.kern2.Z
+ -20
+ public.kern2.a
+ -80
+ public.kern2.a.alt
+ -90
+ public.kern2.b
+ -20
+ public.kern2.c
+ -95
+ public.kern2.d
+ -90
+ public.kern2.dcaron
+ -90
+ public.kern2.dcroat
+ -90
+ public.kern2.e
+ -90
+ public.kern2.eth
+ -90
+ public.kern2.f
+ -40
+ public.kern2.g
+ -85
+ public.kern2.germandbls
+ -30
+ public.kern2.h
+ -20
+ public.kern2.i
+ -40
+ public.kern2.j
+ -40
+ public.kern2.l
+ -20
+ public.kern2.lcaron
+ -20
+ public.kern2.lslash
+ -20
+ public.kern2.m
+ -40
+ public.kern2.n
+ -40
+ public.kern2.o
+ -95
+ public.kern2.oslash
+ -90
+ public.kern2.p
+ -40
+ public.kern2.q
+ -90
+ public.kern2.r
+ -40
+ public.kern2.s
+ -90
+ public.kern2.t
+ -40
+ public.kern2.tcaron
+ -40
+ public.kern2.thorn
+ -20
+ public.kern2.u
+ -40
+ public.kern2.v
+ -40
+ public.kern2.w
+ -40
+ public.kern2.x
+ -50
+ public.kern2.y
+ -40
+ public.kern2.z
+ -40
+ question
+ -40
+ questiondown
+ -155
+ quotedbl
+ -20
+ quotedblbase
+ -135
+ quotedblleft
+ -40
+ quotedblright
+ -20
+ quoteleft
+ -40
+ quoteright
+ -20
+ quotesinglbase
+ -135
+ quotesingle
+ -20
+ registered
+ -50
+ semicolon
+ -55
+ slash
+ -160
+ sterling
+ -105
+ trademark
+ -25
+ underscore
+ -330
+ yen
+ -30
+
+ paragraph
+
+ backslash
+ 45
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ public.kern2.j
+ 35
+ slash
+ 45
+ sterling
+ -10
+
+ parenleft
+
+ ampersand
+ -105
+ asciicircum
+ -75
+ asciitilde
+ -135
+ at
+ -115
+ backslash
+ -20
+ braceleft
+ -75
+ braceright
+ -40
+ bullet
+ -125
+ cent
+ -130
+ colon
+ -65
+ comma
+ -65
+ copyright
+ -105
+ divide
+ -85
+ dollar
+ -45
+ ellipsis
+ -70
+ emdash
+ -110
+ endash
+ -110
+ euro
+ -120
+ guillemetleft
+ -95
+ guillemetright
+ -80
+ guilsinglleft
+ -95
+ guilsinglright
+ -80
+ hyphen
+ -110
+ less
+ -85
+ minus
+ -85
+ multiply
+ -110
+ numbersign
+ -60
+ paragraph
+ -20
+ parenleft
+ -85
+ periodcentered
+ -125
+ plus
+ -85
+ public.kern2.A
+ -30
+ public.kern2.C
+ -80
+ public.kern2.G
+ -80
+ public.kern2.J
+ -45
+ public.kern2.O
+ -80
+ public.kern2.Oslash
+ -30
+ public.kern2.Q
+ -75
+ public.kern2.S
+ -20
+ public.kern2.V
+ -20
+ public.kern2.W
+ -15
+ public.kern2.X
+ -25
+ public.kern2.Y
+ -20
+ public.kern2.a
+ -90
+ public.kern2.a.alt
+ -125
+ public.kern2.c
+ -130
+ public.kern2.d
+ -125
+ public.kern2.dcaron
+ -125
+ public.kern2.dcroat
+ -125
+ public.kern2.e
+ -130
+ public.kern2.eth
+ -125
+ public.kern2.f
+ -40
+ public.kern2.g
+ -100
+ public.kern2.germandbls
+ -10
+ public.kern2.i
+ -30
+ public.kern2.j
+ 30
+ public.kern2.m
+ -40
+ public.kern2.n
+ -30
+ public.kern2.o
+ -130
+ public.kern2.oslash
+ -30
+ public.kern2.q
+ -125
+ public.kern2.r
+ -30
+ public.kern2.s
+ -75
+ public.kern2.t
+ -35
+ public.kern2.tcaron
+ -35
+ public.kern2.u
+ -50
+ public.kern2.v
+ -50
+ public.kern2.w
+ -50
+ public.kern2.x
+ -30
+ public.kern2.y
+ -50
+ public.kern2.z
+ -30
+ question
+ -45
+ questiondown
+ -10
+ quotedblbase
+ -65
+ quotedblleft
+ -20
+ quoteleft
+ -20
+ quotesinglbase
+ -65
+ registered
+ -35
+ semicolon
+ -65
+ slash
+ 35
+ sterling
+ -40
+ yen
+ -20
+
+ parenright
+
+ asciicircum
+ -25
+ asciitilde
+ -10
+ asterisk
+ -25
+ backslash
+ -95
+ braceleft
+ -25
+ braceright
+ -30
+ colon
+ -15
+ comma
+ -20
+ degree
+ -50
+ dollar
+ -50
+ ellipsis
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guilsinglleft
+ 35
+ multiply
+ -20
+ numbersign
+ -45
+ paragraph
+ -25
+ parenright
+ -85
+ percent
+ -40
+ perthousand
+ -40
+ public.kern2.A
+ -35
+ public.kern2.S
+ -25
+ public.kern2.T
+ -25
+ public.kern2.V
+ -60
+ public.kern2.W
+ -45
+ public.kern2.X
+ -45
+ public.kern2.Y
+ -65
+ public.kern2.a
+ -10
+ public.kern2.s
+ -25
+ public.kern2.v
+ -20
+ public.kern2.w
+ -25
+ public.kern2.x
+ -35
+ public.kern2.y
+ -40
+ question
+ -105
+ questiondown
+ -40
+ quotedbl
+ -60
+ quotedblbase
+ -20
+ quotedblleft
+ -30
+ quotedblright
+ -70
+ quoteleft
+ -30
+ quoteright
+ -70
+ quotesinglbase
+ -20
+ quotesingle
+ -60
+ registered
+ -15
+ semicolon
+ -20
+ slash
+ -40
+ sterling
+ -35
+ trademark
+ -30
+ underscore
+ -75
+ yen
+ -65
+
+ percent
+
+ asciicircum
+ -210
+ asciitilde
+ -55
+ asterisk
+ -130
+ backslash
+ -55
+ braceleft
+ -25
+ braceright
+ -30
+ bullet
+ -20
+ cent
+ -10
+ copyright
+ -10
+ degree
+ -125
+ dollar
+ -40
+ euro
+ -65
+ guillemetleft
+ 15
+ guilsinglleft
+ 15
+ less
+ -10
+ multiply
+ -30
+ numbersign
+ -30
+ paragraph
+ -110
+ parenright
+ -100
+ percent
+ -145
+ periodcentered
+ -15
+ perthousand
+ -145
+ public.kern2.A
+ -25
+ public.kern2.C
+ -25
+ public.kern2.G
+ -25
+ public.kern2.O
+ -25
+ public.kern2.Oslash
+ -25
+ public.kern2.Q
+ -25
+ public.kern2.S
+ -10
+ public.kern2.T
+ -80
+ public.kern2.U
+ -15
+ public.kern2.V
+ -85
+ public.kern2.W
+ -60
+ public.kern2.X
+ -30
+ public.kern2.Y
+ -80
+ public.kern2.c
+ -10
+ public.kern2.e
+ -10
+ public.kern2.f
+ -40
+ public.kern2.g
+ -10
+ public.kern2.o
+ -10
+ public.kern2.oslash
+ -10
+ public.kern2.s
+ -35
+ public.kern2.t
+ -35
+ public.kern2.tcaron
+ -35
+ public.kern2.v
+ -35
+ public.kern2.w
+ -40
+ public.kern2.x
+ -25
+ public.kern2.y
+ -65
+ question
+ -90
+ questiondown
+ -25
+ quotedbl
+ -100
+ quotedblleft
+ -125
+ quotedblright
+ -110
+ quoteleft
+ -125
+ quoteright
+ -110
+ quotesingle
+ -100
+ registered
+ -70
+ slash
+ -25
+ sterling
+ -20
+ trademark
+ -115
+ underscore
+ -100
+ yen
+ -65
+
+ periodcentered
+
+ ampersand
+ -10
+ asciicircum
+ -110
+ asciitilde
+ -10
+ asterisk
+ -70
+ backslash
+ -130
+ braceleft
+ -25
+ braceright
+ -35
+ colon
+ -40
+ comma
+ -55
+ degree
+ -120
+ dollar
+ -75
+ ellipsis
+ -55
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ -55
+ guilsinglleft
+ 35
+ guilsinglright
+ -55
+ multiply
+ -20
+ numbersign
+ -60
+ paragraph
+ -50
+ parenright
+ -125
+ percent
+ -85
+ perthousand
+ -85
+ public.kern2.A
+ -45
+ public.kern2.J
+ -125
+ public.kern2.S
+ -55
+ public.kern2.T
+ -80
+ public.kern2.V
+ -65
+ public.kern2.W
+ -45
+ public.kern2.X
+ -60
+ public.kern2.Y
+ -70
+ public.kern2.a
+ -25
+ public.kern2.s
+ -25
+ public.kern2.v
+ -20
+ public.kern2.w
+ -25
+ public.kern2.x
+ -40
+ public.kern2.y
+ -45
+ question
+ -140
+ questiondown
+ -105
+ quotedbl
+ -90
+ quotedblbase
+ -55
+ quotedblleft
+ -60
+ quotedblright
+ -120
+ quoteleft
+ -60
+ quoteright
+ -120
+ quotesinglbase
+ -55
+ quotesingle
+ -90
+ registered
+ -25
+ semicolon
+ -40
+ slash
+ -80
+ sterling
+ -35
+ trademark
+ -85
+ underscore
+ -145
+ yen
+ -65
+
+ perthousand
+
+ asciicircum
+ -250
+ asciitilde
+ -55
+ asterisk
+ -160
+ backslash
+ -165
+ braceleft
+ -25
+ braceright
+ -30
+ bullet
+ -20
+ cent
+ -10
+ copyright
+ -10
+ degree
+ -210
+ dollar
+ -40
+ euro
+ -65
+ guillemetleft
+ 15
+ guilsinglleft
+ 15
+ less
+ -10
+ multiply
+ -30
+ numbersign
+ -30
+ paragraph
+ -110
+ parenright
+ -100
+ percent
+ -145
+ periodcentered
+ -15
+ perthousand
+ -155
+ public.kern2.A
+ -25
+ public.kern2.C
+ -25
+ public.kern2.G
+ -25
+ public.kern2.O
+ -25
+ public.kern2.Oslash
+ -25
+ public.kern2.Q
+ -25
+ public.kern2.S
+ -10
+ public.kern2.T
+ -80
+ public.kern2.U
+ -15
+ public.kern2.V
+ -85
+ public.kern2.W
+ -60
+ public.kern2.X
+ -30
+ public.kern2.Y
+ -80
+ public.kern2.c
+ -10
+ public.kern2.e
+ -10
+ public.kern2.f
+ -40
+ public.kern2.g
+ -10
+ public.kern2.o
+ -10
+ public.kern2.oslash
+ -10
+ public.kern2.s
+ -35
+ public.kern2.t
+ -35
+ public.kern2.tcaron
+ -35
+ public.kern2.v
+ -35
+ public.kern2.w
+ -40
+ public.kern2.x
+ -25
+ public.kern2.y
+ -65
+ question
+ -90
+ questiondown
+ -25
+ quotedbl
+ -185
+ quotedblleft
+ -125
+ quotedblright
+ -210
+ quoteleft
+ -125
+ quoteright
+ -155
+ quotesingle
+ -145
+ registered
+ -70
+ slash
+ -25
+ sterling
+ -20
+ trademark
+ -115
+ underscore
+ -100
+ yen
+ -65
+
+ plus
+
+ backslash
+ -70
+ braceleft
+ -25
+ braceright
+ -30
+ comma
+ -40
+ degree
+ -20
+ dollar
+ -30
+ ellipsis
+ -40
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -45
+ parenright
+ -85
+ percent
+ -10
+ perthousand
+ -10
+ public.kern2.A
+ -35
+ public.kern2.J
+ -115
+ public.kern2.V
+ -40
+ public.kern2.W
+ -30
+ public.kern2.X
+ -45
+ public.kern2.Y
+ -40
+ public.kern2.a
+ -10
+ public.kern2.s
+ -20
+ public.kern2.w
+ -10
+ public.kern2.x
+ -20
+ public.kern2.y
+ -15
+ question
+ -125
+ questiondown
+ -100
+ quotedbl
+ -30
+ quotedblbase
+ -40
+ quotedblright
+ -55
+ quoteright
+ -55
+ quotesinglbase
+ -40
+ quotesingle
+ -30
+ slash
+ -65
+ sterling
+ -35
+ underscore
+ -300
+ yen
+ -45
+
+ public.kern1.A
+
+ ampersand
+ -25
+ asciicircum
+ -75
+ asciitilde
+ -60
+ asterisk
+ -75
+ at
+ -35
+ backslash
+ -85
+ braceleft
+ -55
+ braceright
+ -30
+ bullet
+ -45
+ cent
+ -40
+ colon
+ -15
+ comma
+ -15
+ copyright
+ -40
+ degree
+ -85
+ divide
+ -35
+ dollar
+ -25
+ ellipsis
+ -15
+ emdash
+ -25
+ endash
+ -25
+ equal
+ -15
+ euro
+ -95
+ guillemetleft
+ -10
+ guilsinglleft
+ -10
+ hyphen
+ -25
+ less
+ -40
+ minus
+ -35
+ multiply
+ -60
+ numbersign
+ -25
+ paragraph
+ -75
+ parenleft
+ -35
+ parenright
+ -30
+ percent
+ -80
+ periodcentered
+ -45
+ perthousand
+ -80
+ plus
+ -35
+ public.kern2.C
+ -50
+ public.kern2.G
+ -50
+ public.kern2.J
+ 20
+ public.kern2.O
+ -50
+ public.kern2.Q
+ -50
+ public.kern2.S
+ -10
+ public.kern2.T
+ -75
+ public.kern2.U
+ -45
+ public.kern2.V
+ -115
+ public.kern2.W
+ -80
+ public.kern2.Y
+ -80
+ public.kern2.a
+ -25
+ public.kern2.a.alt
+ -35
+ public.kern2.c
+ -40
+ public.kern2.d
+ -40
+ public.kern2.dcaron
+ -35
+ public.kern2.dcroat
+ -35
+ public.kern2.e
+ -40
+ public.kern2.eth
+ -35
+ public.kern2.f
+ -40
+ public.kern2.g
+ -45
+ public.kern2.o
+ -40
+ public.kern2.q
+ -40
+ public.kern2.s
+ -15
+ public.kern2.t
+ -55
+ public.kern2.tcaron
+ -55
+ public.kern2.u
+ -25
+ public.kern2.v
+ -50
+ public.kern2.w
+ -60
+ public.kern2.y
+ -85
+ question
+ -100
+ quotedbl
+ -95
+ quotedblbase
+ -15
+ quotedblleft
+ -75
+ quotedblright
+ -95
+ quoteleft
+ -75
+ quoteright
+ -95
+ quotesinglbase
+ -15
+ quotesingle
+ -95
+ registered
+ -65
+ semicolon
+ -15
+ slash
+ 20
+ sterling
+ -10
+ trademark
+ -75
+ underscore
+ -330
+ yen
+ -65
+
+ public.kern1.B
+
+ asciicircum
+ -60
+ asciitilde
+ -50
+ asterisk
+ -40
+ backslash
+ -60
+ braceleft
+ -25
+ braceright
+ -30
+ bullet
+ -15
+ colon
+ -10
+ comma
+ -10
+ degree
+ -35
+ dollar
+ -60
+ ellipsis
+ -10
+ euro
+ -60
+ guillemetleft
+ 20
+ guillemetright
+ -10
+ guilsinglleft
+ 20
+ guilsinglright
+ -10
+ less
+ -10
+ multiply
+ -25
+ numbersign
+ -35
+ paragraph
+ -35
+ parenright
+ -45
+ percent
+ -30
+ periodcentered
+ -15
+ perthousand
+ -30
+ public.kern2.A
+ -30
+ public.kern2.C
+ -25
+ public.kern2.G
+ -25
+ public.kern2.J
+ -10
+ public.kern2.O
+ -25
+ public.kern2.Oslash
+ -25
+ public.kern2.Q
+ -25
+ public.kern2.S
+ -30
+ public.kern2.T
+ -30
+ public.kern2.U
+ -10
+ public.kern2.V
+ -60
+ public.kern2.W
+ -50
+ public.kern2.X
+ -35
+ public.kern2.Y
+ -60
+ public.kern2.f
+ -30
+ public.kern2.g
+ -10
+ public.kern2.s
+ -55
+ public.kern2.t
+ -30
+ public.kern2.tcaron
+ -30
+ public.kern2.v
+ -30
+ public.kern2.w
+ -35
+ public.kern2.x
+ -30
+ public.kern2.y
+ -35
+ question
+ -65
+ questiondown
+ -35
+ quotedbl
+ -40
+ quotedblbase
+ -10
+ quotedblleft
+ -35
+ quotedblright
+ -40
+ quoteleft
+ -35
+ quoteright
+ -40
+ quotesinglbase
+ -10
+ quotesingle
+ -40
+ registered
+ -40
+ semicolon
+ -10
+ slash
+ -40
+ sterling
+ -30
+ trademark
+ -30
+ underscore
+ -210
+ yen
+ -60
+
+ public.kern1.C
+
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -25
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.A
+ -15
+ public.kern2.J
+ 10
+ public.kern2.V
+ -15
+ public.kern2.W
+ -10
+ public.kern2.X
+ -20
+ public.kern2.Y
+ -15
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ question
+ -15
+ questiondown
+ -10
+ slash
+ -15
+ sterling
+ -10
+ underscore
+ -180
+ yen
+ -15
+
+ public.kern1.D
+
+ ampersand
+ -15
+ asciicircum
+ -10
+ asciitilde
+ -10
+ asterisk
+ -10
+ backslash
+ -85
+ braceleft
+ -25
+ braceright
+ -35
+ comma
+ -60
+ degree
+ -35
+ dollar
+ -40
+ ellipsis
+ -60
+ euro
+ -60
+ guillemetleft
+ 25
+ guillemetright
+ 0
+ guilsinglleft
+ 25
+ guilsinglright
+ 0
+ multiply
+ -20
+ numbersign
+ -70
+ paragraph
+ -15
+ parenright
+ -80
+ percent
+ -25
+ perthousand
+ -25
+ public.kern2.A
+ -50
+ public.kern2.J
+ -100
+ public.kern2.S
+ -15
+ public.kern2.T
+ -15
+ public.kern2.V
+ -50
+ public.kern2.W
+ -35
+ public.kern2.X
+ -65
+ public.kern2.Y
+ -55
+ public.kern2.a
+ -35
+ public.kern2.s
+ -20
+ public.kern2.v
+ -15
+ public.kern2.w
+ -15
+ public.kern2.x
+ -30
+ public.kern2.y
+ -30
+ question
+ -130
+ questiondown
+ -100
+ quotedbl
+ -45
+ quotedblbase
+ -60
+ quotedblleft
+ -15
+ quotedblright
+ -60
+ quoteleft
+ -15
+ quoteright
+ -60
+ quotesinglbase
+ -60
+ quotesingle
+ -45
+ semicolon
+ -10
+ slash
+ -90
+ sterling
+ -35
+ trademark
+ -15
+ underscore
+ -330
+ yen
+ -55
+
+ public.kern1.E
+
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -330
+
+ public.kern1.F
+
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -30
+ comma
+ -25
+ dollar
+ -25
+ ellipsis
+ -25
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -45
+ public.kern2.A
+ -30
+ public.kern2.J
+ -95
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ questiondown
+ -75
+ quotedblbase
+ -25
+ quotesinglbase
+ -25
+ slash
+ -55
+ sterling
+ -35
+ underscore
+ -325
+
+ public.kern1.G
+
+ backslash
+ -20
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -25
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -25
+ public.kern2.A
+ -20
+ public.kern2.J
+ -15
+ public.kern2.V
+ -20
+ public.kern2.W
+ -15
+ public.kern2.X
+ -25
+ public.kern2.Y
+ -20
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ question
+ -45
+ questiondown
+ -25
+ slash
+ -30
+ sterling
+ -25
+ underscore
+ -210
+ yen
+ -20
+
+ public.kern1.H
+
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -330
+
+ public.kern1.I
+
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -160
+
+ public.kern1.J
+
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -30
+ comma
+ -15
+ dollar
+ -25
+ ellipsis
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -40
+ public.kern2.A
+ -35
+ public.kern2.J
+ -15
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ questiondown
+ -40
+ quotedblbase
+ -15
+ quotesinglbase
+ -15
+ slash
+ -45
+ sterling
+ -35
+ underscore
+ -135
+
+ public.kern1.K
+
+ ampersand
+ -35
+ asciicircum
+ -85
+ asciitilde
+ -70
+ asterisk
+ -25
+ at
+ -45
+ backslash
+ 25
+ braceleft
+ -60
+ braceright
+ -30
+ bullet
+ -55
+ cent
+ -45
+ colon
+ -20
+ comma
+ -15
+ copyright
+ -50
+ degree
+ -30
+ divide
+ -45
+ dollar
+ -30
+ ellipsis
+ -20
+ emdash
+ -30
+ endash
+ -30
+ equal
+ -20
+ euro
+ -100
+ guillemetleft
+ -20
+ guilsinglleft
+ -20
+ hyphen
+ -30
+ less
+ -50
+ minus
+ -45
+ multiply
+ -65
+ numbersign
+ -25
+ paragraph
+ -50
+ parenleft
+ -40
+ parenright
+ -30
+ percent
+ -40
+ periodcentered
+ -55
+ perthousand
+ -40
+ plus
+ -45
+ public.kern2.C
+ -65
+ public.kern2.G
+ -65
+ public.kern2.J
+ 20
+ public.kern2.O
+ -65
+ public.kern2.Q
+ -65
+ public.kern2.S
+ -10
+ public.kern2.a
+ -30
+ public.kern2.a.alt
+ -45
+ public.kern2.c
+ -50
+ public.kern2.d
+ -45
+ public.kern2.dcaron
+ -45
+ public.kern2.dcroat
+ -45
+ public.kern2.e
+ -45
+ public.kern2.eth
+ -45
+ public.kern2.f
+ -40
+ public.kern2.g
+ -50
+ public.kern2.o
+ -50
+ public.kern2.q
+ -45
+ public.kern2.s
+ -15
+ public.kern2.t
+ -45
+ public.kern2.tcaron
+ -45
+ public.kern2.u
+ -35
+ public.kern2.v
+ -50
+ public.kern2.w
+ -55
+ public.kern2.y
+ -55
+ question
+ -20
+ quotedbl
+ -20
+ quotedblbase
+ -15
+ quotedblleft
+ -50
+ quotedblright
+ -20
+ quoteleft
+ -50
+ quoteright
+ -20
+ quotesinglbase
+ -15
+ quotesingle
+ -20
+ registered
+ -65
+ semicolon
+ -15
+ slash
+ 20
+ sterling
+ -10
+ trademark
+ -35
+ underscore
+ -330
+
+ public.kern1.L
+
+ asciicircum
+ -250
+ asciitilde
+ -245
+ asterisk
+ -215
+ backslash
+ -160
+ braceleft
+ -25
+ braceright
+ -30
+ bullet
+ -10
+ degree
+ -210
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 15
+ guillemetright
+ 10
+ guilsinglleft
+ 15
+ guilsinglright
+ 10
+ less
+ -10
+ multiply
+ -30
+ numbersign
+ -20
+ paragraph
+ -235
+ parenright
+ -30
+ percent
+ -80
+ periodcentered
+ -10
+ perthousand
+ -90
+ public.kern2.C
+ -20
+ public.kern2.G
+ -20
+ public.kern2.J
+ 30
+ public.kern2.O
+ -20
+ public.kern2.Q
+ -20
+ public.kern2.T
+ -80
+ public.kern2.V
+ -75
+ public.kern2.W
+ -55
+ public.kern2.Y
+ -80
+ public.kern2.f
+ -40
+ public.kern2.t
+ -35
+ public.kern2.tcaron
+ -35
+ public.kern2.v
+ -30
+ public.kern2.w
+ -30
+ public.kern2.y
+ -60
+ question
+ -85
+ quotedbl
+ -275
+ quotedblleft
+ -275
+ quotedblright
+ -275
+ quoteleft
+ -155
+ quoteright
+ -155
+ quotesingle
+ -145
+ registered
+ -75
+ slash
+ 20
+ sterling
+ -10
+ trademark
+ -275
+ underscore
+ -300
+ yen
+ -65
+
+ public.kern1.Lslash
+
+ asciicircum
+ -250
+ asciitilde
+ -245
+ asterisk
+ -215
+ backslash
+ -165
+ braceleft
+ -25
+ braceright
+ -30
+ bullet
+ -15
+ degree
+ -210
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 0
+ guillemetright
+ 10
+ guilsinglleft
+ 0
+ guilsinglright
+ 10
+ less
+ -35
+ multiply
+ -40
+ numbersign
+ -20
+ paragraph
+ -245
+ parenright
+ -30
+ percent
+ -80
+ periodcentered
+ -10
+ perthousand
+ -90
+ public.kern2.C
+ -25
+ public.kern2.G
+ -20
+ public.kern2.J
+ 30
+ public.kern2.O
+ -25
+ public.kern2.Q
+ -20
+ public.kern2.T
+ -80
+ public.kern2.U
+ -10
+ public.kern2.V
+ -75
+ public.kern2.W
+ -55
+ public.kern2.Y
+ -80
+ public.kern2.f
+ -40
+ public.kern2.t
+ -35
+ public.kern2.tcaron
+ -35
+ public.kern2.v
+ -30
+ public.kern2.w
+ -35
+ public.kern2.y
+ -60
+ question
+ -85
+ quotedbl
+ -255
+ quotedblleft
+ -250
+ quotedblright
+ -250
+ quoteleft
+ -155
+ quoteright
+ -155
+ quotesingle
+ -145
+ registered
+ -85
+ slash
+ 20
+ sterling
+ -10
+ trademark
+ -250
+ underscore
+ -315
+ yen
+ -65
+
+ public.kern1.M
+
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -330
+
+ public.kern1.N
+
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -330
+
+ public.kern1.O
+
+ ampersand
+ -15
+ asciicircum
+ -10
+ asciitilde
+ -10
+ asterisk
+ -10
+ backslash
+ -85
+ braceleft
+ -25
+ braceright
+ -35
+ comma
+ -60
+ degree
+ -35
+ dollar
+ -40
+ ellipsis
+ -60
+ euro
+ -60
+ guillemetleft
+ 25
+ guillemetright
+ 0
+ guilsinglleft
+ 25
+ guilsinglright
+ 0
+ multiply
+ -20
+ numbersign
+ -70
+ paragraph
+ -15
+ parenright
+ -80
+ percent
+ -25
+ perthousand
+ -25
+ public.kern2.A
+ -50
+ public.kern2.J
+ -95
+ public.kern2.S
+ -15
+ public.kern2.T
+ -15
+ public.kern2.V
+ -50
+ public.kern2.W
+ -40
+ public.kern2.X
+ -65
+ public.kern2.Y
+ -55
+ public.kern2.a
+ -35
+ public.kern2.s
+ -20
+ public.kern2.v
+ -15
+ public.kern2.w
+ -15
+ public.kern2.x
+ -30
+ public.kern2.y
+ -30
+ question
+ -125
+ questiondown
+ -100
+ quotedbl
+ -45
+ quotedblbase
+ -60
+ quotedblleft
+ -15
+ quotedblright
+ -60
+ quoteleft
+ -15
+ quoteright
+ -60
+ quotesinglbase
+ -60
+ quotesingle
+ -45
+ semicolon
+ -10
+ slash
+ -90
+ sterling
+ -35
+ trademark
+ -15
+ underscore
+ -285
+ yen
+ -55
+
+ public.kern1.Oslash
+
+ ampersand
+ -15
+ asciicircum
+ -10
+ asciitilde
+ -10
+ asterisk
+ -10
+ backslash
+ 15
+ braceleft
+ -25
+ braceright
+ -35
+ comma
+ -60
+ degree
+ -35
+ dollar
+ -40
+ ellipsis
+ -60
+ euro
+ -60
+ guillemetleft
+ 25
+ guillemetright
+ 0
+ guilsinglleft
+ 25
+ guilsinglright
+ 0
+ multiply
+ -20
+ numbersign
+ -70
+ paragraph
+ -15
+ parenright
+ -75
+ percent
+ -25
+ perthousand
+ -25
+ public.kern2.A
+ -50
+ public.kern2.J
+ -95
+ public.kern2.S
+ -15
+ public.kern2.T
+ -10
+ public.kern2.V
+ -10
+ public.kern2.W
+ -10
+ public.kern2.X
+ -15
+ public.kern2.Y
+ -10
+ public.kern2.a
+ -35
+ public.kern2.s
+ -20
+ public.kern2.v
+ -15
+ public.kern2.w
+ -15
+ public.kern2.x
+ -30
+ public.kern2.y
+ -30
+ question
+ -60
+ questiondown
+ -95
+ quotedbl
+ -30
+ quotedblbase
+ -60
+ quotedblleft
+ -15
+ quotedblright
+ -40
+ quoteleft
+ -15
+ quoteright
+ -40
+ quotesinglbase
+ -60
+ quotesingle
+ -30
+ semicolon
+ -10
+ slash
+ -90
+ sterling
+ -35
+ trademark
+ -15
+ underscore
+ -270
+ yen
+ -10
+
+ public.kern1.P
+
+ ampersand
+ -65
+ asciitilde
+ -30
+ at
+ -25
+ backslash
+ -45
+ braceleft
+ -40
+ braceright
+ -35
+ bullet
+ -25
+ cent
+ -30
+ comma
+ -155
+ copyright
+ -20
+ degree
+ -10
+ dollar
+ -25
+ ellipsis
+ -180
+ euro
+ -60
+ guillemetleft
+ -40
+ guillemetright
+ 15
+ guilsinglleft
+ -40
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -95
+ parenleft
+ -20
+ parenright
+ -30
+ periodcentered
+ -35
+ public.kern2.A
+ -70
+ public.kern2.C
+ -10
+ public.kern2.G
+ -10
+ public.kern2.J
+ -245
+ public.kern2.O
+ -10
+ public.kern2.Oslash
+ -10
+ public.kern2.Q
+ -10
+ public.kern2.V
+ -35
+ public.kern2.W
+ -25
+ public.kern2.X
+ -45
+ public.kern2.Y
+ -40
+ public.kern2.a
+ -45
+ public.kern2.a.alt
+ -30
+ public.kern2.c
+ -35
+ public.kern2.d
+ -30
+ public.kern2.dcaron
+ -30
+ public.kern2.dcroat
+ -30
+ public.kern2.e
+ -30
+ public.kern2.eth
+ -35
+ public.kern2.g
+ -25
+ public.kern2.o
+ -35
+ public.kern2.oslash
+ -35
+ public.kern2.q
+ -30
+ public.kern2.s
+ -30
+ public.kern2.x
+ -15
+ public.kern2.y
+ -10
+ question
+ -65
+ questiondown
+ -115
+ quotedbl
+ -20
+ quotedblbase
+ -180
+ quotedblright
+ -25
+ quoteright
+ -25
+ quotesinglbase
+ -155
+ quotesingle
+ -20
+ slash
+ -140
+ sterling
+ -45
+ underscore
+ -330
+ yen
+ -40
+
+ public.kern1.Q
+
+ ampersand
+ -15
+ asciicircum
+ -10
+ asciitilde
+ -10
+ asterisk
+ -10
+ backslash
+ -85
+ braceleft
+ -25
+ braceright
+ -35
+ comma
+ -20
+ degree
+ -35
+ dollar
+ -40
+ ellipsis
+ -20
+ euro
+ -60
+ guillemetleft
+ 25
+ guillemetright
+ 0
+ guilsinglleft
+ 25
+ guilsinglright
+ 0
+ multiply
+ -20
+ numbersign
+ -50
+ paragraph
+ -15
+ parenright
+ -80
+ percent
+ -25
+ perthousand
+ -25
+ public.kern2.A
+ -40
+ public.kern2.J
+ -40
+ public.kern2.S
+ -15
+ public.kern2.T
+ -15
+ public.kern2.V
+ -50
+ public.kern2.W
+ -35
+ public.kern2.X
+ -50
+ public.kern2.Y
+ -55
+ public.kern2.a
+ -20
+ public.kern2.s
+ -20
+ public.kern2.v
+ -15
+ public.kern2.w
+ -15
+ public.kern2.x
+ -30
+ public.kern2.y
+ -30
+ question
+ -110
+ questiondown
+ -50
+ quotedbl
+ -45
+ quotedblbase
+ -20
+ quotedblleft
+ -15
+ quotedblright
+ -60
+ quoteleft
+ -15
+ quoteright
+ -60
+ quotesinglbase
+ -20
+ quotesingle
+ -45
+ semicolon
+ -10
+ slash
+ -50
+ sterling
+ -35
+ trademark
+ -15
+ underscore
+ -145
+ yen
+ -55
+
+ public.kern1.R
+
+ ampersand
+ -60
+ asciitilde
+ -30
+ at
+ -25
+ backslash
+ -45
+ braceleft
+ -35
+ braceright
+ -30
+ bullet
+ -25
+ cent
+ -30
+ comma
+ -35
+ copyright
+ -20
+ degree
+ -10
+ dollar
+ -25
+ ellipsis
+ -35
+ euro
+ -60
+ guillemetleft
+ -35
+ guillemetright
+ 15
+ guilsinglleft
+ -35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -25
+ parenleft
+ -20
+ parenright
+ -30
+ periodcentered
+ -35
+ public.kern2.C
+ -10
+ public.kern2.G
+ -10
+ public.kern2.J
+ -10
+ public.kern2.O
+ -10
+ public.kern2.Q
+ -10
+ public.kern2.V
+ -35
+ public.kern2.W
+ -25
+ public.kern2.Y
+ -40
+ public.kern2.a
+ -45
+ public.kern2.a.alt
+ -25
+ public.kern2.c
+ -35
+ public.kern2.d
+ -25
+ public.kern2.dcaron
+ -25
+ public.kern2.dcroat
+ -25
+ public.kern2.e
+ -30
+ public.kern2.eth
+ -30
+ public.kern2.g
+ -20
+ public.kern2.o
+ -35
+ public.kern2.q
+ -25
+ public.kern2.s
+ -30
+ public.kern2.y
+ -10
+ question
+ -60
+ quotedbl
+ -20
+ quotedblbase
+ -35
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesinglbase
+ -35
+ quotesingle
+ -20
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -330
+ yen
+ -40
+
+ public.kern1.S
+
+ asciicircum
+ -130
+ asciitilde
+ -20
+ asterisk
+ -35
+ backslash
+ -15
+ braceleft
+ -25
+ braceright
+ -30
+ colon
+ -15
+ comma
+ -15
+ degree
+ -40
+ dollar
+ -60
+ ellipsis
+ -15
+ euro
+ -60
+ guillemetleft
+ 30
+ guillemetright
+ -15
+ guilsinglleft
+ 30
+ guilsinglright
+ -15
+ multiply
+ -20
+ numbersign
+ -40
+ paragraph
+ -70
+ parenright
+ -70
+ percent
+ -55
+ perthousand
+ -55
+ public.kern2.A
+ -30
+ public.kern2.C
+ -10
+ public.kern2.G
+ -10
+ public.kern2.J
+ -10
+ public.kern2.O
+ -10
+ public.kern2.Oslash
+ -15
+ public.kern2.Q
+ -10
+ public.kern2.S
+ -30
+ public.kern2.T
+ -25
+ public.kern2.V
+ -30
+ public.kern2.W
+ -30
+ public.kern2.X
+ -35
+ public.kern2.Y
+ -30
+ public.kern2.f
+ -20
+ public.kern2.s
+ -35
+ public.kern2.t
+ -20
+ public.kern2.tcaron
+ -20
+ public.kern2.v
+ -25
+ public.kern2.w
+ -30
+ public.kern2.x
+ -30
+ public.kern2.y
+ -55
+ question
+ -30
+ questiondown
+ -35
+ quotedbl
+ -25
+ quotedblbase
+ -15
+ quotedblleft
+ -75
+ quotedblright
+ -30
+ quoteleft
+ -75
+ quoteright
+ -30
+ quotesinglbase
+ -15
+ quotesingle
+ -25
+ registered
+ -40
+ semicolon
+ -15
+ slash
+ -40
+ sterling
+ -35
+ trademark
+ -65
+ underscore
+ -145
+ yen
+ -35
+
+ public.kern1.T
+
+ ampersand
+ -80
+ asciicircum
+ -15
+ asciitilde
+ -55
+ at
+ -35
+ backslash
+ 25
+ braceleft
+ -70
+ braceright
+ -35
+ bullet
+ -65
+ cent
+ -60
+ comma
+ -80
+ copyright
+ -30
+ dollar
+ -25
+ ellipsis
+ -80
+ emdash
+ -80
+ endash
+ -80
+ euro
+ -60
+ guillemetleft
+ -50
+ guillemetright
+ -65
+ guilsinglleft
+ -50
+ guilsinglright
+ -65
+ hyphen
+ -80
+ multiply
+ -30
+ numbersign
+ -105
+ parenleft
+ -25
+ periodcentered
+ -80
+ public.kern2.A
+ -75
+ public.kern2.C
+ -15
+ public.kern2.G
+ -15
+ public.kern2.J
+ -50
+ public.kern2.O
+ -15
+ public.kern2.Oslash
+ -15
+ public.kern2.Q
+ -15
+ public.kern2.a
+ -40
+ public.kern2.a.alt
+ -50
+ public.kern2.c
+ -70
+ public.kern2.d
+ -50
+ public.kern2.dcaron
+ -50
+ public.kern2.dcroat
+ -50
+ public.kern2.e
+ -60
+ public.kern2.eth
+ -65
+ public.kern2.g
+ -45
+ public.kern2.o
+ -70
+ public.kern2.oslash
+ -65
+ public.kern2.q
+ -50
+ public.kern2.s
+ -40
+ public.kern2.x
+ -10
+ questiondown
+ -80
+ quotedblbase
+ -80
+ quotesinglbase
+ -80
+ slash
+ -60
+ sterling
+ -90
+ underscore
+ -320
+
+ public.kern1.Thorn
+
+ ampersand
+ -20
+ asciicircum
+ -15
+ asciitilde
+ -10
+ asterisk
+ -15
+ backslash
+ -90
+ braceleft
+ -25
+ braceright
+ -35
+ colon
+ -10
+ comma
+ -75
+ degree
+ -45
+ dollar
+ -40
+ ellipsis
+ -75
+ euro
+ -60
+ guillemetleft
+ 20
+ guilsinglleft
+ 20
+ multiply
+ -20
+ numbersign
+ -70
+ paragraph
+ -15
+ parenright
+ -105
+ percent
+ -30
+ perthousand
+ -30
+ public.kern2.A
+ -55
+ public.kern2.J
+ -140
+ public.kern2.S
+ -15
+ public.kern2.T
+ -15
+ public.kern2.V
+ -55
+ public.kern2.W
+ -40
+ public.kern2.X
+ -70
+ public.kern2.Y
+ -55
+ public.kern2.a
+ -45
+ public.kern2.s
+ -20
+ public.kern2.v
+ -15
+ public.kern2.w
+ -15
+ public.kern2.x
+ -30
+ public.kern2.y
+ -30
+ question
+ -140
+ questiondown
+ -120
+ quotedbl
+ -50
+ quotedblbase
+ -75
+ quotedblleft
+ -20
+ quotedblright
+ -60
+ quoteleft
+ -20
+ quoteright
+ -60
+ quotesinglbase
+ -75
+ quotesingle
+ -50
+ semicolon
+ -10
+ slash
+ -100
+ sterling
+ -35
+ trademark
+ -20
+ underscore
+ -330
+ yen
+ -55
+
+ public.kern1.U
+
+ ampersand
+ -10
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -35
+ comma
+ -35
+ dollar
+ -25
+ ellipsis
+ -35
+ euro
+ -60
+ guillemetleft
+ 30
+ guillemetright
+ 15
+ guilsinglleft
+ 30
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -60
+ public.kern2.A
+ -45
+ public.kern2.J
+ -55
+ public.kern2.a
+ -20
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ questiondown
+ -70
+ quotedblbase
+ -35
+ quotesinglbase
+ -35
+ slash
+ -70
+ sterling
+ -35
+ underscore
+ -195
+
+ public.kern1.V
+
+ ampersand
+ -75
+ asciicircum
+ -45
+ asciitilde
+ -70
+ asterisk
+ -15
+ at
+ -65
+ backslash
+ 25
+ braceleft
+ -80
+ braceright
+ -55
+ bullet
+ -60
+ cent
+ -65
+ colon
+ -40
+ comma
+ -95
+ copyright
+ -60
+ degree
+ -20
+ divide
+ -40
+ dollar
+ -60
+ ellipsis
+ -95
+ emdash
+ -50
+ endash
+ -50
+ equal
+ -20
+ euro
+ -95
+ guillemetleft
+ -35
+ guillemetright
+ -30
+ guilsinglleft
+ -35
+ guilsinglright
+ -30
+ hyphen
+ -50
+ less
+ -40
+ minus
+ -40
+ multiply
+ -55
+ numbersign
+ -120
+ paragraph
+ -30
+ parenleft
+ -60
+ parenright
+ -20
+ percent
+ -25
+ periodcentered
+ -65
+ perthousand
+ -25
+ plus
+ -40
+ public.kern2.A
+ -115
+ public.kern2.C
+ -50
+ public.kern2.G
+ -50
+ public.kern2.J
+ -75
+ public.kern2.O
+ -50
+ public.kern2.Oslash
+ -55
+ public.kern2.Q
+ -50
+ public.kern2.S
+ -30
+ public.kern2.a
+ -70
+ public.kern2.a.alt
+ -65
+ public.kern2.c
+ -65
+ public.kern2.d
+ -65
+ public.kern2.dcaron
+ -65
+ public.kern2.dcroat
+ -65
+ public.kern2.e
+ -65
+ public.kern2.eth
+ -70
+ public.kern2.f
+ -30
+ public.kern2.g
+ -60
+ public.kern2.germandbls
+ -25
+ public.kern2.i
+ -30
+ public.kern2.j
+ -30
+ public.kern2.m
+ -30
+ public.kern2.n
+ -30
+ public.kern2.o
+ -65
+ public.kern2.oslash
+ -65
+ public.kern2.p
+ -30
+ public.kern2.q
+ -65
+ public.kern2.r
+ -30
+ public.kern2.s
+ -70
+ public.kern2.t
+ -30
+ public.kern2.tcaron
+ -30
+ public.kern2.u
+ -30
+ public.kern2.v
+ -30
+ public.kern2.w
+ -30
+ public.kern2.x
+ -40
+ public.kern2.y
+ -30
+ public.kern2.z
+ -30
+ question
+ -10
+ questiondown
+ -105
+ quotedbl
+ -10
+ quotedblbase
+ -95
+ quotedblleft
+ -30
+ quotedblright
+ -15
+ quoteleft
+ -30
+ quoteright
+ -15
+ quotesinglbase
+ -95
+ quotesingle
+ -10
+ registered
+ -40
+ semicolon
+ -40
+ slash
+ -90
+ sterling
+ -85
+ trademark
+ -20
+ underscore
+ -330
+
+ public.kern1.W
+
+ ampersand
+ -55
+ asciicircum
+ -35
+ asciitilde
+ -50
+ asterisk
+ -10
+ at
+ -45
+ backslash
+ 25
+ braceleft
+ -65
+ braceright
+ -50
+ bullet
+ -45
+ cent
+ -45
+ colon
+ -30
+ comma
+ -65
+ copyright
+ -45
+ degree
+ -15
+ divide
+ -25
+ dollar
+ -50
+ ellipsis
+ -65
+ emdash
+ -35
+ endash
+ -35
+ equal
+ -10
+ euro
+ -85
+ guillemetleft
+ -15
+ guillemetright
+ -15
+ guilsinglleft
+ -15
+ guilsinglright
+ -15
+ hyphen
+ -35
+ less
+ -25
+ minus
+ -25
+ multiply
+ -40
+ numbersign
+ -90
+ paragraph
+ -20
+ parenleft
+ -45
+ parenright
+ -15
+ percent
+ -20
+ periodcentered
+ -45
+ perthousand
+ -20
+ plus
+ -25
+ public.kern2.A
+ -80
+ public.kern2.C
+ -35
+ public.kern2.G
+ -35
+ public.kern2.J
+ -40
+ public.kern2.O
+ -35
+ public.kern2.Oslash
+ -40
+ public.kern2.Q
+ -35
+ public.kern2.S
+ -20
+ public.kern2.a
+ -60
+ public.kern2.a.alt
+ -45
+ public.kern2.c
+ -45
+ public.kern2.d
+ -45
+ public.kern2.dcaron
+ -45
+ public.kern2.dcroat
+ -45
+ public.kern2.e
+ -45
+ public.kern2.eth
+ -45
+ public.kern2.f
+ -20
+ public.kern2.g
+ -45
+ public.kern2.germandbls
+ -20
+ public.kern2.i
+ -20
+ public.kern2.j
+ -20
+ public.kern2.m
+ -20
+ public.kern2.n
+ -20
+ public.kern2.o
+ -45
+ public.kern2.oslash
+ -45
+ public.kern2.p
+ -20
+ public.kern2.q
+ -45
+ public.kern2.r
+ -20
+ public.kern2.s
+ -55
+ public.kern2.t
+ -20
+ public.kern2.tcaron
+ -20
+ public.kern2.u
+ -20
+ public.kern2.v
+ -20
+ public.kern2.w
+ -20
+ public.kern2.x
+ -30
+ public.kern2.y
+ -20
+ public.kern2.z
+ -20
+ questiondown
+ -75
+ quotedbl
+ -10
+ quotedblbase
+ -65
+ quotedblleft
+ -20
+ quotedblright
+ -10
+ quoteleft
+ -20
+ quoteright
+ -10
+ quotesinglbase
+ -65
+ quotesingle
+ -10
+ registered
+ -30
+ semicolon
+ -30
+ slash
+ -55
+ sterling
+ -70
+ trademark
+ -15
+ underscore
+ -330
+
+ public.kern1.X
+
+ ampersand
+ -35
+ asciicircum
+ -60
+ asciitilde
+ -75
+ asterisk
+ -20
+ at
+ -45
+ backslash
+ 25
+ braceleft
+ -60
+ braceright
+ -30
+ bullet
+ -60
+ cent
+ -50
+ colon
+ -20
+ comma
+ -20
+ copyright
+ -50
+ degree
+ -25
+ divide
+ -45
+ dollar
+ -30
+ ellipsis
+ -20
+ emdash
+ -35
+ endash
+ -35
+ equal
+ -20
+ euro
+ -105
+ guillemetleft
+ -25
+ guillemetright
+ -10
+ guilsinglleft
+ -25
+ guilsinglright
+ -10
+ hyphen
+ -35
+ less
+ -55
+ minus
+ -45
+ multiply
+ -70
+ numbersign
+ -25
+ paragraph
+ -40
+ parenleft
+ -45
+ parenright
+ -30
+ percent
+ -30
+ periodcentered
+ -60
+ perthousand
+ -30
+ plus
+ -45
+ public.kern2.C
+ -65
+ public.kern2.G
+ -65
+ public.kern2.J
+ 20
+ public.kern2.O
+ -65
+ public.kern2.Q
+ -65
+ public.kern2.S
+ -10
+ public.kern2.a
+ -30
+ public.kern2.a.alt
+ -45
+ public.kern2.c
+ -50
+ public.kern2.d
+ -50
+ public.kern2.dcaron
+ -45
+ public.kern2.dcroat
+ -45
+ public.kern2.e
+ -50
+ public.kern2.eth
+ -50
+ public.kern2.f
+ -40
+ public.kern2.g
+ -55
+ public.kern2.o
+ -50
+ public.kern2.q
+ -50
+ public.kern2.s
+ -15
+ public.kern2.t
+ -40
+ public.kern2.tcaron
+ -40
+ public.kern2.u
+ -35
+ public.kern2.v
+ -40
+ public.kern2.w
+ -40
+ public.kern2.y
+ -40
+ question
+ -15
+ quotedbl
+ -15
+ quotedblbase
+ -20
+ quotedblleft
+ -40
+ quotedblright
+ -20
+ quoteleft
+ -40
+ quoteright
+ -20
+ quotesinglbase
+ -20
+ quotesingle
+ -15
+ registered
+ -50
+ semicolon
+ -20
+ slash
+ 20
+ sterling
+ -10
+ trademark
+ -25
+ underscore
+ -330
+
+ public.kern1.Y
+
+ ampersand
+ -80
+ asciicircum
+ -50
+ asciitilde
+ -70
+ asterisk
+ -15
+ at
+ -65
+ backslash
+ 25
+ braceleft
+ -80
+ braceright
+ -55
+ bullet
+ -65
+ cent
+ -70
+ colon
+ -40
+ comma
+ -80
+ copyright
+ -65
+ degree
+ -20
+ divide
+ -40
+ dollar
+ -60
+ ellipsis
+ -80
+ emdash
+ -50
+ endash
+ -50
+ equal
+ -20
+ euro
+ -95
+ guillemetleft
+ -40
+ guillemetright
+ -30
+ guilsinglleft
+ -40
+ guilsinglright
+ -30
+ hyphen
+ -50
+ less
+ -40
+ minus
+ -40
+ multiply
+ -55
+ numbersign
+ -100
+ paragraph
+ -30
+ parenleft
+ -65
+ parenright
+ -20
+ percent
+ -25
+ periodcentered
+ -70
+ perthousand
+ -25
+ plus
+ -40
+ public.kern2.A
+ -80
+ public.kern2.C
+ -55
+ public.kern2.G
+ -55
+ public.kern2.J
+ -50
+ public.kern2.O
+ -55
+ public.kern2.Oslash
+ -55
+ public.kern2.Q
+ -55
+ public.kern2.S
+ -35
+ public.kern2.a
+ -70
+ public.kern2.a.alt
+ -70
+ public.kern2.c
+ -70
+ public.kern2.d
+ -70
+ public.kern2.dcaron
+ -70
+ public.kern2.dcroat
+ -70
+ public.kern2.e
+ -70
+ public.kern2.eth
+ -70
+ public.kern2.f
+ -30
+ public.kern2.g
+ -65
+ public.kern2.germandbls
+ -25
+ public.kern2.i
+ -30
+ public.kern2.j
+ -30
+ public.kern2.m
+ -30
+ public.kern2.n
+ -30
+ public.kern2.o
+ -70
+ public.kern2.oslash
+ -70
+ public.kern2.p
+ -30
+ public.kern2.q
+ -70
+ public.kern2.r
+ -30
+ public.kern2.s
+ -75
+ public.kern2.t
+ -30
+ public.kern2.tcaron
+ -30
+ public.kern2.u
+ -30
+ public.kern2.v
+ -30
+ public.kern2.w
+ -30
+ public.kern2.x
+ -40
+ public.kern2.y
+ -30
+ public.kern2.z
+ -30
+ question
+ -10
+ questiondown
+ -80
+ quotedbl
+ -10
+ quotedblbase
+ -80
+ quotedblleft
+ -30
+ quotedblright
+ -15
+ quoteleft
+ -30
+ quoteright
+ -15
+ quotesinglbase
+ -80
+ quotesingle
+ -10
+ registered
+ -40
+ semicolon
+ -45
+ slash
+ -60
+ sterling
+ -90
+ trademark
+ -20
+ underscore
+ -330
+
+ public.kern1.Z
+
+ backslash
+ 25
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -330
+
+ public.kern1.a
+
+ asciicircum
+ -25
+ asterisk
+ -25
+ backslash
+ -105
+ braceleft
+ -25
+ braceright
+ -30
+ degree
+ -60
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 10
+ guilsinglleft
+ 35
+ guilsinglright
+ 10
+ multiply
+ -20
+ numbersign
+ -20
+ paragraph
+ -25
+ parenright
+ -30
+ percent
+ -45
+ perthousand
+ -45
+ public.kern2.J
+ 30
+ public.kern2.T
+ -35
+ public.kern2.V
+ -60
+ public.kern2.W
+ -40
+ public.kern2.Y
+ -60
+ public.kern2.v
+ -20
+ public.kern2.w
+ -20
+ public.kern2.y
+ -35
+ question
+ -85
+ quotedbl
+ -65
+ quotedblleft
+ -30
+ quotedblright
+ -70
+ quoteleft
+ -30
+ quoteright
+ -70
+ quotesingle
+ -65
+ registered
+ -15
+ slash
+ 20
+ sterling
+ -10
+ trademark
+ -40
+ underscore
+ -285
+ yen
+ -65
+
+ public.kern1.a.alt
+
+ backslash
+ -45
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ parenright
+ -30
+ public.kern2.J
+ 30
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.Y
+ -30
+ question
+ -85
+ quotedbl
+ -15
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesingle
+ -15
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -325
+ yen
+ -30
+
+ public.kern1.b
+
+ asciicircum
+ -40
+ asciitilde
+ -10
+ asterisk
+ -40
+ backslash
+ -120
+ braceleft
+ -25
+ braceright
+ -30
+ colon
+ -20
+ comma
+ -25
+ degree
+ -75
+ dollar
+ -65
+ ellipsis
+ -20
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ -20
+ guilsinglleft
+ 35
+ guilsinglright
+ -20
+ multiply
+ -20
+ numbersign
+ -50
+ paragraph
+ -40
+ parenright
+ -125
+ percent
+ -60
+ perthousand
+ -60
+ public.kern2.A
+ -40
+ public.kern2.J
+ -30
+ public.kern2.S
+ -40
+ public.kern2.T
+ -50
+ public.kern2.V
+ -65
+ public.kern2.W
+ -45
+ public.kern2.X
+ -50
+ public.kern2.Y
+ -70
+ public.kern2.a
+ -10
+ public.kern2.s
+ -25
+ public.kern2.v
+ -25
+ public.kern2.w
+ -25
+ public.kern2.x
+ -40
+ public.kern2.y
+ -45
+ question
+ -110
+ questiondown
+ -50
+ quotedbl
+ -75
+ quotedblbase
+ -25
+ quotedblleft
+ -40
+ quotedblright
+ -85
+ quoteleft
+ -40
+ quoteright
+ -85
+ quotesinglbase
+ -25
+ quotesingle
+ -75
+ registered
+ -20
+ semicolon
+ -25
+ slash
+ -55
+ sterling
+ -35
+ trademark
+ -60
+ underscore
+ -175
+ yen
+ -65
+
+ public.kern1.c
+
+ backslash
+ -70
+ braceleft
+ -25
+ braceright
+ -30
+ degree
+ -25
+ dollar
+ -25
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ parenright
+ -80
+ percent
+ -10
+ perthousand
+ -10
+ public.kern2.A
+ -10
+ public.kern2.J
+ 30
+ public.kern2.V
+ -40
+ public.kern2.W
+ -30
+ public.kern2.X
+ -15
+ public.kern2.Y
+ -45
+ public.kern2.s
+ -20
+ public.kern2.v
+ -10
+ public.kern2.w
+ -10
+ public.kern2.x
+ -10
+ public.kern2.y
+ -15
+ question
+ -85
+ quotedbl
+ -35
+ quotedblright
+ -55
+ quoteright
+ -55
+ quotesingle
+ -35
+ sterling
+ -10
+ underscore
+ -145
+ yen
+ -45
+
+ public.kern1.d
+
+ backslash
+ 30
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -330
+
+ public.kern1.dcaron
+
+ ampersand
+ -80
+ asciicircum
+ -50
+ asciitilde
+ -85
+ asterisk
+ 15
+ at
+ -75
+ backslash
+ 20
+ bar
+ 15
+ braceleft
+ -60
+ braceright
+ -20
+ bracketleft
+ 15
+ bracketright
+ 15
+ bullet
+ -80
+ cent
+ -80
+ colon
+ -20
+ comma
+ -80
+ copyright
+ -65
+ degree
+ 15
+ divide
+ -40
+ dollar
+ -25
+ ellipsis
+ -80
+ emdash
+ -80
+ endash
+ -80
+ equal
+ 15
+ euro
+ -75
+ greater
+ 15
+ guillemetleft
+ -45
+ guillemetright
+ -50
+ guilsinglleft
+ -45
+ guilsinglright
+ -50
+ hyphen
+ -80
+ less
+ -40
+ minus
+ -40
+ multiply
+ -75
+ numbersign
+ -100
+ parenleft
+ -55
+ parenright
+ 15
+ percent
+ 10
+ periodcentered
+ -80
+ perthousand
+ 10
+ plus
+ -40
+ public.kern2.A
+ -80
+ public.kern2.B
+ 15
+ public.kern2.C
+ -40
+ public.kern2.D
+ 15
+ public.kern2.E
+ 15
+ public.kern2.Eth
+ 15
+ public.kern2.F
+ 15
+ public.kern2.G
+ -40
+ public.kern2.H
+ 15
+ public.kern2.I
+ 15
+ public.kern2.J
+ -50
+ public.kern2.K
+ 15
+ public.kern2.L
+ 15
+ public.kern2.Lslash
+ 15
+ public.kern2.M
+ 15
+ public.kern2.N
+ 15
+ public.kern2.O
+ -40
+ public.kern2.Oslash
+ -45
+ public.kern2.P
+ 15
+ public.kern2.Q
+ -40
+ public.kern2.R
+ 15
+ public.kern2.T
+ 15
+ public.kern2.Thorn
+ 15
+ public.kern2.U
+ 15
+ public.kern2.Z
+ 15
+ public.kern2.a
+ -45
+ public.kern2.a.alt
+ -80
+ public.kern2.b
+ 15
+ public.kern2.c
+ -80
+ public.kern2.d
+ -80
+ public.kern2.dcaron
+ -80
+ public.kern2.dcroat
+ -80
+ public.kern2.e
+ -80
+ public.kern2.eth
+ -80
+ public.kern2.g
+ -80
+ public.kern2.germandbls
+ 10
+ public.kern2.h
+ 15
+ public.kern2.l
+ 15
+ public.kern2.lcaron
+ 15
+ public.kern2.lslash
+ 15
+ public.kern2.o
+ -80
+ public.kern2.oslash
+ -80
+ public.kern2.q
+ -80
+ public.kern2.s
+ -85
+ public.kern2.thorn
+ 15
+ public.kern2.x
+ -10
+ question
+ 15
+ questiondown
+ -80
+ quotedbl
+ 15
+ quotedblbase
+ -80
+ quotedblright
+ 15
+ quoteright
+ 15
+ quotesinglbase
+ -80
+ quotesingle
+ 15
+ registered
+ -10
+ semicolon
+ -25
+ slash
+ -60
+ sterling
+ -90
+ trademark
+ 15
+ underscore
+ -330
+
+ public.kern1.dcroat
+
+ backslash
+ 30
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -330
+
+ public.kern1.e
+
+ asciicircum
+ -50
+ asciitilde
+ -15
+ asterisk
+ -50
+ backslash
+ -125
+ braceleft
+ -25
+ braceright
+ -30
+ colon
+ -30
+ comma
+ -30
+ degree
+ -85
+ dollar
+ -70
+ ellipsis
+ -30
+ euro
+ -60
+ guillemetleft
+ 30
+ guillemetright
+ -30
+ guilsinglleft
+ 30
+ guilsinglright
+ -30
+ multiply
+ -20
+ numbersign
+ -45
+ paragraph
+ -45
+ parenright
+ -120
+ percent
+ -65
+ perthousand
+ -65
+ public.kern2.A
+ -35
+ public.kern2.C
+ -10
+ public.kern2.G
+ -10
+ public.kern2.J
+ -25
+ public.kern2.O
+ -10
+ public.kern2.Oslash
+ -10
+ public.kern2.Q
+ -10
+ public.kern2.S
+ -45
+ public.kern2.T
+ -60
+ public.kern2.V
+ -70
+ public.kern2.W
+ -50
+ public.kern2.X
+ -45
+ public.kern2.Y
+ -75
+ public.kern2.f
+ -10
+ public.kern2.s
+ -30
+ public.kern2.t
+ -10
+ public.kern2.tcaron
+ -10
+ public.kern2.v
+ -25
+ public.kern2.w
+ -30
+ public.kern2.x
+ -35
+ public.kern2.y
+ -50
+ question
+ -115
+ questiondown
+ -55
+ quotedbl
+ -80
+ quotedblbase
+ -30
+ quotedblleft
+ -50
+ quotedblright
+ -90
+ quoteleft
+ -50
+ quoteright
+ -90
+ quotesinglbase
+ -30
+ quotesingle
+ -80
+ registered
+ -30
+ semicolon
+ -30
+ slash
+ -50
+ sterling
+ -35
+ trademark
+ -65
+ underscore
+ -185
+ yen
+ -65
+
+ public.kern1.eth
+
+ asciicircum
+ -25
+ asciitilde
+ -10
+ asterisk
+ -25
+ backslash
+ -100
+ braceleft
+ -25
+ braceright
+ -35
+ colon
+ -15
+ comma
+ -35
+ degree
+ -55
+ dollar
+ -50
+ ellipsis
+ -35
+ euro
+ -60
+ guillemetleft
+ 35
+ guilsinglleft
+ 35
+ multiply
+ -20
+ numbersign
+ -55
+ paragraph
+ -25
+ parenright
+ -110
+ percent
+ -40
+ perthousand
+ -40
+ public.kern2.A
+ -40
+ public.kern2.J
+ -50
+ public.kern2.S
+ -25
+ public.kern2.T
+ -30
+ public.kern2.V
+ -60
+ public.kern2.W
+ -45
+ public.kern2.X
+ -55
+ public.kern2.Y
+ -65
+ public.kern2.a
+ -15
+ public.kern2.s
+ -20
+ public.kern2.v
+ -20
+ public.kern2.w
+ -25
+ public.kern2.x
+ -35
+ public.kern2.y
+ -40
+ question
+ -120
+ questiondown
+ -65
+ quotedbl
+ -60
+ quotedblbase
+ -35
+ quotedblleft
+ -30
+ quotedblright
+ -70
+ quoteleft
+ -30
+ quoteright
+ -70
+ quotesinglbase
+ -35
+ quotesingle
+ -60
+ registered
+ -15
+ semicolon
+ -20
+ slash
+ -65
+ sterling
+ -35
+ trademark
+ -35
+ underscore
+ -215
+ yen
+ -65
+
+ public.kern1.f
+
+ ampersand
+ -30
+ asciitilde
+ -10
+ backslash
+ 50
+ braceleft
+ -25
+ braceright
+ -35
+ comma
+ -80
+ dollar
+ -25
+ ellipsis
+ -80
+ euro
+ -60
+ guillemetleft
+ -15
+ guillemetright
+ 15
+ guilsinglleft
+ -15
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -75
+ parenright
+ -40
+ public.kern2.A
+ -55
+ public.kern2.J
+ -50
+ public.kern2.a
+ -40
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ question
+ -20
+ questiondown
+ -80
+ quotedbl
+ -15
+ quotedblbase
+ -80
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesinglbase
+ -80
+ quotesingle
+ -15
+ slash
+ -60
+ sterling
+ -35
+ underscore
+ -200
+
+ public.kern1.g
+
+ backslash
+ -45
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ parenright
+ -20
+ public.kern2.J
+ 30
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.Y
+ -30
+ public.kern2.j
+ 20
+ question
+ -85
+ quotedbl
+ -15
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesingle
+ -15
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -10
+ yen
+ -30
+
+ public.kern1.germandbls
+
+ asciicircum
+ -35
+ asciitilde
+ -40
+ asterisk
+ -20
+ backslash
+ -35
+ braceleft
+ -25
+ braceright
+ -30
+ bullet
+ -15
+ colon
+ -10
+ comma
+ -10
+ degree
+ -15
+ dollar
+ -40
+ ellipsis
+ -10
+ euro
+ -60
+ guillemetleft
+ 25
+ guillemetright
+ -10
+ guilsinglleft
+ 25
+ guilsinglright
+ -10
+ multiply
+ -25
+ numbersign
+ -35
+ paragraph
+ -15
+ parenright
+ -20
+ percent
+ -15
+ periodcentered
+ -10
+ perthousand
+ -15
+ public.kern2.A
+ -30
+ public.kern2.C
+ -20
+ public.kern2.G
+ -20
+ public.kern2.O
+ -20
+ public.kern2.Oslash
+ -20
+ public.kern2.Q
+ -20
+ public.kern2.S
+ -15
+ public.kern2.T
+ -15
+ public.kern2.U
+ -10
+ public.kern2.V
+ -40
+ public.kern2.W
+ -30
+ public.kern2.X
+ -35
+ public.kern2.Y
+ -40
+ public.kern2.f
+ -15
+ public.kern2.g
+ -10
+ public.kern2.s
+ -50
+ public.kern2.t
+ -15
+ public.kern2.tcaron
+ -15
+ public.kern2.v
+ -15
+ public.kern2.w
+ -15
+ public.kern2.x
+ -25
+ public.kern2.y
+ -15
+ question
+ -35
+ questiondown
+ -30
+ quotedbl
+ -20
+ quotedblbase
+ -10
+ quotedblleft
+ -15
+ quotedblright
+ -20
+ quoteleft
+ -15
+ quoteright
+ -20
+ quotesinglbase
+ -10
+ quotesingle
+ -20
+ registered
+ -20
+ semicolon
+ -10
+ slash
+ -35
+ sterling
+ -30
+ trademark
+ -15
+ underscore
+ -150
+ yen
+ -40
+
+ public.kern1.h
+
+ asciicircum
+ -20
+ asterisk
+ -20
+ backslash
+ -95
+ braceleft
+ -25
+ braceright
+ -30
+ degree
+ -50
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 10
+ guilsinglleft
+ 35
+ guilsinglright
+ 10
+ multiply
+ -20
+ numbersign
+ -20
+ paragraph
+ -20
+ parenright
+ -30
+ percent
+ -35
+ perthousand
+ -35
+ public.kern2.J
+ 30
+ public.kern2.T
+ -25
+ public.kern2.V
+ -55
+ public.kern2.W
+ -40
+ public.kern2.Y
+ -60
+ public.kern2.v
+ -15
+ public.kern2.w
+ -20
+ public.kern2.y
+ -30
+ question
+ -85
+ quotedbl
+ -55
+ quotedblleft
+ -25
+ quotedblright
+ -65
+ quoteleft
+ -25
+ quoteright
+ -65
+ quotesingle
+ -55
+ registered
+ -10
+ slash
+ 20
+ sterling
+ -10
+ trademark
+ -30
+ underscore
+ -315
+ yen
+ -60
+
+ public.kern1.i
+
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ parenright
+ -30
+ public.kern2.J
+ 30
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.Y
+ -30
+ question
+ -45
+ quotedbl
+ -15
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesingle
+ -15
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -150
+ yen
+ -30
+
+ public.kern1.j
+
+ backslash
+ -10
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.Y
+ -30
+ public.kern2.j
+ 30
+ question
+ -50
+ quotedbl
+ -15
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesingle
+ -15
+ slash
+ 40
+ sterling
+ -10
+ yen
+ -30
+
+ public.kern1.l
+
+ backslash
+ 30
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -160
+
+ public.kern1.lcaron
+
+ ampersand
+ -45
+ asciitilde
+ -50
+ asterisk
+ 55
+ at
+ -25
+ backslash
+ 65
+ bar
+ 60
+ braceleft
+ -15
+ braceright
+ 20
+ bracketleft
+ 60
+ bracketright
+ 60
+ bullet
+ -50
+ cent
+ -50
+ colon
+ 25
+ comma
+ -50
+ copyright
+ -15
+ degree
+ 55
+ divide
+ 10
+ dollar
+ 20
+ ellipsis
+ -50
+ emdash
+ -30
+ endash
+ -30
+ equal
+ 60
+ euro
+ -25
+ greater
+ 60
+ guillemetleft
+ -15
+ guilsinglleft
+ -15
+ hyphen
+ -30
+ less
+ 10
+ minus
+ 10
+ multiply
+ -20
+ numbersign
+ -70
+ paragraph
+ 45
+ parenleft
+ -10
+ parenright
+ 55
+ percent
+ 50
+ periodcentered
+ -50
+ perthousand
+ 50
+ plus
+ 10
+ public.kern2.A
+ -35
+ public.kern2.B
+ 60
+ public.kern2.D
+ 60
+ public.kern2.E
+ 60
+ public.kern2.Eth
+ 60
+ public.kern2.F
+ 60
+ public.kern2.H
+ 60
+ public.kern2.I
+ 60
+ public.kern2.J
+ -15
+ public.kern2.K
+ 60
+ public.kern2.L
+ 60
+ public.kern2.Lslash
+ 60
+ public.kern2.M
+ 60
+ public.kern2.N
+ 60
+ public.kern2.P
+ 60
+ public.kern2.R
+ 60
+ public.kern2.S
+ 45
+ public.kern2.T
+ 60
+ public.kern2.Thorn
+ 60
+ public.kern2.U
+ 60
+ public.kern2.V
+ 45
+ public.kern2.W
+ 50
+ public.kern2.X
+ 40
+ public.kern2.Y
+ 45
+ public.kern2.Z
+ 60
+ public.kern2.a.alt
+ -45
+ public.kern2.b
+ 60
+ public.kern2.c
+ -50
+ public.kern2.d
+ -45
+ public.kern2.dcaron
+ -45
+ public.kern2.dcroat
+ -45
+ public.kern2.e
+ -50
+ public.kern2.eth
+ -45
+ public.kern2.f
+ 45
+ public.kern2.g
+ -40
+ public.kern2.germandbls
+ 50
+ public.kern2.h
+ 60
+ public.kern2.i
+ 45
+ public.kern2.j
+ 45
+ public.kern2.l
+ 60
+ public.kern2.lcaron
+ 60
+ public.kern2.lslash
+ 60
+ public.kern2.m
+ 45
+ public.kern2.n
+ 45
+ public.kern2.o
+ -50
+ public.kern2.oslash
+ -50
+ public.kern2.p
+ 45
+ public.kern2.q
+ -45
+ public.kern2.r
+ 45
+ public.kern2.s
+ -35
+ public.kern2.t
+ 45
+ public.kern2.tcaron
+ 45
+ public.kern2.thorn
+ 60
+ public.kern2.u
+ 45
+ public.kern2.v
+ 40
+ public.kern2.w
+ 40
+ public.kern2.x
+ 35
+ public.kern2.y
+ 40
+ public.kern2.z
+ 45
+ question
+ 55
+ questiondown
+ -50
+ quotedbl
+ 60
+ quotedblbase
+ -50
+ quotedblleft
+ 45
+ quotedblright
+ 60
+ quoteleft
+ 45
+ quoteright
+ 60
+ quotesinglbase
+ -50
+ quotesingle
+ 60
+ registered
+ 35
+ semicolon
+ 20
+ slash
+ -25
+ sterling
+ -60
+ trademark
+ 55
+ underscore
+ -240
+ yen
+ 45
+
+ public.kern1.lslash
+
+ backslash
+ 30
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -190
+
+ public.kern1.m
+
+ asciicircum
+ -20
+ asterisk
+ -20
+ backslash
+ -95
+ braceleft
+ -25
+ braceright
+ -30
+ degree
+ -50
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 10
+ guilsinglleft
+ 35
+ guilsinglright
+ 10
+ multiply
+ -20
+ numbersign
+ -20
+ paragraph
+ -20
+ parenright
+ -30
+ percent
+ -35
+ perthousand
+ -35
+ public.kern2.J
+ 30
+ public.kern2.T
+ -25
+ public.kern2.V
+ -55
+ public.kern2.W
+ -40
+ public.kern2.Y
+ -60
+ public.kern2.v
+ -15
+ public.kern2.w
+ -20
+ public.kern2.y
+ -35
+ question
+ -85
+ quotedbl
+ -55
+ quotedblleft
+ -25
+ quotedblright
+ -65
+ quoteleft
+ -25
+ quoteright
+ -65
+ quotesingle
+ -55
+ registered
+ -10
+ slash
+ 20
+ sterling
+ -10
+ trademark
+ -30
+ underscore
+ -330
+ yen
+ -60
+
+ public.kern1.n
+
+ asciicircum
+ -20
+ asterisk
+ -20
+ backslash
+ -95
+ braceleft
+ -25
+ braceright
+ -30
+ degree
+ -50
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 10
+ guilsinglleft
+ 35
+ guilsinglright
+ 10
+ multiply
+ -20
+ numbersign
+ -20
+ paragraph
+ -20
+ parenright
+ -30
+ percent
+ -35
+ perthousand
+ -35
+ public.kern2.J
+ 30
+ public.kern2.T
+ -25
+ public.kern2.V
+ -55
+ public.kern2.W
+ -40
+ public.kern2.Y
+ -60
+ public.kern2.v
+ -15
+ public.kern2.w
+ -20
+ public.kern2.y
+ -30
+ question
+ -85
+ quotedbl
+ -55
+ quotedblleft
+ -25
+ quotedblright
+ -65
+ quoteleft
+ -25
+ quoteright
+ -65
+ quotesingle
+ -55
+ registered
+ -10
+ slash
+ 20
+ sterling
+ -10
+ trademark
+ -30
+ underscore
+ -315
+ yen
+ -60
+
+ public.kern1.o
+
+ asciicircum
+ -55
+ asciitilde
+ -10
+ asterisk
+ -50
+ backslash
+ -125
+ braceleft
+ -25
+ braceright
+ -30
+ colon
+ -30
+ comma
+ -30
+ degree
+ -95
+ dollar
+ -70
+ ellipsis
+ -30
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ -35
+ guilsinglleft
+ 35
+ guilsinglright
+ -35
+ multiply
+ -20
+ numbersign
+ -50
+ paragraph
+ -45
+ parenright
+ -130
+ percent
+ -70
+ perthousand
+ -70
+ public.kern2.A
+ -40
+ public.kern2.J
+ -50
+ public.kern2.S
+ -50
+ public.kern2.T
+ -70
+ public.kern2.V
+ -65
+ public.kern2.W
+ -50
+ public.kern2.X
+ -50
+ public.kern2.Y
+ -70
+ public.kern2.a
+ -15
+ public.kern2.s
+ -25
+ public.kern2.v
+ -25
+ public.kern2.w
+ -25
+ public.kern2.x
+ -40
+ public.kern2.y
+ -45
+ question
+ -115
+ questiondown
+ -60
+ quotedbl
+ -80
+ quotedblbase
+ -30
+ quotedblleft
+ -50
+ quotedblright
+ -95
+ quoteleft
+ -50
+ quoteright
+ -95
+ quotesinglbase
+ -30
+ quotesingle
+ -80
+ registered
+ -25
+ semicolon
+ -30
+ slash
+ -65
+ sterling
+ -35
+ trademark
+ -80
+ underscore
+ -230
+ yen
+ -65
+
+ public.kern1.oslash
+
+ asciicircum
+ -55
+ asciitilde
+ -10
+ asterisk
+ -35
+ backslash
+ -50
+ braceleft
+ -25
+ braceright
+ -30
+ colon
+ -25
+ comma
+ -30
+ degree
+ -10
+ dollar
+ -35
+ ellipsis
+ -30
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ -35
+ guilsinglleft
+ 35
+ guilsinglright
+ -35
+ multiply
+ -20
+ numbersign
+ -50
+ paragraph
+ -10
+ parenright
+ -55
+ public.kern2.A
+ -40
+ public.kern2.J
+ -45
+ public.kern2.S
+ -10
+ public.kern2.V
+ -35
+ public.kern2.W
+ -25
+ public.kern2.X
+ -45
+ public.kern2.Y
+ -35
+ public.kern2.a
+ -15
+ public.kern2.s
+ -25
+ public.kern2.x
+ -15
+ question
+ -110
+ questiondown
+ -60
+ quotedbl
+ -20
+ quotedblbase
+ -30
+ quotedblleft
+ -10
+ quotedblright
+ -25
+ quoteleft
+ -10
+ quoteright
+ -25
+ quotesinglbase
+ -30
+ quotesingle
+ -20
+ registered
+ -15
+ semicolon
+ -30
+ slash
+ -60
+ sterling
+ -35
+ underscore
+ -210
+ yen
+ -40
+
+ public.kern1.p
+
+ asciicircum
+ -40
+ asciitilde
+ -10
+ asterisk
+ -40
+ backslash
+ -120
+ braceleft
+ -25
+ braceright
+ -30
+ colon
+ -20
+ comma
+ -25
+ degree
+ -75
+ dollar
+ -65
+ ellipsis
+ -20
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ -20
+ guilsinglleft
+ 35
+ guilsinglright
+ -20
+ multiply
+ -20
+ numbersign
+ -50
+ paragraph
+ -40
+ parenright
+ -125
+ percent
+ -60
+ perthousand
+ -60
+ public.kern2.A
+ -40
+ public.kern2.J
+ -30
+ public.kern2.S
+ -40
+ public.kern2.T
+ -50
+ public.kern2.V
+ -65
+ public.kern2.W
+ -45
+ public.kern2.X
+ -50
+ public.kern2.Y
+ -70
+ public.kern2.a
+ -10
+ public.kern2.s
+ -25
+ public.kern2.v
+ -25
+ public.kern2.w
+ -25
+ public.kern2.x
+ -40
+ public.kern2.y
+ -45
+ question
+ -110
+ questiondown
+ -50
+ quotedbl
+ -75
+ quotedblbase
+ -25
+ quotedblleft
+ -40
+ quotedblright
+ -85
+ quoteleft
+ -40
+ quoteright
+ -85
+ quotesinglbase
+ -25
+ quotesingle
+ -75
+ registered
+ -20
+ semicolon
+ -25
+ slash
+ -55
+ sterling
+ -35
+ trademark
+ -60
+ underscore
+ -175
+ yen
+ -65
+
+ public.kern1.q
+
+ backslash
+ -45
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ public.kern2.J
+ 30
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.Y
+ -30
+ public.kern2.j
+ 50
+ question
+ -85
+ quotedbl
+ -15
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesingle
+ -15
+ slash
+ 50
+ sterling
+ -10
+ yen
+ -30
+
+ public.kern1.r
+
+ ampersand
+ -30
+ asciitilde
+ -10
+ backslash
+ -15
+ braceleft
+ -25
+ braceright
+ -35
+ comma
+ -120
+ dollar
+ -25
+ ellipsis
+ -120
+ euro
+ -60
+ guillemetleft
+ -15
+ guillemetright
+ 15
+ guilsinglleft
+ -15
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -75
+ public.kern2.A
+ -55
+ public.kern2.J
+ -90
+ public.kern2.V
+ -20
+ public.kern2.W
+ -10
+ public.kern2.X
+ -25
+ public.kern2.Y
+ -20
+ public.kern2.a
+ -40
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ question
+ -35
+ questiondown
+ -115
+ quotedblbase
+ -120
+ quotesinglbase
+ -120
+ slash
+ -100
+ sterling
+ -35
+ underscore
+ -210
+ yen
+ -20
+
+ public.kern1.s
+
+ asciicircum
+ -60
+ asciitilde
+ -90
+ asterisk
+ -35
+ backslash
+ -85
+ braceleft
+ -25
+ braceright
+ -30
+ bullet
+ -25
+ cent
+ -10
+ copyright
+ -10
+ degree
+ -40
+ dollar
+ -45
+ euro
+ -65
+ guillemetleft
+ 10
+ guilsinglleft
+ 10
+ less
+ -15
+ multiply
+ -35
+ numbersign
+ -30
+ paragraph
+ -30
+ parenright
+ -100
+ percent
+ -30
+ periodcentered
+ -20
+ perthousand
+ -30
+ public.kern2.A
+ -25
+ public.kern2.C
+ -30
+ public.kern2.G
+ -30
+ public.kern2.O
+ -30
+ public.kern2.Oslash
+ -30
+ public.kern2.Q
+ -30
+ public.kern2.S
+ -15
+ public.kern2.T
+ -30
+ public.kern2.U
+ -15
+ public.kern2.V
+ -65
+ public.kern2.W
+ -55
+ public.kern2.X
+ -30
+ public.kern2.Y
+ -65
+ public.kern2.c
+ -10
+ public.kern2.d
+ -10
+ public.kern2.e
+ -10
+ public.kern2.f
+ -30
+ public.kern2.g
+ -15
+ public.kern2.o
+ -10
+ public.kern2.oslash
+ -10
+ public.kern2.q
+ -10
+ public.kern2.s
+ -40
+ public.kern2.t
+ -30
+ public.kern2.tcaron
+ -30
+ public.kern2.v
+ -35
+ public.kern2.w
+ -35
+ public.kern2.x
+ -25
+ public.kern2.y
+ -35
+ question
+ -90
+ questiondown
+ -25
+ quotedbl
+ -50
+ quotedblleft
+ -30
+ quotedblright
+ -70
+ quoteleft
+ -30
+ quoteright
+ -70
+ quotesingle
+ -50
+ registered
+ -35
+ slash
+ -30
+ sterling
+ -20
+ trademark
+ -30
+ underscore
+ -145
+ yen
+ -65
+
+ public.kern1.t
+
+ ampersand
+ -30
+ asciitilde
+ -10
+ backslash
+ -45
+ braceleft
+ -25
+ braceright
+ -35
+ comma
+ -35
+ dollar
+ -25
+ ellipsis
+ -35
+ euro
+ -60
+ guillemetleft
+ -15
+ guillemetright
+ 15
+ guilsinglleft
+ -15
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -40
+ parenright
+ -35
+ public.kern2.A
+ -15
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.X
+ -15
+ public.kern2.Y
+ -30
+ public.kern2.a
+ -40
+ public.kern2.j
+ 15
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ question
+ -95
+ questiondown
+ -15
+ quotedbl
+ -15
+ quotedblbase
+ -35
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesinglbase
+ -35
+ quotesingle
+ -15
+ slash
+ 15
+ sterling
+ -25
+ underscore
+ -20
+ yen
+ -30
+
+ public.kern1.tcaron
+
+ ampersand
+ -60
+ asciicircum
+ -20
+ asciitilde
+ -65
+ asterisk
+ 45
+ at
+ -45
+ backslash
+ 50
+ bar
+ 45
+ braceleft
+ -30
+ bracketleft
+ 45
+ bracketright
+ 45
+ bullet
+ -70
+ cent
+ -70
+ colon
+ 0
+ comma
+ -155
+ copyright
+ -35
+ degree
+ 40
+ ellipsis
+ -220
+ emdash
+ -50
+ endash
+ -50
+ equal
+ 45
+ euro
+ -40
+ greater
+ 45
+ guillemetleft
+ -125
+ guillemetright
+ -15
+ guilsinglleft
+ -125
+ guilsinglright
+ -15
+ hyphen
+ -50
+ multiply
+ -40
+ numbersign
+ -90
+ paragraph
+ 30
+ parenleft
+ -25
+ parenright
+ 40
+ percent
+ 40
+ periodcentered
+ -110
+ perthousand
+ 40
+ public.kern2.A
+ -50
+ public.kern2.B
+ 45
+ public.kern2.C
+ -15
+ public.kern2.D
+ 45
+ public.kern2.E
+ 45
+ public.kern2.Eth
+ 45
+ public.kern2.F
+ 45
+ public.kern2.G
+ -10
+ public.kern2.H
+ 45
+ public.kern2.I
+ 45
+ public.kern2.J
+ -180
+ public.kern2.K
+ 45
+ public.kern2.L
+ 45
+ public.kern2.Lslash
+ 45
+ public.kern2.M
+ 45
+ public.kern2.N
+ 45
+ public.kern2.O
+ -15
+ public.kern2.Oslash
+ -15
+ public.kern2.P
+ 45
+ public.kern2.Q
+ -10
+ public.kern2.R
+ 45
+ public.kern2.S
+ 30
+ public.kern2.T
+ 45
+ public.kern2.Thorn
+ 45
+ public.kern2.U
+ 45
+ public.kern2.V
+ 30
+ public.kern2.W
+ 35
+ public.kern2.X
+ 25
+ public.kern2.Y
+ 30
+ public.kern2.Z
+ 45
+ public.kern2.a
+ -15
+ public.kern2.a.alt
+ -60
+ public.kern2.b
+ 45
+ public.kern2.c
+ -80
+ public.kern2.d
+ -65
+ public.kern2.dcaron
+ -65
+ public.kern2.dcroat
+ -65
+ public.kern2.e
+ -70
+ public.kern2.eth
+ -60
+ public.kern2.f
+ 30
+ public.kern2.g
+ -55
+ public.kern2.germandbls
+ 35
+ public.kern2.h
+ 45
+ public.kern2.i
+ 30
+ public.kern2.j
+ 30
+ public.kern2.l
+ 45
+ public.kern2.lcaron
+ 45
+ public.kern2.lslash
+ 45
+ public.kern2.m
+ 30
+ public.kern2.n
+ 30
+ public.kern2.o
+ -80
+ public.kern2.oslash
+ -80
+ public.kern2.p
+ 30
+ public.kern2.q
+ -65
+ public.kern2.r
+ 30
+ public.kern2.s
+ -50
+ public.kern2.t
+ 30
+ public.kern2.tcaron
+ 30
+ public.kern2.thorn
+ 45
+ public.kern2.u
+ 30
+ public.kern2.v
+ 25
+ public.kern2.w
+ 25
+ public.kern2.x
+ 20
+ public.kern2.y
+ 25
+ public.kern2.z
+ 30
+ question
+ 45
+ questiondown
+ -115
+ quotedbl
+ 45
+ quotedblbase
+ -220
+ quotedblleft
+ 30
+ quotedblright
+ 45
+ quoteleft
+ 30
+ quoteright
+ 45
+ quotesinglbase
+ -155
+ quotesingle
+ 45
+ registered
+ 20
+ slash
+ -160
+ sterling
+ -80
+ trademark
+ 45
+ underscore
+ -205
+ yen
+ 30
+
+ public.kern1.thorn
+
+ asciicircum
+ -40
+ asciitilde
+ -10
+ asterisk
+ -40
+ backslash
+ -120
+ braceleft
+ -25
+ braceright
+ -30
+ colon
+ -20
+ comma
+ -25
+ degree
+ -75
+ dollar
+ -65
+ ellipsis
+ -20
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ -25
+ guilsinglleft
+ 35
+ guilsinglright
+ -25
+ multiply
+ -20
+ numbersign
+ -50
+ paragraph
+ -40
+ parenright
+ -125
+ percent
+ -60
+ perthousand
+ -60
+ public.kern2.A
+ -35
+ public.kern2.J
+ -25
+ public.kern2.S
+ -40
+ public.kern2.T
+ -50
+ public.kern2.V
+ -65
+ public.kern2.W
+ -45
+ public.kern2.X
+ -50
+ public.kern2.Y
+ -70
+ public.kern2.a
+ -10
+ public.kern2.s
+ -25
+ public.kern2.v
+ -25
+ public.kern2.w
+ -25
+ public.kern2.x
+ -35
+ public.kern2.y
+ -45
+ question
+ -110
+ questiondown
+ -50
+ quotedbl
+ -75
+ quotedblbase
+ -25
+ quotedblleft
+ -40
+ quotedblright
+ -85
+ quoteleft
+ -40
+ quoteright
+ -85
+ quotesinglbase
+ -25
+ quotesingle
+ -75
+ registered
+ -20
+ semicolon
+ -25
+ slash
+ -55
+ sterling
+ -35
+ trademark
+ -60
+ underscore
+ -170
+ yen
+ -65
+
+ public.kern1.u
+
+ backslash
+ -45
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ parenright
+ -30
+ public.kern2.J
+ 30
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.Y
+ -30
+ question
+ -85
+ quotedbl
+ -15
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesingle
+ -15
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -265
+ yen
+ -30
+
+ public.kern1.v
+
+ ampersand
+ -30
+ asciicircum
+ -10
+ asciitilde
+ -25
+ at
+ -20
+ backslash
+ -45
+ braceleft
+ -40
+ braceright
+ -35
+ bullet
+ -20
+ cent
+ -25
+ comma
+ -40
+ copyright
+ -20
+ dollar
+ -30
+ ellipsis
+ -40
+ emdash
+ -10
+ endash
+ -10
+ euro
+ -65
+ guillemetleft
+ 10
+ guilsinglleft
+ 10
+ hyphen
+ -10
+ multiply
+ -20
+ numbersign
+ -60
+ parenleft
+ -20
+ parenright
+ -50
+ periodcentered
+ -20
+ public.kern2.A
+ -50
+ public.kern2.C
+ -15
+ public.kern2.G
+ -15
+ public.kern2.J
+ -10
+ public.kern2.O
+ -15
+ public.kern2.Oslash
+ -15
+ public.kern2.Q
+ -15
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.X
+ -40
+ public.kern2.Y
+ -30
+ public.kern2.a
+ -35
+ public.kern2.a.alt
+ -20
+ public.kern2.c
+ -25
+ public.kern2.d
+ -20
+ public.kern2.dcaron
+ -20
+ public.kern2.dcroat
+ -20
+ public.kern2.e
+ -20
+ public.kern2.eth
+ -25
+ public.kern2.g
+ -20
+ public.kern2.o
+ -25
+ public.kern2.oslash
+ -25
+ public.kern2.q
+ -20
+ public.kern2.s
+ -35
+ public.kern2.x
+ -10
+ question
+ -105
+ questiondown
+ -45
+ quotedbl
+ -15
+ quotedblbase
+ -40
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesinglbase
+ -40
+ quotesingle
+ -15
+ semicolon
+ -10
+ slash
+ -25
+ sterling
+ -50
+ underscore
+ -315
+ yen
+ -35
+
+ public.kern1.w
+
+ ampersand
+ -35
+ asciicircum
+ -15
+ asciitilde
+ -30
+ asterisk
+ -10
+ at
+ -25
+ backslash
+ -45
+ braceleft
+ -45
+ braceright
+ -35
+ bullet
+ -20
+ cent
+ -25
+ colon
+ -10
+ comma
+ -45
+ copyright
+ -25
+ dollar
+ -30
+ ellipsis
+ -45
+ emdash
+ -15
+ endash
+ -15
+ euro
+ -65
+ hyphen
+ -15
+ multiply
+ -20
+ numbersign
+ -65
+ parenleft
+ -25
+ parenright
+ -50
+ periodcentered
+ -25
+ public.kern2.A
+ -55
+ public.kern2.C
+ -15
+ public.kern2.G
+ -15
+ public.kern2.J
+ -20
+ public.kern2.O
+ -15
+ public.kern2.Oslash
+ -20
+ public.kern2.Q
+ -15
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.X
+ -40
+ public.kern2.Y
+ -30
+ public.kern2.a
+ -40
+ public.kern2.a.alt
+ -25
+ public.kern2.c
+ -25
+ public.kern2.d
+ -25
+ public.kern2.dcaron
+ -25
+ public.kern2.dcroat
+ -25
+ public.kern2.e
+ -25
+ public.kern2.eth
+ -25
+ public.kern2.g
+ -25
+ public.kern2.o
+ -25
+ public.kern2.oslash
+ -25
+ public.kern2.q
+ -25
+ public.kern2.s
+ -35
+ public.kern2.x
+ -10
+ question
+ -105
+ questiondown
+ -55
+ quotedbl
+ -15
+ quotedblbase
+ -45
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesinglbase
+ -45
+ quotesingle
+ -15
+ registered
+ -10
+ semicolon
+ -10
+ slash
+ -35
+ sterling
+ -50
+ underscore
+ -330
+ yen
+ -35
+
+ public.kern1.x
+
+ ampersand
+ -25
+ asciicircum
+ -25
+ asciitilde
+ -45
+ asterisk
+ -20
+ at
+ -35
+ backslash
+ -55
+ braceleft
+ -55
+ braceright
+ -30
+ bullet
+ -40
+ cent
+ -40
+ colon
+ -15
+ comma
+ -15
+ copyright
+ -40
+ degree
+ -15
+ divide
+ -20
+ dollar
+ -25
+ ellipsis
+ -15
+ emdash
+ -25
+ endash
+ -25
+ equal
+ -10
+ euro
+ -75
+ guillemetleft
+ -10
+ guilsinglleft
+ -10
+ hyphen
+ -25
+ less
+ -20
+ minus
+ -20
+ multiply
+ -35
+ numbersign
+ -25
+ paragraph
+ -15
+ parenleft
+ -35
+ parenright
+ -30
+ percent
+ -10
+ periodcentered
+ -40
+ perthousand
+ -10
+ plus
+ -20
+ public.kern2.C
+ -30
+ public.kern2.G
+ -30
+ public.kern2.J
+ 20
+ public.kern2.O
+ -30
+ public.kern2.Q
+ -30
+ public.kern2.S
+ -10
+ public.kern2.T
+ -10
+ public.kern2.U
+ -10
+ public.kern2.V
+ -40
+ public.kern2.W
+ -30
+ public.kern2.Y
+ -40
+ public.kern2.a
+ -25
+ public.kern2.a.alt
+ -35
+ public.kern2.c
+ -40
+ public.kern2.d
+ -35
+ public.kern2.dcaron
+ -35
+ public.kern2.dcroat
+ -35
+ public.kern2.e
+ -40
+ public.kern2.eth
+ -35
+ public.kern2.f
+ -10
+ public.kern2.g
+ -40
+ public.kern2.o
+ -40
+ public.kern2.q
+ -35
+ public.kern2.s
+ -15
+ public.kern2.t
+ -10
+ public.kern2.tcaron
+ -10
+ public.kern2.u
+ -10
+ public.kern2.v
+ -10
+ public.kern2.w
+ -10
+ public.kern2.y
+ -10
+ question
+ -100
+ quotedbl
+ -25
+ quotedblbase
+ -15
+ quotedblleft
+ -15
+ quotedblright
+ -30
+ quoteleft
+ -15
+ quoteright
+ -30
+ quotesinglbase
+ -15
+ quotesingle
+ -25
+ registered
+ -20
+ semicolon
+ -15
+ slash
+ 20
+ sterling
+ -10
+ trademark
+ -10
+ underscore
+ -295
+ yen
+ -45
+
+ public.kern1.y
+
+ ampersand
+ -60
+ asciicircum
+ -25
+ asciitilde
+ -50
+ asterisk
+ -15
+ at
+ -45
+ backslash
+ -45
+ braceleft
+ -55
+ braceright
+ -35
+ bullet
+ -40
+ cent
+ -45
+ colon
+ -15
+ comma
+ -80
+ copyright
+ -40
+ divide
+ -15
+ dollar
+ -30
+ ellipsis
+ -80
+ emdash
+ -25
+ endash
+ -25
+ euro
+ -65
+ guillemetleft
+ -20
+ guilsinglleft
+ -20
+ hyphen
+ -25
+ less
+ -15
+ minus
+ -15
+ multiply
+ -30
+ numbersign
+ -105
+ parenleft
+ -40
+ parenright
+ -50
+ periodcentered
+ -45
+ plus
+ -15
+ public.kern2.A
+ -85
+ public.kern2.C
+ -30
+ public.kern2.G
+ -30
+ public.kern2.J
+ -60
+ public.kern2.O
+ -30
+ public.kern2.Oslash
+ -30
+ public.kern2.Q
+ -30
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.X
+ -40
+ public.kern2.Y
+ -30
+ public.kern2.a
+ -40
+ public.kern2.a.alt
+ -45
+ public.kern2.c
+ -45
+ public.kern2.d
+ -45
+ public.kern2.dcaron
+ -45
+ public.kern2.dcroat
+ -45
+ public.kern2.e
+ -45
+ public.kern2.eth
+ -45
+ public.kern2.g
+ -40
+ public.kern2.o
+ -45
+ public.kern2.oslash
+ -45
+ public.kern2.q
+ -45
+ public.kern2.s
+ -50
+ public.kern2.x
+ -10
+ question
+ -105
+ questiondown
+ -95
+ quotedbl
+ -15
+ quotedblbase
+ -80
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesinglbase
+ -80
+ quotesingle
+ -15
+ registered
+ -10
+ semicolon
+ -15
+ slash
+ -75
+ sterling
+ -65
+ underscore
+ -110
+ yen
+ -35
+
+ public.kern1.z
+
+ backslash
+ -45
+ braceleft
+ -25
+ braceright
+ -30
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ 35
+ guillemetright
+ 15
+ guilsinglleft
+ 35
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -20
+ parenright
+ -30
+ public.kern2.J
+ 30
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.Y
+ -30
+ question
+ -85
+ quotedbl
+ -15
+ quotedblright
+ -20
+ quoteright
+ -20
+ quotesingle
+ -15
+ slash
+ 20
+ sterling
+ -10
+ underscore
+ -275
+ yen
+ -30
+
+ question
+
+ ampersand
+ -95
+ asciicircum
+ -15
+ asciitilde
+ -50
+ at
+ -40
+ backslash
+ -30
+ braceleft
+ -65
+ braceright
+ -35
+ bullet
+ -50
+ cent
+ -55
+ comma
+ -115
+ copyright
+ -35
+ dollar
+ -25
+ ellipsis
+ -115
+ emdash
+ -20
+ endash
+ -20
+ euro
+ -60
+ guillemetleft
+ -90
+ guilsinglleft
+ -90
+ hyphen
+ -20
+ multiply
+ -25
+ numbersign
+ -110
+ parenleft
+ -35
+ parenright
+ -15
+ periodcentered
+ -70
+ public.kern2.A
+ -80
+ public.kern2.C
+ -20
+ public.kern2.G
+ -20
+ public.kern2.J
+ -90
+ public.kern2.O
+ -20
+ public.kern2.Oslash
+ -20
+ public.kern2.Q
+ -20
+ public.kern2.V
+ -30
+ public.kern2.W
+ -20
+ public.kern2.X
+ -35
+ public.kern2.Y
+ -30
+ public.kern2.a
+ -40
+ public.kern2.a.alt
+ -50
+ public.kern2.c
+ -60
+ public.kern2.d
+ -50
+ public.kern2.dcaron
+ -50
+ public.kern2.dcroat
+ -50
+ public.kern2.e
+ -55
+ public.kern2.eth
+ -60
+ public.kern2.g
+ -45
+ public.kern2.o
+ -60
+ public.kern2.oslash
+ -60
+ public.kern2.q
+ -50
+ public.kern2.s
+ -45
+ public.kern2.x
+ -10
+ question
+ -35
+ questiondown
+ -120
+ quotedbl
+ -10
+ quotedblbase
+ -115
+ quotedblright
+ -10
+ quoteright
+ -10
+ quotesinglbase
+ -115
+ quotesingle
+ -10
+ slash
+ -120
+ sterling
+ -70
+ underscore
+ -170
+ yen
+ -30
+
+ questiondown
+
+ ampersand
+ -140
+ asciicircum
+ -90
+ asciitilde
+ -110
+ asterisk
+ -90
+ at
+ -105
+ backslash
+ -155
+ bar
+ -30
+ braceleft
+ -100
+ braceright
+ -45
+ bullet
+ -105
+ cent
+ -110
+ colon
+ -85
+ comma
+ -65
+ copyright
+ -100
+ degree
+ -110
+ divide
+ -85
+ dollar
+ -115
+ ellipsis
+ -135
+ emdash
+ -85
+ endash
+ -85
+ equal
+ -85
+ euro
+ -145
+ greater
+ -85
+ guillemetleft
+ -105
+ guillemetright
+ -70
+ guilsinglleft
+ -105
+ guilsinglright
+ -70
+ hyphen
+ -85
+ less
+ -85
+ minus
+ -85
+ multiply
+ -95
+ numbersign
+ -125
+ paragraph
+ -90
+ parenleft
+ -100
+ parenright
+ -60
+ percent
+ -100
+ periodcentered
+ -115
+ perthousand
+ -100
+ plus
+ -85
+ public.kern2.A
+ -100
+ public.kern2.B
+ -80
+ public.kern2.C
+ -90
+ public.kern2.D
+ -80
+ public.kern2.E
+ -85
+ public.kern2.Eth
+ -80
+ public.kern2.F
+ -85
+ public.kern2.G
+ -90
+ public.kern2.H
+ -85
+ public.kern2.I
+ -85
+ public.kern2.J
+ -110
+ public.kern2.K
+ -85
+ public.kern2.L
+ -85
+ public.kern2.Lslash
+ -85
+ public.kern2.M
+ -85
+ public.kern2.N
+ -85
+ public.kern2.O
+ -90
+ public.kern2.Oslash
+ -90
+ public.kern2.P
+ -85
+ public.kern2.Q
+ -90
+ public.kern2.R
+ -85
+ public.kern2.S
+ -90
+ public.kern2.T
+ -90
+ public.kern2.Thorn
+ -85
+ public.kern2.U
+ -85
+ public.kern2.V
+ -130
+ public.kern2.W
+ -115
+ public.kern2.X
+ -100
+ public.kern2.Y
+ -130
+ public.kern2.Z
+ -85
+ public.kern2.a
+ -140
+ public.kern2.a.alt
+ -110
+ public.kern2.b
+ -85
+ public.kern2.c
+ -115
+ public.kern2.d
+ -110
+ public.kern2.dcaron
+ -110
+ public.kern2.dcroat
+ -110
+ public.kern2.e
+ -110
+ public.kern2.eth
+ -115
+ public.kern2.f
+ -85
+ public.kern2.g
+ -70
+ public.kern2.germandbls
+ -85
+ public.kern2.h
+ -85
+ public.kern2.i
+ -85
+ public.kern2.j
+ 40
+ public.kern2.l
+ -85
+ public.kern2.lcaron
+ -85
+ public.kern2.lslash
+ -85
+ public.kern2.m
+ -85
+ public.kern2.n
+ -85
+ public.kern2.o
+ -115
+ public.kern2.oslash
+ -100
+ public.kern2.q
+ -110
+ public.kern2.r
+ -85
+ public.kern2.s
+ -110
+ public.kern2.t
+ -85
+ public.kern2.tcaron
+ -85
+ public.kern2.u
+ -85
+ public.kern2.v
+ -95
+ public.kern2.w
+ -95
+ public.kern2.x
+ -100
+ public.kern2.y
+ -55
+ public.kern2.z
+ -85
+ question
+ -220
+ questiondown
+ -35
+ quotedbl
+ -120
+ quotedblbase
+ -65
+ quotedblleft
+ -90
+ quotedblright
+ -135
+ quoteleft
+ -90
+ quoteright
+ -135
+ quotesinglbase
+ -65
+ quotesingle
+ -120
+ registered
+ -85
+ semicolon
+ -75
+ slash
+ 20
+ sterling
+ -110
+ trademark
+ -90
+ yen
+ -135
+
+ quotedbl
+
+ ampersand
+ -105
+ asciicircum
+ -45
+ asciitilde
+ -75
+ at
+ -70
+ backslash
+ 0
+ braceleft
+ -75
+ braceright
+ -40
+ bullet
+ -70
+ cent
+ -80
+ colon
+ -30
+ comma
+ -155
+ copyright
+ -65
+ divide
+ -30
+ dollar
+ -40
+ ellipsis
+ -285
+ emdash
+ -45
+ endash
+ -45
+ euro
+ -80
+ guillemetleft
+ -115
+ guillemetright
+ -25
+ guilsinglleft
+ -115
+ guilsinglright
+ -25
+ hyphen
+ -45
+ less
+ -30
+ minus
+ -30
+ multiply
+ -50
+ numbersign
+ -135
+ paragraph
+ -15
+ parenleft
+ -60
+ percent
+ -10
+ periodcentered
+ -90
+ perthousand
+ -10
+ plus
+ -30
+ public.kern2.A
+ -95
+ public.kern2.C
+ -45
+ public.kern2.G
+ -45
+ public.kern2.J
+ -250
+ public.kern2.O
+ -45
+ public.kern2.Oslash
+ -50
+ public.kern2.Q
+ -45
+ public.kern2.S
+ -15
+ public.kern2.V
+ -10
+ public.kern2.W
+ -10
+ public.kern2.X
+ -15
+ public.kern2.Y
+ -10
+ public.kern2.a
+ -55
+ public.kern2.a.alt
+ -75
+ public.kern2.c
+ -85
+ public.kern2.d
+ -75
+ public.kern2.dcaron
+ -75
+ public.kern2.dcroat
+ -75
+ public.kern2.e
+ -80
+ public.kern2.eth
+ -80
+ public.kern2.f
+ -15
+ public.kern2.g
+ -70
+ public.kern2.germandbls
+ -10
+ public.kern2.i
+ -15
+ public.kern2.j
+ -15
+ public.kern2.m
+ -15
+ public.kern2.n
+ -15
+ public.kern2.o
+ -80
+ public.kern2.oslash
+ -80
+ public.kern2.p
+ -15
+ public.kern2.q
+ -75
+ public.kern2.r
+ -15
+ public.kern2.s
+ -70
+ public.kern2.t
+ -15
+ public.kern2.tcaron
+ -15
+ public.kern2.u
+ -15
+ public.kern2.v
+ -15
+ public.kern2.w
+ -15
+ public.kern2.x
+ -25
+ public.kern2.y
+ -15
+ public.kern2.z
+ -15
+ questiondown
+ -150
+ quotedblbase
+ -285
+ quotedblleft
+ -15
+ quoteleft
+ -15
+ quotesinglbase
+ -155
+ registered
+ -25
+ semicolon
+ -30
+ slash
+ -190
+ sterling
+ -90
+ underscore
+ -285
+ yen
+ -10
+
+ quotedblbase
+
+ ampersand
+ -15
+ asciicircum
+ -250
+ asciitilde
+ -245
+ asterisk
+ -215
+ at
+ -25
+ backslash
+ -210
+ braceleft
+ -45
+ braceright
+ -30
+ bullet
+ -70
+ cent
+ -35
+ copyright
+ -35
+ degree
+ -210
+ divide
+ -50
+ dollar
+ -15
+ emdash
+ -15
+ endash
+ -15
+ euro
+ -105
+ guillemetleft
+ -50
+ guillemetright
+ 10
+ guilsinglleft
+ -50
+ guilsinglright
+ 10
+ hyphen
+ -15
+ less
+ -80
+ minus
+ -50
+ multiply
+ -100
+ numbersign
+ -25
+ paragraph
+ -245
+ parenleft
+ -25
+ parenright
+ -25
+ percent
+ -90
+ periodcentered
+ -65
+ perthousand
+ -100
+ plus
+ -50
+ public.kern2.A
+ -10
+ public.kern2.C
+ -70
+ public.kern2.G
+ -70
+ public.kern2.J
+ 30
+ public.kern2.O
+ -70
+ public.kern2.Oslash
+ -10
+ public.kern2.Q
+ -65
+ public.kern2.T
+ -80
+ public.kern2.U
+ -45
+ public.kern2.V
+ -100
+ public.kern2.W
+ -70
+ public.kern2.X
+ -10
+ public.kern2.Y
+ -80
+ public.kern2.a
+ -10
+ public.kern2.a.alt
+ -30
+ public.kern2.c
+ -40
+ public.kern2.d
+ -30
+ public.kern2.dcaron
+ -30
+ public.kern2.dcroat
+ -30
+ public.kern2.e
+ -35
+ public.kern2.eth
+ -30
+ public.kern2.f
+ -40
+ public.kern2.g
+ -45
+ public.kern2.j
+ 15
+ public.kern2.o
+ -40
+ public.kern2.oslash
+ -10
+ public.kern2.q
+ -30
+ public.kern2.t
+ -45
+ public.kern2.tcaron
+ -45
+ public.kern2.u
+ -15
+ public.kern2.v
+ -45
+ public.kern2.w
+ -50
+ public.kern2.x
+ -10
+ public.kern2.y
+ -85
+ question
+ -90
+ quotedbl
+ -285
+ quotedblleft
+ -305
+ quotedblright
+ -305
+ quoteleft
+ -155
+ quoteright
+ -155
+ quotesingle
+ -145
+ registered
+ -145
+ slash
+ 15
+ sterling
+ -10
+ trademark
+ -305
+ underscore
+ -15
+ yen
+ -65
+
+ quotedblleft
+
+ ampersand
+ -85
+ asciitilde
+ -35
+ at
+ -30
+ backslash
+ -45
+ braceleft
+ -45
+ braceright
+ -35
+ bullet
+ -35
+ cent
+ -40
+ comma
+ -155
+ copyright
+ -25
+ degree
+ -15
+ dollar
+ -30
+ ellipsis
+ -305
+ emdash
+ -10
+ endash
+ -10
+ euro
+ -60
+ guillemetleft
+ -70
+ guillemetright
+ 15
+ guilsinglleft
+ -70
+ guilsinglright
+ 15
+ hyphen
+ -10
+ multiply
+ -15
+ numbersign
+ -100
+ parenleft
+ -25
+ parenright
+ -50
+ periodcentered
+ -50
+ public.kern2.A
+ -75
+ public.kern2.C
+ -10
+ public.kern2.G
+ -10
+ public.kern2.J
+ -250
+ public.kern2.O
+ -10
+ public.kern2.Oslash
+ -10
+ public.kern2.Q
+ -10
+ public.kern2.V
+ -40
+ public.kern2.W
+ -25
+ public.kern2.X
+ -50
+ public.kern2.Y
+ -40
+ public.kern2.a
+ -50
+ public.kern2.a.alt
+ -35
+ public.kern2.c
+ -45
+ public.kern2.d
+ -35
+ public.kern2.dcaron
+ -35
+ public.kern2.dcroat
+ -35
+ public.kern2.e
+ -40
+ public.kern2.eth
+ -40
+ public.kern2.g
+ -30
+ public.kern2.o
+ -45
+ public.kern2.oslash
+ -45
+ public.kern2.q
+ -35
+ public.kern2.s
+ -30
+ public.kern2.x
+ -20
+ public.kern2.y
+ -10
+ question
+ -55
+ questiondown
+ -115
+ quotedbl
+ -25
+ quotedblbase
+ -305
+ quotedblright
+ -30
+ quoteright
+ -30
+ quotesinglbase
+ -155
+ quotesingle
+ -25
+ slash
+ -150
+ sterling
+ -50
+ underscore
+ -305
+ yen
+ -40
+
+ quotedblright
+
+ ampersand
+ -95
+ asciicircum
+ -40
+ asciitilde
+ -80
+ at
+ -65
+ braceleft
+ -70
+ braceright
+ -35
+ bullet
+ -80
+ cent
+ -85
+ colon
+ -20
+ comma
+ -155
+ copyright
+ -55
+ divide
+ -25
+ dollar
+ -35
+ ellipsis
+ -305
+ emdash
+ -50
+ endash
+ -50
+ euro
+ -70
+ guillemetleft
+ -130
+ guillemetright
+ -25
+ guilsinglleft
+ -130
+ guilsinglright
+ -25
+ hyphen
+ -50
+ less
+ -25
+ minus
+ -25
+ multiply
+ -50
+ numbersign
+ -125
+ parenleft
+ -55
+ periodcentered
+ -105
+ plus
+ -25
+ public.kern2.A
+ -90
+ public.kern2.C
+ -40
+ public.kern2.G
+ -40
+ public.kern2.J
+ -250
+ public.kern2.O
+ -40
+ public.kern2.Oslash
+ -40
+ public.kern2.Q
+ -35
+ public.kern2.V
+ -20
+ public.kern2.W
+ -15
+ public.kern2.X
+ -25
+ public.kern2.Y
+ -20
+ public.kern2.a
+ -45
+ public.kern2.a.alt
+ -75
+ public.kern2.c
+ -90
+ public.kern2.d
+ -75
+ public.kern2.dcaron
+ -75
+ public.kern2.dcroat
+ -75
+ public.kern2.e
+ -85
+ public.kern2.eth
+ -90
+ public.kern2.g
+ -70
+ public.kern2.o
+ -90
+ public.kern2.oslash
+ -90
+ public.kern2.q
+ -75
+ public.kern2.s
+ -65
+ public.kern2.x
+ -15
+ questiondown
+ -140
+ quotedblbase
+ -305
+ quotesinglbase
+ -155
+ registered
+ -15
+ semicolon
+ -20
+ slash
+ -190
+ sterling
+ -100
+ underscore
+ -305
+ yen
+ -20
+
+ quoteleft
+
+ ampersand
+ -85
+ asciitilde
+ -35
+ at
+ -30
+ backslash
+ -45
+ braceleft
+ -45
+ braceright
+ -35
+ bullet
+ -35
+ cent
+ -40
+ comma
+ -155
+ copyright
+ -25
+ degree
+ -15
+ dollar
+ -30
+ ellipsis
+ -155
+ emdash
+ -10
+ endash
+ -10
+ euro
+ -60
+ guillemetleft
+ -70
+ guillemetright
+ 15
+ guilsinglleft
+ -70
+ guilsinglright
+ 15
+ hyphen
+ -10
+ multiply
+ -15
+ numbersign
+ -100
+ parenleft
+ -25
+ parenright
+ -50
+ periodcentered
+ -50
+ public.kern2.A
+ -75
+ public.kern2.C
+ -10
+ public.kern2.G
+ -10
+ public.kern2.J
+ -155
+ public.kern2.O
+ -10
+ public.kern2.Oslash
+ -10
+ public.kern2.Q
+ -10
+ public.kern2.V
+ -40
+ public.kern2.W
+ -25
+ public.kern2.X
+ -50
+ public.kern2.Y
+ -40
+ public.kern2.a
+ -50
+ public.kern2.a.alt
+ -35
+ public.kern2.c
+ -45
+ public.kern2.d
+ -35
+ public.kern2.dcaron
+ -35
+ public.kern2.dcroat
+ -35
+ public.kern2.e
+ -40
+ public.kern2.eth
+ -40
+ public.kern2.g
+ -30
+ public.kern2.o
+ -45
+ public.kern2.oslash
+ -45
+ public.kern2.q
+ -35
+ public.kern2.s
+ -30
+ public.kern2.x
+ -20
+ public.kern2.y
+ -10
+ question
+ -55
+ questiondown
+ -115
+ quotedbl
+ -25
+ quotedblbase
+ -155
+ quotedblright
+ -30
+ quoteright
+ -30
+ quotesinglbase
+ -155
+ quotesingle
+ -25
+ slash
+ -150
+ sterling
+ -50
+ underscore
+ -155
+ yen
+ -40
+
+ quoteright
+
+ ampersand
+ -95
+ asciicircum
+ -40
+ asciitilde
+ -80
+ at
+ -65
+ braceleft
+ -70
+ braceright
+ -35
+ bullet
+ -80
+ cent
+ -85
+ colon
+ -20
+ comma
+ -155
+ copyright
+ -55
+ divide
+ -25
+ dollar
+ -35
+ ellipsis
+ -155
+ emdash
+ -50
+ endash
+ -50
+ euro
+ -70
+ guillemetleft
+ -130
+ guillemetright
+ -25
+ guilsinglleft
+ -130
+ guilsinglright
+ -25
+ hyphen
+ -50
+ less
+ -25
+ minus
+ -25
+ multiply
+ -50
+ numbersign
+ -125
+ parenleft
+ -55
+ periodcentered
+ -105
+ plus
+ -25
+ public.kern2.A
+ -90
+ public.kern2.C
+ -40
+ public.kern2.G
+ -40
+ public.kern2.J
+ -155
+ public.kern2.O
+ -40
+ public.kern2.Oslash
+ -40
+ public.kern2.Q
+ -35
+ public.kern2.V
+ -20
+ public.kern2.W
+ -15
+ public.kern2.X
+ -25
+ public.kern2.Y
+ -20
+ public.kern2.a
+ -45
+ public.kern2.a.alt
+ -75
+ public.kern2.c
+ -90
+ public.kern2.d
+ -75
+ public.kern2.dcaron
+ -75
+ public.kern2.dcroat
+ -75
+ public.kern2.e
+ -85
+ public.kern2.eth
+ -90
+ public.kern2.g
+ -70
+ public.kern2.o
+ -90
+ public.kern2.oslash
+ -90
+ public.kern2.q
+ -75
+ public.kern2.s
+ -65
+ public.kern2.x
+ -15
+ questiondown
+ -140
+ quotedblbase
+ -155
+ quotesinglbase
+ -155
+ registered
+ -15
+ semicolon
+ -20
+ slash
+ -155
+ sterling
+ -100
+ underscore
+ -155
+ yen
+ -20
+
+ quotesinglbase
+
+ ampersand
+ -15
+ asciicircum
+ -155
+ asciitilde
+ -155
+ asterisk
+ -155
+ at
+ -25
+ backslash
+ -155
+ braceleft
+ -45
+ braceright
+ -30
+ bullet
+ -70
+ cent
+ -35
+ copyright
+ -35
+ degree
+ -155
+ divide
+ -50
+ dollar
+ -15
+ emdash
+ -15
+ endash
+ -15
+ euro
+ -105
+ guillemetleft
+ -50
+ guillemetright
+ 10
+ guilsinglleft
+ -50
+ guilsinglright
+ 10
+ hyphen
+ -15
+ less
+ -80
+ minus
+ -50
+ multiply
+ -100
+ numbersign
+ -25
+ paragraph
+ -155
+ parenleft
+ -25
+ parenright
+ -25
+ percent
+ -90
+ periodcentered
+ -65
+ perthousand
+ -100
+ plus
+ -50
+ public.kern2.A
+ -10
+ public.kern2.C
+ -70
+ public.kern2.G
+ -70
+ public.kern2.J
+ 30
+ public.kern2.O
+ -70
+ public.kern2.Oslash
+ -10
+ public.kern2.Q
+ -65
+ public.kern2.T
+ -80
+ public.kern2.U
+ -45
+ public.kern2.V
+ -100
+ public.kern2.W
+ -70
+ public.kern2.X
+ -10
+ public.kern2.Y
+ -80
+ public.kern2.a
+ -10
+ public.kern2.a.alt
+ -30
+ public.kern2.c
+ -40
+ public.kern2.d
+ -30
+ public.kern2.dcaron
+ -30
+ public.kern2.dcroat
+ -30
+ public.kern2.e
+ -35
+ public.kern2.eth
+ -30
+ public.kern2.f
+ -40
+ public.kern2.g
+ -45
+ public.kern2.j
+ 15
+ public.kern2.o
+ -40
+ public.kern2.oslash
+ -10
+ public.kern2.q
+ -30
+ public.kern2.t
+ -45
+ public.kern2.tcaron
+ -45
+ public.kern2.u
+ -15
+ public.kern2.v
+ -45
+ public.kern2.w
+ -50
+ public.kern2.x
+ -10
+ public.kern2.y
+ -85
+ question
+ -90
+ quotedbl
+ -155
+ quotedblleft
+ -155
+ quotedblright
+ -155
+ quoteleft
+ -155
+ quoteright
+ -155
+ quotesingle
+ -145
+ registered
+ -145
+ slash
+ 15
+ sterling
+ -10
+ trademark
+ -155
+ underscore
+ -15
+ yen
+ -65
+
+ quotesingle
+
+ ampersand
+ -105
+ asciicircum
+ -45
+ asciitilde
+ -75
+ at
+ -70
+ backslash
+ 0
+ braceleft
+ -75
+ braceright
+ -40
+ bullet
+ -70
+ cent
+ -80
+ colon
+ -30
+ comma
+ -145
+ copyright
+ -65
+ divide
+ -30
+ dollar
+ -40
+ ellipsis
+ -145
+ emdash
+ -45
+ endash
+ -45
+ euro
+ -80
+ guillemetleft
+ -115
+ guillemetright
+ -25
+ guilsinglleft
+ -115
+ guilsinglright
+ -25
+ hyphen
+ -45
+ less
+ -30
+ minus
+ -30
+ multiply
+ -50
+ numbersign
+ -135
+ paragraph
+ -15
+ parenleft
+ -60
+ percent
+ -10
+ periodcentered
+ -90
+ perthousand
+ -10
+ plus
+ -30
+ public.kern2.A
+ -95
+ public.kern2.C
+ -45
+ public.kern2.G
+ -45
+ public.kern2.J
+ -145
+ public.kern2.O
+ -45
+ public.kern2.Oslash
+ -50
+ public.kern2.Q
+ -45
+ public.kern2.S
+ -15
+ public.kern2.V
+ -10
+ public.kern2.W
+ -10
+ public.kern2.X
+ -15
+ public.kern2.Y
+ -10
+ public.kern2.a
+ -55
+ public.kern2.a.alt
+ -75
+ public.kern2.c
+ -85
+ public.kern2.d
+ -75
+ public.kern2.dcaron
+ -75
+ public.kern2.dcroat
+ -75
+ public.kern2.e
+ -80
+ public.kern2.eth
+ -80
+ public.kern2.f
+ -15
+ public.kern2.g
+ -70
+ public.kern2.germandbls
+ -10
+ public.kern2.i
+ -15
+ public.kern2.j
+ -15
+ public.kern2.m
+ -15
+ public.kern2.n
+ -15
+ public.kern2.o
+ -80
+ public.kern2.oslash
+ -80
+ public.kern2.p
+ -15
+ public.kern2.q
+ -75
+ public.kern2.r
+ -15
+ public.kern2.s
+ -70
+ public.kern2.t
+ -15
+ public.kern2.tcaron
+ -15
+ public.kern2.u
+ -15
+ public.kern2.v
+ -15
+ public.kern2.w
+ -15
+ public.kern2.x
+ -25
+ public.kern2.y
+ -15
+ public.kern2.z
+ -15
+ questiondown
+ -145
+ quotedblbase
+ -145
+ quotedblleft
+ -15
+ quoteleft
+ -15
+ quotesinglbase
+ -145
+ registered
+ -25
+ semicolon
+ -30
+ slash
+ -145
+ sterling
+ -90
+ underscore
+ -145
+ yen
+ -10
+
+ registered
+
+ ampersand
+ -50
+ asciitilde
+ -25
+ at
+ -20
+ backslash
+ -50
+ braceleft
+ -35
+ braceright
+ -35
+ bullet
+ -20
+ cent
+ -25
+ comma
+ -135
+ copyright
+ -15
+ degree
+ -15
+ dollar
+ -30
+ ellipsis
+ -135
+ euro
+ -60
+ guillemetleft
+ -20
+ guillemetright
+ 15
+ guilsinglleft
+ -20
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -90
+ parenleft
+ -15
+ parenright
+ -35
+ periodcentered
+ -25
+ public.kern2.A
+ -65
+ public.kern2.J
+ -210
+ public.kern2.V
+ -40
+ public.kern2.W
+ -25
+ public.kern2.X
+ -50
+ public.kern2.Y
+ -40
+ public.kern2.a
+ -45
+ public.kern2.a.alt
+ -20
+ public.kern2.c
+ -25
+ public.kern2.d
+ -20
+ public.kern2.dcaron
+ -20
+ public.kern2.dcroat
+ -20
+ public.kern2.e
+ -25
+ public.kern2.eth
+ -25
+ public.kern2.g
+ -15
+ public.kern2.o
+ -25
+ public.kern2.oslash
+ -25
+ public.kern2.q
+ -20
+ public.kern2.s
+ -25
+ public.kern2.x
+ -20
+ public.kern2.y
+ -10
+ question
+ -65
+ questiondown
+ -115
+ quotedbl
+ -25
+ quotedblbase
+ -135
+ quotedblright
+ -25
+ quoteright
+ -25
+ quotesinglbase
+ -135
+ quotesingle
+ -25
+ slash
+ -130
+ sterling
+ -40
+ underscore
+ -300
+ yen
+ -40
+
+ semicolon
+
+ ampersand
+ -15
+ asciitilde
+ -30
+ at
+ -25
+ backslash
+ -65
+ braceleft
+ -40
+ braceright
+ -30
+ bullet
+ -25
+ cent
+ -35
+ copyright
+ -20
+ degree
+ -20
+ dollar
+ -15
+ euro
+ -60
+ guillemetleft
+ -50
+ guillemetright
+ 15
+ guilsinglleft
+ -50
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -25
+ parenleft
+ -20
+ parenright
+ -25
+ percent
+ -10
+ periodcentered
+ -40
+ perthousand
+ -10
+ public.kern2.A
+ -10
+ public.kern2.J
+ 30
+ public.kern2.Oslash
+ -10
+ public.kern2.V
+ -40
+ public.kern2.W
+ -30
+ public.kern2.X
+ -10
+ public.kern2.Y
+ -45
+ public.kern2.a
+ -10
+ public.kern2.a.alt
+ -30
+ public.kern2.c
+ -35
+ public.kern2.d
+ -30
+ public.kern2.dcaron
+ -30
+ public.kern2.dcroat
+ -30
+ public.kern2.e
+ -30
+ public.kern2.eth
+ -30
+ public.kern2.g
+ -25
+ public.kern2.j
+ 15
+ public.kern2.o
+ -35
+ public.kern2.oslash
+ -10
+ public.kern2.q
+ -30
+ public.kern2.v
+ -10
+ public.kern2.w
+ -10
+ public.kern2.x
+ -10
+ public.kern2.y
+ -15
+ question
+ -90
+ quotedbl
+ -30
+ quotedblright
+ -40
+ quoteright
+ -40
+ quotesingle
+ -30
+ slash
+ 15
+ sterling
+ -10
+ underscore
+ -15
+ yen
+ -45
+
+ slash
+
+ ampersand
+ -120
+ asciicircum
+ -85
+ asciitilde
+ -120
+ at
+ -110
+ backslash
+ 105
+ bar
+ 50
+ braceleft
+ -90
+ braceright
+ -10
+ bracketleft
+ 25
+ bracketright
+ 25
+ bullet
+ -115
+ cent
+ -125
+ colon
+ -65
+ comma
+ -155
+ copyright
+ -105
+ degree
+ -10
+ divide
+ -70
+ dollar
+ -60
+ ellipsis
+ -200
+ emdash
+ -90
+ endash
+ -90
+ equal
+ -15
+ euro
+ -115
+ greater
+ 30
+ guillemetleft
+ -115
+ guillemetright
+ -65
+ guilsinglleft
+ -115
+ guilsinglright
+ -65
+ hyphen
+ -90
+ less
+ -70
+ minus
+ -70
+ multiply
+ -90
+ numbersign
+ -150
+ paragraph
+ -35
+ parenleft
+ -95
+ parenright
+ -20
+ percent
+ -20
+ periodcentered
+ -130
+ perthousand
+ -20
+ plus
+ -70
+ public.kern2.A
+ -85
+ public.kern2.B
+ 40
+ public.kern2.C
+ -85
+ public.kern2.D
+ 40
+ public.kern2.E
+ 25
+ public.kern2.Eth
+ 40
+ public.kern2.F
+ 25
+ public.kern2.G
+ -85
+ public.kern2.H
+ 25
+ public.kern2.I
+ 25
+ public.kern2.J
+ -200
+ public.kern2.K
+ 25
+ public.kern2.L
+ 25
+ public.kern2.Lslash
+ 25
+ public.kern2.M
+ 25
+ public.kern2.N
+ 25
+ public.kern2.O
+ -85
+ public.kern2.Oslash
+ -85
+ public.kern2.P
+ 35
+ public.kern2.Q
+ -80
+ public.kern2.R
+ 45
+ public.kern2.S
+ -40
+ public.kern2.T
+ 25
+ public.kern2.Thorn
+ 25
+ public.kern2.U
+ 25
+ public.kern2.V
+ 25
+ public.kern2.W
+ 25
+ public.kern2.X
+ 25
+ public.kern2.Y
+ 25
+ public.kern2.Z
+ 25
+ public.kern2.a
+ -85
+ public.kern2.a.alt
+ -120
+ public.kern2.b
+ 30
+ public.kern2.c
+ -125
+ public.kern2.d
+ -120
+ public.kern2.dcaron
+ -120
+ public.kern2.dcroat
+ -120
+ public.kern2.e
+ -120
+ public.kern2.eth
+ -80
+ public.kern2.f
+ -45
+ public.kern2.g
+ -115
+ public.kern2.germandbls
+ -25
+ public.kern2.h
+ 30
+ public.kern2.l
+ 30
+ public.kern2.lcaron
+ 30
+ public.kern2.lslash
+ 30
+ public.kern2.m
+ -45
+ public.kern2.n
+ -45
+ public.kern2.o
+ -125
+ public.kern2.oslash
+ -125
+ public.kern2.p
+ -45
+ public.kern2.q
+ -120
+ public.kern2.r
+ -45
+ public.kern2.s
+ -110
+ public.kern2.t
+ -20
+ public.kern2.tcaron
+ -20
+ public.kern2.thorn
+ 30
+ public.kern2.u
+ -45
+ public.kern2.v
+ -45
+ public.kern2.w
+ -45
+ public.kern2.x
+ -55
+ public.kern2.y
+ -45
+ public.kern2.z
+ -45
+ questiondown
+ -185
+ quotedbl
+ 0
+ quotedblbase
+ -200
+ quotedblleft
+ -35
+ quoteleft
+ -35
+ quotesinglbase
+ -155
+ quotesingle
+ 0
+ registered
+ -50
+ semicolon
+ -65
+ slash
+ -235
+ sterling
+ -135
+ trademark
+ -20
+ underscore
+ -265
+ yen
+ 25
+
+ sterling
+
+ ampersand
+ -10
+ asciicircum
+ -15
+ asciitilde
+ -20
+ asterisk
+ -10
+ at
+ -10
+ backslash
+ -35
+ bar
+ -10
+ braceleft
+ -40
+ braceright
+ -45
+ bracketleft
+ -10
+ bracketright
+ -10
+ bullet
+ -10
+ cent
+ -10
+ colon
+ -10
+ comma
+ -10
+ copyright
+ -10
+ degree
+ -10
+ divide
+ -10
+ dollar
+ -25
+ ellipsis
+ -10
+ emdash
+ -10
+ endash
+ -10
+ equal
+ -10
+ euro
+ -70
+ greater
+ -10
+ guillemetleft
+ 25
+ guilsinglleft
+ 25
+ hyphen
+ -10
+ less
+ -10
+ minus
+ -10
+ multiply
+ -20
+ numbersign
+ -30
+ paragraph
+ -10
+ parenleft
+ -10
+ parenright
+ -20
+ percent
+ -10
+ periodcentered
+ -10
+ perthousand
+ -10
+ plus
+ -10
+ public.kern2.A
+ -10
+ public.kern2.B
+ -10
+ public.kern2.C
+ -10
+ public.kern2.D
+ -10
+ public.kern2.E
+ -10
+ public.kern2.Eth
+ -10
+ public.kern2.F
+ -10
+ public.kern2.G
+ -10
+ public.kern2.H
+ -10
+ public.kern2.I
+ -10
+ public.kern2.J
+ 20
+ public.kern2.K
+ -10
+ public.kern2.L
+ -10
+ public.kern2.Lslash
+ -10
+ public.kern2.M
+ -10
+ public.kern2.N
+ -10
+ public.kern2.O
+ -10
+ public.kern2.Oslash
+ -10
+ public.kern2.P
+ -10
+ public.kern2.Q
+ -10
+ public.kern2.R
+ -10
+ public.kern2.T
+ -10
+ public.kern2.Thorn
+ -10
+ public.kern2.U
+ -10
+ public.kern2.V
+ -35
+ public.kern2.W
+ -25
+ public.kern2.X
+ -10
+ public.kern2.Y
+ -35
+ public.kern2.Z
+ -10
+ public.kern2.a
+ -10
+ public.kern2.a.alt
+ -10
+ public.kern2.b
+ -10
+ public.kern2.c
+ -10
+ public.kern2.d
+ -10
+ public.kern2.dcaron
+ -10
+ public.kern2.dcroat
+ -10
+ public.kern2.e
+ -10
+ public.kern2.eth
+ -10
+ public.kern2.f
+ -10
+ public.kern2.g
+ -10
+ public.kern2.germandbls
+ -10
+ public.kern2.h
+ -10
+ public.kern2.i
+ -10
+ public.kern2.j
+ -10
+ public.kern2.l
+ -10
+ public.kern2.lcaron
+ -10
+ public.kern2.lslash
+ -10
+ public.kern2.m
+ -10
+ public.kern2.n
+ -10
+ public.kern2.o
+ -10
+ public.kern2.oslash
+ -10
+ public.kern2.p
+ -10
+ public.kern2.q
+ -10
+ public.kern2.r
+ -10
+ public.kern2.s
+ -15
+ public.kern2.t
+ -10
+ public.kern2.tcaron
+ -10
+ public.kern2.thorn
+ -10
+ public.kern2.u
+ -10
+ public.kern2.v
+ -10
+ public.kern2.w
+ -10
+ public.kern2.x
+ -10
+ public.kern2.y
+ -10
+ public.kern2.z
+ -10
+ question
+ -45
+ questiondown
+ -10
+ quotedbl
+ -15
+ quotedblbase
+ -10
+ quotedblleft
+ -10
+ quotedblright
+ -15
+ quoteleft
+ -10
+ quoteright
+ -15
+ quotesinglbase
+ -10
+ quotesingle
+ -15
+ registered
+ -10
+ semicolon
+ -10
+ slash
+ 10
+ sterling
+ -20
+ trademark
+ -10
+ underscore
+ -330
+ yen
+ -35
+
+ trademark
+
+ ampersand
+ -15
+ backslash
+ -20
+ braceleft
+ -25
+ braceright
+ -35
+ comma
+ -155
+ dollar
+ -25
+ ellipsis
+ -385
+ euro
+ -60
+ guillemetleft
+ 20
+ guillemetright
+ 15
+ guilsinglleft
+ 20
+ guilsinglright
+ 15
+ multiply
+ -10
+ numbersign
+ -65
+ public.kern2.A
+ -45
+ public.kern2.J
+ -250
+ public.kern2.V
+ -20
+ public.kern2.W
+ -15
+ public.kern2.X
+ -25
+ public.kern2.Y
+ -20
+ public.kern2.a
+ -40
+ public.kern2.s
+ -20
+ public.kern2.x
+ -10
+ question
+ -45
+ questiondown
+ -115
+ quotedblbase
+ -305
+ quotesinglbase
+ -155
+ slash
+ -95
+ sterling
+ -35
+ underscore
+ -330
+ yen
+ -20
+
+ underscore
+
+ ampersand
+ -115
+ asciicircum
+ -250
+ asciitilde
+ -245
+ asterisk
+ -215
+ at
+ -100
+ backslash
+ -265
+ braceleft
+ -70
+ braceright
+ -35
+ bullet
+ -190
+ cent
+ -165
+ colon
+ -55
+ comma
+ -45
+ copyright
+ -115
+ degree
+ -210
+ divide
+ -295
+ dollar
+ -140
+ ellipsis
+ -60
+ emdash
+ -330
+ endash
+ -285
+ equal
+ -330
+ euro
+ -285
+ greater
+ -300
+ guillemetleft
+ -315
+ guillemetright
+ -315
+ guilsinglleft
+ -185
+ guilsinglright
+ -185
+ hyphen
+ -180
+ less
+ -300
+ minus
+ -325
+ multiply
+ -275
+ numbersign
+ -330
+ paragraph
+ -245
+ parenleft
+ -75
+ percent
+ -330
+ periodcentered
+ -145
+ perthousand
+ -330
+ plus
+ -300
+ public.kern2.A
+ -330
+ public.kern2.C
+ -285
+ public.kern2.E
+ -330
+ public.kern2.F
+ -325
+ public.kern2.G
+ -285
+ public.kern2.H
+ -330
+ public.kern2.I
+ -160
+ public.kern2.J
+ -70
+ public.kern2.K
+ -330
+ public.kern2.L
+ -300
+ public.kern2.Lslash
+ -315
+ public.kern2.M
+ -330
+ public.kern2.N
+ -330
+ public.kern2.O
+ -285
+ public.kern2.Oslash
+ -275
+ public.kern2.P
+ -330
+ public.kern2.Q
+ -265
+ public.kern2.R
+ -330
+ public.kern2.S
+ -155
+ public.kern2.T
+ -320
+ public.kern2.Thorn
+ -330
+ public.kern2.U
+ -195
+ public.kern2.V
+ -330
+ public.kern2.W
+ -330
+ public.kern2.X
+ -330
+ public.kern2.Y
+ -330
+ public.kern2.Z
+ -330
+ public.kern2.a
+ -150
+ public.kern2.a.alt
+ -170
+ public.kern2.b
+ -330
+ public.kern2.c
+ -230
+ public.kern2.d
+ -175
+ public.kern2.dcaron
+ -170
+ public.kern2.dcroat
+ -170
+ public.kern2.e
+ -215
+ public.kern2.eth
+ -205
+ public.kern2.f
+ -200
+ public.kern2.g
+ -45
+ public.kern2.germandbls
+ -325
+ public.kern2.h
+ -315
+ public.kern2.i
+ -150
+ public.kern2.j
+ 55
+ public.kern2.l
+ -160
+ public.kern2.lcaron
+ -240
+ public.kern2.lslash
+ -190
+ public.kern2.m
+ -330
+ public.kern2.n
+ -315
+ public.kern2.o
+ -230
+ public.kern2.oslash
+ -210
+ public.kern2.q
+ -175
+ public.kern2.r
+ -210
+ public.kern2.s
+ -155
+ public.kern2.t
+ -125
+ public.kern2.tcaron
+ -125
+ public.kern2.u
+ -105
+ public.kern2.v
+ -315
+ public.kern2.w
+ -330
+ public.kern2.x
+ -295
+ public.kern2.y
+ -30
+ public.kern2.z
+ -275
+ question
+ -140
+ quotedbl
+ -285
+ quotedblbase
+ -45
+ quotedblleft
+ -305
+ quotedblright
+ -305
+ quoteleft
+ -155
+ quoteright
+ -155
+ quotesinglbase
+ -45
+ quotesingle
+ -145
+ registered
+ -300
+ semicolon
+ -55
+ slash
+ 50
+ sterling
+ -330
+ trademark
+ -330
+ yen
+ -330
+
+ yen
+
+ ampersand
+ -60
+ asciicircum
+ -45
+ asciitilde
+ -70
+ asterisk
+ -10
+ at
+ -60
+ backslash
+ 35
+ bar
+ 0
+ braceleft
+ -80
+ braceright
+ -45
+ bracketleft
+ 0
+ bracketright
+ 0
+ bullet
+ -60
+ cent
+ -60
+ colon
+ -35
+ comma
+ -60
+ copyright
+ -60
+ degree
+ -15
+ divide
+ -35
+ dollar
+ -55
+ ellipsis
+ -60
+ emdash
+ -45
+ endash
+ -45
+ equal
+ -10
+ euro
+ -90
+ greater
+ 0
+ guillemetleft
+ -30
+ guillemetright
+ -25
+ guilsinglleft
+ -30
+ guilsinglright
+ -25
+ hyphen
+ -45
+ less
+ -35
+ minus
+ -35
+ multiply
+ -55
+ numbersign
+ -85
+ paragraph
+ -25
+ parenleft
+ -60
+ parenright
+ -15
+ percent
+ -20
+ periodcentered
+ -60
+ perthousand
+ -20
+ plus
+ -35
+ public.kern2.A
+ -60
+ public.kern2.B
+ 0
+ public.kern2.C
+ -50
+ public.kern2.D
+ 0
+ public.kern2.E
+ 0
+ public.kern2.Eth
+ 0
+ public.kern2.F
+ 0
+ public.kern2.G
+ -50
+ public.kern2.H
+ 0
+ public.kern2.I
+ 0
+ public.kern2.J
+ -30
+ public.kern2.K
+ 0
+ public.kern2.L
+ 0
+ public.kern2.Lslash
+ 0
+ public.kern2.M
+ 0
+ public.kern2.N
+ 0
+ public.kern2.O
+ -50
+ public.kern2.Oslash
+ -50
+ public.kern2.P
+ 0
+ public.kern2.Q
+ -50
+ public.kern2.R
+ 0
+ public.kern2.S
+ -25
+ public.kern2.T
+ 0
+ public.kern2.Thorn
+ 0
+ public.kern2.U
+ 0
+ public.kern2.V
+ 0
+ public.kern2.W
+ 0
+ public.kern2.Y
+ 0
+ public.kern2.Z
+ 0
+ public.kern2.a
+ -60
+ public.kern2.a.alt
+ -60
+ public.kern2.b
+ 0
+ public.kern2.c
+ -60
+ public.kern2.d
+ -60
+ public.kern2.dcaron
+ -60
+ public.kern2.dcroat
+ -60
+ public.kern2.e
+ -60
+ public.kern2.eth
+ -60
+ public.kern2.f
+ -25
+ public.kern2.g
+ -60
+ public.kern2.germandbls
+ -20
+ public.kern2.h
+ 0
+ public.kern2.i
+ -25
+ public.kern2.j
+ -25
+ public.kern2.l
+ 0
+ public.kern2.lcaron
+ 0
+ public.kern2.lslash
+ 0
+ public.kern2.m
+ -25
+ public.kern2.n
+ -25
+ public.kern2.o
+ -60
+ public.kern2.oslash
+ -60
+ public.kern2.p
+ -25
+ public.kern2.q
+ -60
+ public.kern2.r
+ -25
+ public.kern2.s
+ -70
+ public.kern2.t
+ -25
+ public.kern2.tcaron
+ -25
+ public.kern2.thorn
+ 0
+ public.kern2.u
+ -25
+ public.kern2.v
+ -25
+ public.kern2.w
+ -25
+ public.kern2.x
+ -35
+ public.kern2.y
+ -25
+ public.kern2.z
+ -25
+ questiondown
+ -60
+ quotedblbase
+ -60
+ quotedblleft
+ -25
+ quoteleft
+ -25
+ quotesinglbase
+ -60
+ registered
+ -35
+ semicolon
+ -40
+ slash
+ -40
+ sterling
+ -70
+ trademark
+ -15
+ underscore
+ -330
+ yen
+ 0
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/layercontents.plist b/Fonts/UFO/Metropolis-Black.ufo/layercontents.plist
new file mode 100644
index 0000000..cf95d35
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/layercontents.plist
@@ -0,0 +1,10 @@
+
+
+
+
+
+ public.default
+ glyphs
+
+
+
diff --git a/Fonts/UFO/Metropolis-Black.ufo/lib.plist b/Fonts/UFO/Metropolis-Black.ufo/lib.plist
new file mode 100644
index 0000000..b221d54
--- /dev/null
+++ b/Fonts/UFO/Metropolis-Black.ufo/lib.plist
@@ -0,0 +1,565 @@
+
+
+
+
+ com.schriftgestaltung.disablesAutomaticAlignment
+
+ com.schriftgestaltung.font.userData
+
+ GSDimensionPlugin.Dimensions
+
+ 119329DF-C854-46E0-93EC-7E8A22DFCA4F
+
+ HH
+ 74
+ HV
+ 78
+ OH
+ 72
+ OV
+ 79
+ nV
+ 75
+ nd
+ 67
+ oH
+ 67
+ oV
+ 78
+ tH
+ 67
+
+ 35616FF6-3D9C-499B-B113-AC9E0DB5842A
+
+ HH
+ 74
+ HV
+ 78
+ OH
+ 72
+ OV
+ 79
+ nV
+ 75
+ nd
+ 67
+ oH
+ 67
+ oV
+ 78
+ tH
+ 67
+
+ 3B040282-CF47-4846-BCAF-7BFF90FB63BC
+
+ HH
+ 36
+ HV
+ 36
+ OH
+ 34
+ OV
+ 36
+ nV
+ 36
+ nd
+ 34
+ oH
+ 36
+ oV
+ 36
+ tH
+ 36
+
+ 84328D8E-4D54-44EF-AF5C-0364B1C28646
+
+ HH
+ 36
+ HV
+ 36
+ OH
+ 36
+ OV
+ 36
+ nV
+ 36
+ nd
+ 34
+ oH
+ 36
+ oV
+ 36
+ tH
+ 36
+
+ 88AF04C7-891B-4BE3-8AB1-6195D630646B
+
+ HH
+ 173
+ HV
+ 194
+ OH
+ 176
+ OV
+ 200
+ nV
+ 193
+ nd
+ 160
+ oH
+ 160
+ oV
+ 182
+
+ A0D976AB-773B-4D3A-9F7E-7A0C42AF1E7B
+
+ HH
+ 173
+ HV
+ 194
+ OH
+ 176
+ OV
+ 200
+ nV
+ 193
+ nd
+ 160
+ oH
+ 160
+ oV
+ 182
+ tH
+ 152
+
+
+
+ com.schriftgestaltung.fontMaster.userData
+
+ GSCornerRadius
+ 180
+ GSOffsetHorizontal
+ 57.0
+ GSOffsetProportional
+
+ GSOffsetVertical
+ 24.0
+
+ com.schriftgestaltung.fontMasterID
+ A0D976AB-773B-4D3A-9F7E-7A0C42AF1E7B
+ com.schriftgestaltung.glyphOrder
+
+ com.schriftgestaltung.master.name
+ Black
+ com.schriftgestaltung.useNiceNames
+
+ com.schriftgestaltung.weightValue
+ 900
+ com.schriftgestaltung.widthValue
+ 5
+ public.glyphOrder
+
+ A
+ Aacute
+ Abreve
+ Acircumflex
+ Adieresis
+ Agrave
+ Amacron
+ Aogonek
+ Aring
+ Atilde
+ AE
+ B
+ C
+ Cacute
+ Ccaron
+ Ccedilla
+ D
+ Eth
+ Dcaron
+ Dcroat
+ E
+ Eacute
+ Ecaron
+ Ecircumflex
+ Edieresis
+ Edotaccent
+ Edotbelow
+ Egrave
+ Emacron
+ Eogonek
+ Etilde
+ F
+ G
+ Gbreve
+ Gcommaaccent
+ H
+ I
+ Iacute
+ Icircumflex
+ Idieresis
+ Idotaccent
+ Igrave
+ Imacron
+ Iogonek
+ J
+ K
+ Kcommaaccent
+ L
+ Lacute
+ Lcaron
+ Lslash
+ M
+ N
+ Nacute
+ Ncaron
+ Ncommaaccent
+ Ntilde
+ O
+ Oacute
+ Ocircumflex
+ Odieresis
+ Ograve
+ Ohungarumlaut
+ Omacron
+ Oslash
+ Otilde
+ OE
+ P
+ Thorn
+ Q
+ R
+ Racute
+ Rcaron
+ Rcommaaccent
+ S
+ Sacute
+ Scaron
+ Scedilla
+ T
+ Tcaron
+ Tcedilla
+ U
+ Uacute
+ Ucircumflex
+ Udieresis
+ Ugrave
+ Uhungarumlaut
+ Umacron
+ Uogonek
+ Uring
+ V
+ W
+ Wacute
+ Wcircumflex
+ Wdieresis
+ Wgrave
+ X
+ Y
+ Yacute
+ Ycircumflex
+ Ydieresis
+ Ygrave
+ Z
+ Zacute
+ Zcaron
+ Zdotaccent
+ a
+ aacute
+ abreve
+ acircumflex
+ adieresis
+ agrave
+ amacron
+ aogonek
+ aring
+ atilde
+ ae
+ b
+ c
+ cacute
+ ccaron
+ ccedilla
+ d
+ eth
+ dcaron
+ dcroat
+ e
+ eacute
+ ecaron
+ ecircumflex
+ edieresis
+ edotaccent
+ edotbelow
+ egrave
+ emacron
+ eogonek
+ etilde
+ f
+ g
+ gbreve
+ gcommaaccent
+ h
+ i
+ idotless
+ iacute
+ icircumflex
+ idieresis
+ igrave
+ imacron
+ iogonek
+ j
+ jdotless
+ k
+ kcommaaccent
+ l
+ lacute
+ lcaron
+ lslash
+ m
+ n
+ nacute
+ ncaron
+ ncommaaccent
+ ntilde
+ o
+ oacute
+ ocircumflex
+ odieresis
+ ograve
+ ohungarumlaut
+ omacron
+ oslash
+ otilde
+ oe
+ p
+ thorn
+ q
+ r
+ racute
+ rcaron
+ rcommaaccent
+ s
+ sacute
+ scaron
+ scedilla
+ germandbls
+ t
+ tcaron
+ tcedilla
+ u
+ uacute
+ ucircumflex
+ udieresis
+ ugrave
+ uhungarumlaut
+ umacron
+ uogonek
+ uring
+ v
+ w
+ wacute
+ wcircumflex
+ wdieresis
+ wgrave
+ x
+ y
+ yacute
+ ycircumflex
+ ydieresis
+ ygrave
+ z
+ zacute
+ zcaron
+ zdotaccent
+ a.alt
+ aacute.alt
+ abreve.alt
+ acircumflex.alt
+ adieresis.alt
+ agrave.alt
+ amacron.alt
+ aogonek.alt
+ aring.alt
+ atilde.alt
+ ae_upper
+ k_arms
+ thorn_stem
+ zero
+ one
+ two
+ three
+ four
+ five
+ six
+ seven
+ eight
+ nine
+ period
+ comma
+ colon
+ semicolon
+ ellipsis
+ exclam
+ exclamdown
+ question
+ questiondown
+ periodcentered
+ bullet
+ asterisk
+ numbersign
+ slash
+ backslash
+ parenleft
+ parenright
+ braceleft
+ braceright
+ bracketleft
+ bracketright
+ hyphen
+ endash
+ emdash
+ underscore
+ quotesinglbase
+ quotedblbase
+ quotedblleft
+ quotedblright
+ quoteleft
+ quoteright
+ guillemetleft
+ guillemetright
+ guilsinglleft
+ guilsinglright
+ quotedbl
+ quotesingle
+ emspace
+ enspace
+ fourperemspace
+ narrownbspace
+ sixperemspace
+ space
+ threeperemspace
+ cent
+ dollar
+ euro
+ sterling
+ yen
+ plus
+ minus
+ multiply
+ divide
+ equal
+ greater
+ less
+ asciitilde
+ asciicircum
+ percent
+ perthousand
+ at
+ ampersand
+ paragraph
+ copyright
+ registered
+ trademark
+ degree
+ bar
+ dotaccentcomb
+ commaaccentcomb
+ dieresis
+ dotaccent
+ grave
+ acute
+ hungarumlaut
+ circumflex
+ caron
+ breve
+ ring
+ tilde
+ macron
+ cedilla
+ ogonek
+ lowercase_r_shoulder
+ lowercase_loop
+ lowercase_nh_shoulder
+ lowercase_loop_reverse
+ ascender
+ descender
+ lowercase_m_shoulder
+ capital_V
+ _areas
+
+ public.postscriptNames
+
+ Edotbelow
+ uni1EB8
+ Etilde
+ uni1EBC
+ Gcommaaccent
+ uni0122
+ Kcommaaccent
+ uni0136
+ Ncommaaccent
+ uni0145
+ Rcommaaccent
+ uni0156
+ Tcedilla
+ uni0162
+ commaaccentcomb
+ uni0326
+ dotaccentcomb
+ uni0307
+ edotbelow
+ uni1EB9
+ emspace
+ uni2003
+ enspace
+ uni2002
+ etilde
+ uni1EBD
+ euro
+ Euro
+ fourperemspace
+ uni2005
+ gcommaaccent
+ uni0123
+ guillemetleft
+ guillemotleft
+ guillemetright
+ guillemotright
+ idotless
+ dotlessi
+ jdotless
+ uni0237
+ kcommaaccent
+ uni0137
+ narrownbspace
+ uni202F
+ ncommaaccent
+ uni0146
+ rcommaaccent
+ uni0157
+ sixperemspace
+ uni2006
+ tcedilla
+ uni0163
+ threeperemspace
+ uni2004
+
+ public.skipExportGlyphs
+
+ ae_upper
+ k_arms
+ thorn_stem
+ lowercase_r_shoulder
+ lowercase_loop
+ lowercase_nh_shoulder
+ lowercase_loop_reverse
+ ascender
+ descender
+ lowercase_m_shoulder
+ capital_V
+ _areas
+
+
+
diff --git a/Source/Metropolis-Bold.ufo/metainfo.plist b/Fonts/UFO/Metropolis-Black.ufo/metainfo.plist
similarity index 58%
rename from Source/Metropolis-Bold.ufo/metainfo.plist
rename to Fonts/UFO/Metropolis-Black.ufo/metainfo.plist
index 12a7922..74e4b3b 100644
--- a/Source/Metropolis-Bold.ufo/metainfo.plist
+++ b/Fonts/UFO/Metropolis-Black.ufo/metainfo.plist
@@ -1,10 +1,10 @@
-
+
creator
com.schriftgestaltung.GlyphsUFOExport
formatVersion
- 2
+ 3
diff --git a/Fonts/UFO/Metropolis-BlackItalic.ufo/features.fea b/Fonts/UFO/Metropolis-BlackItalic.ufo/features.fea
new file mode 100644
index 0000000..4c095b3
--- /dev/null
+++ b/Fonts/UFO/Metropolis-BlackItalic.ufo/features.fea
@@ -0,0 +1,8066 @@
+@MMK_L_A = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde ];
+@MMK_L_B = [ B ];
+@MMK_L_C = [ C Cacute Ccaron Ccedilla ];
+@MMK_L_D = [ D Eth Dcaron ];
+@MMK_L_E = [ AE E Eacute Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Emacron Eogonek Etilde OE ];
+@MMK_L_Eth = [ Dcroat ];
+@MMK_L_F = [ F ];
+@MMK_L_G = [ G Gbreve Gcommaaccent ];
+@MMK_L_H = [ H ];
+@MMK_L_I = [ I Iacute Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek ];
+@MMK_L_J = [ J ];
+@MMK_L_K = [ K Kcommaaccent ];
+@MMK_L_L = [ L Lacute Lcaron ];
+@MMK_L_Lslash = [ Lslash ];
+@MMK_L_M = [ M ];
+@MMK_L_N = [ N Nacute Ncaron Ncommaaccent Ntilde ];
+@MMK_L_O = [ O Oacute Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Otilde ];
+@MMK_L_Oslash = [ Oslash ];
+@MMK_L_P = [ P ];
+@MMK_L_Q = [ Q ];
+@MMK_L_R = [ R Racute Rcaron Rcommaaccent ];
+@MMK_L_S = [ S Sacute Scaron Scedilla ];
+@MMK_L_T = [ T Tcaron Tcedilla ];
+@MMK_L_Thorn = [ Thorn ];
+@MMK_L_U = [ U Uacute Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring ];
+@MMK_L_V = [ V ];
+@MMK_L_W = [ W Wacute Wcircumflex Wdieresis Wgrave ];
+@MMK_L_X = [ X ];
+@MMK_L_Y = [ Y Yacute Ycircumflex Ydieresis Ygrave ];
+@MMK_L_Z = [ Z Zacute Zcaron Zdotaccent ];
+@MMK_L_a = [ a aacute abreve acircumflex adieresis agrave amacron aogonek aring atilde ];
+@MMK_L_a.alt = [ a.alt aacute.alt abreve.alt acircumflex.alt adieresis.alt agrave.alt amacron.alt aogonek.alt aring.alt atilde.alt ];
+@MMK_L_b = [ b ];
+@MMK_L_c = [ c cacute ccaron ccedilla ];
+@MMK_L_d = [ d ];
+@MMK_L_dcaron = [ dcaron ];
+@MMK_L_dcroat = [ dcroat ];
+@MMK_L_e = [ ae e eacute ecaron ecircumflex edieresis edotaccent edotbelow egrave emacron eogonek etilde oe ];
+@MMK_L_eth = [ eth ];
+@MMK_L_f = [ f ];
+@MMK_L_g = [ g gbreve gcommaaccent ];
+@MMK_L_germandbls = [ germandbls ];
+@MMK_L_h = [ h ];
+@MMK_L_i = [ i idotless iacute icircumflex idieresis igrave imacron iogonek ];
+@MMK_L_j = [ j jdotless ];
+@MMK_L_k = [ k kcommaaccent ];
+@MMK_L_l = [ l lacute ];
+@MMK_L_lcaron = [ lcaron ];
+@MMK_L_lslash = [ lslash ];
+@MMK_L_m = [ m ];
+@MMK_L_n = [ n nacute ncaron ncommaaccent ntilde ];
+@MMK_L_o = [ o oacute ocircumflex odieresis ograve ohungarumlaut omacron otilde ];
+@MMK_L_oslash = [ oslash ];
+@MMK_L_p = [ p ];
+@MMK_L_q = [ q ];
+@MMK_L_r = [ r racute rcaron rcommaaccent ];
+@MMK_L_s = [ s sacute scaron scedilla ];
+@MMK_L_t = [ t tcedilla ];
+@MMK_L_tcaron = [ tcaron ];
+@MMK_L_thorn = [ thorn ];
+@MMK_L_u = [ u uacute ucircumflex udieresis ugrave uhungarumlaut umacron uogonek uring ];
+@MMK_L_v = [ v ];
+@MMK_L_w = [ w wacute wcircumflex wdieresis wgrave ];
+@MMK_L_x = [ x ];
+@MMK_L_y = [ y yacute ycircumflex ydieresis ygrave ];
+@MMK_L_z = [ z zacute zcaron zdotaccent ];
+@MMK_R_A = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE ];
+@MMK_R_B = [ B ];
+@MMK_R_C = [ C Cacute Ccaron Ccedilla ];
+@MMK_R_D = [ D Dcaron ];
+@MMK_R_E = [ E Eacute Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Emacron Eogonek Etilde ];
+@MMK_R_Eth = [ Eth Dcroat ];
+@MMK_R_F = [ F ];
+@MMK_R_G = [ G Gbreve Gcommaaccent ];
+@MMK_R_H = [ H ];
+@MMK_R_I = [ I Iacute Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek ];
+@MMK_R_J = [ J ];
+@MMK_R_K = [ K Kcommaaccent ];
+@MMK_R_L = [ L Lacute Lcaron ];
+@MMK_R_Lslash = [ Lslash ];
+@MMK_R_M = [ M ];
+@MMK_R_N = [ N Nacute Ncaron Ncommaaccent Ntilde ];
+@MMK_R_O = [ O Oacute Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Otilde OE ];
+@MMK_R_Oslash = [ Oslash ];
+@MMK_R_P = [ P ];
+@MMK_R_Q = [ Q ];
+@MMK_R_R = [ R Racute Rcaron Rcommaaccent ];
+@MMK_R_S = [ S Sacute Scaron Scedilla ];
+@MMK_R_T = [ T Tcaron Tcedilla ];
+@MMK_R_Thorn = [ Thorn ];
+@MMK_R_U = [ U Uacute Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring ];
+@MMK_R_V = [ V ];
+@MMK_R_W = [ W Wacute Wcircumflex Wdieresis Wgrave ];
+@MMK_R_X = [ X ];
+@MMK_R_Y = [ Y Yacute Ycircumflex Ydieresis Ygrave ];
+@MMK_R_Z = [ Z Zacute Zcaron Zdotaccent ];
+@MMK_R_a = [ a aacute abreve acircumflex adieresis agrave amacron aogonek aring atilde ae ];
+@MMK_R_a.alt = [ a.alt aacute.alt abreve.alt acircumflex.alt adieresis.alt agrave.alt amacron.alt aogonek.alt aring.alt atilde.alt ];
+@MMK_R_b = [ b ];
+@MMK_R_c = [ c cacute ccaron ccedilla ];
+@MMK_R_d = [ d ];
+@MMK_R_dcaron = [ dcaron ];
+@MMK_R_dcroat = [ dcroat ];
+@MMK_R_e = [ e eacute ecaron ecircumflex edieresis edotaccent edotbelow egrave emacron eogonek etilde ];
+@MMK_R_eth = [ eth ];
+@MMK_R_f = [ f ];
+@MMK_R_g = [ g gbreve gcommaaccent ];
+@MMK_R_germandbls = [ germandbls ];
+@MMK_R_h = [ h ];
+@MMK_R_i = [ i idotless iacute icircumflex idieresis igrave imacron iogonek ];
+@MMK_R_j = [ j jdotless ];
+@MMK_R_k = [ k kcommaaccent ];
+@MMK_R_l = [ l lacute ];
+@MMK_R_lcaron = [ lcaron ];
+@MMK_R_lslash = [ lslash ];
+@MMK_R_m = [ m ];
+@MMK_R_n = [ n nacute ncaron ncommaaccent ntilde ];
+@MMK_R_o = [ o oacute ocircumflex odieresis ograve ohungarumlaut omacron otilde oe ];
+@MMK_R_oslash = [ oslash ];
+@MMK_R_p = [ p ];
+@MMK_R_q = [ q ];
+@MMK_R_r = [ r racute rcaron rcommaaccent ];
+@MMK_R_s = [ s sacute scaron scedilla ];
+@MMK_R_t = [ t tcedilla ];
+@MMK_R_tcaron = [ tcaron ];
+@MMK_R_thorn = [ thorn ];
+@MMK_R_u = [ u uacute ucircumflex udieresis ugrave uhungarumlaut umacron uogonek uring ];
+@MMK_R_v = [ v ];
+@MMK_R_w = [ w wacute wcircumflex wdieresis wgrave ];
+@MMK_R_x = [ x ];
+@MMK_R_y = [ y yacute ycircumflex ydieresis ygrave ];
+@MMK_R_z = [ z zacute zcaron zdotaccent ];
+
+feature kern {
+ lookup kern_DFLT {
+ lookupflag IgnoreMarks;
+ pos comma comma -10;
+ pos comma question -115;
+ pos comma periodcentered -100;
+ pos comma bullet -115;
+ pos comma asterisk -115;
+ pos comma numbersign -70;
+ pos comma slash 25;
+ pos comma backslash -115;
+ pos comma parenleft -60;
+ pos comma parenright -30;
+ pos comma braceleft -110;
+ pos comma braceright -55;
+ pos comma hyphen -115;
+ pos comma endash -115;
+ pos comma emdash -115;
+ pos comma quotesinglbase -10;
+ pos comma quotedblbase -10;
+ pos comma quotedblleft -115;
+ pos comma quotedblright -115;
+ pos comma quoteleft -115;
+ pos comma quoteright -115;
+ pos comma guillemetleft -115;
+ pos comma guillemetright -20;
+ pos comma guilsinglleft -115;
+ pos comma guilsinglright -20;
+ pos comma quotedbl -115;
+ pos comma quotesingle -110;
+ pos comma cent -85;
+ pos comma dollar -50;
+ pos comma euro -115;
+ pos comma sterling -30;
+ pos comma yen -55;
+ pos comma plus -115;
+ pos comma minus -115;
+ pos comma multiply -115;
+ pos comma divide -115;
+ pos comma equal -115;
+ pos comma less -115;
+ pos comma asciitilde -115;
+ pos comma asciicircum -115;
+ pos comma percent -85;
+ pos comma perthousand -85;
+ pos comma at -80;
+ pos comma ampersand -60;
+ pos comma paragraph -115;
+ pos comma copyright -80;
+ pos comma registered -115;
+ pos comma trademark -115;
+ pos comma degree -115;
+ pos colon comma -20;
+ pos colon semicolon -10;
+ pos colon question -105;
+ pos colon periodcentered -100;
+ pos colon bullet -40;
+ pos colon numbersign -70;
+ pos colon slash 15;
+ pos colon backslash -105;
+ pos colon parenleft -25;
+ pos colon parenright -60;
+ pos colon braceleft -105;
+ pos colon braceright -55;
+ pos colon hyphen -105;
+ pos colon endash -105;
+ pos colon emdash -105;
+ pos colon quotesinglbase -20;
+ pos colon quotedblbase -20;
+ pos colon quotedblleft -20;
+ pos colon quotedblright -55;
+ pos colon quoteleft -20;
+ pos colon quoteright -55;
+ pos colon guillemetleft -105;
+ pos colon guillemetright -20;
+ pos colon guilsinglleft -105;
+ pos colon guilsinglright -20;
+ pos colon quotedbl -15;
+ pos colon quotesingle -15;
+ pos colon cent -30;
+ pos colon dollar -40;
+ pos colon euro -90;
+ pos colon sterling -30;
+ pos colon yen -35;
+ pos colon plus -15;
+ pos colon minus -15;
+ pos colon multiply -45;
+ pos colon divide -15;
+ pos colon less -25;
+ pos colon asciitilde -65;
+ pos colon asciicircum -20;
+ pos colon percent -10;
+ pos colon perthousand -10;
+ pos colon at -20;
+ pos colon ampersand -60;
+ pos colon copyright -20;
+ pos colon trademark -15;
+ pos colon degree -30;
+ pos semicolon comma -10;
+ pos semicolon question -110;
+ pos semicolon periodcentered -100;
+ pos semicolon bullet -40;
+ pos semicolon numbersign -70;
+ pos semicolon slash 25;
+ pos semicolon backslash -105;
+ pos semicolon parenleft -20;
+ pos semicolon parenright -30;
+ pos semicolon braceleft -110;
+ pos semicolon braceright -55;
+ pos semicolon hyphen -110;
+ pos semicolon endash -110;
+ pos semicolon emdash -110;
+ pos semicolon quotesinglbase -10;
+ pos semicolon quotedblbase -10;
+ pos semicolon quotedblleft -20;
+ pos semicolon quotedblright -50;
+ pos semicolon quoteleft -20;
+ pos semicolon quoteright -50;
+ pos semicolon guillemetleft -110;
+ pos semicolon guillemetright -20;
+ pos semicolon guilsinglleft -110;
+ pos semicolon guilsinglright -20;
+ pos semicolon quotedbl -15;
+ pos semicolon quotesingle -15;
+ pos semicolon cent -30;
+ pos semicolon dollar -40;
+ pos semicolon euro -90;
+ pos semicolon sterling -30;
+ pos semicolon yen -35;
+ pos semicolon plus -15;
+ pos semicolon minus -15;
+ pos semicolon multiply -45;
+ pos semicolon divide -15;
+ pos semicolon less -20;
+ pos semicolon asciitilde -65;
+ pos semicolon asciicircum -15;
+ pos semicolon percent -10;
+ pos semicolon perthousand -10;
+ pos semicolon at -15;
+ pos semicolon ampersand -60;
+ pos semicolon copyright -20;
+ pos semicolon trademark -15;
+ pos semicolon degree -30;
+ pos ellipsis comma -20;
+ pos ellipsis semicolon -10;
+ pos ellipsis question -185;
+ pos ellipsis periodcentered -100;
+ pos ellipsis bullet -175;
+ pos ellipsis asterisk -190;
+ pos ellipsis numbersign -70;
+ pos ellipsis slash 15;
+ pos ellipsis backslash -235;
+ pos ellipsis parenleft -60;
+ pos ellipsis parenright -60;
+ pos ellipsis braceleft -110;
+ pos ellipsis braceright -55;
+ pos ellipsis hyphen -185;
+ pos ellipsis endash -285;
+ pos ellipsis emdash -285;
+ pos ellipsis quotesinglbase -20;
+ pos ellipsis quotedblbase -20;
+ pos ellipsis quotedblleft -200;
+ pos ellipsis quotedblright -200;
+ pos ellipsis quoteleft -115;
+ pos ellipsis quoteright -115;
+ pos ellipsis guillemetleft -180;
+ pos ellipsis guillemetright -20;
+ pos ellipsis guilsinglleft -170;
+ pos ellipsis guilsinglright -20;
+ pos ellipsis quotedbl -200;
+ pos ellipsis quotesingle -110;
+ pos ellipsis cent -85;
+ pos ellipsis dollar -50;
+ pos ellipsis euro -280;
+ pos ellipsis sterling -30;
+ pos ellipsis yen -55;
+ pos ellipsis plus -285;
+ pos ellipsis minus -285;
+ pos ellipsis multiply -250;
+ pos ellipsis divide -285;
+ pos ellipsis equal -285;
+ pos ellipsis less -285;
+ pos ellipsis asciitilde -240;
+ pos ellipsis asciicircum -260;
+ pos ellipsis percent -85;
+ pos ellipsis perthousand -85;
+ pos ellipsis at -75;
+ pos ellipsis ampersand -60;
+ pos ellipsis paragraph -220;
+ pos ellipsis copyright -75;
+ pos ellipsis registered -285;
+ pos ellipsis trademark -285;
+ pos ellipsis degree -215;
+ pos question comma -115;
+ pos question semicolon -10;
+ pos question ellipsis -200;
+ pos question question -55;
+ pos question questiondown -195;
+ pos question periodcentered -90;
+ pos question bullet -50;
+ pos question numbersign -135;
+ pos question slash -185;
+ pos question backslash -70;
+ pos question parenleft -30;
+ pos question parenright -60;
+ pos question braceleft -110;
+ pos question braceright -65;
+ pos question hyphen -60;
+ pos question endash -60;
+ pos question emdash -60;
+ pos question underscore -205;
+ pos question quotesinglbase -115;
+ pos question quotedblbase -205;
+ pos question quotedblright -15;
+ pos question quoteright -15;
+ pos question guillemetleft -135;
+ pos question guillemetright -35;
+ pos question guilsinglleft -135;
+ pos question guilsinglright -35;
+ pos question quotedbl -10;
+ pos question quotesingle -10;
+ pos question cent -40;
+ pos question dollar -30;
+ pos question euro -90;
+ pos question sterling -80;
+ pos question yen -25;
+ pos question plus -25;
+ pos question minus -25;
+ pos question multiply -50;
+ pos question divide -25;
+ pos question less -30;
+ pos question asciitilde -75;
+ pos question asciicircum -30;
+ pos question at -25;
+ pos question ampersand -95;
+ pos question copyright -30;
+ pos question degree -10;
+ pos questiondown comma -85;
+ pos questiondown colon -105;
+ pos questiondown semicolon -85;
+ pos questiondown ellipsis -125;
+ pos questiondown question -275;
+ pos questiondown questiondown -55;
+ pos questiondown periodcentered -100;
+ pos questiondown bullet -175;
+ pos questiondown asterisk -180;
+ pos questiondown numbersign -210;
+ pos questiondown slash -30;
+ pos questiondown backslash -235;
+ pos questiondown parenleft -155;
+ pos questiondown parenright -55;
+ pos questiondown braceleft -155;
+ pos questiondown braceright -75;
+ pos questiondown bracketleft -20;
+ pos questiondown bracketright -20;
+ pos questiondown hyphen -175;
+ pos questiondown endash -175;
+ pos questiondown emdash -175;
+ pos questiondown underscore -10;
+ pos questiondown quotesinglbase -85;
+ pos questiondown quotedblbase -85;
+ pos questiondown quotedblleft -190;
+ pos questiondown quotedblright -200;
+ pos questiondown quoteleft -115;
+ pos questiondown quoteright -115;
+ pos questiondown guillemetleft -170;
+ pos questiondown guillemetright -195;
+ pos questiondown guilsinglleft -170;
+ pos questiondown guilsinglright -170;
+ pos questiondown quotedbl -195;
+ pos questiondown quotesingle -110;
+ pos questiondown cent -175;
+ pos questiondown dollar -215;
+ pos questiondown euro -270;
+ pos questiondown sterling -170;
+ pos questiondown yen -195;
+ pos questiondown plus -175;
+ pos questiondown minus -175;
+ pos questiondown multiply -215;
+ pos questiondown divide -175;
+ pos questiondown equal -175;
+ pos questiondown greater -140;
+ pos questiondown less -175;
+ pos questiondown asciitilde -205;
+ pos questiondown asciicircum -220;
+ pos questiondown percent -185;
+ pos questiondown perthousand -185;
+ pos questiondown at -175;
+ pos questiondown ampersand -175;
+ pos questiondown paragraph -180;
+ pos questiondown copyright -175;
+ pos questiondown registered -180;
+ pos questiondown trademark -185;
+ pos questiondown degree -200;
+ pos questiondown bar -65;
+ pos periodcentered comma -100;
+ pos periodcentered colon -100;
+ pos periodcentered semicolon -100;
+ pos periodcentered ellipsis -100;
+ pos periodcentered question -100;
+ pos periodcentered questiondown -100;
+ pos periodcentered asterisk -100;
+ pos periodcentered numbersign -75;
+ pos periodcentered slash -95;
+ pos periodcentered backslash -100;
+ pos periodcentered parenright -100;
+ pos periodcentered braceleft -70;
+ pos periodcentered braceright -60;
+ pos periodcentered underscore -100;
+ pos periodcentered quotesinglbase -100;
+ pos periodcentered quotedblbase -100;
+ pos periodcentered quotedblleft -100;
+ pos periodcentered quotedblright -100;
+ pos periodcentered quoteleft -100;
+ pos periodcentered quoteright -100;
+ pos periodcentered guillemetright -100;
+ pos periodcentered guilsinglright -100;
+ pos periodcentered quotedbl -100;
+ pos periodcentered quotesingle -100;
+ pos periodcentered dollar -100;
+ pos periodcentered euro -90;
+ pos periodcentered sterling -30;
+ pos periodcentered yen -55;
+ pos periodcentered multiply -40;
+ pos periodcentered less -15;
+ pos periodcentered asciitilde -50;
+ pos periodcentered asciicircum -100;
+ pos periodcentered percent -100;
+ pos periodcentered perthousand -100;
+ pos periodcentered paragraph -100;
+ pos periodcentered registered -45;
+ pos periodcentered trademark -100;
+ pos periodcentered degree -100;
+ pos bullet comma -115;
+ pos bullet colon -85;
+ pos bullet semicolon -90;
+ pos bullet ellipsis -175;
+ pos bullet question -175;
+ pos bullet questiondown -105;
+ pos bullet asterisk -100;
+ pos bullet numbersign -85;
+ pos bullet slash -100;
+ pos bullet backslash -170;
+ pos bullet parenright -175;
+ pos bullet braceleft -65;
+ pos bullet braceright -60;
+ pos bullet underscore -175;
+ pos bullet quotesinglbase -115;
+ pos bullet quotedblbase -175;
+ pos bullet quotedblleft -145;
+ pos bullet quotedblright -175;
+ pos bullet quoteleft -115;
+ pos bullet quoteright -115;
+ pos bullet guillemetright -80;
+ pos bullet guilsinglright -80;
+ pos bullet quotedbl -145;
+ pos bullet quotesingle -110;
+ pos bullet dollar -110;
+ pos bullet euro -90;
+ pos bullet sterling -35;
+ pos bullet yen -55;
+ pos bullet multiply -45;
+ pos bullet asciitilde -30;
+ pos bullet asciicircum -75;
+ pos bullet percent -75;
+ pos bullet perthousand -75;
+ pos bullet paragraph -65;
+ pos bullet registered -30;
+ pos bullet trademark -125;
+ pos bullet degree -145;
+ pos asterisk comma -115;
+ pos asterisk semicolon -10;
+ pos asterisk ellipsis -190;
+ pos asterisk question -30;
+ pos asterisk questiondown -190;
+ pos asterisk periodcentered -100;
+ pos asterisk bullet -55;
+ pos asterisk numbersign -130;
+ pos asterisk slash -190;
+ pos asterisk backslash -45;
+ pos asterisk parenleft -30;
+ pos asterisk parenright -35;
+ pos asterisk braceleft -110;
+ pos asterisk braceright -65;
+ pos asterisk hyphen -130;
+ pos asterisk endash -130;
+ pos asterisk emdash -130;
+ pos asterisk underscore -190;
+ pos asterisk quotesinglbase -115;
+ pos asterisk quotedblbase -190;
+ pos asterisk quotedblright -15;
+ pos asterisk quoteright -15;
+ pos asterisk guillemetleft -150;
+ pos asterisk guillemetright -35;
+ pos asterisk guilsinglleft -150;
+ pos asterisk guilsinglright -35;
+ pos asterisk cent -40;
+ pos asterisk dollar -35;
+ pos asterisk euro -90;
+ pos asterisk sterling -80;
+ pos asterisk yen -15;
+ pos asterisk plus -40;
+ pos asterisk minus -40;
+ pos asterisk multiply -50;
+ pos asterisk divide -40;
+ pos asterisk less -55;
+ pos asterisk asciitilde -80;
+ pos asterisk asciicircum -25;
+ pos asterisk at -25;
+ pos asterisk ampersand -90;
+ pos asterisk copyright -25;
+ pos numbersign comma -115;
+ pos numbersign colon -65;
+ pos numbersign semicolon -75;
+ pos numbersign ellipsis -235;
+ pos numbersign question -100;
+ pos numbersign questiondown -190;
+ pos numbersign periodcentered -100;
+ pos numbersign bullet -110;
+ pos numbersign asterisk -65;
+ pos numbersign numbersign -210;
+ pos numbersign slash -210;
+ pos numbersign backslash -90;
+ pos numbersign parenleft -105;
+ pos numbersign parenright -110;
+ pos numbersign braceleft -160;
+ pos numbersign braceright -120;
+ pos numbersign bracketleft -50;
+ pos numbersign bracketright -50;
+ pos numbersign hyphen -105;
+ pos numbersign endash -105;
+ pos numbersign emdash -105;
+ pos numbersign underscore -355;
+ pos numbersign quotesinglbase -115;
+ pos numbersign quotedblbase -205;
+ pos numbersign quotedblleft -50;
+ pos numbersign quotedblright -60;
+ pos numbersign quoteleft -50;
+ pos numbersign quoteright -60;
+ pos numbersign guillemetleft -120;
+ pos numbersign guillemetright -105;
+ pos numbersign guilsinglleft -120;
+ pos numbersign guilsinglright -105;
+ pos numbersign quotedbl -55;
+ pos numbersign quotesingle -55;
+ pos numbersign cent -110;
+ pos numbersign dollar -80;
+ pos numbersign euro -155;
+ pos numbersign sterling -135;
+ pos numbersign yen -70;
+ pos numbersign plus -90;
+ pos numbersign minus -90;
+ pos numbersign multiply -125;
+ pos numbersign divide -90;
+ pos numbersign equal -65;
+ pos numbersign greater -50;
+ pos numbersign less -95;
+ pos numbersign asciitilde -135;
+ pos numbersign asciicircum -100;
+ pos numbersign percent -50;
+ pos numbersign perthousand -50;
+ pos numbersign at -100;
+ pos numbersign ampersand -130;
+ pos numbersign paragraph -55;
+ pos numbersign copyright -100;
+ pos numbersign registered -70;
+ pos numbersign trademark -50;
+ pos numbersign degree -55;
+ pos numbersign bar -50;
+ pos slash comma -115;
+ pos slash colon -65;
+ pos slash semicolon -70;
+ pos slash ellipsis -240;
+ pos slash question -20;
+ pos slash questiondown -240;
+ pos slash periodcentered -100;
+ pos slash bullet -130;
+ pos slash asterisk -10;
+ pos slash numbersign -200;
+ pos slash slash -240;
+ pos slash backslash 50;
+ pos slash parenleft -110;
+ pos slash parenright -35;
+ pos slash braceleft -130;
+ pos slash braceright -35;
+ pos slash bracketleft 35;
+ pos slash bracketright 35;
+ pos slash hyphen -130;
+ pos slash endash -130;
+ pos slash emdash -130;
+ pos slash underscore -240;
+ pos slash quotesinglbase -115;
+ pos slash quotedblbase -205;
+ pos slash quotedblleft -25;
+ pos slash quotedblright -15;
+ pos slash quoteleft -25;
+ pos slash quoteright -15;
+ pos slash guillemetleft -165;
+ pos slash guillemetright -120;
+ pos slash guilsinglleft -165;
+ pos slash guilsinglright -120;
+ pos slash cent -125;
+ pos slash dollar -60;
+ pos slash euro -155;
+ pos slash sterling -125;
+ pos slash yen 10;
+ pos slash plus -110;
+ pos slash minus -110;
+ pos slash multiply -135;
+ pos slash divide -110;
+ pos slash equal -65;
+ pos slash greater 10;
+ pos slash less -115;
+ pos slash asciitilde -160;
+ pos slash asciicircum -115;
+ pos slash percent -25;
+ pos slash perthousand -25;
+ pos slash at -105;
+ pos slash ampersand -115;
+ pos slash paragraph -35;
+ pos slash copyright -110;
+ pos slash registered -60;
+ pos slash trademark -35;
+ pos slash bar 35;
+ pos backslash colon -25;
+ pos backslash ellipsis -25;
+ pos backslash question -205;
+ pos backslash periodcentered -100;
+ pos backslash bullet -140;
+ pos backslash asterisk -190;
+ pos backslash numbersign -85;
+ pos backslash slash 50;
+ pos backslash backslash -235;
+ pos backslash parenleft -85;
+ pos backslash parenright -15;
+ pos backslash braceleft -110;
+ pos backslash braceright -40;
+ pos backslash bracketleft 10;
+ pos backslash bracketright 15;
+ pos backslash hyphen -100;
+ pos backslash endash -100;
+ pos backslash emdash -100;
+ pos backslash underscore 10;
+ pos backslash quotedblleft -200;
+ pos backslash quotedblright -200;
+ pos backslash quoteleft -115;
+ pos backslash quoteright -115;
+ pos backslash guillemetleft -125;
+ pos backslash guillemetright -40;
+ pos backslash guilsinglleft -125;
+ pos backslash guilsinglright -40;
+ pos backslash quotedbl -200;
+ pos backslash quotesingle -110;
+ pos backslash cent -100;
+ pos backslash dollar -75;
+ pos backslash euro -195;
+ pos backslash sterling -50;
+ pos backslash yen -75;
+ pos backslash plus -130;
+ pos backslash minus -130;
+ pos backslash multiply -155;
+ pos backslash divide -130;
+ pos backslash equal -80;
+ pos backslash greater -15;
+ pos backslash less -150;
+ pos backslash asciitilde -185;
+ pos backslash asciicircum -210;
+ pos backslash percent -100;
+ pos backslash perthousand -100;
+ pos backslash at -100;
+ pos backslash ampersand -85;
+ pos backslash paragraph -215;
+ pos backslash copyright -100;
+ pos backslash registered -180;
+ pos backslash trademark -235;
+ pos backslash degree -215;
+ pos backslash bar 10;
+ pos parenleft comma -70;
+ pos parenleft colon -95;
+ pos parenleft semicolon -65;
+ pos parenleft ellipsis -105;
+ pos parenleft question -45;
+ pos parenleft questiondown -55;
+ pos parenleft periodcentered -100;
+ pos parenleft bullet -170;
+ pos parenleft asterisk -15;
+ pos parenleft numbersign -175;
+ pos parenleft slash -15;
+ pos parenleft backslash -55;
+ pos parenleft parenleft -120;
+ pos parenleft parenright -50;
+ pos parenleft braceleft -135;
+ pos parenleft braceright -85;
+ pos parenleft bracketleft -15;
+ pos parenleft bracketright -15;
+ pos parenleft hyphen -170;
+ pos parenleft endash -170;
+ pos parenleft emdash -170;
+ pos parenleft underscore -25;
+ pos parenleft quotesinglbase -70;
+ pos parenleft quotedblbase -70;
+ pos parenleft quotedblleft -30;
+ pos parenleft quotedblright -30;
+ pos parenleft quoteleft -30;
+ pos parenleft quoteright -30;
+ pos parenleft guillemetleft -175;
+ pos parenleft guillemetright -135;
+ pos parenleft guilsinglleft -170;
+ pos parenleft guilsinglright -135;
+ pos parenleft quotedbl -15;
+ pos parenleft quotesingle -15;
+ pos parenleft cent -170;
+ pos parenleft dollar -60;
+ pos parenleft euro -180;
+ pos parenleft sterling -125;
+ pos parenleft yen -25;
+ pos parenleft plus -155;
+ pos parenleft minus -155;
+ pos parenleft multiply -175;
+ pos parenleft divide -155;
+ pos parenleft equal -100;
+ pos parenleft greater -15;
+ pos parenleft less -155;
+ pos parenleft asciitilde -180;
+ pos parenleft asciicircum -140;
+ pos parenleft percent -25;
+ pos parenleft perthousand -25;
+ pos parenleft at -135;
+ pos parenleft ampersand -115;
+ pos parenleft paragraph -40;
+ pos parenleft copyright -135;
+ pos parenleft registered -65;
+ pos parenleft trademark -55;
+ pos parenleft degree -15;
+ pos parenleft bar -15;
+ pos parenright comma -50;
+ pos parenright colon -35;
+ pos parenright semicolon -45;
+ pos parenright ellipsis -35;
+ pos parenright question -150;
+ pos parenright questiondown -35;
+ pos parenright asterisk -45;
+ pos parenright numbersign -65;
+ pos parenright slash -50;
+ pos parenright backslash -145;
+ pos parenright parenright -115;
+ pos parenright braceleft -65;
+ pos parenright braceright -60;
+ pos parenright underscore -70;
+ pos parenright quotesinglbase -50;
+ pos parenright quotedblbase -50;
+ pos parenright quotedblleft -65;
+ pos parenright quotedblright -85;
+ pos parenright quoteleft -65;
+ pos parenright quoteright -85;
+ pos parenright guillemetright -25;
+ pos parenright guilsinglright -25;
+ pos parenright quotedbl -55;
+ pos parenright quotesingle -55;
+ pos parenright dollar -80;
+ pos parenright euro -90;
+ pos parenright sterling -30;
+ pos parenright yen -55;
+ pos parenright multiply -40;
+ pos parenright asciitilde -30;
+ pos parenright asciicircum -40;
+ pos parenright percent -50;
+ pos parenright perthousand -50;
+ pos parenright paragraph -40;
+ pos parenright registered -20;
+ pos parenright trademark -60;
+ pos parenright degree -75;
+ pos braceleft comma -75;
+ pos braceleft colon -55;
+ pos braceleft semicolon -60;
+ pos braceleft ellipsis -65;
+ pos braceleft question -75;
+ pos braceleft questiondown -65;
+ pos braceleft periodcentered -60;
+ pos braceleft bullet -60;
+ pos braceleft asterisk -55;
+ pos braceleft numbersign -115;
+ pos braceleft slash -30;
+ pos braceleft backslash -70;
+ pos braceleft parenleft -60;
+ pos braceleft parenright -85;
+ pos braceleft braceleft -120;
+ pos braceleft braceright -120;
+ pos braceleft bracketleft -50;
+ pos braceleft bracketright -50;
+ pos braceleft hyphen -60;
+ pos braceleft endash -60;
+ pos braceleft emdash -60;
+ pos braceleft underscore -65;
+ pos braceleft quotesinglbase -75;
+ pos braceleft quotedblbase -75;
+ pos braceleft quotedblleft -50;
+ pos braceleft quotedblright -60;
+ pos braceleft quoteleft -50;
+ pos braceleft quoteright -60;
+ pos braceleft guillemetleft -55;
+ pos braceleft guillemetright -60;
+ pos braceleft guilsinglleft -55;
+ pos braceleft guilsinglright -60;
+ pos braceleft quotedbl -55;
+ pos braceleft quotesingle -55;
+ pos braceleft cent -60;
+ pos braceleft dollar -80;
+ pos braceleft euro -145;
+ pos braceleft sterling -90;
+ pos braceleft yen -65;
+ pos braceleft plus -60;
+ pos braceleft minus -60;
+ pos braceleft multiply -100;
+ pos braceleft divide -60;
+ pos braceleft equal -55;
+ pos braceleft greater -50;
+ pos braceleft less -55;
+ pos braceleft asciitilde -85;
+ pos braceleft asciicircum -70;
+ pos braceleft percent -55;
+ pos braceleft perthousand -55;
+ pos braceleft at -60;
+ pos braceleft ampersand -60;
+ pos braceleft paragraph -55;
+ pos braceleft copyright -60;
+ pos braceleft registered -55;
+ pos braceleft trademark -55;
+ pos braceleft degree -50;
+ pos braceleft bar -50;
+ pos braceright comma -115;
+ pos braceright colon -105;
+ pos braceright semicolon -110;
+ pos braceright ellipsis -110;
+ pos braceright question -155;
+ pos braceright questiondown -110;
+ pos braceright periodcentered -70;
+ pos braceright bullet -70;
+ pos braceright asterisk -110;
+ pos braceright numbersign -120;
+ pos braceright slash -80;
+ pos braceright backslash -170;
+ pos braceright parenleft -65;
+ pos braceright parenright -135;
+ pos braceright braceleft -135;
+ pos braceright braceright -120;
+ pos braceright bracketleft -60;
+ pos braceright bracketright -60;
+ pos braceright hyphen -60;
+ pos braceright endash -60;
+ pos braceright emdash -60;
+ pos braceright underscore -110;
+ pos braceright quotesinglbase -115;
+ pos braceright quotedblbase -120;
+ pos braceright quotedblleft -110;
+ pos braceright quotedblright -120;
+ pos braceright quoteleft -110;
+ pos braceright quoteright -115;
+ pos braceright guillemetleft -60;
+ pos braceright guillemetright -105;
+ pos braceright guilsinglleft -60;
+ pos braceright guilsinglright -105;
+ pos braceright quotedbl -115;
+ pos braceright quotesingle -110;
+ pos braceright cent -65;
+ pos braceright dollar -140;
+ pos braceright euro -155;
+ pos braceright sterling -95;
+ pos braceright yen -115;
+ pos braceright plus -65;
+ pos braceright minus -65;
+ pos braceright multiply -100;
+ pos braceright divide -65;
+ pos braceright equal -60;
+ pos braceright greater -60;
+ pos braceright less -70;
+ pos braceright asciitilde -100;
+ pos braceright asciicircum -120;
+ pos braceright percent -110;
+ pos braceright perthousand -110;
+ pos braceright at -70;
+ pos braceright ampersand -60;
+ pos braceright paragraph -110;
+ pos braceright copyright -70;
+ pos braceright registered -90;
+ pos braceright trademark -110;
+ pos braceright degree -115;
+ pos braceright bar -60;
+ pos bracketleft question -15;
+ pos bracketleft numbersign -50;
+ pos bracketleft slash 35;
+ pos bracketleft backslash 0;
+ pos bracketleft parenright -20;
+ pos bracketleft braceleft -60;
+ pos bracketleft braceright -50;
+ pos bracketleft quotedblright -10;
+ pos bracketleft quoteright -10;
+ pos bracketleft dollar -30;
+ pos bracketleft euro -90;
+ pos bracketleft sterling -30;
+ pos bracketleft multiply -40;
+ pos bracketleft asciitilde -25;
+ pos bracketleft asciicircum -10;
+ pos bracketright question -15;
+ pos bracketright numbersign -50;
+ pos bracketright slash 35;
+ pos bracketright parenright -20;
+ pos bracketright braceleft -60;
+ pos bracketright braceright -50;
+ pos bracketright quotedblright -10;
+ pos bracketright quoteright -10;
+ pos bracketright dollar -30;
+ pos bracketright euro -90;
+ pos bracketright sterling -30;
+ pos bracketright multiply -40;
+ pos bracketright asciitilde -25;
+ pos bracketright asciicircum -15;
+ pos hyphen comma -115;
+ pos hyphen colon -105;
+ pos hyphen semicolon -110;
+ pos hyphen ellipsis -185;
+ pos hyphen question -175;
+ pos hyphen questiondown -85;
+ pos hyphen asterisk -155;
+ pos hyphen numbersign -65;
+ pos hyphen slash -75;
+ pos hyphen backslash -155;
+ pos hyphen parenright -170;
+ pos hyphen braceleft -60;
+ pos hyphen braceright -60;
+ pos hyphen underscore -185;
+ pos hyphen quotesinglbase -115;
+ pos hyphen quotedblbase -185;
+ pos hyphen quotedblleft -185;
+ pos hyphen quotedblright -185;
+ pos hyphen quoteleft -115;
+ pos hyphen quoteright -115;
+ pos hyphen guillemetright -80;
+ pos hyphen guilsinglright -80;
+ pos hyphen quotedbl -185;
+ pos hyphen quotesingle -110;
+ pos hyphen dollar -110;
+ pos hyphen euro -90;
+ pos hyphen sterling -30;
+ pos hyphen yen -50;
+ pos hyphen multiply -40;
+ pos hyphen asciitilde -25;
+ pos hyphen asciicircum -185;
+ pos hyphen percent -70;
+ pos hyphen perthousand -70;
+ pos hyphen paragraph -55;
+ pos hyphen registered -15;
+ pos hyphen trademark -125;
+ pos hyphen degree -185;
+ pos endash comma -115;
+ pos endash colon -105;
+ pos endash semicolon -110;
+ pos endash ellipsis -285;
+ pos endash question -175;
+ pos endash questiondown -85;
+ pos endash asterisk -155;
+ pos endash numbersign -65;
+ pos endash slash -75;
+ pos endash backslash -155;
+ pos endash parenright -170;
+ pos endash braceleft -60;
+ pos endash braceright -60;
+ pos endash underscore -290;
+ pos endash quotesinglbase -115;
+ pos endash quotedblbase -205;
+ pos endash quotedblleft -200;
+ pos endash quotedblright -200;
+ pos endash quoteleft -115;
+ pos endash quoteright -115;
+ pos endash guillemetright -80;
+ pos endash guilsinglright -80;
+ pos endash quotedbl -200;
+ pos endash quotesingle -110;
+ pos endash dollar -110;
+ pos endash euro -90;
+ pos endash sterling -30;
+ pos endash yen -50;
+ pos endash multiply -40;
+ pos endash asciitilde -25;
+ pos endash asciicircum -260;
+ pos endash percent -70;
+ pos endash perthousand -70;
+ pos endash paragraph -55;
+ pos endash registered -15;
+ pos endash trademark -125;
+ pos endash degree -215;
+ pos emdash comma -115;
+ pos emdash colon -105;
+ pos emdash semicolon -110;
+ pos emdash ellipsis -285;
+ pos emdash question -175;
+ pos emdash questiondown -85;
+ pos emdash asterisk -155;
+ pos emdash numbersign -65;
+ pos emdash slash -75;
+ pos emdash backslash -155;
+ pos emdash parenright -170;
+ pos emdash braceleft -60;
+ pos emdash braceright -60;
+ pos emdash underscore -355;
+ pos emdash quotesinglbase -115;
+ pos emdash quotedblbase -205;
+ pos emdash quotedblleft -200;
+ pos emdash quotedblright -200;
+ pos emdash quoteleft -115;
+ pos emdash quoteright -115;
+ pos emdash guillemetright -80;
+ pos emdash guilsinglright -80;
+ pos emdash quotedbl -200;
+ pos emdash quotesingle -110;
+ pos emdash dollar -110;
+ pos emdash euro -90;
+ pos emdash sterling -30;
+ pos emdash yen -50;
+ pos emdash multiply -40;
+ pos emdash asciitilde -25;
+ pos emdash asciicircum -260;
+ pos emdash percent -70;
+ pos emdash perthousand -70;
+ pos emdash paragraph -55;
+ pos emdash registered -15;
+ pos emdash trademark -125;
+ pos emdash degree -215;
+ pos underscore colon -20;
+ pos underscore ellipsis -20;
+ pos underscore question -205;
+ pos underscore periodcentered -100;
+ pos underscore bullet -175;
+ pos underscore asterisk -190;
+ pos underscore numbersign -355;
+ pos underscore slash 35;
+ pos underscore backslash -235;
+ pos underscore parenleft -85;
+ pos underscore parenright -20;
+ pos underscore braceleft -110;
+ pos underscore braceright -50;
+ pos underscore hyphen -185;
+ pos underscore endash -290;
+ pos underscore emdash -355;
+ pos underscore quotedblleft -200;
+ pos underscore quotedblright -200;
+ pos underscore quoteleft -115;
+ pos underscore quoteright -115;
+ pos underscore guillemetleft -240;
+ pos underscore guillemetright -240;
+ pos underscore guilsinglleft -170;
+ pos underscore guilsinglright -170;
+ pos underscore quotedbl -200;
+ pos underscore quotesingle -110;
+ pos underscore cent -155;
+ pos underscore dollar -125;
+ pos underscore euro -355;
+ pos underscore sterling -320;
+ pos underscore yen -355;
+ pos underscore plus -310;
+ pos underscore minus -320;
+ pos underscore multiply -255;
+ pos underscore divide -310;
+ pos underscore equal -330;
+ pos underscore greater -305;
+ pos underscore less -305;
+ pos underscore asciitilde -240;
+ pos underscore asciicircum -260;
+ pos underscore percent -355;
+ pos underscore perthousand -355;
+ pos underscore at -125;
+ pos underscore ampersand -120;
+ pos underscore paragraph -220;
+ pos underscore copyright -125;
+ pos underscore registered -330;
+ pos underscore trademark -355;
+ pos underscore degree -215;
+ pos quotesinglbase comma -10;
+ pos quotesinglbase question -115;
+ pos quotesinglbase periodcentered -100;
+ pos quotesinglbase bullet -115;
+ pos quotesinglbase asterisk -115;
+ pos quotesinglbase numbersign -70;
+ pos quotesinglbase slash 25;
+ pos quotesinglbase backslash -115;
+ pos quotesinglbase parenleft -60;
+ pos quotesinglbase parenright -30;
+ pos quotesinglbase braceleft -110;
+ pos quotesinglbase braceright -55;
+ pos quotesinglbase hyphen -115;
+ pos quotesinglbase endash -115;
+ pos quotesinglbase emdash -115;
+ pos quotesinglbase quotesinglbase -10;
+ pos quotesinglbase quotedblbase -10;
+ pos quotesinglbase quotedblleft -115;
+ pos quotesinglbase quotedblright -115;
+ pos quotesinglbase quoteleft -115;
+ pos quotesinglbase quoteright -115;
+ pos quotesinglbase guillemetleft -115;
+ pos quotesinglbase guillemetright -20;
+ pos quotesinglbase guilsinglleft -115;
+ pos quotesinglbase guilsinglright -20;
+ pos quotesinglbase quotedbl -115;
+ pos quotesinglbase quotesingle -110;
+ pos quotesinglbase cent -85;
+ pos quotesinglbase dollar -50;
+ pos quotesinglbase euro -115;
+ pos quotesinglbase sterling -30;
+ pos quotesinglbase yen -55;
+ pos quotesinglbase plus -115;
+ pos quotesinglbase minus -115;
+ pos quotesinglbase multiply -115;
+ pos quotesinglbase divide -115;
+ pos quotesinglbase equal -115;
+ pos quotesinglbase less -115;
+ pos quotesinglbase asciitilde -115;
+ pos quotesinglbase asciicircum -115;
+ pos quotesinglbase percent -85;
+ pos quotesinglbase perthousand -85;
+ pos quotesinglbase at -80;
+ pos quotesinglbase ampersand -60;
+ pos quotesinglbase paragraph -115;
+ pos quotesinglbase copyright -80;
+ pos quotesinglbase registered -115;
+ pos quotesinglbase trademark -115;
+ pos quotesinglbase degree -115;
+ pos quotedblbase comma -10;
+ pos quotedblbase question -185;
+ pos quotedblbase periodcentered -100;
+ pos quotedblbase bullet -175;
+ pos quotedblbase asterisk -190;
+ pos quotedblbase numbersign -70;
+ pos quotedblbase slash 25;
+ pos quotedblbase backslash -205;
+ pos quotedblbase parenleft -60;
+ pos quotedblbase parenright -30;
+ pos quotedblbase braceleft -110;
+ pos quotedblbase braceright -55;
+ pos quotedblbase hyphen -185;
+ pos quotedblbase endash -205;
+ pos quotedblbase emdash -205;
+ pos quotedblbase quotesinglbase -10;
+ pos quotedblbase quotedblbase -10;
+ pos quotedblbase quotedblleft -200;
+ pos quotedblbase quotedblright -200;
+ pos quotedblbase quoteleft -115;
+ pos quotedblbase quoteright -115;
+ pos quotedblbase guillemetleft -180;
+ pos quotedblbase guillemetright -20;
+ pos quotedblbase guilsinglleft -170;
+ pos quotedblbase guilsinglright -20;
+ pos quotedblbase quotedbl -200;
+ pos quotedblbase quotesingle -110;
+ pos quotedblbase cent -85;
+ pos quotedblbase dollar -50;
+ pos quotedblbase euro -205;
+ pos quotedblbase sterling -30;
+ pos quotedblbase yen -55;
+ pos quotedblbase plus -205;
+ pos quotedblbase minus -205;
+ pos quotedblbase multiply -205;
+ pos quotedblbase divide -205;
+ pos quotedblbase equal -205;
+ pos quotedblbase less -205;
+ pos quotedblbase asciitilde -205;
+ pos quotedblbase asciicircum -205;
+ pos quotedblbase percent -85;
+ pos quotedblbase perthousand -85;
+ pos quotedblbase at -80;
+ pos quotedblbase ampersand -60;
+ pos quotedblbase paragraph -205;
+ pos quotedblbase copyright -80;
+ pos quotedblbase registered -205;
+ pos quotedblbase trademark -205;
+ pos quotedblbase degree -205;
+ pos quotedblleft comma -115;
+ pos quotedblleft colon -15;
+ pos quotedblleft semicolon -25;
+ pos quotedblleft ellipsis -200;
+ pos quotedblleft question -60;
+ pos quotedblleft questiondown -200;
+ pos quotedblleft periodcentered -100;
+ pos quotedblleft bullet -105;
+ pos quotedblleft asterisk -10;
+ pos quotedblleft numbersign -155;
+ pos quotedblleft slash -200;
+ pos quotedblleft backslash -60;
+ pos quotedblleft parenleft -55;
+ pos quotedblleft parenright -60;
+ pos quotedblleft braceleft -120;
+ pos quotedblleft braceright -75;
+ pos quotedblleft hyphen -185;
+ pos quotedblleft endash -200;
+ pos quotedblleft emdash -200;
+ pos quotedblleft underscore -200;
+ pos quotedblleft quotesinglbase -115;
+ pos quotedblleft quotedblbase -200;
+ pos quotedblleft quotedblleft -10;
+ pos quotedblleft quotedblright -30;
+ pos quotedblleft quoteleft -10;
+ pos quotedblleft quoteright -30;
+ pos quotedblleft guillemetleft -195;
+ pos quotedblleft guillemetright -85;
+ pos quotedblleft guilsinglleft -170;
+ pos quotedblleft guilsinglright -85;
+ pos quotedblleft quotedbl -10;
+ pos quotedblleft quotesingle -10;
+ pos quotedblleft cent -75;
+ pos quotedblleft dollar -40;
+ pos quotedblleft euro -105;
+ pos quotedblleft sterling -95;
+ pos quotedblleft yen -20;
+ pos quotedblleft plus -200;
+ pos quotedblleft minus -200;
+ pos quotedblleft multiply -80;
+ pos quotedblleft divide -200;
+ pos quotedblleft equal -15;
+ pos quotedblleft less -135;
+ pos quotedblleft asciitilde -125;
+ pos quotedblleft asciicircum -65;
+ pos quotedblleft percent -10;
+ pos quotedblleft perthousand -10;
+ pos quotedblleft at -50;
+ pos quotedblleft ampersand -100;
+ pos quotedblleft paragraph -15;
+ pos quotedblleft copyright -55;
+ pos quotedblleft registered -20;
+ pos quotedblleft trademark -20;
+ pos quotedblright comma -115;
+ pos quotedblright colon -20;
+ pos quotedblright semicolon -25;
+ pos quotedblright ellipsis -200;
+ pos quotedblright question -25;
+ pos quotedblright questiondown -200;
+ pos quotedblright periodcentered -100;
+ pos quotedblright bullet -115;
+ pos quotedblright numbersign -160;
+ pos quotedblright slash -200;
+ pos quotedblright backslash -40;
+ pos quotedblright parenleft -65;
+ pos quotedblright parenright -30;
+ pos quotedblright braceleft -110;
+ pos quotedblright braceright -70;
+ pos quotedblright hyphen -185;
+ pos quotedblright endash -200;
+ pos quotedblright emdash -200;
+ pos quotedblright underscore -200;
+ pos quotedblright quotesinglbase -115;
+ pos quotedblright quotedblbase -200;
+ pos quotedblright quotedblright -10;
+ pos quotedblright quoteright -10;
+ pos quotedblright guillemetleft -200;
+ pos quotedblright guillemetright -90;
+ pos quotedblright guilsinglleft -170;
+ pos quotedblright guilsinglright -90;
+ pos quotedblright cent -90;
+ pos quotedblright dollar -30;
+ pos quotedblright euro -105;
+ pos quotedblright sterling -90;
+ pos quotedblright yen -10;
+ pos quotedblright plus -200;
+ pos quotedblright minus -200;
+ pos quotedblright multiply -95;
+ pos quotedblright divide -200;
+ pos quotedblright equal -15;
+ pos quotedblright less -140;
+ pos quotedblright asciitilde -135;
+ pos quotedblright asciicircum -80;
+ pos quotedblright at -60;
+ pos quotedblright ampersand -90;
+ pos quotedblright copyright -65;
+ pos quotedblright registered -20;
+ pos quoteleft comma -115;
+ pos quoteleft colon -15;
+ pos quoteleft semicolon -25;
+ pos quoteleft ellipsis -115;
+ pos quoteleft question -60;
+ pos quoteleft questiondown -115;
+ pos quoteleft periodcentered -100;
+ pos quoteleft bullet -105;
+ pos quoteleft asterisk -10;
+ pos quoteleft numbersign -115;
+ pos quoteleft slash -115;
+ pos quoteleft backslash -60;
+ pos quoteleft parenleft -55;
+ pos quoteleft parenright -60;
+ pos quoteleft braceleft -115;
+ pos quoteleft braceright -75;
+ pos quoteleft hyphen -115;
+ pos quoteleft endash -115;
+ pos quoteleft emdash -115;
+ pos quoteleft underscore -115;
+ pos quoteleft quotesinglbase -115;
+ pos quoteleft quotedblbase -115;
+ pos quoteleft quotedblleft -10;
+ pos quoteleft quotedblright -30;
+ pos quoteleft quoteleft -10;
+ pos quoteleft quoteright -30;
+ pos quoteleft guillemetleft -115;
+ pos quoteleft guillemetright -85;
+ pos quoteleft guilsinglleft -115;
+ pos quoteleft guilsinglright -85;
+ pos quoteleft quotedbl -10;
+ pos quoteleft quotesingle -10;
+ pos quoteleft cent -75;
+ pos quoteleft dollar -40;
+ pos quoteleft euro -105;
+ pos quoteleft sterling -95;
+ pos quoteleft yen -20;
+ pos quoteleft plus -115;
+ pos quoteleft minus -115;
+ pos quoteleft multiply -80;
+ pos quoteleft divide -115;
+ pos quoteleft equal -15;
+ pos quoteleft less -115;
+ pos quoteleft asciitilde -115;
+ pos quoteleft asciicircum -65;
+ pos quoteleft percent -10;
+ pos quoteleft perthousand -10;
+ pos quoteleft at -50;
+ pos quoteleft ampersand -100;
+ pos quoteleft paragraph -15;
+ pos quoteleft copyright -55;
+ pos quoteleft registered -20;
+ pos quoteleft trademark -20;
+ pos quoteright comma -115;
+ pos quoteright colon -20;
+ pos quoteright semicolon -25;
+ pos quoteright ellipsis -115;
+ pos quoteright question -25;
+ pos quoteright questiondown -115;
+ pos quoteright periodcentered -100;
+ pos quoteright bullet -115;
+ pos quoteright numbersign -115;
+ pos quoteright slash -115;
+ pos quoteright backslash -40;
+ pos quoteright parenleft -65;
+ pos quoteright parenright -30;
+ pos quoteright braceleft -110;
+ pos quoteright braceright -70;
+ pos quoteright hyphen -115;
+ pos quoteright endash -115;
+ pos quoteright emdash -115;
+ pos quoteright underscore -115;
+ pos quoteright quotesinglbase -115;
+ pos quoteright quotedblbase -115;
+ pos quoteright quotedblright -10;
+ pos quoteright quoteright -10;
+ pos quoteright guillemetleft -115;
+ pos quoteright guillemetright -90;
+ pos quoteright guilsinglleft -115;
+ pos quoteright guilsinglright -90;
+ pos quoteright cent -90;
+ pos quoteright dollar -30;
+ pos quoteright euro -105;
+ pos quoteright sterling -90;
+ pos quoteright yen -10;
+ pos quoteright plus -115;
+ pos quoteright minus -115;
+ pos quoteright multiply -95;
+ pos quoteright divide -115;
+ pos quoteright equal -15;
+ pos quoteright less -115;
+ pos quoteright asciitilde -115;
+ pos quoteright asciicircum -80;
+ pos quoteright at -60;
+ pos quoteright ampersand -90;
+ pos quoteright copyright -65;
+ pos quoteright registered -20;
+ pos guillemetleft comma -35;
+ pos guillemetleft colon -20;
+ pos guillemetleft semicolon -25;
+ pos guillemetleft ellipsis -20;
+ pos guillemetleft question -175;
+ pos guillemetleft questiondown -20;
+ pos guillemetleft periodcentered -90;
+ pos guillemetleft bullet -40;
+ pos guillemetleft asterisk -35;
+ pos guillemetleft numbersign -100;
+ pos guillemetleft slash -35;
+ pos guillemetleft backslash -125;
+ pos guillemetleft parenleft -20;
+ pos guillemetleft parenright -140;
+ pos guillemetleft braceleft -110;
+ pos guillemetleft braceright -65;
+ pos guillemetleft hyphen -60;
+ pos guillemetleft endash -60;
+ pos guillemetleft emdash -60;
+ pos guillemetleft underscore -240;
+ pos guillemetleft quotesinglbase -35;
+ pos guillemetleft quotedblbase -35;
+ pos guillemetleft quotedblleft -90;
+ pos guillemetleft quotedblright -175;
+ pos guillemetleft quoteleft -90;
+ pos guillemetleft quoteright -115;
+ pos guillemetleft guillemetleft -135;
+ pos guillemetleft guilsinglleft -135;
+ pos guillemetleft quotedbl -200;
+ pos guillemetleft quotesingle -110;
+ pos guillemetleft cent -25;
+ pos guillemetleft dollar -55;
+ pos guillemetleft euro -90;
+ pos guillemetleft sterling -70;
+ pos guillemetleft yen -40;
+ pos guillemetleft plus -20;
+ pos guillemetleft minus -20;
+ pos guillemetleft multiply -70;
+ pos guillemetleft divide -20;
+ pos guillemetleft less -25;
+ pos guillemetleft asciitilde -65;
+ pos guillemetleft asciicircum -15;
+ pos guillemetleft percent -25;
+ pos guillemetleft perthousand -25;
+ pos guillemetleft at -15;
+ pos guillemetleft ampersand -50;
+ pos guillemetleft paragraph -15;
+ pos guillemetleft copyright -15;
+ pos guillemetleft trademark -125;
+ pos guillemetleft degree -80;
+ pos guillemetright comma -115;
+ pos guillemetright colon -105;
+ pos guillemetright semicolon -110;
+ pos guillemetright ellipsis -140;
+ pos guillemetright question -170;
+ pos guillemetright questiondown -115;
+ pos guillemetright bullet -10;
+ pos guillemetright asterisk -185;
+ pos guillemetright numbersign -70;
+ pos guillemetright slash -90;
+ pos guillemetright backslash -195;
+ pos guillemetright parenright -170;
+ pos guillemetright braceleft -65;
+ pos guillemetright braceright -55;
+ pos guillemetright underscore -240;
+ pos guillemetright quotesinglbase -115;
+ pos guillemetright quotedblbase -155;
+ pos guillemetright quotedblleft -200;
+ pos guillemetright quotedblright -200;
+ pos guillemetright quoteleft -115;
+ pos guillemetright quoteright -115;
+ pos guillemetright guillemetright -135;
+ pos guillemetright guilsinglright -135;
+ pos guillemetright quotedbl -200;
+ pos guillemetright quotesingle -110;
+ pos guillemetright dollar -195;
+ pos guillemetright euro -85;
+ pos guillemetright sterling -25;
+ pos guillemetright yen -50;
+ pos guillemetright plus -10;
+ pos guillemetright minus -10;
+ pos guillemetright multiply -40;
+ pos guillemetright divide -10;
+ pos guillemetright less -50;
+ pos guillemetright asciitilde -90;
+ pos guillemetright asciicircum -160;
+ pos guillemetright percent -155;
+ pos guillemetright perthousand -155;
+ pos guillemetright paragraph -140;
+ pos guillemetright registered -65;
+ pos guillemetright trademark -150;
+ pos guillemetright degree -215;
+ pos guilsinglleft comma -35;
+ pos guilsinglleft colon -20;
+ pos guilsinglleft semicolon -25;
+ pos guilsinglleft ellipsis -20;
+ pos guilsinglleft question -170;
+ pos guilsinglleft questiondown -20;
+ pos guilsinglleft periodcentered -90;
+ pos guilsinglleft bullet -40;
+ pos guilsinglleft asterisk -35;
+ pos guilsinglleft numbersign -100;
+ pos guilsinglleft slash -35;
+ pos guilsinglleft backslash -125;
+ pos guilsinglleft parenleft -20;
+ pos guilsinglleft parenright -140;
+ pos guilsinglleft braceleft -110;
+ pos guilsinglleft braceright -65;
+ pos guilsinglleft hyphen -60;
+ pos guilsinglleft endash -60;
+ pos guilsinglleft emdash -60;
+ pos guilsinglleft underscore -170;
+ pos guilsinglleft quotesinglbase -35;
+ pos guilsinglleft quotedblbase -35;
+ pos guilsinglleft quotedblleft -90;
+ pos guilsinglleft quotedblright -170;
+ pos guilsinglleft quoteleft -90;
+ pos guilsinglleft quoteright -115;
+ pos guilsinglleft guillemetleft -135;
+ pos guilsinglleft guilsinglleft -135;
+ pos guilsinglleft quotedbl -170;
+ pos guilsinglleft quotesingle -110;
+ pos guilsinglleft cent -25;
+ pos guilsinglleft dollar -55;
+ pos guilsinglleft euro -90;
+ pos guilsinglleft sterling -70;
+ pos guilsinglleft yen -40;
+ pos guilsinglleft plus -20;
+ pos guilsinglleft minus -20;
+ pos guilsinglleft multiply -70;
+ pos guilsinglleft divide -20;
+ pos guilsinglleft less -25;
+ pos guilsinglleft asciitilde -65;
+ pos guilsinglleft asciicircum -15;
+ pos guilsinglleft percent -25;
+ pos guilsinglleft perthousand -25;
+ pos guilsinglleft at -15;
+ pos guilsinglleft ampersand -50;
+ pos guilsinglleft paragraph -15;
+ pos guilsinglleft copyright -15;
+ pos guilsinglleft trademark -125;
+ pos guilsinglleft degree -80;
+ pos guilsinglright comma -115;
+ pos guilsinglright colon -105;
+ pos guilsinglright semicolon -110;
+ pos guilsinglright ellipsis -140;
+ pos guilsinglright question -170;
+ pos guilsinglright questiondown -115;
+ pos guilsinglright bullet -10;
+ pos guilsinglright asterisk -170;
+ pos guilsinglright numbersign -70;
+ pos guilsinglright slash -90;
+ pos guilsinglright backslash -170;
+ pos guilsinglright parenright -170;
+ pos guilsinglright braceleft -65;
+ pos guilsinglright braceright -55;
+ pos guilsinglright underscore -170;
+ pos guilsinglright quotesinglbase -115;
+ pos guilsinglright quotedblbase -155;
+ pos guilsinglright quotedblleft -170;
+ pos guilsinglright quotedblright -170;
+ pos guilsinglright quoteleft -115;
+ pos guilsinglright quoteright -115;
+ pos guilsinglright guillemetright -135;
+ pos guilsinglright guilsinglright -135;
+ pos guilsinglright quotedbl -170;
+ pos guilsinglright quotesingle -110;
+ pos guilsinglright dollar -170;
+ pos guilsinglright euro -85;
+ pos guilsinglright sterling -25;
+ pos guilsinglright yen -50;
+ pos guilsinglright plus -10;
+ pos guilsinglright minus -10;
+ pos guilsinglright multiply -40;
+ pos guilsinglright divide -10;
+ pos guilsinglright less -50;
+ pos guilsinglright asciitilde -90;
+ pos guilsinglright asciicircum -160;
+ pos guilsinglright percent -155;
+ pos guilsinglright perthousand -155;
+ pos guilsinglright paragraph -140;
+ pos guilsinglright registered -65;
+ pos guilsinglright trademark -150;
+ pos guilsinglright degree -170;
+ pos quotedbl comma -115;
+ pos quotedbl colon -10;
+ pos quotedbl semicolon -15;
+ pos quotedbl ellipsis -200;
+ pos quotedbl question -20;
+ pos quotedbl questiondown -200;
+ pos quotedbl periodcentered -100;
+ pos quotedbl bullet -110;
+ pos quotedbl numbersign -145;
+ pos quotedbl slash -200;
+ pos quotedbl backslash -40;
+ pos quotedbl parenleft -40;
+ pos quotedbl parenright -30;
+ pos quotedbl braceleft -110;
+ pos quotedbl braceright -70;
+ pos quotedbl hyphen -185;
+ pos quotedbl endash -200;
+ pos quotedbl emdash -200;
+ pos quotedbl underscore -200;
+ pos quotedbl quotesinglbase -115;
+ pos quotedbl quotedblbase -200;
+ pos quotedbl quotedblright -10;
+ pos quotedbl quoteright -10;
+ pos quotedbl guillemetleft -200;
+ pos quotedbl guillemetright -200;
+ pos quotedbl guilsinglleft -170;
+ pos quotedbl guilsinglright -170;
+ pos quotedbl cent -55;
+ pos quotedbl dollar -30;
+ pos quotedbl euro -95;
+ pos quotedbl sterling -85;
+ pos quotedbl yen -10;
+ pos quotedbl plus -200;
+ pos quotedbl minus -200;
+ pos quotedbl multiply -65;
+ pos quotedbl divide -200;
+ pos quotedbl less -150;
+ pos quotedbl asciitilde -125;
+ pos quotedbl asciicircum -45;
+ pos quotedbl at -35;
+ pos quotedbl ampersand -90;
+ pos quotedbl copyright -40;
+ pos quotedbl registered -10;
+ pos quotesingle comma -110;
+ pos quotesingle colon -10;
+ pos quotesingle semicolon -15;
+ pos quotesingle ellipsis -110;
+ pos quotesingle question -20;
+ pos quotesingle questiondown -110;
+ pos quotesingle periodcentered -100;
+ pos quotesingle bullet -110;
+ pos quotesingle numbersign -110;
+ pos quotesingle slash -110;
+ pos quotesingle backslash -40;
+ pos quotesingle parenleft -40;
+ pos quotesingle parenright -30;
+ pos quotesingle braceleft -110;
+ pos quotesingle braceright -70;
+ pos quotesingle hyphen -110;
+ pos quotesingle endash -110;
+ pos quotesingle emdash -110;
+ pos quotesingle underscore -110;
+ pos quotesingle quotesinglbase -110;
+ pos quotesingle quotedblbase -110;
+ pos quotesingle quotedblright -10;
+ pos quotesingle quoteright -10;
+ pos quotesingle guillemetleft -110;
+ pos quotesingle guillemetright -110;
+ pos quotesingle guilsinglleft -110;
+ pos quotesingle guilsinglright -110;
+ pos quotesingle cent -55;
+ pos quotesingle dollar -30;
+ pos quotesingle euro -95;
+ pos quotesingle sterling -85;
+ pos quotesingle yen -10;
+ pos quotesingle plus -110;
+ pos quotesingle minus -110;
+ pos quotesingle multiply -65;
+ pos quotesingle divide -110;
+ pos quotesingle less -110;
+ pos quotesingle asciitilde -110;
+ pos quotesingle asciicircum -45;
+ pos quotesingle at -35;
+ pos quotesingle ampersand -90;
+ pos quotesingle copyright -40;
+ pos quotesingle registered -10;
+ pos cent comma -15;
+ pos cent question -175;
+ pos cent numbersign -50;
+ pos cent backslash -105;
+ pos cent parenright -90;
+ pos cent braceleft -60;
+ pos cent braceright -55;
+ pos cent underscore -40;
+ pos cent quotesinglbase -15;
+ pos cent quotedblbase -15;
+ pos cent quotedblleft -25;
+ pos cent quotedblright -75;
+ pos cent quoteleft -25;
+ pos cent quoteright -75;
+ pos cent quotedbl -15;
+ pos cent quotesingle -15;
+ pos cent dollar -35;
+ pos cent euro -90;
+ pos cent sterling -30;
+ pos cent yen -30;
+ pos cent multiply -40;
+ pos cent asciitilde -25;
+ pos cent asciicircum -15;
+ pos cent percent -10;
+ pos cent perthousand -10;
+ pos cent trademark -25;
+ pos cent degree -35;
+ pos dollar comma -40;
+ pos dollar colon -25;
+ pos dollar semicolon -30;
+ pos dollar ellipsis -25;
+ pos dollar question -85;
+ pos dollar questiondown -20;
+ pos dollar periodcentered -25;
+ pos dollar bullet -30;
+ pos dollar asterisk -75;
+ pos dollar numbersign -50;
+ pos dollar slash -40;
+ pos dollar backslash -80;
+ pos dollar parenleft -10;
+ pos dollar parenright -105;
+ pos dollar braceleft -75;
+ pos dollar braceright -60;
+ pos dollar underscore -90;
+ pos dollar quotesinglbase -40;
+ pos dollar quotedblbase -40;
+ pos dollar quotedblleft -90;
+ pos dollar quotedblright -75;
+ pos dollar quoteleft -90;
+ pos dollar quoteright -75;
+ pos dollar guillemetleft -15;
+ pos dollar guillemetright -10;
+ pos dollar guilsinglleft -15;
+ pos dollar guilsinglright -10;
+ pos dollar quotedbl -60;
+ pos dollar quotesingle -60;
+ pos dollar cent -10;
+ pos dollar dollar -75;
+ pos dollar euro -95;
+ pos dollar sterling -45;
+ pos dollar yen -55;
+ pos dollar plus -20;
+ pos dollar minus -20;
+ pos dollar multiply -50;
+ pos dollar divide -20;
+ pos dollar less -50;
+ pos dollar asciitilde -85;
+ pos dollar asciicircum -210;
+ pos dollar percent -85;
+ pos dollar perthousand -85;
+ pos dollar at -15;
+ pos dollar paragraph -105;
+ pos dollar copyright -15;
+ pos dollar registered -75;
+ pos dollar trademark -130;
+ pos dollar degree -65;
+ pos euro comma -45;
+ pos euro semicolon -10;
+ pos euro ellipsis -30;
+ pos euro question -75;
+ pos euro questiondown -20;
+ pos euro numbersign -50;
+ pos euro slash -40;
+ pos euro backslash -65;
+ pos euro parenright -80;
+ pos euro braceleft -60;
+ pos euro braceright -55;
+ pos euro underscore -165;
+ pos euro quotesinglbase -45;
+ pos euro quotedblbase -45;
+ pos euro quotedblright -10;
+ pos euro quoteright -10;
+ pos euro guillemetright -20;
+ pos euro guilsinglright -20;
+ pos euro dollar -30;
+ pos euro euro -90;
+ pos euro sterling -30;
+ pos euro yen -20;
+ pos euro multiply -40;
+ pos euro asciitilde -25;
+ pos euro asciicircum -10;
+ pos sterling comma -50;
+ pos sterling colon -30;
+ pos sterling semicolon -40;
+ pos sterling ellipsis -30;
+ pos sterling question -90;
+ pos sterling questiondown -30;
+ pos sterling periodcentered -30;
+ pos sterling bullet -30;
+ pos sterling asterisk -30;
+ pos sterling numbersign -80;
+ pos sterling slash -25;
+ pos sterling backslash -100;
+ pos sterling parenleft -30;
+ pos sterling parenright -95;
+ pos sterling braceleft -90;
+ pos sterling braceright -85;
+ pos sterling bracketleft -30;
+ pos sterling bracketright -30;
+ pos sterling hyphen -30;
+ pos sterling endash -30;
+ pos sterling emdash -30;
+ pos sterling underscore -320;
+ pos sterling quotesinglbase -50;
+ pos sterling quotedblbase -50;
+ pos sterling quotedblleft -30;
+ pos sterling quotedblright -40;
+ pos sterling quoteleft -30;
+ pos sterling quoteright -40;
+ pos sterling guillemetleft -25;
+ pos sterling guillemetright -25;
+ pos sterling guilsinglleft -25;
+ pos sterling guilsinglright -25;
+ pos sterling quotedbl -35;
+ pos sterling quotesingle -35;
+ pos sterling cent -30;
+ pos sterling dollar -60;
+ pos sterling euro -120;
+ pos sterling sterling -65;
+ pos sterling yen -50;
+ pos sterling plus -30;
+ pos sterling minus -30;
+ pos sterling multiply -70;
+ pos sterling divide -30;
+ pos sterling equal -30;
+ pos sterling greater -30;
+ pos sterling less -30;
+ pos sterling asciitilde -60;
+ pos sterling asciicircum -45;
+ pos sterling percent -30;
+ pos sterling perthousand -30;
+ pos sterling at -30;
+ pos sterling ampersand -30;
+ pos sterling paragraph -30;
+ pos sterling copyright -30;
+ pos sterling registered -30;
+ pos sterling trademark -30;
+ pos sterling degree -35;
+ pos sterling bar -30;
+ pos yen comma -75;
+ pos yen colon -30;
+ pos yen semicolon -40;
+ pos yen ellipsis -60;
+ pos yen question -20;
+ pos yen questiondown -60;
+ pos yen periodcentered -60;
+ pos yen bullet -60;
+ pos yen asterisk -10;
+ pos yen numbersign -110;
+ pos yen slash -55;
+ pos yen backslash -15;
+ pos yen parenleft -60;
+ pos yen parenright -35;
+ pos yen braceleft -115;
+ pos yen braceright -70;
+ pos yen hyphen -55;
+ pos yen endash -55;
+ pos yen emdash -55;
+ pos yen underscore -355;
+ pos yen quotesinglbase -75;
+ pos yen quotedblbase -75;
+ pos yen quotedblleft -20;
+ pos yen quotedblright -25;
+ pos yen quoteleft -20;
+ pos yen quoteright -25;
+ pos yen guillemetleft -55;
+ pos yen guillemetright -55;
+ pos yen guilsinglleft -55;
+ pos yen guilsinglright -55;
+ pos yen quotedbl -10;
+ pos yen quotesingle -10;
+ pos yen cent -60;
+ pos yen dollar -50;
+ pos yen euro -120;
+ pos yen sterling -90;
+ pos yen plus -50;
+ pos yen minus -50;
+ pos yen multiply -85;
+ pos yen divide -50;
+ pos yen equal -30;
+ pos yen less -50;
+ pos yen asciitilde -85;
+ pos yen asciicircum -55;
+ pos yen percent -20;
+ pos yen perthousand -20;
+ pos yen at -55;
+ pos yen ampersand -60;
+ pos yen paragraph -25;
+ pos yen copyright -55;
+ pos yen registered -35;
+ pos yen trademark -20;
+ pos yen degree -10;
+ pos plus comma -115;
+ pos plus colon -40;
+ pos plus semicolon -45;
+ pos plus ellipsis -275;
+ pos plus question -175;
+ pos plus questiondown -200;
+ pos plus asterisk -70;
+ pos plus numbersign -85;
+ pos plus slash -110;
+ pos plus backslash -135;
+ pos plus parenright -165;
+ pos plus braceleft -60;
+ pos plus braceright -65;
+ pos plus underscore -310;
+ pos plus quotesinglbase -115;
+ pos plus quotedblbase -205;
+ pos plus quotedblleft -200;
+ pos plus quotedblright -200;
+ pos plus quoteleft -115;
+ pos plus quoteright -115;
+ pos plus guillemetright -35;
+ pos plus guilsinglright -35;
+ pos plus quotedbl -200;
+ pos plus quotesingle -110;
+ pos plus dollar -65;
+ pos plus euro -90;
+ pos plus sterling -35;
+ pos plus yen -40;
+ pos plus multiply -70;
+ pos plus asciitilde -30;
+ pos plus asciicircum -245;
+ pos plus percent -35;
+ pos plus perthousand -35;
+ pos plus paragraph -25;
+ pos plus trademark -125;
+ pos plus degree -105;
+ pos minus comma -115;
+ pos minus colon -40;
+ pos minus semicolon -45;
+ pos minus ellipsis -285;
+ pos minus question -175;
+ pos minus questiondown -200;
+ pos minus asterisk -70;
+ pos minus numbersign -85;
+ pos minus slash -110;
+ pos minus backslash -135;
+ pos minus parenright -165;
+ pos minus braceleft -60;
+ pos minus braceright -65;
+ pos minus underscore -320;
+ pos minus quotesinglbase -115;
+ pos minus quotedblbase -205;
+ pos minus quotedblleft -200;
+ pos minus quotedblright -200;
+ pos minus quoteleft -115;
+ pos minus quoteright -115;
+ pos minus guillemetright -35;
+ pos minus guilsinglright -35;
+ pos minus quotedbl -200;
+ pos minus quotesingle -110;
+ pos minus dollar -65;
+ pos minus euro -90;
+ pos minus sterling -35;
+ pos minus yen -40;
+ pos minus multiply -70;
+ pos minus asciitilde -30;
+ pos minus asciicircum -260;
+ pos minus percent -35;
+ pos minus perthousand -35;
+ pos minus paragraph -25;
+ pos minus trademark -125;
+ pos minus degree -105;
+ pos multiply comma -115;
+ pos multiply colon -45;
+ pos multiply semicolon -55;
+ pos multiply ellipsis -255;
+ pos multiply question -225;
+ pos multiply questiondown -155;
+ pos multiply periodcentered -70;
+ pos multiply bullet -75;
+ pos multiply asterisk -50;
+ pos multiply numbersign -120;
+ pos multiply slash -135;
+ pos multiply backslash -150;
+ pos multiply parenleft -50;
+ pos multiply parenright -180;
+ pos multiply braceleft -120;
+ pos multiply braceright -100;
+ pos multiply bracketleft -35;
+ pos multiply bracketright -35;
+ pos multiply hyphen -45;
+ pos multiply endash -45;
+ pos multiply emdash -45;
+ pos multiply underscore -255;
+ pos multiply quotesinglbase -115;
+ pos multiply quotedblbase -205;
+ pos multiply quotedblleft -85;
+ pos multiply quotedblright -150;
+ pos multiply quoteleft -85;
+ pos multiply quoteright -115;
+ pos multiply guillemetleft -70;
+ pos multiply guillemetright -70;
+ pos multiply guilsinglleft -70;
+ pos multiply guilsinglright -70;
+ pos multiply quotedbl -65;
+ pos multiply quotesingle -65;
+ pos multiply cent -50;
+ pos multiply dollar -80;
+ pos multiply euro -125;
+ pos multiply sterling -85;
+ pos multiply yen -70;
+ pos multiply plus -75;
+ pos multiply minus -75;
+ pos multiply multiply -85;
+ pos multiply divide -75;
+ pos multiply equal -35;
+ pos multiply greater -35;
+ pos multiply less -85;
+ pos multiply asciitilde -115;
+ pos multiply asciicircum -60;
+ pos multiply percent -55;
+ pos multiply perthousand -55;
+ pos multiply at -55;
+ pos multiply ampersand -45;
+ pos multiply paragraph -45;
+ pos multiply copyright -55;
+ pos multiply registered -35;
+ pos multiply trademark -95;
+ pos multiply degree -90;
+ pos multiply bar -35;
+ pos divide comma -115;
+ pos divide colon -40;
+ pos divide semicolon -45;
+ pos divide ellipsis -285;
+ pos divide question -175;
+ pos divide questiondown -200;
+ pos divide asterisk -70;
+ pos divide numbersign -85;
+ pos divide slash -110;
+ pos divide backslash -135;
+ pos divide parenright -165;
+ pos divide braceleft -60;
+ pos divide braceright -65;
+ pos divide underscore -310;
+ pos divide quotesinglbase -115;
+ pos divide quotedblbase -205;
+ pos divide quotedblleft -200;
+ pos divide quotedblright -200;
+ pos divide quoteleft -115;
+ pos divide quoteright -115;
+ pos divide guillemetright -35;
+ pos divide guilsinglright -35;
+ pos divide quotedbl -200;
+ pos divide quotesingle -110;
+ pos divide dollar -65;
+ pos divide euro -90;
+ pos divide sterling -35;
+ pos divide yen -40;
+ pos divide multiply -70;
+ pos divide asciitilde -30;
+ pos divide asciicircum -260;
+ pos divide percent -35;
+ pos divide perthousand -35;
+ pos divide paragraph -25;
+ pos divide trademark -125;
+ pos divide degree -105;
+ pos equal comma -115;
+ pos equal semicolon -10;
+ pos equal ellipsis -285;
+ pos equal question -145;
+ pos equal questiondown -50;
+ pos equal numbersign -55;
+ pos equal slash -60;
+ pos equal backslash -85;
+ pos equal parenright -115;
+ pos equal braceleft -60;
+ pos equal braceright -60;
+ pos equal underscore -330;
+ pos equal quotesinglbase -115;
+ pos equal quotedblbase -205;
+ pos equal quotedblright -50;
+ pos equal quoteright -50;
+ pos equal guillemetright -20;
+ pos equal guilsinglright -20;
+ pos equal quotedbl -10;
+ pos equal quotesingle -10;
+ pos equal dollar -30;
+ pos equal euro -90;
+ pos equal sterling -35;
+ pos equal yen -25;
+ pos equal multiply -40;
+ pos equal asciitilde -30;
+ pos equal asciicircum -15;
+ pos equal degree -15;
+ pos greater comma -115;
+ pos greater colon -60;
+ pos greater semicolon -70;
+ pos greater ellipsis -285;
+ pos greater question -175;
+ pos greater questiondown -200;
+ pos greater asterisk -105;
+ pos greater numbersign -95;
+ pos greater slash -125;
+ pos greater backslash -145;
+ pos greater parenright -170;
+ pos greater braceleft -60;
+ pos greater braceright -60;
+ pos greater underscore -305;
+ pos greater quotesinglbase -115;
+ pos greater quotedblbase -205;
+ pos greater quotedblleft -170;
+ pos greater quotedblright -200;
+ pos greater quoteleft -115;
+ pos greater quoteright -115;
+ pos greater guillemetleft -30;
+ pos greater guillemetright -55;
+ pos greater guilsinglleft -30;
+ pos greater guilsinglright -55;
+ pos greater quotedbl -170;
+ pos greater quotesingle -110;
+ pos greater dollar -80;
+ pos greater euro -90;
+ pos greater sterling -35;
+ pos greater yen -45;
+ pos greater multiply -105;
+ pos greater asciitilde -30;
+ pos greater asciicircum -85;
+ pos greater percent -45;
+ pos greater perthousand -45;
+ pos greater ampersand -15;
+ pos greater paragraph -35;
+ pos greater trademark -125;
+ pos greater degree -135;
+ pos less comma -15;
+ pos less semicolon -10;
+ pos less question -15;
+ pos less numbersign -50;
+ pos less backslash -10;
+ pos less parenright -25;
+ pos less braceleft -60;
+ pos less braceright -55;
+ pos less underscore -305;
+ pos less quotesinglbase -15;
+ pos less quotedblbase -15;
+ pos less quotedblright -10;
+ pos less quoteright -10;
+ pos less dollar -30;
+ pos less euro -90;
+ pos less sterling -30;
+ pos less multiply -40;
+ pos less asciitilde -25;
+ pos less asciicircum -10;
+ pos asciitilde comma -115;
+ pos asciitilde colon -65;
+ pos asciitilde semicolon -75;
+ pos asciitilde ellipsis -240;
+ pos asciitilde question -200;
+ pos asciitilde questiondown -240;
+ pos asciitilde periodcentered -60;
+ pos asciitilde bullet -45;
+ pos asciitilde asterisk -95;
+ pos asciitilde numbersign -145;
+ pos asciitilde slash -180;
+ pos asciitilde backslash -160;
+ pos asciitilde parenleft -40;
+ pos asciitilde parenright -180;
+ pos asciitilde braceleft -100;
+ pos asciitilde braceright -90;
+ pos asciitilde bracketleft -25;
+ pos asciitilde bracketright -25;
+ pos asciitilde hyphen -40;
+ pos asciitilde endash -40;
+ pos asciitilde emdash -40;
+ pos asciitilde underscore -240;
+ pos asciitilde quotesinglbase -115;
+ pos asciitilde quotedblbase -205;
+ pos asciitilde quotedblleft -200;
+ pos asciitilde quotedblright -200;
+ pos asciitilde quoteleft -115;
+ pos asciitilde quoteright -115;
+ pos asciitilde guillemetleft -95;
+ pos asciitilde guillemetright -65;
+ pos asciitilde guilsinglleft -95;
+ pos asciitilde guilsinglright -65;
+ pos asciitilde quotedbl -200;
+ pos asciitilde quotesingle -110;
+ pos asciitilde cent -45;
+ pos asciitilde dollar -95;
+ pos asciitilde euro -120;
+ pos asciitilde sterling -70;
+ pos asciitilde yen -70;
+ pos asciitilde plus -30;
+ pos asciitilde minus -30;
+ pos asciitilde multiply -120;
+ pos asciitilde divide -30;
+ pos asciitilde equal -30;
+ pos asciitilde greater -25;
+ pos asciitilde less -30;
+ pos asciitilde asciitilde -70;
+ pos asciitilde asciicircum -105;
+ pos asciitilde percent -60;
+ pos asciitilde perthousand -60;
+ pos asciitilde at -35;
+ pos asciitilde ampersand -75;
+ pos asciitilde paragraph -50;
+ pos asciitilde copyright -40;
+ pos asciitilde registered -30;
+ pos asciitilde trademark -150;
+ pos asciitilde degree -135;
+ pos asciitilde bar -30;
+ pos asciicircum comma -115;
+ pos asciicircum colon -45;
+ pos asciicircum semicolon -50;
+ pos asciicircum ellipsis -260;
+ pos asciicircum question -165;
+ pos asciicircum questiondown -260;
+ pos asciicircum periodcentered -100;
+ pos asciicircum bullet -65;
+ pos asciicircum asterisk -50;
+ pos asciicircum numbersign -145;
+ pos asciicircum slash -200;
+ pos asciicircum backslash -150;
+ pos asciicircum parenleft -40;
+ pos asciicircum parenright -170;
+ pos asciicircum braceleft -130;
+ pos asciicircum braceright -90;
+ pos asciicircum bracketleft -25;
+ pos asciicircum bracketright -25;
+ pos asciicircum hyphen -185;
+ pos asciicircum endash -260;
+ pos asciicircum emdash -260;
+ pos asciicircum underscore -260;
+ pos asciicircum quotesinglbase -115;
+ pos asciicircum quotedblbase -205;
+ pos asciicircum quotedblleft -75;
+ pos asciicircum quotedblright -105;
+ pos asciicircum quoteleft -75;
+ pos asciicircum quoteright -105;
+ pos asciicircum guillemetleft -160;
+ pos asciicircum guillemetright -40;
+ pos asciicircum guilsinglleft -160;
+ pos asciicircum guilsinglright -40;
+ pos asciicircum quotedbl -60;
+ pos asciicircum quotesingle -60;
+ pos asciicircum cent -50;
+ pos asciicircum dollar -80;
+ pos asciicircum euro -115;
+ pos asciicircum sterling -105;
+ pos asciicircum yen -65;
+ pos asciicircum plus -260;
+ pos asciicircum minus -260;
+ pos asciicircum multiply -85;
+ pos asciicircum divide -260;
+ pos asciicircum equal -25;
+ pos asciicircum greater -25;
+ pos asciicircum less -75;
+ pos asciicircum asciitilde -85;
+ pos asciicircum asciicircum -35;
+ pos asciicircum percent -50;
+ pos asciicircum perthousand -50;
+ pos asciicircum at -35;
+ pos asciicircum ampersand -145;
+ pos asciicircum paragraph -40;
+ pos asciicircum copyright -40;
+ pos asciicircum registered -25;
+ pos asciicircum trademark -70;
+ pos asciicircum degree -90;
+ pos asciicircum bar -25;
+ pos percent comma -35;
+ pos percent colon -15;
+ pos percent semicolon -25;
+ pos percent ellipsis -15;
+ pos percent question -130;
+ pos percent questiondown -15;
+ pos percent periodcentered -25;
+ pos percent bullet -35;
+ pos percent asterisk -120;
+ pos percent numbersign -50;
+ pos percent slash -30;
+ pos percent backslash -100;
+ pos percent parenleft -10;
+ pos percent parenright -125;
+ pos percent braceleft -80;
+ pos percent braceright -55;
+ pos percent underscore -65;
+ pos percent quotesinglbase -35;
+ pos percent quotedblbase -35;
+ pos percent quotedblleft -130;
+ pos percent quotedblright -115;
+ pos percent quoteleft -115;
+ pos percent quoteright -115;
+ pos percent guillemetleft -20;
+ pos percent guilsinglleft -20;
+ pos percent quotedbl -100;
+ pos percent quotesingle -100;
+ pos percent cent -15;
+ pos percent dollar -65;
+ pos percent euro -100;
+ pos percent sterling -45;
+ pos percent yen -55;
+ pos percent plus -25;
+ pos percent minus -25;
+ pos percent multiply -50;
+ pos percent divide -25;
+ pos percent less -50;
+ pos percent asciitilde -85;
+ pos percent asciicircum -250;
+ pos percent percent -125;
+ pos percent perthousand -125;
+ pos percent at -15;
+ pos percent paragraph -135;
+ pos percent copyright -15;
+ pos percent registered -80;
+ pos percent trademark -155;
+ pos percent degree -105;
+ pos perthousand comma -35;
+ pos perthousand colon -15;
+ pos perthousand semicolon -25;
+ pos perthousand ellipsis -15;
+ pos perthousand question -180;
+ pos perthousand questiondown -15;
+ pos perthousand periodcentered -25;
+ pos perthousand bullet -35;
+ pos perthousand asterisk -190;
+ pos perthousand numbersign -50;
+ pos perthousand slash -30;
+ pos perthousand backslash -220;
+ pos perthousand parenleft -10;
+ pos perthousand parenright -125;
+ pos perthousand braceleft -80;
+ pos perthousand braceright -55;
+ pos perthousand underscore -65;
+ pos perthousand quotesinglbase -35;
+ pos perthousand quotedblbase -35;
+ pos perthousand quotedblleft -200;
+ pos perthousand quotedblright -200;
+ pos perthousand quoteleft -115;
+ pos perthousand quoteright -115;
+ pos perthousand guillemetleft -20;
+ pos perthousand guilsinglleft -20;
+ pos perthousand quotedbl -200;
+ pos perthousand quotesingle -110;
+ pos perthousand cent -15;
+ pos perthousand dollar -65;
+ pos perthousand euro -100;
+ pos perthousand sterling -45;
+ pos perthousand yen -55;
+ pos perthousand plus -25;
+ pos perthousand minus -25;
+ pos perthousand multiply -50;
+ pos perthousand divide -25;
+ pos perthousand less -50;
+ pos perthousand asciitilde -85;
+ pos perthousand asciicircum -260;
+ pos perthousand percent -125;
+ pos perthousand perthousand -125;
+ pos perthousand at -15;
+ pos perthousand paragraph -135;
+ pos perthousand copyright -15;
+ pos perthousand registered -80;
+ pos perthousand trademark -155;
+ pos perthousand degree -215;
+ pos at comma -75;
+ pos at colon -35;
+ pos at semicolon -40;
+ pos at ellipsis -60;
+ pos at question -170;
+ pos at questiondown -55;
+ pos at asterisk -40;
+ pos at numbersign -75;
+ pos at slash -75;
+ pos at backslash -140;
+ pos at parenright -170;
+ pos at braceleft -60;
+ pos at braceright -60;
+ pos at underscore -120;
+ pos at quotesinglbase -75;
+ pos at quotedblbase -75;
+ pos at quotedblleft -60;
+ pos at quotedblright -85;
+ pos at quoteleft -60;
+ pos at quoteright -85;
+ pos at guillemetright -35;
+ pos at guilsinglright -35;
+ pos at quotedbl -45;
+ pos at quotesingle -45;
+ pos at dollar -70;
+ pos at euro -90;
+ pos at sterling -30;
+ pos at yen -50;
+ pos at multiply -40;
+ pos at asciitilde -30;
+ pos at asciicircum -30;
+ pos at percent -40;
+ pos at perthousand -40;
+ pos at paragraph -35;
+ pos at registered -15;
+ pos at trademark -55;
+ pos at degree -70;
+ pos ampersand comma -20;
+ pos ampersand semicolon -10;
+ pos ampersand question -180;
+ pos ampersand periodcentered -10;
+ pos ampersand bullet -10;
+ pos ampersand asterisk -140;
+ pos ampersand numbersign -85;
+ pos ampersand slash -15;
+ pos ampersand backslash -195;
+ pos ampersand parenright -115;
+ pos ampersand braceleft -75;
+ pos ampersand braceright -60;
+ pos ampersand underscore -170;
+ pos ampersand quotesinglbase -20;
+ pos ampersand quotedblbase -20;
+ pos ampersand quotedblleft -140;
+ pos ampersand quotedblright -150;
+ pos ampersand quoteleft -115;
+ pos ampersand quoteright -115;
+ pos ampersand guillemetright -20;
+ pos ampersand guilsinglright -20;
+ pos ampersand quotedbl -145;
+ pos ampersand quotesingle -110;
+ pos ampersand dollar -50;
+ pos ampersand euro -100;
+ pos ampersand sterling -35;
+ pos ampersand yen -60;
+ pos ampersand multiply -65;
+ pos ampersand less -65;
+ pos ampersand asciitilde -125;
+ pos ampersand asciicircum -175;
+ pos ampersand percent -115;
+ pos ampersand perthousand -115;
+ pos ampersand at -10;
+ pos ampersand ampersand -15;
+ pos ampersand paragraph -140;
+ pos ampersand copyright -10;
+ pos ampersand registered -55;
+ pos ampersand trademark -140;
+ pos ampersand degree -145;
+ pos paragraph question -15;
+ pos paragraph numbersign -50;
+ pos paragraph slash 30;
+ pos paragraph backslash 10;
+ pos paragraph parenright -25;
+ pos paragraph braceleft -60;
+ pos paragraph braceright -50;
+ pos paragraph quotedblright -10;
+ pos paragraph quoteright -10;
+ pos paragraph dollar -30;
+ pos paragraph euro -90;
+ pos paragraph sterling -30;
+ pos paragraph multiply -40;
+ pos paragraph asciitilde -25;
+ pos paragraph asciicircum -15;
+ pos copyright comma -65;
+ pos copyright colon -45;
+ pos copyright semicolon -50;
+ pos copyright ellipsis -50;
+ pos copyright question -175;
+ pos copyright questiondown -45;
+ pos copyright asterisk -45;
+ pos copyright numbersign -70;
+ pos copyright slash -65;
+ pos copyright backslash -150;
+ pos copyright parenright -165;
+ pos copyright braceleft -65;
+ pos copyright braceright -60;
+ pos copyright underscore -100;
+ pos copyright quotesinglbase -65;
+ pos copyright quotedblbase -65;
+ pos copyright quotedblleft -70;
+ pos copyright quotedblright -95;
+ pos copyright quoteleft -70;
+ pos copyright quoteright -95;
+ pos copyright guillemetright -35;
+ pos copyright guilsinglright -35;
+ pos copyright quotedbl -55;
+ pos copyright quotesingle -55;
+ pos copyright dollar -80;
+ pos copyright euro -90;
+ pos copyright sterling -35;
+ pos copyright yen -55;
+ pos copyright multiply -40;
+ pos copyright asciitilde -30;
+ pos copyright asciicircum -40;
+ pos copyright percent -50;
+ pos copyright perthousand -50;
+ pos copyright paragraph -40;
+ pos copyright registered -20;
+ pos copyright trademark -60;
+ pos copyright degree -80;
+ pos registered comma -115;
+ pos registered semicolon -15;
+ pos registered ellipsis -275;
+ pos registered question -100;
+ pos registered questiondown -180;
+ pos registered periodcentered -20;
+ pos registered bullet -10;
+ pos registered asterisk -10;
+ pos registered numbersign -110;
+ pos registered slash -145;
+ pos registered backslash -100;
+ pos registered parenleft -10;
+ pos registered parenright -105;
+ pos registered braceleft -65;
+ pos registered braceright -65;
+ pos registered underscore -330;
+ pos registered quotesinglbase -115;
+ pos registered quotedblbase -205;
+ pos registered quotedblleft -20;
+ pos registered quotedblright -35;
+ pos registered quoteleft -20;
+ pos registered quoteright -35;
+ pos registered guillemetleft -35;
+ pos registered guillemetright -20;
+ pos registered guilsinglleft -35;
+ pos registered guilsinglright -20;
+ pos registered quotedbl -20;
+ pos registered quotesingle -20;
+ pos registered cent -10;
+ pos registered dollar -40;
+ pos registered euro -90;
+ pos registered sterling -40;
+ pos registered yen -35;
+ pos registered multiply -45;
+ pos registered asciitilde -40;
+ pos registered asciicircum -15;
+ pos registered percent -15;
+ pos registered perthousand -15;
+ pos registered ampersand -40;
+ pos registered paragraph -10;
+ pos registered copyright -10;
+ pos registered trademark -15;
+ pos registered degree -30;
+ pos trademark comma -115;
+ pos trademark semicolon -10;
+ pos trademark ellipsis -285;
+ pos trademark question -85;
+ pos trademark questiondown -200;
+ pos trademark numbersign -90;
+ pos trademark slash -115;
+ pos trademark backslash -65;
+ pos trademark parenright -75;
+ pos trademark braceleft -60;
+ pos trademark braceright -60;
+ pos trademark underscore -355;
+ pos trademark quotesinglbase -115;
+ pos trademark quotedblbase -205;
+ pos trademark quotedblright -10;
+ pos trademark quoteright -10;
+ pos trademark guillemetleft -10;
+ pos trademark guillemetright -20;
+ pos trademark guilsinglleft -10;
+ pos trademark guilsinglright -20;
+ pos trademark dollar -30;
+ pos trademark euro -90;
+ pos trademark sterling -35;
+ pos trademark yen -20;
+ pos trademark multiply -45;
+ pos trademark asciitilde -30;
+ pos trademark asciicircum -15;
+ pos trademark ampersand -10;
+ pos degree comma -115;
+ pos degree semicolon -15;
+ pos degree ellipsis -215;
+ pos degree question -35;
+ pos degree questiondown -200;
+ pos degree periodcentered -100;
+ pos degree bullet -85;
+ pos degree numbersign -145;
+ pos degree slash -210;
+ pos degree backslash -50;
+ pos degree parenleft -45;
+ pos degree parenright -40;
+ pos degree braceleft -110;
+ pos degree braceright -65;
+ pos degree hyphen -185;
+ pos degree endash -215;
+ pos degree emdash -215;
+ pos degree underscore -215;
+ pos degree quotesinglbase -115;
+ pos degree quotedblbase -205;
+ pos degree quotedblright -10;
+ pos degree quoteright -10;
+ pos degree guillemetleft -180;
+ pos degree guillemetright -60;
+ pos degree guilsinglleft -170;
+ pos degree guilsinglright -60;
+ pos degree cent -65;
+ pos degree dollar -30;
+ pos degree euro -95;
+ pos degree sterling -85;
+ pos degree yen -20;
+ pos degree plus -70;
+ pos degree minus -70;
+ pos degree multiply -70;
+ pos degree divide -70;
+ pos degree less -80;
+ pos degree asciitilde -110;
+ pos degree asciicircum -55;
+ pos degree at -40;
+ pos degree ampersand -90;
+ pos degree copyright -45;
+ pos degree registered -10;
+ pos bar question -15;
+ pos bar numbersign -50;
+ pos bar slash 35;
+ pos bar backslash 10;
+ pos bar parenright -25;
+ pos bar braceleft -60;
+ pos bar braceright -50;
+ pos bar quotedblright -10;
+ pos bar quoteright -10;
+ pos bar dollar -30;
+ pos bar euro -90;
+ pos bar sterling -30;
+ pos bar multiply -40;
+ pos bar asciitilde -25;
+ pos bar asciicircum -10;
+ } kern_DFLT;
+ lookup kern_latn {
+ lookupflag IgnoreMarks;
+ pos braceleft @MMK_R_thorn -50;
+ pos braceleft @MMK_R_m -55;
+ pos braceleft @MMK_R_o -60;
+ pos braceleft @MMK_R_i -55;
+ pos braceleft @MMK_R_e -60;
+ pos braceleft @MMK_R_g -60;
+ pos braceleft @MMK_R_f -55;
+ pos braceleft @MMK_R_a -60;
+ pos braceleft @MMK_R_c -60;
+ pos braceleft @MMK_R_b -50;
+ pos braceleft @MMK_R_y -55;
+ pos braceleft @MMK_R_z -55;
+ pos braceleft @MMK_R_u -55;
+ pos braceleft @MMK_R_t -55;
+ pos braceleft @MMK_R_w -55;
+ pos braceleft @MMK_R_v -55;
+ pos braceleft @MMK_R_p -55;
+ pos braceleft @MMK_R_s -85;
+ pos braceleft @MMK_R_r -55;
+ pos braceleft @MMK_R_M -50;
+ pos braceleft @MMK_R_L -55;
+ pos braceleft @MMK_R_O -55;
+ pos braceleft @MMK_R_N -50;
+ pos braceleft @MMK_R_I -55;
+ pos braceleft @MMK_R_H -50;
+ pos braceleft @MMK_R_K -50;
+ pos braceleft @MMK_R_J -90;
+ pos braceleft @MMK_R_D -50;
+ pos braceleft @MMK_R_G -55;
+ pos braceleft @MMK_R_F -50;
+ pos braceleft @MMK_R_A -65;
+ pos braceleft @MMK_R_C -55;
+ pos braceleft @MMK_R_B -50;
+ pos braceleft @MMK_R_Y -70;
+ pos braceleft @MMK_R_X -65;
+ pos braceleft @MMK_R_Z -50;
+ pos braceleft @MMK_R_U -50;
+ pos braceleft @MMK_R_T -55;
+ pos braceleft @MMK_R_W -70;
+ pos braceleft @MMK_R_V -70;
+ pos braceleft @MMK_R_Q -60;
+ pos braceleft @MMK_R_P -50;
+ pos braceleft @MMK_R_S -80;
+ pos braceleft @MMK_R_R -50;
+ pos braceleft @MMK_R_dcroat -60;
+ pos braceleft @MMK_R_Oslash -55;
+ pos braceleft @MMK_R_tcaron -55;
+ pos braceleft @MMK_R_oslash -60;
+ pos braceleft @MMK_R_Lslash -50;
+ pos braceleft @MMK_R_a.alt -60;
+ pos braceleft @MMK_R_germandbls -55;
+ pos braceleft @MMK_R_h -50;
+ pos braceleft @MMK_R_j 20;
+ pos braceleft @MMK_R_d -60;
+ pos braceleft @MMK_R_l -50;
+ pos braceleft @MMK_R_n -55;
+ pos braceleft @MMK_R_x -65;
+ pos braceleft @MMK_R_q -60;
+ pos braceleft @MMK_R_E -50;
+ pos braceleft @MMK_R_Eth -50;
+ pos braceleft @MMK_R_eth -60;
+ pos braceleft @MMK_R_lcaron -50;
+ pos braceleft @MMK_R_lslash -50;
+ pos braceleft @MMK_R_Thorn -50;
+ pos braceleft @MMK_R_dcaron -60;
+ pos slash @MMK_R_t -65;
+ pos slash @MMK_R_r -65;
+ pos slash @MMK_R_lcaron 15;
+ pos slash @MMK_R_H 10;
+ pos slash @MMK_R_I 10;
+ pos slash @MMK_R_K 10;
+ pos slash @MMK_R_G -90;
+ pos slash @MMK_R_A -155;
+ pos slash @MMK_R_C -85;
+ pos slash @MMK_R_V 10;
+ pos slash @MMK_R_R 35;
+ pos slash @MMK_R_oslash -135;
+ pos slash @MMK_R_Lslash 10;
+ pos slash @MMK_R_Eth 35;
+ pos slash @MMK_R_tcaron -65;
+ pos slash @MMK_R_germandbls -35;
+ pos slash @MMK_R_thorn 15;
+ pos slash @MMK_R_dcroat -135;
+ pos slash @MMK_R_dcaron -135;
+ pos slash @MMK_R_lslash 15;
+ pos slash @MMK_R_Oslash -90;
+ pos slash @MMK_R_eth -140;
+ pos slash @MMK_R_l 15;
+ pos slash @MMK_R_m -65;
+ pos slash @MMK_R_n -65;
+ pos slash @MMK_R_o -135;
+ pos slash @MMK_R_j 15;
+ pos slash @MMK_R_e -135;
+ pos slash @MMK_R_f -65;
+ pos slash @MMK_R_g -125;
+ pos slash @MMK_R_a -135;
+ pos slash @MMK_R_b 15;
+ pos slash @MMK_R_x -75;
+ pos slash @MMK_R_y -65;
+ pos slash @MMK_R_z -65;
+ pos slash @MMK_R_u -65;
+ pos slash @MMK_R_v -65;
+ pos slash @MMK_R_w -65;
+ pos slash @MMK_R_p -65;
+ pos slash @MMK_R_q -135;
+ pos slash @MMK_R_L 10;
+ pos slash @MMK_R_M 10;
+ pos slash @MMK_R_N 10;
+ pos slash @MMK_R_O -90;
+ pos slash @MMK_R_J -240;
+ pos slash @MMK_R_D 35;
+ pos slash @MMK_R_E 10;
+ pos slash @MMK_R_F 10;
+ pos slash @MMK_R_B 35;
+ pos slash @MMK_R_Y 10;
+ pos slash @MMK_R_Z 10;
+ pos slash @MMK_R_T 10;
+ pos slash @MMK_R_U 10;
+ pos slash @MMK_R_W 10;
+ pos slash @MMK_R_P 35;
+ pos slash @MMK_R_Q -90;
+ pos slash @MMK_R_S -55;
+ pos slash @MMK_R_a.alt -120;
+ pos slash @MMK_R_Thorn 10;
+ pos slash @MMK_R_d -135;
+ pos slash @MMK_R_s -120;
+ pos slash @MMK_R_h 15;
+ pos slash @MMK_R_i 15;
+ pos slash @MMK_R_c -135;
+ pos parenright @MMK_R_J -65;
+ pos parenright @MMK_R_tcaron -30;
+ pos parenright @MMK_R_v -35;
+ pos parenright @MMK_R_s -45;
+ pos parenright @MMK_R_w -30;
+ pos parenright @MMK_R_t -30;
+ pos parenright @MMK_R_x -50;
+ pos parenright @MMK_R_f -30;
+ pos parenright @MMK_R_V -90;
+ pos parenright @MMK_R_W -75;
+ pos parenright @MMK_R_T -95;
+ pos parenright @MMK_R_S -70;
+ pos parenright @MMK_R_X -50;
+ pos parenright @MMK_R_C -10;
+ pos parenright @MMK_R_A -45;
+ pos parenright @MMK_R_Y -90;
+ pos parenright @MMK_R_y -30;
+ pos asterisk @MMK_R_a.alt -90;
+ pos asterisk @MMK_R_dcaron -50;
+ pos asterisk @MMK_R_O -15;
+ pos asterisk @MMK_R_G -10;
+ pos asterisk @MMK_R_A -115;
+ pos asterisk @MMK_R_Y -25;
+ pos asterisk @MMK_R_V -20;
+ pos asterisk @MMK_R_o -50;
+ pos asterisk @MMK_R_g -40;
+ pos asterisk @MMK_R_d -50;
+ pos asterisk @MMK_R_e -50;
+ pos asterisk @MMK_R_c -50;
+ pos asterisk @MMK_R_a -50;
+ pos asterisk @MMK_R_x -20;
+ pos asterisk @MMK_R_Oslash -15;
+ pos asterisk @MMK_R_eth -60;
+ pos asterisk @MMK_R_S -30;
+ pos asterisk @MMK_R_dcroat -50;
+ pos asterisk @MMK_R_X -25;
+ pos asterisk @MMK_R_C -10;
+ pos asterisk @MMK_R_W -20;
+ pos asterisk @MMK_R_v -10;
+ pos asterisk @MMK_R_s -35;
+ pos asterisk @MMK_R_q -50;
+ pos asterisk @MMK_R_J -190;
+ pos asterisk @MMK_R_Q -15;
+ pos asterisk @MMK_R_oslash -50;
+ pos guilsinglright @MMK_R_O -10;
+ pos guilsinglright @MMK_R_S -170;
+ pos guilsinglright @MMK_R_X -60;
+ pos guilsinglright @MMK_R_G -10;
+ pos guilsinglright @MMK_R_f -70;
+ pos guilsinglright @MMK_R_Oslash -10;
+ pos guilsinglright @MMK_R_T -130;
+ pos guilsinglright @MMK_R_A -50;
+ pos guilsinglright @MMK_R_v -35;
+ pos guilsinglright @MMK_R_w -30;
+ pos guilsinglright @MMK_R_x -60;
+ pos guilsinglright @MMK_R_y -30;
+ pos guilsinglright @MMK_R_V -100;
+ pos guilsinglright @MMK_R_W -80;
+ pos guilsinglright @MMK_R_Q -10;
+ pos guilsinglright @MMK_R_C -15;
+ pos guilsinglright @MMK_R_J -170;
+ pos guilsinglright @MMK_R_t -70;
+ pos guilsinglright @MMK_R_s -110;
+ pos guilsinglright @MMK_R_Y -95;
+ pos guilsinglright @MMK_R_tcaron -70;
+ pos parenleft @MMK_R_Eth -15;
+ pos parenleft @MMK_R_Y -30;
+ pos parenleft @MMK_R_Thorn -15;
+ pos parenleft @MMK_R_dcroat -180;
+ pos parenleft @MMK_R_s -140;
+ pos parenleft @MMK_R_d -180;
+ pos parenleft @MMK_R_f -95;
+ pos parenleft @MMK_R_a -180;
+ pos parenleft @MMK_R_c -175;
+ pos parenleft @MMK_R_l -15;
+ pos parenleft @MMK_R_n -100;
+ pos parenleft @MMK_R_o -175;
+ pos parenleft @MMK_R_h -15;
+ pos parenleft @MMK_R_i -35;
+ pos parenleft @MMK_R_j 50;
+ pos parenleft @MMK_R_t -95;
+ pos parenleft @MMK_R_u -100;
+ pos parenleft @MMK_R_v -100;
+ pos parenleft @MMK_R_w -100;
+ pos parenleft @MMK_R_p -25;
+ pos parenleft @MMK_R_q -180;
+ pos parenleft @MMK_R_x -105;
+ pos parenleft @MMK_R_z -100;
+ pos parenleft @MMK_R_D -15;
+ pos parenleft @MMK_R_E -15;
+ pos parenleft @MMK_R_G -100;
+ pos parenleft @MMK_R_A -105;
+ pos parenleft @MMK_R_B -15;
+ pos parenleft @MMK_R_C -95;
+ pos parenleft @MMK_R_L -15;
+ pos parenleft @MMK_R_N -15;
+ pos parenleft @MMK_R_O -105;
+ pos parenleft @MMK_R_J -145;
+ pos parenleft @MMK_R_K -15;
+ pos parenleft @MMK_R_X -35;
+ pos parenleft @MMK_R_lcaron -15;
+ pos parenleft @MMK_R_thorn -15;
+ pos parenleft @MMK_R_e -175;
+ pos parenleft @MMK_R_b -15;
+ pos parenleft @MMK_R_r -100;
+ pos parenleft @MMK_R_F -15;
+ pos parenleft @MMK_R_H -15;
+ pos parenleft @MMK_R_U -15;
+ pos parenleft @MMK_R_V -30;
+ pos parenleft @MMK_R_Q -105;
+ pos parenleft @MMK_R_tcaron -95;
+ pos parenleft @MMK_R_germandbls -35;
+ pos parenleft @MMK_R_m -100;
+ pos parenleft @MMK_R_g -110;
+ pos parenleft @MMK_R_y -100;
+ pos parenleft @MMK_R_I -15;
+ pos parenleft @MMK_R_W -30;
+ pos parenleft @MMK_R_R -15;
+ pos parenleft @MMK_R_S -60;
+ pos parenleft @MMK_R_Z -15;
+ pos parenleft @MMK_R_dcaron -180;
+ pos parenleft @MMK_R_M -15;
+ pos parenleft @MMK_R_a.alt -150;
+ pos parenleft @MMK_R_T -15;
+ pos parenleft @MMK_R_lslash -15;
+ pos parenleft @MMK_R_oslash -125;
+ pos parenleft @MMK_R_eth -170;
+ pos parenleft @MMK_R_Oslash -105;
+ pos parenleft @MMK_R_Lslash -15;
+ pos parenleft @MMK_R_P -15;
+ pos quotesinglbase @MMK_R_dcaron -90;
+ pos quotesinglbase @MMK_R_c -90;
+ pos quotesinglbase @MMK_R_tcaron -110;
+ pos quotesinglbase @MMK_R_oslash -20;
+ pos quotesinglbase @MMK_R_J -35;
+ pos quotesinglbase @MMK_R_O -115;
+ pos quotesinglbase @MMK_R_C -115;
+ pos quotesinglbase @MMK_R_G -115;
+ pos quotesinglbase @MMK_R_Y -100;
+ pos quotesinglbase @MMK_R_Q -115;
+ pos quotesinglbase @MMK_R_S -45;
+ pos quotesinglbase @MMK_R_U -90;
+ pos quotesinglbase @MMK_R_V -115;
+ pos quotesinglbase @MMK_R_W -115;
+ pos quotesinglbase @MMK_R_j 60;
+ pos quotesinglbase @MMK_R_o -100;
+ pos quotesinglbase @MMK_R_a -90;
+ pos quotesinglbase @MMK_R_d -90;
+ pos quotesinglbase @MMK_R_g -105;
+ pos quotesinglbase @MMK_R_s -25;
+ pos quotesinglbase @MMK_R_v -75;
+ pos quotesinglbase @MMK_R_eth -85;
+ pos quotesinglbase @MMK_R_e -95;
+ pos quotesinglbase @MMK_R_y -70;
+ pos quotesinglbase @MMK_R_q -90;
+ pos quotesinglbase @MMK_R_T -115;
+ pos quotesinglbase @MMK_R_f -80;
+ pos quotesinglbase @MMK_R_t -110;
+ pos quotesinglbase @MMK_R_dcroat -90;
+ pos quotesinglbase @MMK_R_u -55;
+ pos quotesinglbase @MMK_R_w -70;
+ pos quotesinglbase @MMK_R_a.alt -45;
+ pos guilsinglleft @MMK_R_oslash -35;
+ pos guilsinglleft @MMK_R_eth -45;
+ pos guilsinglleft @MMK_R_Y -65;
+ pos guilsinglleft @MMK_R_g -25;
+ pos guilsinglleft @MMK_R_o -35;
+ pos guilsinglleft @MMK_R_A -30;
+ pos guilsinglleft @MMK_R_J -60;
+ pos guilsinglleft @MMK_R_V -65;
+ pos guilsinglleft @MMK_R_W -55;
+ pos guilsinglleft @MMK_R_T -135;
+ pos guilsinglleft @MMK_R_X -30;
+ pos guilsinglleft @MMK_R_f -15;
+ pos guilsinglleft @MMK_R_d -35;
+ pos guilsinglleft @MMK_R_e -35;
+ pos guilsinglleft @MMK_R_c -35;
+ pos guilsinglleft @MMK_R_a -35;
+ pos guilsinglleft @MMK_R_v -15;
+ pos guilsinglleft @MMK_R_w -15;
+ pos guilsinglleft @MMK_R_q -35;
+ pos guilsinglleft @MMK_R_x -30;
+ pos guilsinglleft @MMK_R_y -15;
+ pos guilsinglleft @MMK_R_a.alt -35;
+ pos guilsinglleft @MMK_R_S -50;
+ pos guilsinglleft @MMK_R_t -15;
+ pos guilsinglleft @MMK_R_s -30;
+ pos guilsinglleft @MMK_R_dcaron -35;
+ pos guilsinglleft @MMK_R_dcroat -35;
+ pos guilsinglleft @MMK_R_tcaron -15;
+ pos questiondown @MMK_R_Lslash -140;
+ pos questiondown @MMK_R_tcaron -180;
+ pos questiondown @MMK_R_oslash -160;
+ pos questiondown @MMK_R_w -185;
+ pos questiondown @MMK_R_u -175;
+ pos questiondown @MMK_R_r -140;
+ pos questiondown @MMK_R_s -195;
+ pos questiondown @MMK_R_p -10;
+ pos questiondown @MMK_R_z -140;
+ pos questiondown @MMK_R_g -85;
+ pos questiondown @MMK_R_e -175;
+ pos questiondown @MMK_R_b -140;
+ pos questiondown @MMK_R_n -140;
+ pos questiondown @MMK_R_o -175;
+ pos questiondown @MMK_R_l -85;
+ pos questiondown @MMK_R_m -140;
+ pos questiondown @MMK_R_h -140;
+ pos questiondown @MMK_R_i -85;
+ pos questiondown @MMK_R_V -225;
+ pos questiondown @MMK_R_T -235;
+ pos questiondown @MMK_R_U -175;
+ pos questiondown @MMK_R_R -140;
+ pos questiondown @MMK_R_S -210;
+ pos questiondown @MMK_R_P -140;
+ pos questiondown @MMK_R_Q -180;
+ pos questiondown @MMK_R_Z -140;
+ pos questiondown @MMK_R_X -140;
+ pos questiondown @MMK_R_Y -230;
+ pos questiondown @MMK_R_G -180;
+ pos questiondown @MMK_R_D -65;
+ pos questiondown @MMK_R_E -140;
+ pos questiondown @MMK_R_B -65;
+ pos questiondown @MMK_R_C -180;
+ pos questiondown @MMK_R_A -140;
+ pos questiondown @MMK_R_N -140;
+ pos questiondown @MMK_R_O -180;
+ pos questiondown @MMK_R_L -140;
+ pos questiondown @MMK_R_M -140;
+ pos questiondown @MMK_R_J -195;
+ pos questiondown @MMK_R_K -140;
+ pos questiondown @MMK_R_I -115;
+ pos questiondown @MMK_R_Eth -65;
+ pos questiondown @MMK_R_thorn -10;
+ pos questiondown @MMK_R_x -140;
+ pos questiondown @MMK_R_W -220;
+ pos questiondown @MMK_R_F -140;
+ pos questiondown @MMK_R_a.alt -175;
+ pos questiondown @MMK_R_dcaron -175;
+ pos questiondown @MMK_R_Thorn -140;
+ pos questiondown @MMK_R_v -185;
+ pos questiondown @MMK_R_t -180;
+ pos questiondown @MMK_R_q -175;
+ pos questiondown @MMK_R_y -80;
+ pos questiondown @MMK_R_f -180;
+ pos questiondown @MMK_R_d -175;
+ pos questiondown @MMK_R_c -175;
+ pos questiondown @MMK_R_a -175;
+ pos questiondown @MMK_R_H -140;
+ pos questiondown @MMK_R_lslash -140;
+ pos questiondown @MMK_R_Oslash -140;
+ pos questiondown @MMK_R_germandbls -140;
+ pos questiondown @MMK_R_lcaron -105;
+ pos questiondown @MMK_R_j 65;
+ pos questiondown @MMK_R_dcroat -175;
+ pos questiondown @MMK_R_eth -175;
+ pos emdash @MMK_R_X -55;
+ pos emdash @MMK_R_A -45;
+ pos emdash @MMK_R_J -145;
+ pos emdash @MMK_R_S -110;
+ pos emdash @MMK_R_V -80;
+ pos emdash @MMK_R_W -65;
+ pos emdash @MMK_R_T -135;
+ pos emdash @MMK_R_f -80;
+ pos emdash @MMK_R_s -40;
+ pos emdash @MMK_R_v -25;
+ pos emdash @MMK_R_w -25;
+ pos emdash @MMK_R_t -80;
+ pos emdash @MMK_R_x -50;
+ pos emdash @MMK_R_tcaron -80;
+ pos emdash @MMK_R_Y -85;
+ pos emdash @MMK_R_y -25;
+ pos backslash @MMK_R_germandbls -20;
+ pos backslash @MMK_R_tcaron -135;
+ pos backslash @MMK_R_Eth 15;
+ pos backslash @MMK_R_dcaron -100;
+ pos backslash @MMK_R_lcaron -20;
+ pos backslash @MMK_R_oslash -40;
+ pos backslash @MMK_R_O -135;
+ pos backslash @MMK_R_N -15;
+ pos backslash @MMK_R_M -15;
+ pos backslash @MMK_R_L -20;
+ pos backslash @MMK_R_K -15;
+ pos backslash @MMK_R_J -55;
+ pos backslash @MMK_R_I -20;
+ pos backslash @MMK_R_G -135;
+ pos backslash @MMK_R_F -15;
+ pos backslash @MMK_R_D 15;
+ pos backslash @MMK_R_C -140;
+ pos backslash @MMK_R_B 10;
+ pos backslash @MMK_R_A -15;
+ pos backslash @MMK_R_Z -15;
+ pos backslash @MMK_R_Y -120;
+ pos backslash @MMK_R_W -150;
+ pos backslash @MMK_R_V -180;
+ pos backslash @MMK_R_U -105;
+ pos backslash @MMK_R_T -150;
+ pos backslash @MMK_R_S -70;
+ pos backslash @MMK_R_R -20;
+ pos backslash @MMK_R_Q -135;
+ pos backslash @MMK_R_P -20;
+ pos backslash @MMK_R_o -110;
+ pos backslash @MMK_R_n -15;
+ pos backslash @MMK_R_m -15;
+ pos backslash @MMK_R_l -20;
+ pos backslash @MMK_R_j 85;
+ pos backslash @MMK_R_h -20;
+ pos backslash @MMK_R_f -95;
+ pos backslash @MMK_R_e -105;
+ pos backslash @MMK_R_d -100;
+ pos backslash @MMK_R_c -100;
+ pos backslash @MMK_R_b -20;
+ pos backslash @MMK_R_a -100;
+ pos backslash @MMK_R_z -15;
+ pos backslash @MMK_R_x -15;
+ pos backslash @MMK_R_w -85;
+ pos backslash @MMK_R_v -95;
+ pos backslash @MMK_R_u -75;
+ pos backslash @MMK_R_t -135;
+ pos backslash @MMK_R_s -50;
+ pos backslash @MMK_R_r -15;
+ pos backslash @MMK_R_q -100;
+ pos backslash @MMK_R_p 10;
+ pos backslash @MMK_R_g -90;
+ pos backslash @MMK_R_H -15;
+ pos backslash @MMK_R_E -15;
+ pos backslash @MMK_R_X -15;
+ pos backslash @MMK_R_y -65;
+ pos backslash @MMK_R_a.alt -70;
+ pos backslash @MMK_R_Lslash -20;
+ pos backslash @MMK_R_Oslash -15;
+ pos backslash @MMK_R_dcroat -100;
+ pos backslash @MMK_R_eth -100;
+ pos backslash @MMK_R_i -15;
+ pos backslash @MMK_R_lslash -20;
+ pos backslash @MMK_R_Thorn -20;
+ pos backslash @MMK_R_thorn 10;
+ pos colon @MMK_R_y -10;
+ pos colon @MMK_R_v -10;
+ pos colon @MMK_R_w -10;
+ pos colon @MMK_R_o -40;
+ pos colon @MMK_R_g -30;
+ pos colon @MMK_R_d -40;
+ pos colon @MMK_R_e -40;
+ pos colon @MMK_R_c -40;
+ pos colon @MMK_R_a -40;
+ pos colon @MMK_R_Y -55;
+ pos colon @MMK_R_V -55;
+ pos colon @MMK_R_W -45;
+ pos colon @MMK_R_T -105;
+ pos colon @MMK_R_S -35;
+ pos colon @MMK_R_Q -10;
+ pos colon @MMK_R_O -10;
+ pos colon @MMK_R_J -30;
+ pos colon @MMK_R_a.alt -45;
+ pos colon @MMK_R_s -25;
+ pos colon @MMK_R_q -40;
+ pos colon @MMK_R_j 35;
+ pos colon @MMK_R_eth -45;
+ pos colon @MMK_R_G -10;
+ pos colon @MMK_R_oslash -20;
+ pos colon @MMK_R_dcroat -40;
+ pos colon @MMK_R_dcaron -40;
+ pos quotedblright @MMK_R_c -100;
+ pos quotedblright @MMK_R_d -100;
+ pos quotedblright @MMK_R_i -15;
+ pos quotedblright @MMK_R_o -100;
+ pos quotedblright @MMK_R_n -15;
+ pos quotedblright @MMK_R_m -15;
+ pos quotedblright @MMK_R_u -15;
+ pos quotedblright @MMK_R_A -140;
+ pos quotedblright @MMK_R_eth -115;
+ pos quotedblright @MMK_R_j -15;
+ pos quotedblright @MMK_R_p -15;
+ pos quotedblright @MMK_R_Q -45;
+ pos quotedblright @MMK_R_a -100;
+ pos quotedblright @MMK_R_g -90;
+ pos quotedblright @MMK_R_f -15;
+ pos quotedblright @MMK_R_e -105;
+ pos quotedblright @MMK_R_s -80;
+ pos quotedblright @MMK_R_r -15;
+ pos quotedblright @MMK_R_q -100;
+ pos quotedblright @MMK_R_w -15;
+ pos quotedblright @MMK_R_v -20;
+ pos quotedblright @MMK_R_t -15;
+ pos quotedblright @MMK_R_z -15;
+ pos quotedblright @MMK_R_y -15;
+ pos quotedblright @MMK_R_x -25;
+ pos quotedblright @MMK_R_C -40;
+ pos quotedblright @MMK_R_G -45;
+ pos quotedblright @MMK_R_J -200;
+ pos quotedblright @MMK_R_O -45;
+ pos quotedblright @MMK_R_S -30;
+ pos quotedblright @MMK_R_W -15;
+ pos quotedblright @MMK_R_V -20;
+ pos quotedblright @MMK_R_Y -20;
+ pos quotedblright @MMK_R_X -25;
+ pos quotedblright @MMK_R_oslash -100;
+ pos quotedblright @MMK_R_Oslash -45;
+ pos quotedblright @MMK_R_dcaron -100;
+ pos quotedblright @MMK_R_tcaron -15;
+ pos quotedblright @MMK_R_dcroat -100;
+ pos quotedblright @MMK_R_a.alt -80;
+ pos endash @MMK_R_J -145;
+ pos endash @MMK_R_T -135;
+ pos endash @MMK_R_W -65;
+ pos endash @MMK_R_V -80;
+ pos endash @MMK_R_S -110;
+ pos endash @MMK_R_Y -85;
+ pos endash @MMK_R_X -55;
+ pos endash @MMK_R_f -80;
+ pos endash @MMK_R_t -80;
+ pos endash @MMK_R_v -25;
+ pos endash @MMK_R_s -40;
+ pos endash @MMK_R_y -25;
+ pos endash @MMK_R_x -50;
+ pos endash @MMK_R_w -25;
+ pos endash @MMK_R_A -45;
+ pos endash @MMK_R_tcaron -80;
+ pos hyphen @MMK_R_Y -85;
+ pos hyphen @MMK_R_w -25;
+ pos hyphen @MMK_R_s -40;
+ pos hyphen @MMK_R_tcaron -80;
+ pos hyphen @MMK_R_t -80;
+ pos hyphen @MMK_R_A -45;
+ pos hyphen @MMK_R_J -140;
+ pos hyphen @MMK_R_T -135;
+ pos hyphen @MMK_R_V -80;
+ pos hyphen @MMK_R_W -65;
+ pos hyphen @MMK_R_S -110;
+ pos hyphen @MMK_R_X -55;
+ pos hyphen @MMK_R_f -80;
+ pos hyphen @MMK_R_v -25;
+ pos hyphen @MMK_R_x -50;
+ pos hyphen @MMK_R_y -25;
+ pos question @MMK_R_dcaron -50;
+ pos question @MMK_R_o -50;
+ pos question @MMK_R_g -40;
+ pos question @MMK_R_d -50;
+ pos question @MMK_R_c -50;
+ pos question @MMK_R_a -50;
+ pos question @MMK_R_s -40;
+ pos question @MMK_R_q -50;
+ pos question @MMK_R_O -15;
+ pos question @MMK_R_G -15;
+ pos question @MMK_R_C -15;
+ pos question @MMK_R_X -45;
+ pos question @MMK_R_Y -40;
+ pos question @MMK_R_S -25;
+ pos question @MMK_R_Oslash -15;
+ pos question @MMK_R_e -50;
+ pos question @MMK_R_Q -15;
+ pos question @MMK_R_eth -55;
+ pos question @MMK_R_oslash -50;
+ pos question @MMK_R_J -225;
+ pos question @MMK_R_A -115;
+ pos question @MMK_R_V -40;
+ pos question @MMK_R_W -30;
+ pos question @MMK_R_T -10;
+ pos question @MMK_R_a.alt -70;
+ pos question @MMK_R_x -10;
+ pos question @MMK_R_dcroat -50;
+ pos ellipsis @MMK_R_U -85;
+ pos ellipsis @MMK_R_oslash -20;
+ pos ellipsis @MMK_R_dcaron -85;
+ pos ellipsis @MMK_R_tcaron -105;
+ pos ellipsis @MMK_R_Q -135;
+ pos ellipsis @MMK_R_W -130;
+ pos ellipsis @MMK_R_V -160;
+ pos ellipsis @MMK_R_T -135;
+ pos ellipsis @MMK_R_Y -100;
+ pos ellipsis @MMK_R_C -145;
+ pos ellipsis @MMK_R_G -135;
+ pos ellipsis @MMK_R_J -30;
+ pos ellipsis @MMK_R_O -135;
+ pos ellipsis @MMK_R_q -85;
+ pos ellipsis @MMK_R_w -70;
+ pos ellipsis @MMK_R_u -50;
+ pos ellipsis @MMK_R_t -105;
+ pos ellipsis @MMK_R_y -70;
+ pos ellipsis @MMK_R_a -85;
+ pos ellipsis @MMK_R_g -120;
+ pos ellipsis @MMK_R_e -90;
+ pos ellipsis @MMK_R_d -85;
+ pos ellipsis @MMK_R_o -100;
+ pos ellipsis @MMK_R_dcroat -85;
+ pos ellipsis @MMK_R_a.alt -45;
+ pos ellipsis @MMK_R_eth -80;
+ pos ellipsis @MMK_R_S -45;
+ pos ellipsis @MMK_R_f -80;
+ pos ellipsis @MMK_R_j 35;
+ pos ellipsis @MMK_R_s -25;
+ pos ellipsis @MMK_R_v -75;
+ pos ellipsis @MMK_R_c -90;
+ pos guillemetleft @MMK_R_oslash -35;
+ pos guillemetleft @MMK_R_dcaron -35;
+ pos guillemetleft @MMK_R_q -35;
+ pos guillemetleft @MMK_R_w -15;
+ pos guillemetleft @MMK_R_S -50;
+ pos guillemetleft @MMK_R_T -135;
+ pos guillemetleft @MMK_R_x -30;
+ pos guillemetleft @MMK_R_y -15;
+ pos guillemetleft @MMK_R_s -30;
+ pos guillemetleft @MMK_R_t -15;
+ pos guillemetleft @MMK_R_a -35;
+ pos guillemetleft @MMK_R_c -35;
+ pos guillemetleft @MMK_R_d -35;
+ pos guillemetleft @MMK_R_g -25;
+ pos guillemetleft @MMK_R_X -30;
+ pos guillemetleft @MMK_R_Y -65;
+ pos guillemetleft @MMK_R_V -65;
+ pos guillemetleft @MMK_R_W -55;
+ pos guillemetleft @MMK_R_A -30;
+ pos guillemetleft @MMK_R_a.alt -35;
+ pos guillemetleft @MMK_R_v -15;
+ pos guillemetleft @MMK_R_e -35;
+ pos guillemetleft @MMK_R_f -15;
+ pos guillemetleft @MMK_R_J -60;
+ pos guillemetleft @MMK_R_tcaron -15;
+ pos guillemetleft @MMK_R_eth -45;
+ pos guillemetleft @MMK_R_o -35;
+ pos guillemetleft @MMK_R_dcroat -35;
+ pos guillemetright @MMK_R_v -35;
+ pos guillemetright @MMK_R_tcaron -70;
+ pos guillemetright @MMK_R_w -30;
+ pos guillemetright @MMK_R_A -50;
+ pos guillemetright @MMK_R_t -70;
+ pos guillemetright @MMK_R_x -60;
+ pos guillemetright @MMK_R_y -30;
+ pos guillemetright @MMK_R_S -180;
+ pos guillemetright @MMK_R_Q -10;
+ pos guillemetright @MMK_R_V -100;
+ pos guillemetright @MMK_R_W -80;
+ pos guillemetright @MMK_R_T -130;
+ pos guillemetright @MMK_R_X -60;
+ pos guillemetright @MMK_R_Y -95;
+ pos guillemetright @MMK_R_C -15;
+ pos guillemetright @MMK_R_G -10;
+ pos guillemetright @MMK_R_J -180;
+ pos guillemetright @MMK_R_Oslash -10;
+ pos guillemetright @MMK_R_s -110;
+ pos guillemetright @MMK_R_f -70;
+ pos guillemetright @MMK_R_O -10;
+ pos semicolon @MMK_R_eth -45;
+ pos semicolon @MMK_R_a.alt -45;
+ pos semicolon @MMK_R_e -40;
+ pos semicolon @MMK_R_a -40;
+ pos semicolon @MMK_R_oslash -20;
+ pos semicolon @MMK_R_v -10;
+ pos semicolon @MMK_R_dcaron -40;
+ pos semicolon @MMK_R_o -35;
+ pos semicolon @MMK_R_j 65;
+ pos semicolon @MMK_R_d -40;
+ pos semicolon @MMK_R_c -35;
+ pos semicolon @MMK_R_w -10;
+ pos semicolon @MMK_R_s -25;
+ pos semicolon @MMK_R_O -10;
+ pos semicolon @MMK_R_J -35;
+ pos semicolon @MMK_R_Y -55;
+ pos semicolon @MMK_R_T -100;
+ pos semicolon @MMK_R_V -55;
+ pos semicolon @MMK_R_W -45;
+ pos semicolon @MMK_R_Q -10;
+ pos semicolon @MMK_R_S -35;
+ pos semicolon @MMK_R_dcroat -40;
+ pos semicolon @MMK_R_g -30;
+ pos semicolon @MMK_R_y -10;
+ pos semicolon @MMK_R_q -40;
+ pos underscore @MMK_R_Lslash -345;
+ pos underscore @MMK_R_dcroat -175;
+ pos underscore @MMK_R_oslash -200;
+ pos underscore @MMK_R_r -175;
+ pos underscore @MMK_R_germandbls -185;
+ pos underscore @MMK_R_a -175;
+ pos underscore @MMK_R_f -180;
+ pos underscore @MMK_R_q -175;
+ pos underscore @MMK_R_w -355;
+ pos underscore @MMK_R_lslash -140;
+ pos underscore @MMK_R_d -175;
+ pos underscore @MMK_R_g -60;
+ pos underscore @MMK_R_o -200;
+ pos underscore @MMK_R_dcaron -175;
+ pos underscore @MMK_R_eth -175;
+ pos underscore @MMK_R_P -350;
+ pos underscore @MMK_R_Q -235;
+ pos underscore @MMK_R_R -350;
+ pos underscore @MMK_R_S -140;
+ pos underscore @MMK_R_T -345;
+ pos underscore @MMK_R_V -335;
+ pos underscore @MMK_R_W -355;
+ pos underscore @MMK_R_X -355;
+ pos underscore @MMK_R_Y -355;
+ pos underscore @MMK_R_Z -325;
+ pos underscore @MMK_R_A -355;
+ pos underscore @MMK_R_C -240;
+ pos underscore @MMK_R_E -310;
+ pos underscore @MMK_R_F -320;
+ pos underscore @MMK_R_G -230;
+ pos underscore @MMK_R_H -355;
+ pos underscore @MMK_R_I -115;
+ pos underscore @MMK_R_K -335;
+ pos underscore @MMK_R_L -300;
+ pos underscore @MMK_R_M -355;
+ pos underscore @MMK_R_N -355;
+ pos underscore @MMK_R_O -230;
+ pos underscore @MMK_R_s -125;
+ pos underscore @MMK_R_t -150;
+ pos underscore @MMK_R_u -120;
+ pos underscore @MMK_R_v -290;
+ pos underscore @MMK_R_x -265;
+ pos underscore @MMK_R_y -55;
+ pos underscore @MMK_R_z -250;
+ pos underscore @MMK_R_b -185;
+ pos underscore @MMK_R_c -185;
+ pos underscore @MMK_R_e -185;
+ pos underscore @MMK_R_h -260;
+ pos underscore @MMK_R_i -85;
+ pos underscore @MMK_R_j 85;
+ pos underscore @MMK_R_l -85;
+ pos underscore @MMK_R_m -355;
+ pos underscore @MMK_R_n -260;
+ pos underscore @MMK_R_lcaron -105;
+ pos underscore @MMK_R_a.alt -125;
+ pos underscore @MMK_R_tcaron -150;
+ pos underscore @MMK_R_U -155;
+ pos underscore @MMK_R_Thorn -350;
+ pos underscore @MMK_R_J -90;
+ pos underscore @MMK_R_Oslash -230;
+ pos bullet @MMK_R_a.alt -20;
+ pos bullet @MMK_R_C -10;
+ pos bullet @MMK_R_V -90;
+ pos bullet @MMK_R_J -170;
+ pos bullet @MMK_R_A -65;
+ pos bullet @MMK_R_X -75;
+ pos bullet @MMK_R_Y -95;
+ pos bullet @MMK_R_S -110;
+ pos bullet @MMK_R_T -135;
+ pos bullet @MMK_R_W -75;
+ pos bullet @MMK_R_f -75;
+ pos bullet @MMK_R_x -65;
+ pos bullet @MMK_R_y -30;
+ pos bullet @MMK_R_s -55;
+ pos bullet @MMK_R_t -75;
+ pos bullet @MMK_R_v -35;
+ pos bullet @MMK_R_w -30;
+ pos bullet @MMK_R_tcaron -75;
+ pos quotedbl @MMK_R_dcroat -70;
+ pos quotedbl @MMK_R_oslash -70;
+ pos quotedbl @MMK_R_Oslash -25;
+ pos quotedbl @MMK_R_e -70;
+ pos quotedbl @MMK_R_o -70;
+ pos quotedbl @MMK_R_Q -25;
+ pos quotedbl @MMK_R_W -15;
+ pos quotedbl @MMK_R_X -20;
+ pos quotedbl @MMK_R_Y -20;
+ pos quotedbl @MMK_R_G -25;
+ pos quotedbl @MMK_R_J -200;
+ pos quotedbl @MMK_R_V -20;
+ pos quotedbl @MMK_R_dcaron -70;
+ pos quotedbl @MMK_R_a.alt -75;
+ pos quotedbl @MMK_R_q -70;
+ pos quotedbl @MMK_R_s -50;
+ pos quotedbl @MMK_R_v -10;
+ pos quotedbl @MMK_R_x -15;
+ pos quotedbl @MMK_R_a -70;
+ pos quotedbl @MMK_R_c -70;
+ pos quotedbl @MMK_R_d -70;
+ pos quotedbl @MMK_R_g -60;
+ pos quotedbl @MMK_R_S -30;
+ pos quotedbl @MMK_R_A -125;
+ pos quotedbl @MMK_R_C -20;
+ pos quotedbl @MMK_R_O -25;
+ pos quotedbl @MMK_R_eth -85;
+ pos braceright @MMK_R_Z -60;
+ pos braceright @MMK_R_dcaron -65;
+ pos braceright @MMK_R_lcaron -60;
+ pos braceright @MMK_R_q -65;
+ pos braceright @MMK_R_b -60;
+ pos braceright @MMK_R_d -65;
+ pos braceright @MMK_R_f -110;
+ pos braceright @MMK_R_j -45;
+ pos braceright @MMK_R_l -60;
+ pos braceright @MMK_R_P -60;
+ pos braceright @MMK_R_a.alt -60;
+ pos braceright @MMK_R_Thorn -60;
+ pos braceright @MMK_R_N -60;
+ pos braceright @MMK_R_s -115;
+ pos braceright @MMK_R_r -60;
+ pos braceright @MMK_R_u -60;
+ pos braceright @MMK_R_t -110;
+ pos braceright @MMK_R_y -100;
+ pos braceright @MMK_R_x -110;
+ pos braceright @MMK_R_z -60;
+ pos braceright @MMK_R_a -65;
+ pos braceright @MMK_R_c -65;
+ pos braceright @MMK_R_e -65;
+ pos braceright @MMK_R_g -70;
+ pos braceright @MMK_R_i -60;
+ pos braceright @MMK_R_h -60;
+ pos braceright @MMK_R_m -60;
+ pos braceright @MMK_R_n -60;
+ pos braceright @MMK_R_Q -75;
+ pos braceright @MMK_R_S -135;
+ pos braceright @MMK_R_R -60;
+ pos braceright @MMK_R_U -70;
+ pos braceright @MMK_R_T -115;
+ pos braceright @MMK_R_W -135;
+ pos braceright @MMK_R_V -140;
+ pos braceright @MMK_R_Y -145;
+ pos braceright @MMK_R_X -110;
+ pos braceright @MMK_R_A -105;
+ pos braceright @MMK_R_C -75;
+ pos braceright @MMK_R_B -60;
+ pos braceright @MMK_R_I -60;
+ pos braceright @MMK_R_H -60;
+ pos braceright @MMK_R_K -60;
+ pos braceright @MMK_R_M -60;
+ pos braceright @MMK_R_O -75;
+ pos braceright @MMK_R_w -100;
+ pos braceright @MMK_R_v -100;
+ pos braceright @MMK_R_dcroat -65;
+ pos braceright @MMK_R_E -60;
+ pos braceright @MMK_R_D -60;
+ pos braceright @MMK_R_G -75;
+ pos braceright @MMK_R_J -135;
+ pos braceright @MMK_R_L -60;
+ pos braceright @MMK_R_germandbls -60;
+ pos braceright @MMK_R_eth -65;
+ pos braceright @MMK_R_Oslash -75;
+ pos braceright @MMK_R_p -60;
+ pos braceright @MMK_R_Lslash -60;
+ pos braceright @MMK_R_o -65;
+ pos braceright @MMK_R_oslash -65;
+ pos braceright @MMK_R_tcaron -110;
+ pos braceright @MMK_R_thorn -60;
+ pos braceright @MMK_R_F -60;
+ pos braceright @MMK_R_Eth -60;
+ pos braceright @MMK_R_lslash -60;
+ pos comma @MMK_R_dcaron -90;
+ pos comma @MMK_R_oslash -20;
+ pos comma @MMK_R_q -90;
+ pos comma @MMK_R_a -90;
+ pos comma @MMK_R_Y -100;
+ pos comma @MMK_R_W -115;
+ pos comma @MMK_R_O -115;
+ pos comma @MMK_R_y -70;
+ pos comma @MMK_R_v -75;
+ pos comma @MMK_R_w -70;
+ pos comma @MMK_R_t -110;
+ pos comma @MMK_R_u -55;
+ pos comma @MMK_R_s -25;
+ pos comma @MMK_R_o -100;
+ pos comma @MMK_R_j 60;
+ pos comma @MMK_R_f -80;
+ pos comma @MMK_R_g -105;
+ pos comma @MMK_R_d -90;
+ pos comma @MMK_R_e -95;
+ pos comma @MMK_R_c -90;
+ pos comma @MMK_R_V -115;
+ pos comma @MMK_R_T -115;
+ pos comma @MMK_R_U -90;
+ pos comma @MMK_R_S -45;
+ pos comma @MMK_R_Q -115;
+ pos comma @MMK_R_J -35;
+ pos comma @MMK_R_G -115;
+ pos comma @MMK_R_C -115;
+ pos comma @MMK_R_dcroat -90;
+ pos comma @MMK_R_a.alt -45;
+ pos comma @MMK_R_tcaron -110;
+ pos comma @MMK_R_eth -85;
+ pos quoteleft @MMK_R_a.alt -90;
+ pos quoteleft @MMK_R_dcaron -85;
+ pos quoteleft @MMK_R_germandbls -15;
+ pos quoteleft @MMK_R_Q -40;
+ pos quoteleft @MMK_R_X -35;
+ pos quoteleft @MMK_R_Y -30;
+ pos quoteleft @MMK_R_L -10;
+ pos quoteleft @MMK_R_J -115;
+ pos quoteleft @MMK_R_v -20;
+ pos quoteleft @MMK_R_r -15;
+ pos quoteleft @MMK_R_d -85;
+ pos quoteleft @MMK_R_e -90;
+ pos quoteleft @MMK_R_f -15;
+ pos quoteleft @MMK_R_g -75;
+ pos quoteleft @MMK_R_c -85;
+ pos quoteleft @MMK_R_m -15;
+ pos quoteleft @MMK_R_o -85;
+ pos quoteleft @MMK_R_dcroat -85;
+ pos quoteleft @MMK_R_q -85;
+ pos quoteleft @MMK_R_x -25;
+ pos quoteleft @MMK_R_n -15;
+ pos quoteleft @MMK_R_j -15;
+ pos quoteleft @MMK_R_Oslash -40;
+ pos quoteleft @MMK_R_y -15;
+ pos quoteleft @MMK_R_T -10;
+ pos quoteleft @MMK_R_V -30;
+ pos quoteleft @MMK_R_W -25;
+ pos quoteleft @MMK_R_S -40;
+ pos quoteleft @MMK_R_t -15;
+ pos quoteleft @MMK_R_u -15;
+ pos quoteleft @MMK_R_w -15;
+ pos quoteleft @MMK_R_s -65;
+ pos quoteleft @MMK_R_z -15;
+ pos quoteleft @MMK_R_oslash -85;
+ pos quoteleft @MMK_R_eth -100;
+ pos quoteleft @MMK_R_tcaron -15;
+ pos quoteleft @MMK_R_G -35;
+ pos quoteleft @MMK_R_A -115;
+ pos quoteleft @MMK_R_C -35;
+ pos quoteleft @MMK_R_O -40;
+ pos quoteleft @MMK_R_I -10;
+ pos quoteleft @MMK_R_p -15;
+ pos quoteleft @MMK_R_a -85;
+ pos quoteleft @MMK_R_i -15;
+ pos quotesingle @MMK_R_dcroat -70;
+ pos quotesingle @MMK_R_eth -85;
+ pos quotesingle @MMK_R_x -15;
+ pos quotesingle @MMK_R_oslash -70;
+ pos quotesingle @MMK_R_a.alt -75;
+ pos quotesingle @MMK_R_v -10;
+ pos quotesingle @MMK_R_q -70;
+ pos quotesingle @MMK_R_s -50;
+ pos quotesingle @MMK_R_o -70;
+ pos quotesingle @MMK_R_e -70;
+ pos quotesingle @MMK_R_d -70;
+ pos quotesingle @MMK_R_g -60;
+ pos quotesingle @MMK_R_a -70;
+ pos quotesingle @MMK_R_c -70;
+ pos quotesingle @MMK_R_Y -20;
+ pos quotesingle @MMK_R_X -20;
+ pos quotesingle @MMK_R_W -15;
+ pos quotesingle @MMK_R_V -20;
+ pos quotesingle @MMK_R_Q -25;
+ pos quotesingle @MMK_R_S -30;
+ pos quotesingle @MMK_R_G -25;
+ pos quotesingle @MMK_R_A -110;
+ pos quotesingle @MMK_R_C -20;
+ pos quotesingle @MMK_R_O -25;
+ pos quotesingle @MMK_R_J -110;
+ pos quotesingle @MMK_R_Oslash -25;
+ pos quotesingle @MMK_R_dcaron -70;
+ pos quotedblbase @MMK_R_v -75;
+ pos quotedblbase @MMK_R_dcroat -90;
+ pos quotedblbase @MMK_R_a.alt -45;
+ pos quotedblbase @MMK_R_C -145;
+ pos quotedblbase @MMK_R_dcaron -90;
+ pos quotedblbase @MMK_R_g -105;
+ pos quotedblbase @MMK_R_f -80;
+ pos quotedblbase @MMK_R_e -95;
+ pos quotedblbase @MMK_R_d -90;
+ pos quotedblbase @MMK_R_c -90;
+ pos quotedblbase @MMK_R_o -100;
+ pos quotedblbase @MMK_R_j 60;
+ pos quotedblbase @MMK_R_u -55;
+ pos quotedblbase @MMK_R_t -110;
+ pos quotedblbase @MMK_R_s -25;
+ pos quotedblbase @MMK_R_q -90;
+ pos quotedblbase @MMK_R_y -70;
+ pos quotedblbase @MMK_R_G -135;
+ pos quotedblbase @MMK_R_O -135;
+ pos quotedblbase @MMK_R_W -135;
+ pos quotedblbase @MMK_R_V -160;
+ pos quotedblbase @MMK_R_U -90;
+ pos quotedblbase @MMK_R_S -45;
+ pos quotedblbase @MMK_R_tcaron -110;
+ pos quotedblbase @MMK_R_a -90;
+ pos quotedblbase @MMK_R_eth -85;
+ pos quotedblbase @MMK_R_w -70;
+ pos quotedblbase @MMK_R_J -35;
+ pos quotedblbase @MMK_R_T -135;
+ pos quotedblbase @MMK_R_Q -135;
+ pos quotedblbase @MMK_R_Y -100;
+ pos quotedblbase @MMK_R_oslash -20;
+ pos quotedblleft @MMK_R_a.alt -90;
+ pos quotedblleft @MMK_R_y -15;
+ pos quotedblleft @MMK_R_w -15;
+ pos quotedblleft @MMK_R_v -20;
+ pos quotedblleft @MMK_R_s -65;
+ pos quotedblleft @MMK_R_q -85;
+ pos quotedblleft @MMK_R_o -85;
+ pos quotedblleft @MMK_R_n -15;
+ pos quotedblleft @MMK_R_m -15;
+ pos quotedblleft @MMK_R_j -15;
+ pos quotedblleft @MMK_R_i -15;
+ pos quotedblleft @MMK_R_g -75;
+ pos quotedblleft @MMK_R_f -15;
+ pos quotedblleft @MMK_R_e -90;
+ pos quotedblleft @MMK_R_d -85;
+ pos quotedblleft @MMK_R_c -85;
+ pos quotedblleft @MMK_R_a -85;
+ pos quotedblleft @MMK_R_X -35;
+ pos quotedblleft @MMK_R_W -25;
+ pos quotedblleft @MMK_R_V -30;
+ pos quotedblleft @MMK_R_S -40;
+ pos quotedblleft @MMK_R_Q -40;
+ pos quotedblleft @MMK_R_L -10;
+ pos quotedblleft @MMK_R_J -200;
+ pos quotedblleft @MMK_R_I -10;
+ pos quotedblleft @MMK_R_G -35;
+ pos quotedblleft @MMK_R_C -35;
+ pos quotedblleft @MMK_R_A -140;
+ pos quotedblleft @MMK_R_t -15;
+ pos quotedblleft @MMK_R_dcaron -85;
+ pos quotedblleft @MMK_R_oslash -85;
+ pos quotedblleft @MMK_R_tcaron -15;
+ pos quotedblleft @MMK_R_z -15;
+ pos quotedblleft @MMK_R_x -25;
+ pos quotedblleft @MMK_R_u -15;
+ pos quotedblleft @MMK_R_r -15;
+ pos quotedblleft @MMK_R_p -15;
+ pos quotedblleft @MMK_R_Y -30;
+ pos quotedblleft @MMK_R_T -10;
+ pos quotedblleft @MMK_R_O -40;
+ pos quotedblleft @MMK_R_eth -100;
+ pos quotedblleft @MMK_R_germandbls -15;
+ pos quotedblleft @MMK_R_Oslash -40;
+ pos quotedblleft @MMK_R_dcroat -85;
+ pos numbersign @MMK_R_Eth -50;
+ pos numbersign @MMK_R_eth -115;
+ pos numbersign @MMK_R_b -50;
+ pos numbersign @MMK_R_n -65;
+ pos numbersign @MMK_R_o -110;
+ pos numbersign @MMK_R_i -65;
+ pos numbersign @MMK_R_j -65;
+ pos numbersign @MMK_R_e -115;
+ pos numbersign @MMK_R_f -65;
+ pos numbersign @MMK_R_lslash -50;
+ pos numbersign @MMK_R_g -105;
+ pos numbersign @MMK_R_w -65;
+ pos numbersign @MMK_R_p -65;
+ pos numbersign @MMK_R_E -50;
+ pos numbersign @MMK_R_F -50;
+ pos numbersign @MMK_R_B -50;
+ pos numbersign @MMK_R_C -85;
+ pos numbersign @MMK_R_T -75;
+ pos numbersign @MMK_R_U -50;
+ pos numbersign @MMK_R_V -75;
+ pos numbersign @MMK_R_S -75;
+ pos numbersign @MMK_R_oslash -110;
+ pos numbersign @MMK_R_l -50;
+ pos numbersign @MMK_R_m -65;
+ pos numbersign @MMK_R_dcaron -115;
+ pos numbersign @MMK_R_d -115;
+ pos numbersign @MMK_R_Thorn -50;
+ pos numbersign @MMK_R_O -90;
+ pos numbersign @MMK_R_G -85;
+ pos numbersign @MMK_R_thorn -50;
+ pos numbersign @MMK_R_c -110;
+ pos numbersign @MMK_R_Oslash -90;
+ pos numbersign @MMK_R_lcaron -50;
+ pos numbersign @MMK_R_a.alt -130;
+ pos numbersign @MMK_R_tcaron -65;
+ pos numbersign @MMK_R_Lslash -50;
+ pos numbersign @MMK_R_A -190;
+ pos numbersign @MMK_R_h -50;
+ pos numbersign @MMK_R_a -115;
+ pos numbersign @MMK_R_x -75;
+ pos numbersign @MMK_R_y -65;
+ pos numbersign @MMK_R_z -65;
+ pos numbersign @MMK_R_t -65;
+ pos numbersign @MMK_R_u -65;
+ pos numbersign @MMK_R_v -65;
+ pos numbersign @MMK_R_q -115;
+ pos numbersign @MMK_R_r -65;
+ pos numbersign @MMK_R_s -115;
+ pos numbersign @MMK_R_L -50;
+ pos numbersign @MMK_R_M -50;
+ pos numbersign @MMK_R_N -50;
+ pos numbersign @MMK_R_H -50;
+ pos numbersign @MMK_R_I -50;
+ pos numbersign @MMK_R_J -255;
+ pos numbersign @MMK_R_K -50;
+ pos numbersign @MMK_R_D -50;
+ pos numbersign @MMK_R_X -80;
+ pos numbersign @MMK_R_Y -75;
+ pos numbersign @MMK_R_Z -50;
+ pos numbersign @MMK_R_W -75;
+ pos numbersign @MMK_R_P -50;
+ pos numbersign @MMK_R_Q -90;
+ pos numbersign @MMK_R_R -50;
+ pos numbersign @MMK_R_dcroat -115;
+ pos numbersign @MMK_R_germandbls -55;
+ pos bracketright @MMK_R_j 80;
+ pos bracketright @MMK_R_s -20;
+ pos bracketright @MMK_R_J -25;
+ pos bracketright @MMK_R_S -25;
+ pos periodcentered @MMK_R_tcaron -80;
+ pos periodcentered @MMK_R_Oslash -10;
+ pos periodcentered @MMK_R_s -75;
+ pos periodcentered @MMK_R_v -40;
+ pos periodcentered @MMK_R_t -80;
+ pos periodcentered @MMK_R_f -80;
+ pos periodcentered @MMK_R_S -100;
+ pos periodcentered @MMK_R_Q -10;
+ pos periodcentered @MMK_R_W -85;
+ pos periodcentered @MMK_R_V -100;
+ pos periodcentered @MMK_R_T -100;
+ pos periodcentered @MMK_R_Y -100;
+ pos periodcentered @MMK_R_X -65;
+ pos periodcentered @MMK_R_C -15;
+ pos periodcentered @MMK_R_A -60;
+ pos periodcentered @MMK_R_G -10;
+ pos periodcentered @MMK_R_J -100;
+ pos periodcentered @MMK_R_O -10;
+ pos periodcentered @MMK_R_a.alt -10;
+ pos periodcentered @MMK_R_w -35;
+ pos periodcentered @MMK_R_y -35;
+ pos periodcentered @MMK_R_x -65;
+ pos bracketleft @MMK_R_s -20;
+ pos bracketleft @MMK_R_j 75;
+ pos bracketleft @MMK_R_S -25;
+ pos bracketleft @MMK_R_J -25;
+ pos quoteright @MMK_R_oslash -100;
+ pos quoteright @MMK_R_eth -115;
+ pos quoteright @MMK_R_a.alt -80;
+ pos quoteright @MMK_R_g -90;
+ pos quoteright @MMK_R_d -100;
+ pos quoteright @MMK_R_a -100;
+ pos quoteright @MMK_R_n -15;
+ pos quoteright @MMK_R_m -15;
+ pos quoteright @MMK_R_j -15;
+ pos quoteright @MMK_R_v -20;
+ pos quoteright @MMK_R_w -15;
+ pos quoteright @MMK_R_s -80;
+ pos quoteright @MMK_R_A -115;
+ pos quoteright @MMK_R_O -45;
+ pos quoteright @MMK_R_J -115;
+ pos quoteright @MMK_R_V -20;
+ pos quoteright @MMK_R_W -15;
+ pos quoteright @MMK_R_S -30;
+ pos quoteright @MMK_R_Q -45;
+ pos quoteright @MMK_R_X -25;
+ pos quoteright @MMK_R_Oslash -45;
+ pos quoteright @MMK_R_e -105;
+ pos quoteright @MMK_R_c -100;
+ pos quoteright @MMK_R_o -100;
+ pos quoteright @MMK_R_dcaron -100;
+ pos quoteright @MMK_R_t -15;
+ pos quoteright @MMK_R_u -15;
+ pos quoteright @MMK_R_r -15;
+ pos quoteright @MMK_R_q -100;
+ pos quoteright @MMK_R_z -15;
+ pos quoteright @MMK_R_x -25;
+ pos quoteright @MMK_R_G -45;
+ pos quoteright @MMK_R_C -40;
+ pos quoteright @MMK_R_i -15;
+ pos quoteright @MMK_R_y -15;
+ pos quoteright @MMK_R_Y -20;
+ pos quoteright @MMK_R_f -15;
+ pos quoteright @MMK_R_p -15;
+ pos quoteright @MMK_R_dcroat -100;
+ pos quoteright @MMK_R_tcaron -15;
+ subtable;
+ pos dollar @MMK_R_Oslash -30;
+ pos dollar @MMK_R_c -10;
+ pos dollar @MMK_R_tcaron -80;
+ pos dollar @MMK_R_oslash -15;
+ pos dollar @MMK_R_dcaron -10;
+ pos dollar @MMK_R_s -55;
+ pos dollar @MMK_R_v -50;
+ pos dollar @MMK_R_w -45;
+ pos dollar @MMK_R_t -80;
+ pos dollar @MMK_R_x -35;
+ pos dollar @MMK_R_S -60;
+ pos dollar @MMK_R_a -10;
+ pos dollar @MMK_R_f -80;
+ pos dollar @MMK_R_d -10;
+ pos dollar @MMK_R_o -15;
+ pos dollar @MMK_R_Q -30;
+ pos dollar @MMK_R_V -65;
+ pos dollar @MMK_R_T -60;
+ pos dollar @MMK_R_G -30;
+ pos dollar @MMK_R_O -30;
+ pos dollar @MMK_R_A -30;
+ pos dollar @MMK_R_J -55;
+ pos dollar @MMK_R_U -15;
+ pos dollar @MMK_R_X -35;
+ pos dollar @MMK_R_eth -10;
+ pos dollar @MMK_R_dcroat -10;
+ pos dollar @MMK_R_q -10;
+ pos dollar @MMK_R_y -45;
+ pos dollar @MMK_R_g -15;
+ pos dollar @MMK_R_e -10;
+ pos dollar @MMK_R_W -65;
+ pos dollar @MMK_R_Y -65;
+ pos dollar @MMK_R_C -35;
+ pos perthousand @MMK_R_tcaron -80;
+ pos perthousand @MMK_R_Oslash -35;
+ pos perthousand @MMK_R_c -15;
+ pos perthousand @MMK_R_dcroat -15;
+ pos perthousand @MMK_R_eth -10;
+ pos perthousand @MMK_R_o -15;
+ pos perthousand @MMK_R_oslash -15;
+ pos perthousand @MMK_R_f -80;
+ pos perthousand @MMK_R_S -50;
+ pos perthousand @MMK_R_Q -35;
+ pos perthousand @MMK_R_a -15;
+ pos perthousand @MMK_R_v -50;
+ pos perthousand @MMK_R_G -35;
+ pos perthousand @MMK_R_W -100;
+ pos perthousand @MMK_R_g -20;
+ pos perthousand @MMK_R_d -15;
+ pos perthousand @MMK_R_dcaron -15;
+ pos perthousand @MMK_R_A -25;
+ pos perthousand @MMK_R_J -45;
+ pos perthousand @MMK_R_V -120;
+ pos perthousand @MMK_R_T -135;
+ pos perthousand @MMK_R_X -30;
+ pos perthousand @MMK_R_Y -100;
+ pos perthousand @MMK_R_e -15;
+ pos perthousand @MMK_R_w -50;
+ pos perthousand @MMK_R_t -80;
+ pos perthousand @MMK_R_s -45;
+ pos perthousand @MMK_R_q -15;
+ pos perthousand @MMK_R_x -30;
+ pos perthousand @MMK_R_y -50;
+ pos perthousand @MMK_R_U -15;
+ pos perthousand @MMK_R_C -40;
+ pos perthousand @MMK_R_O -35;
+ pos multiply @MMK_R_dcroat -50;
+ pos multiply @MMK_R_eth -50;
+ pos multiply @MMK_R_Oslash -45;
+ pos multiply @MMK_R_lslash -35;
+ pos multiply @MMK_R_D -35;
+ pos multiply @MMK_R_Lslash -35;
+ pos multiply @MMK_R_I -35;
+ pos multiply @MMK_R_lcaron -35;
+ pos multiply @MMK_R_Eth -35;
+ pos multiply @MMK_R_t -35;
+ pos multiply @MMK_R_y -45;
+ pos multiply @MMK_R_u -35;
+ pos multiply @MMK_R_m -35;
+ pos multiply @MMK_R_v -45;
+ pos multiply @MMK_R_j -35;
+ pos multiply @MMK_R_c -50;
+ pos multiply @MMK_R_f -35;
+ pos multiply @MMK_R_g -55;
+ pos multiply @MMK_R_U -35;
+ pos multiply @MMK_R_J -215;
+ pos multiply @MMK_R_K -35;
+ pos multiply @MMK_R_E -35;
+ pos multiply @MMK_R_V -95;
+ pos multiply @MMK_R_W -85;
+ pos multiply @MMK_R_Thorn -35;
+ pos multiply @MMK_R_O -45;
+ pos multiply @MMK_R_B -35;
+ pos multiply @MMK_R_l -35;
+ pos multiply @MMK_R_C -40;
+ pos multiply @MMK_R_A -100;
+ pos multiply @MMK_R_thorn -35;
+ pos multiply @MMK_R_a -50;
+ pos multiply @MMK_R_dcaron -50;
+ pos multiply @MMK_R_z -35;
+ pos multiply @MMK_R_r -35;
+ pos multiply @MMK_R_s -70;
+ pos multiply @MMK_R_p -35;
+ pos multiply @MMK_R_w -45;
+ pos multiply @MMK_R_i -35;
+ pos multiply @MMK_R_b -35;
+ pos multiply @MMK_R_e -50;
+ pos multiply @MMK_R_Z -35;
+ pos multiply @MMK_R_Y -95;
+ pos multiply @MMK_R_R -35;
+ pos multiply @MMK_R_P -35;
+ pos multiply @MMK_R_Q -45;
+ pos multiply @MMK_R_T -170;
+ pos multiply @MMK_R_G -45;
+ pos multiply @MMK_R_d -50;
+ pos multiply @MMK_R_germandbls -35;
+ pos multiply @MMK_R_oslash -50;
+ pos multiply @MMK_R_a.alt -55;
+ pos multiply @MMK_R_q -50;
+ pos multiply @MMK_R_tcaron -35;
+ pos multiply @MMK_R_x -65;
+ pos multiply @MMK_R_h -35;
+ pos multiply @MMK_R_n -35;
+ pos multiply @MMK_R_o -50;
+ pos multiply @MMK_R_S -80;
+ pos multiply @MMK_R_H -35;
+ pos multiply @MMK_R_N -35;
+ pos multiply @MMK_R_L -35;
+ pos multiply @MMK_R_M -35;
+ pos multiply @MMK_R_F -35;
+ pos multiply @MMK_R_X -105;
+ pos yen @MMK_R_J -85;
+ pos yen @MMK_R_germandbls -25;
+ pos yen @MMK_R_x -40;
+ pos yen @MMK_R_Oslash -50;
+ pos yen @MMK_R_Q -50;
+ pos yen @MMK_R_S -45;
+ pos yen @MMK_R_q -60;
+ pos yen @MMK_R_s -75;
+ pos yen @MMK_R_r -30;
+ pos yen @MMK_R_v -30;
+ pos yen @MMK_R_C -45;
+ pos yen @MMK_R_G -45;
+ pos yen @MMK_R_O -50;
+ pos yen @MMK_R_a -60;
+ pos yen @MMK_R_c -60;
+ pos yen @MMK_R_g -60;
+ pos yen @MMK_R_o -60;
+ pos yen @MMK_R_u -30;
+ pos yen @MMK_R_w -30;
+ pos yen @MMK_R_z -30;
+ pos yen @MMK_R_dcaron -60;
+ pos yen @MMK_R_p -30;
+ pos yen @MMK_R_t -30;
+ pos yen @MMK_R_A -60;
+ pos yen @MMK_R_dcroat -60;
+ pos yen @MMK_R_e -60;
+ pos yen @MMK_R_d -60;
+ pos yen @MMK_R_f -30;
+ pos yen @MMK_R_m -30;
+ pos yen @MMK_R_n -30;
+ pos yen @MMK_R_a.alt -60;
+ pos yen @MMK_R_y -30;
+ pos yen @MMK_R_oslash -60;
+ pos yen @MMK_R_eth -60;
+ pos yen @MMK_R_tcaron -30;
+ pos euro @MMK_R_A -25;
+ pos euro @MMK_R_W -25;
+ pos euro @MMK_R_S -25;
+ pos euro @MMK_R_Y -30;
+ pos euro @MMK_R_X -30;
+ pos euro @MMK_R_J -75;
+ pos euro @MMK_R_s -30;
+ pos euro @MMK_R_x -10;
+ pos euro @MMK_R_V -30;
+ pos trademark @MMK_R_x -10;
+ pos trademark @MMK_R_V -30;
+ pos trademark @MMK_R_W -25;
+ pos trademark @MMK_R_S -25;
+ pos trademark @MMK_R_X -35;
+ pos trademark @MMK_R_Y -30;
+ pos trademark @MMK_R_A -70;
+ pos trademark @MMK_R_J -285;
+ pos trademark @MMK_R_a.alt -35;
+ pos trademark @MMK_R_s -30;
+ pos asciicircum @MMK_R_Lslash -25;
+ pos asciicircum @MMK_R_germandbls -25;
+ pos asciicircum @MMK_R_Eth -25;
+ pos asciicircum @MMK_R_thorn -25;
+ pos asciicircum @MMK_R_eth -65;
+ pos asciicircum @MMK_R_lcaron -25;
+ pos asciicircum @MMK_R_dcroat -60;
+ pos asciicircum @MMK_R_L -25;
+ pos asciicircum @MMK_R_J -260;
+ pos asciicircum @MMK_R_B -25;
+ pos asciicircum @MMK_R_A -125;
+ pos asciicircum @MMK_R_W -75;
+ pos asciicircum @MMK_R_R -25;
+ pos asciicircum @MMK_R_j -25;
+ pos asciicircum @MMK_R_v -40;
+ pos asciicircum @MMK_R_Thorn -25;
+ pos asciicircum @MMK_R_tcaron -30;
+ pos asciicircum @MMK_R_lslash -25;
+ pos asciicircum @MMK_R_Oslash -30;
+ pos asciicircum @MMK_R_dcaron -60;
+ pos asciicircum @MMK_R_H -25;
+ pos asciicircum @MMK_R_x -60;
+ pos asciicircum @MMK_R_O -30;
+ pos asciicircum @MMK_R_N -25;
+ pos asciicircum @MMK_R_M -25;
+ pos asciicircum @MMK_R_K -25;
+ pos asciicircum @MMK_R_G -25;
+ pos asciicircum @MMK_R_E -25;
+ pos asciicircum @MMK_R_D -25;
+ pos asciicircum @MMK_R_C -25;
+ pos asciicircum @MMK_R_Y -90;
+ pos asciicircum @MMK_R_X -100;
+ pos asciicircum @MMK_R_V -85;
+ pos asciicircum @MMK_R_U -25;
+ pos asciicircum @MMK_R_T -110;
+ pos asciicircum @MMK_R_S -75;
+ pos asciicircum @MMK_R_Q -30;
+ pos asciicircum @MMK_R_P -25;
+ pos asciicircum @MMK_R_o -55;
+ pos asciicircum @MMK_R_m -25;
+ pos asciicircum @MMK_R_l -25;
+ pos asciicircum @MMK_R_i -25;
+ pos asciicircum @MMK_R_g -50;
+ pos asciicircum @MMK_R_f -30;
+ pos asciicircum @MMK_R_e -60;
+ pos asciicircum @MMK_R_c -55;
+ pos asciicircum @MMK_R_z -25;
+ pos asciicircum @MMK_R_y -35;
+ pos asciicircum @MMK_R_w -35;
+ pos asciicircum @MMK_R_t -30;
+ pos asciicircum @MMK_R_s -55;
+ pos asciicircum @MMK_R_r -25;
+ pos asciicircum @MMK_R_q -60;
+ pos asciicircum @MMK_R_p -25;
+ pos asciicircum @MMK_R_h -25;
+ pos asciicircum @MMK_R_F -25;
+ pos asciicircum @MMK_R_I -25;
+ pos asciicircum @MMK_R_Z -25;
+ pos asciicircum @MMK_R_a.alt -155;
+ pos asciicircum @MMK_R_d -60;
+ pos asciicircum @MMK_R_b -25;
+ pos asciicircum @MMK_R_a -60;
+ pos asciicircum @MMK_R_u -25;
+ pos asciicircum @MMK_R_oslash -55;
+ pos asciicircum @MMK_R_n -25;
+ pos asciitilde @MMK_R_r -30;
+ pos asciitilde @MMK_R_a.alt -115;
+ pos asciitilde @MMK_R_dcroat -50;
+ pos asciitilde @MMK_R_lslash -30;
+ pos asciitilde @MMK_R_germandbls -30;
+ pos asciitilde @MMK_R_A -125;
+ pos asciitilde @MMK_R_R -30;
+ pos asciitilde @MMK_R_j -30;
+ pos asciitilde @MMK_R_y -45;
+ pos asciitilde @MMK_R_tcaron -105;
+ pos asciitilde @MMK_R_Thorn -30;
+ pos asciitilde @MMK_R_L -30;
+ pos asciitilde @MMK_R_O -30;
+ pos asciitilde @MMK_R_N -25;
+ pos asciitilde @MMK_R_I -30;
+ pos asciitilde @MMK_R_H -25;
+ pos asciitilde @MMK_R_K -25;
+ pos asciitilde @MMK_R_J -240;
+ pos asciitilde @MMK_R_E -25;
+ pos asciitilde @MMK_R_D -25;
+ pos asciitilde @MMK_R_G -30;
+ pos asciitilde @MMK_R_B -30;
+ pos asciitilde @MMK_R_X -110;
+ pos asciitilde @MMK_R_Z -25;
+ pos asciitilde @MMK_R_U -30;
+ pos asciitilde @MMK_R_T -160;
+ pos asciitilde @MMK_R_W -85;
+ pos asciitilde @MMK_R_Q -30;
+ pos asciitilde @MMK_R_m -30;
+ pos asciitilde @MMK_R_h -25;
+ pos asciitilde @MMK_R_e -50;
+ pos asciitilde @MMK_R_d -50;
+ pos asciitilde @MMK_R_g -40;
+ pos asciitilde @MMK_R_a -50;
+ pos asciitilde @MMK_R_c -45;
+ pos asciitilde @MMK_R_z -30;
+ pos asciitilde @MMK_R_u -30;
+ pos asciitilde @MMK_R_w -45;
+ pos asciitilde @MMK_R_q -50;
+ pos asciitilde @MMK_R_p -30;
+ pos asciitilde @MMK_R_s -55;
+ pos asciitilde @MMK_R_Eth -25;
+ pos asciitilde @MMK_R_thorn -30;
+ pos asciitilde @MMK_R_M -25;
+ pos asciitilde @MMK_R_F -25;
+ pos asciitilde @MMK_R_C -30;
+ pos asciitilde @MMK_R_V -95;
+ pos asciitilde @MMK_R_P -30;
+ pos asciitilde @MMK_R_o -45;
+ pos asciitilde @MMK_R_i -30;
+ pos asciitilde @MMK_R_f -105;
+ pos asciitilde @MMK_R_b -25;
+ pos asciitilde @MMK_R_x -65;
+ pos asciitilde @MMK_R_t -105;
+ pos asciitilde @MMK_R_v -45;
+ pos asciitilde @MMK_R_Lslash -30;
+ pos asciitilde @MMK_R_lcaron -30;
+ pos asciitilde @MMK_R_eth -50;
+ pos asciitilde @MMK_R_S -90;
+ pos asciitilde @MMK_R_oslash -45;
+ pos asciitilde @MMK_R_Y -100;
+ pos asciitilde @MMK_R_l -30;
+ pos asciitilde @MMK_R_dcaron -50;
+ pos asciitilde @MMK_R_n -30;
+ pos asciitilde @MMK_R_Oslash -30;
+ pos equal @MMK_R_W -35;
+ pos equal @MMK_R_J -115;
+ pos equal @MMK_R_A -40;
+ pos equal @MMK_R_Y -45;
+ pos equal @MMK_R_X -45;
+ pos equal @MMK_R_V -40;
+ pos equal @MMK_R_T -135;
+ pos equal @MMK_R_S -25;
+ pos equal @MMK_R_x -10;
+ pos equal @MMK_R_s -30;
+ pos divide @MMK_R_T -135;
+ pos divide @MMK_R_tcaron -80;
+ pos divide @MMK_R_J -285;
+ pos divide @MMK_R_s -30;
+ pos divide @MMK_R_w -15;
+ pos divide @MMK_R_v -20;
+ pos divide @MMK_R_t -80;
+ pos divide @MMK_R_x -40;
+ pos divide @MMK_R_f -80;
+ pos divide @MMK_R_W -55;
+ pos divide @MMK_R_V -70;
+ pos divide @MMK_R_Y -70;
+ pos divide @MMK_R_X -75;
+ pos divide @MMK_R_A -65;
+ pos divide @MMK_R_a.alt -25;
+ pos divide @MMK_R_y -15;
+ pos divide @MMK_R_S -65;
+ pos minus @MMK_R_S -65;
+ pos minus @MMK_R_a.alt -25;
+ pos minus @MMK_R_J -285;
+ pos minus @MMK_R_W -55;
+ pos minus @MMK_R_T -135;
+ pos minus @MMK_R_X -75;
+ pos minus @MMK_R_V -70;
+ pos minus @MMK_R_t -80;
+ pos minus @MMK_R_f -80;
+ pos minus @MMK_R_Y -70;
+ pos minus @MMK_R_A -65;
+ pos minus @MMK_R_y -15;
+ pos minus @MMK_R_x -40;
+ pos minus @MMK_R_w -15;
+ pos minus @MMK_R_v -20;
+ pos minus @MMK_R_s -30;
+ pos minus @MMK_R_tcaron -80;
+ pos greater @MMK_R_x -45;
+ pos greater @MMK_R_v -20;
+ pos greater @MMK_R_t -80;
+ pos greater @MMK_R_Y -75;
+ pos greater @MMK_R_S -80;
+ pos greater @MMK_R_W -60;
+ pos greater @MMK_R_V -75;
+ pos greater @MMK_R_T -135;
+ pos greater @MMK_R_J -285;
+ pos greater @MMK_R_A -75;
+ pos greater @MMK_R_a.alt -50;
+ pos greater @MMK_R_f -80;
+ pos greater @MMK_R_y -20;
+ pos greater @MMK_R_w -20;
+ pos greater @MMK_R_X -85;
+ pos greater @MMK_R_tcaron -80;
+ pos greater @MMK_R_s -30;
+ pos percent @MMK_R_s -45;
+ pos percent @MMK_R_w -50;
+ pos percent @MMK_R_c -15;
+ pos percent @MMK_R_Q -35;
+ pos percent @MMK_R_V -90;
+ pos percent @MMK_R_T -90;
+ pos percent @MMK_R_U -15;
+ pos percent @MMK_R_o -15;
+ pos percent @MMK_R_d -15;
+ pos percent @MMK_R_q -15;
+ pos percent @MMK_R_v -50;
+ pos percent @MMK_R_t -80;
+ pos percent @MMK_R_J -45;
+ pos percent @MMK_R_G -35;
+ pos percent @MMK_R_Y -90;
+ pos percent @MMK_R_S -55;
+ pos percent @MMK_R_W -90;
+ pos percent @MMK_R_e -15;
+ pos percent @MMK_R_y -50;
+ pos percent @MMK_R_Oslash -35;
+ pos percent @MMK_R_a -15;
+ pos percent @MMK_R_oslash -15;
+ pos percent @MMK_R_dcroat -15;
+ pos percent @MMK_R_x -30;
+ pos percent @MMK_R_O -35;
+ pos percent @MMK_R_C -40;
+ pos percent @MMK_R_X -30;
+ pos percent @MMK_R_dcaron -15;
+ pos percent @MMK_R_f -80;
+ pos percent @MMK_R_eth -10;
+ pos percent @MMK_R_A -25;
+ pos percent @MMK_R_g -20;
+ pos percent @MMK_R_tcaron -80;
+ pos plus @MMK_R_s -30;
+ pos plus @MMK_R_V -70;
+ pos plus @MMK_R_W -55;
+ pos plus @MMK_R_T -135;
+ pos plus @MMK_R_S -65;
+ pos plus @MMK_R_X -75;
+ pos plus @MMK_R_Y -70;
+ pos plus @MMK_R_A -65;
+ pos plus @MMK_R_J -285;
+ pos plus @MMK_R_v -20;
+ pos plus @MMK_R_w -15;
+ pos plus @MMK_R_t -80;
+ pos plus @MMK_R_x -40;
+ pos plus @MMK_R_f -80;
+ pos plus @MMK_R_a.alt -25;
+ pos plus @MMK_R_y -15;
+ pos plus @MMK_R_tcaron -80;
+ pos sterling @MMK_R_tcaron -30;
+ pos sterling @MMK_R_eth -30;
+ pos sterling @MMK_R_germandbls -30;
+ pos sterling @MMK_R_dcaron -30;
+ pos sterling @MMK_R_dcroat -30;
+ pos sterling @MMK_R_Q -30;
+ pos sterling @MMK_R_lcaron -30;
+ pos sterling @MMK_R_a.alt -30;
+ pos sterling @MMK_R_x -30;
+ pos sterling @MMK_R_b -30;
+ pos sterling @MMK_R_c -30;
+ pos sterling @MMK_R_a -30;
+ pos sterling @MMK_R_f -30;
+ pos sterling @MMK_R_g -30;
+ pos sterling @MMK_R_e -30;
+ pos sterling @MMK_R_n -30;
+ pos sterling @MMK_R_m -30;
+ pos sterling @MMK_R_r -30;
+ pos sterling @MMK_R_s -55;
+ pos sterling @MMK_R_p -30;
+ pos sterling @MMK_R_v -30;
+ pos sterling @MMK_R_u -30;
+ pos sterling @MMK_R_z -30;
+ pos sterling @MMK_R_B -30;
+ pos sterling @MMK_R_C -30;
+ pos sterling @MMK_R_A -30;
+ pos sterling @MMK_R_G -30;
+ pos sterling @MMK_R_D -30;
+ pos sterling @MMK_R_E -30;
+ pos sterling @MMK_R_J -55;
+ pos sterling @MMK_R_K -30;
+ pos sterling @MMK_R_H -30;
+ pos sterling @MMK_R_I -30;
+ pos sterling @MMK_R_O -30;
+ pos sterling @MMK_R_L -30;
+ pos sterling @MMK_R_M -30;
+ pos sterling @MMK_R_R -30;
+ pos sterling @MMK_R_S -55;
+ pos sterling @MMK_R_V -65;
+ pos sterling @MMK_R_W -60;
+ pos sterling @MMK_R_U -30;
+ pos sterling @MMK_R_X -30;
+ pos sterling @MMK_R_Y -65;
+ pos sterling @MMK_R_thorn -30;
+ pos sterling @MMK_R_Eth -30;
+ pos sterling @MMK_R_Z -30;
+ pos sterling @MMK_R_d -30;
+ pos sterling @MMK_R_j -30;
+ pos sterling @MMK_R_i -30;
+ pos sterling @MMK_R_l -30;
+ pos sterling @MMK_R_q -30;
+ pos sterling @MMK_R_t -30;
+ pos sterling @MMK_R_F -30;
+ pos sterling @MMK_R_Thorn -30;
+ pos sterling @MMK_R_Oslash -30;
+ pos sterling @MMK_R_Lslash -30;
+ pos sterling @MMK_R_oslash -30;
+ pos sterling @MMK_R_h -30;
+ pos sterling @MMK_R_o -30;
+ pos sterling @MMK_R_w -30;
+ pos sterling @MMK_R_y -30;
+ pos sterling @MMK_R_lslash -30;
+ pos sterling @MMK_R_N -30;
+ pos sterling @MMK_R_P -30;
+ pos sterling @MMK_R_T -40;
+ pos registered @MMK_R_q -15;
+ pos registered @MMK_R_s -30;
+ pos registered @MMK_R_c -15;
+ pos registered @MMK_R_o -15;
+ pos registered @MMK_R_d -15;
+ pos registered @MMK_R_e -15;
+ pos registered @MMK_R_g -10;
+ pos registered @MMK_R_x -25;
+ pos registered @MMK_R_y -10;
+ pos registered @MMK_R_w -10;
+ pos registered @MMK_R_A -90;
+ pos registered @MMK_R_X -65;
+ pos registered @MMK_R_Y -60;
+ pos registered @MMK_R_W -45;
+ pos registered @MMK_R_S -35;
+ pos registered @MMK_R_J -235;
+ pos registered @MMK_R_T -40;
+ pos registered @MMK_R_V -55;
+ pos registered @MMK_R_dcaron -15;
+ pos registered @MMK_R_v -10;
+ pos registered @MMK_R_oslash -15;
+ pos registered @MMK_R_eth -20;
+ pos registered @MMK_R_a -15;
+ pos registered @MMK_R_dcroat -15;
+ pos registered @MMK_R_a.alt -65;
+ pos ampersand @MMK_R_G -15;
+ pos ampersand @MMK_R_X -15;
+ pos ampersand @MMK_R_w -40;
+ pos ampersand @MMK_R_Y -105;
+ pos ampersand @MMK_R_O -15;
+ pos ampersand @MMK_R_J -30;
+ pos ampersand @MMK_R_C -20;
+ pos ampersand @MMK_R_W -90;
+ pos ampersand @MMK_R_Q -15;
+ pos ampersand @MMK_R_f -85;
+ pos ampersand @MMK_R_x -15;
+ pos ampersand @MMK_R_y -40;
+ pos ampersand @MMK_R_A -15;
+ pos ampersand @MMK_R_tcaron -85;
+ pos ampersand @MMK_R_a.alt -35;
+ pos ampersand @MMK_R_Oslash -15;
+ pos ampersand @MMK_R_V -105;
+ pos ampersand @MMK_R_T -140;
+ pos ampersand @MMK_R_S -40;
+ pos ampersand @MMK_R_v -45;
+ pos ampersand @MMK_R_t -85;
+ pos ampersand @MMK_R_s -30;
+ pos less @MMK_R_s -20;
+ pos less @MMK_R_S -25;
+ pos less @MMK_R_J -25;
+ pos degree @MMK_R_Oslash -30;
+ pos degree @MMK_R_a.alt -70;
+ pos degree @MMK_R_g -65;
+ pos degree @MMK_R_dcroat -75;
+ pos degree @MMK_R_o -75;
+ pos degree @MMK_R_a -75;
+ pos degree @MMK_R_c -75;
+ pos degree @MMK_R_d -75;
+ pos degree @MMK_R_e -75;
+ pos degree @MMK_R_s -55;
+ pos degree @MMK_R_S -25;
+ pos degree @MMK_R_W -25;
+ pos degree @MMK_R_oslash -75;
+ pos degree @MMK_R_Y -25;
+ pos degree @MMK_R_x -15;
+ pos degree @MMK_R_J -215;
+ pos degree @MMK_R_dcaron -75;
+ pos degree @MMK_R_eth -85;
+ pos degree @MMK_R_q -75;
+ pos degree @MMK_R_O -30;
+ pos degree @MMK_R_A -125;
+ pos degree @MMK_R_C -25;
+ pos degree @MMK_R_G -25;
+ pos degree @MMK_R_X -30;
+ pos degree @MMK_R_Q -30;
+ pos degree @MMK_R_V -25;
+ pos bar @MMK_R_s -20;
+ pos bar @MMK_R_j 70;
+ pos bar @MMK_R_S -25;
+ pos bar @MMK_R_J -25;
+ pos at @MMK_R_X -65;
+ pos at @MMK_R_f -25;
+ pos at @MMK_R_x -50;
+ pos at @MMK_R_t -25;
+ pos at @MMK_R_S -65;
+ pos at @MMK_R_W -70;
+ pos at @MMK_R_tcaron -25;
+ pos at @MMK_R_T -100;
+ pos at @MMK_R_y -25;
+ pos at @MMK_R_s -40;
+ pos at @MMK_R_w -25;
+ pos at @MMK_R_J -90;
+ pos at @MMK_R_A -55;
+ pos at @MMK_R_Y -85;
+ pos at @MMK_R_V -80;
+ pos at @MMK_R_a.alt -10;
+ pos at @MMK_R_v -30;
+ pos copyright @MMK_R_J -80;
+ pos copyright @MMK_R_A -50;
+ pos copyright @MMK_R_X -55;
+ pos copyright @MMK_R_T -110;
+ pos copyright @MMK_R_V -85;
+ pos copyright @MMK_R_W -75;
+ pos copyright @MMK_R_S -75;
+ pos copyright @MMK_R_f -30;
+ pos copyright @MMK_R_x -55;
+ pos copyright @MMK_R_y -30;
+ pos copyright @MMK_R_t -30;
+ pos copyright @MMK_R_w -30;
+ pos copyright @MMK_R_s -45;
+ pos copyright @MMK_R_tcaron -30;
+ pos copyright @MMK_R_v -35;
+ pos copyright @MMK_R_Y -90;
+ pos paragraph @MMK_R_J -25;
+ pos paragraph @MMK_R_S -25;
+ pos paragraph @MMK_R_s -20;
+ pos cent @MMK_R_J -25;
+ pos cent @MMK_R_s -20;
+ pos cent @MMK_R_W -40;
+ pos cent @MMK_R_Y -55;
+ pos cent @MMK_R_T -115;
+ pos cent @MMK_R_V -50;
+ pos cent @MMK_R_S -30;
+ subtable;
+ pos @MMK_L_x underscore -265;
+ pos @MMK_L_x quoteleft -15;
+ pos @MMK_L_x sterling -30;
+ pos @MMK_L_x backslash -95;
+ pos @MMK_L_x minus -40;
+ pos @MMK_L_x asterisk -10;
+ pos @MMK_L_x hyphen -50;
+ pos @MMK_L_x cent -55;
+ pos @MMK_L_x quotedblleft -15;
+ pos @MMK_L_x trademark -10;
+ pos @MMK_L_x degree -25;
+ pos @MMK_L_x quotedblright -60;
+ pos @MMK_L_x registered -15;
+ pos @MMK_L_x copyright -45;
+ pos @MMK_L_x quotedblbase -25;
+ pos @MMK_L_x guillemetleft -65;
+ pos @MMK_L_x guillemetright -15;
+ pos @MMK_L_x asciicircum -45;
+ pos @MMK_L_x euro -100;
+ pos @MMK_L_x less -40;
+ pos @MMK_L_x question -155;
+ pos @MMK_L_x perthousand -10;
+ pos @MMK_L_x guilsinglright -15;
+ pos @MMK_L_x percent -10;
+ pos @MMK_L_x yen -35;
+ pos @MMK_L_x quotesingle -20;
+ pos @MMK_L_x multiply -70;
+ pos @MMK_L_x asciitilde -80;
+ pos @MMK_L_x parenright -85;
+ pos @MMK_L_x emdash -50;
+ pos @MMK_L_x semicolon -15;
+ pos @MMK_L_x quoteright -60;
+ pos @MMK_L_x dollar -40;
+ pos @MMK_L_x at -45;
+ pos @MMK_L_x quotesinglbase -25;
+ pos @MMK_L_x braceleft -110;
+ pos @MMK_L_x endash -50;
+ pos @MMK_L_x equal -10;
+ pos @MMK_L_x ampersand -50;
+ pos @MMK_L_x braceright -55;
+ pos @MMK_L_x comma -25;
+ pos @MMK_L_x bullet -55;
+ pos @MMK_L_x divide -40;
+ pos @MMK_L_x paragraph -10;
+ pos @MMK_L_x guilsinglleft -65;
+ pos @MMK_L_x plus -40;
+ pos @MMK_L_x numbersign -70;
+ pos @MMK_L_x quotedbl -20;
+ pos @MMK_L_x periodcentered -65;
+ pos @MMK_L_x parenleft -50;
+ pos @MMK_L_x @MMK_R_eth -60;
+ pos @MMK_L_x @MMK_R_a.alt -40;
+ pos @MMK_L_x @MMK_R_dcaron -60;
+ pos @MMK_L_x @MMK_R_S -35;
+ pos @MMK_L_x @MMK_R_J -35;
+ pos @MMK_L_x @MMK_R_Q -35;
+ pos @MMK_L_x @MMK_R_s -30;
+ pos @MMK_L_x @MMK_R_tcaron -10;
+ pos @MMK_L_x @MMK_R_W -45;
+ pos @MMK_L_x @MMK_R_V -50;
+ pos @MMK_L_x @MMK_R_U -10;
+ pos @MMK_L_x @MMK_R_T -135;
+ pos @MMK_L_x @MMK_R_O -35;
+ pos @MMK_L_x @MMK_R_C -30;
+ pos @MMK_L_x @MMK_R_G -35;
+ pos @MMK_L_x @MMK_R_y -10;
+ pos @MMK_L_x @MMK_R_q -60;
+ pos @MMK_L_x @MMK_R_w -10;
+ pos @MMK_L_x @MMK_R_v -10;
+ pos @MMK_L_x @MMK_R_u -10;
+ pos @MMK_L_x @MMK_R_t -10;
+ pos @MMK_L_x @MMK_R_o -60;
+ pos @MMK_L_x @MMK_R_c -60;
+ pos @MMK_L_x @MMK_R_a -60;
+ pos @MMK_L_x @MMK_R_g -55;
+ pos @MMK_L_x @MMK_R_f -10;
+ pos @MMK_L_x @MMK_R_e -60;
+ pos @MMK_L_x @MMK_R_d -60;
+ pos @MMK_L_x @MMK_R_oslash -20;
+ pos @MMK_L_x @MMK_R_dcroat -60;
+ pos @MMK_L_x @MMK_R_Y -50;
+ pos @MMK_L_w guilsinglleft -30;
+ pos @MMK_L_w backslash -85;
+ pos @MMK_L_w asciicircum -25;
+ pos @MMK_L_w endash -20;
+ pos @MMK_L_w copyright -25;
+ pos @MMK_L_w divide -15;
+ pos @MMK_L_w ellipsis -65;
+ pos @MMK_L_w at -25;
+ pos @MMK_L_w less -15;
+ pos @MMK_L_w degree -15;
+ pos @MMK_L_w hyphen -20;
+ pos @MMK_L_w emdash -20;
+ pos @MMK_L_w quotedblbase -80;
+ pos @MMK_L_w periodcentered -30;
+ pos @MMK_L_w minus -15;
+ pos @MMK_L_w question -145;
+ pos @MMK_L_w parenleft -25;
+ pos @MMK_L_w euro -90;
+ pos @MMK_L_w quoteright -50;
+ pos @MMK_L_w yen -25;
+ pos @MMK_L_w numbersign -100;
+ pos @MMK_L_w underscore -355;
+ pos @MMK_L_w plus -15;
+ pos @MMK_L_w braceright -65;
+ pos @MMK_L_w guilsinglright -30;
+ pos @MMK_L_w guillemetright -30;
+ pos @MMK_L_w guillemetleft -30;
+ pos @MMK_L_w braceleft -80;
+ pos @MMK_L_w slash -65;
+ pos @MMK_L_w ampersand -40;
+ pos @MMK_L_w quotedblright -50;
+ pos @MMK_L_w sterling -55;
+ pos @MMK_L_w quotedbl -10;
+ pos @MMK_L_w dollar -30;
+ pos @MMK_L_w comma -80;
+ pos @MMK_L_w semicolon -10;
+ pos @MMK_L_w cent -30;
+ pos @MMK_L_w parenright -115;
+ pos @MMK_L_w bullet -25;
+ pos @MMK_L_w quotesinglbase -80;
+ pos @MMK_L_w questiondown -65;
+ pos @MMK_L_w quotesingle -10;
+ pos @MMK_L_w multiply -55;
+ pos @MMK_L_w asciitilde -55;
+ pos @MMK_L_w @MMK_R_S -25;
+ pos @MMK_L_w @MMK_R_o -30;
+ pos @MMK_L_w @MMK_R_dcaron -30;
+ pos @MMK_L_w @MMK_R_eth -30;
+ pos @MMK_L_w @MMK_R_dcroat -30;
+ pos @MMK_L_w @MMK_R_oslash -30;
+ pos @MMK_L_w @MMK_R_a.alt -45;
+ pos @MMK_L_w @MMK_R_J -85;
+ pos @MMK_L_w @MMK_R_O -15;
+ pos @MMK_L_w @MMK_R_G -15;
+ pos @MMK_L_w @MMK_R_A -70;
+ pos @MMK_L_w @MMK_R_C -15;
+ pos @MMK_L_w @MMK_R_X -50;
+ pos @MMK_L_w @MMK_R_Y -45;
+ pos @MMK_L_w @MMK_R_T -135;
+ pos @MMK_L_w @MMK_R_V -40;
+ pos @MMK_L_w @MMK_R_W -35;
+ pos @MMK_L_w @MMK_R_Q -20;
+ pos @MMK_L_w @MMK_R_d -30;
+ pos @MMK_L_w @MMK_R_e -30;
+ pos @MMK_L_w @MMK_R_g -25;
+ pos @MMK_L_w @MMK_R_a -30;
+ pos @MMK_L_w @MMK_R_c -30;
+ pos @MMK_L_w @MMK_R_x -10;
+ pos @MMK_L_w @MMK_R_q -30;
+ pos @MMK_L_w @MMK_R_s -40;
+ pos @MMK_L_w @MMK_R_Oslash -15;
+ pos @MMK_L_y comma -115;
+ pos @MMK_L_y quotedblright -50;
+ pos @MMK_L_y slash -90;
+ pos @MMK_L_y divide -25;
+ pos @MMK_L_y dollar -30;
+ pos @MMK_L_y braceright -70;
+ pos @MMK_L_y degree -15;
+ pos @MMK_L_y parenleft -40;
+ pos @MMK_L_y plus -25;
+ pos @MMK_L_y multiply -60;
+ pos @MMK_L_y asciitilde -65;
+ pos @MMK_L_y quotedbl -10;
+ pos @MMK_L_y parenright -115;
+ pos @MMK_L_y euro -90;
+ pos @MMK_L_y asciicircum -35;
+ pos @MMK_L_y ellipsis -100;
+ pos @MMK_L_y quotedblbase -115;
+ pos @MMK_L_y guillemetleft -50;
+ pos @MMK_L_y hyphen -35;
+ pos @MMK_L_y questiondown -100;
+ pos @MMK_L_y less -25;
+ pos @MMK_L_y guilsinglleft -50;
+ pos @MMK_L_y periodcentered -45;
+ pos @MMK_L_y bullet -40;
+ pos @MMK_L_y ampersand -60;
+ pos @MMK_L_y braceleft -95;
+ pos @MMK_L_y guilsinglright -40;
+ pos @MMK_L_y copyright -35;
+ pos @MMK_L_y backslash -90;
+ pos @MMK_L_y underscore -115;
+ pos @MMK_L_y quoteright -50;
+ pos @MMK_L_y sterling -65;
+ pos @MMK_L_y minus -25;
+ pos @MMK_L_y yen -25;
+ pos @MMK_L_y at -35;
+ pos @MMK_L_y guillemetright -40;
+ pos @MMK_L_y numbersign -130;
+ pos @MMK_L_y semicolon -10;
+ pos @MMK_L_y question -145;
+ pos @MMK_L_y cent -40;
+ pos @MMK_L_y endash -35;
+ pos @MMK_L_y emdash -35;
+ pos @MMK_L_y quotesingle -10;
+ pos @MMK_L_y quotesinglbase -115;
+ pos @MMK_L_y @MMK_R_oslash -45;
+ pos @MMK_L_y @MMK_R_Oslash -25;
+ pos @MMK_L_y @MMK_R_eth -45;
+ pos @MMK_L_y @MMK_R_dcaron -45;
+ pos @MMK_L_y @MMK_R_G -25;
+ pos @MMK_L_y @MMK_R_J -125;
+ pos @MMK_L_y @MMK_R_W -35;
+ pos @MMK_L_y @MMK_R_X -50;
+ pos @MMK_L_y @MMK_R_dcroat -45;
+ pos @MMK_L_y @MMK_R_a.alt -70;
+ pos @MMK_L_y @MMK_R_c -45;
+ pos @MMK_L_y @MMK_R_a -45;
+ pos @MMK_L_y @MMK_R_g -40;
+ pos @MMK_L_y @MMK_R_d -45;
+ pos @MMK_L_y @MMK_R_e -45;
+ pos @MMK_L_y @MMK_R_o -45;
+ pos @MMK_L_y @MMK_R_s -50;
+ pos @MMK_L_y @MMK_R_q -45;
+ pos @MMK_L_y @MMK_R_x -10;
+ pos @MMK_L_y @MMK_R_C -20;
+ pos @MMK_L_y @MMK_R_A -110;
+ pos @MMK_L_y @MMK_R_O -25;
+ pos @MMK_L_y @MMK_R_S -25;
+ pos @MMK_L_y @MMK_R_Q -25;
+ pos @MMK_L_y @MMK_R_V -45;
+ pos @MMK_L_y @MMK_R_T -135;
+ pos @MMK_L_y @MMK_R_Y -45;
+ pos @MMK_L_r comma -115;
+ pos @MMK_L_r question -60;
+ pos @MMK_L_r backslash -50;
+ pos @MMK_L_r guilsinglleft -145;
+ pos @MMK_L_r bullet -50;
+ pos @MMK_L_r multiply -45;
+ pos @MMK_L_r less -75;
+ pos @MMK_L_r guillemetleft -145;
+ pos @MMK_L_r parenleft -20;
+ pos @MMK_L_r sterling -80;
+ pos @MMK_L_r asciitilde -70;
+ pos @MMK_L_r cent -30;
+ pos @MMK_L_r numbersign -125;
+ pos @MMK_L_r questiondown -175;
+ pos @MMK_L_r underscore -175;
+ pos @MMK_L_r quotedblright -10;
+ pos @MMK_L_r plus -120;
+ pos @MMK_L_r emdash -160;
+ pos @MMK_L_r asciicircum -15;
+ pos @MMK_L_r braceright -65;
+ pos @MMK_L_r slash -175;
+ pos @MMK_L_r ampersand -90;
+ pos @MMK_L_r dollar -30;
+ pos @MMK_L_r quotedblbase -175;
+ pos @MMK_L_r braceleft -110;
+ pos @MMK_L_r euro -90;
+ pos @MMK_L_r endash -160;
+ pos @MMK_L_r quoteright -10;
+ pos @MMK_L_r hyphen -160;
+ pos @MMK_L_r quotesinglbase -115;
+ pos @MMK_L_r at -15;
+ pos @MMK_L_r divide -120;
+ pos @MMK_L_r guilsinglright -25;
+ pos @MMK_L_r guillemetright -25;
+ pos @MMK_L_r ellipsis -175;
+ pos @MMK_L_r copyright -20;
+ pos @MMK_L_r periodcentered -100;
+ pos @MMK_L_r parenright -60;
+ pos @MMK_L_r yen -15;
+ pos @MMK_L_r semicolon -10;
+ pos @MMK_L_r minus -120;
+ pos @MMK_L_r @MMK_R_oslash -40;
+ pos @MMK_L_r @MMK_R_eth -50;
+ pos @MMK_L_r @MMK_R_e -40;
+ pos @MMK_L_r @MMK_R_a -40;
+ pos @MMK_L_r @MMK_R_c -40;
+ pos @MMK_L_r @MMK_R_d -40;
+ pos @MMK_L_r @MMK_R_g -30;
+ pos @MMK_L_r @MMK_R_o -40;
+ pos @MMK_L_r @MMK_R_q -40;
+ pos @MMK_L_r @MMK_R_s -30;
+ pos @MMK_L_r @MMK_R_x -10;
+ pos @MMK_L_r @MMK_R_A -105;
+ pos @MMK_L_r @MMK_R_J -175;
+ pos @MMK_L_r @MMK_R_S -25;
+ pos @MMK_L_r @MMK_R_W -20;
+ pos @MMK_L_r @MMK_R_V -25;
+ pos @MMK_L_r @MMK_R_Y -25;
+ pos @MMK_L_r @MMK_R_X -30;
+ pos @MMK_L_r @MMK_R_a.alt -70;
+ pos @MMK_L_r @MMK_R_dcaron -40;
+ pos @MMK_L_r @MMK_R_dcroat -40;
+ pos @MMK_L_m quoteleft -65;
+ pos @MMK_L_m sterling -30;
+ pos @MMK_L_m registered -10;
+ pos @MMK_L_m underscore -355;
+ pos @MMK_L_m braceright -55;
+ pos @MMK_L_m paragraph -30;
+ pos @MMK_L_m numbersign -50;
+ pos @MMK_L_m quotedblright -110;
+ pos @MMK_L_m percent -40;
+ pos @MMK_L_m comma -15;
+ pos @MMK_L_m quotedblleft -65;
+ pos @MMK_L_m braceleft -60;
+ pos @MMK_L_m quotedblbase -15;
+ pos @MMK_L_m dollar -45;
+ pos @MMK_L_m parenright -85;
+ pos @MMK_L_m degree -75;
+ pos @MMK_L_m euro -90;
+ pos @MMK_L_m asciicircum -30;
+ pos @MMK_L_m quotedbl -50;
+ pos @MMK_L_m quotesinglbase -15;
+ pos @MMK_L_m trademark -65;
+ pos @MMK_L_m quotesingle -50;
+ pos @MMK_L_m semicolon -10;
+ pos @MMK_L_m quoteright -110;
+ pos @MMK_L_m multiply -40;
+ pos @MMK_L_m backslash -140;
+ pos @MMK_L_m question -175;
+ pos @MMK_L_m asterisk -40;
+ pos @MMK_L_m yen -50;
+ pos @MMK_L_m perthousand -40;
+ pos @MMK_L_m asciitilde -25;
+ pos @MMK_L_m @MMK_R_tcaron -20;
+ pos @MMK_L_m @MMK_R_w -25;
+ pos @MMK_L_m @MMK_R_J -25;
+ pos @MMK_L_m @MMK_R_v -25;
+ pos @MMK_L_m @MMK_R_t -20;
+ pos @MMK_L_m @MMK_R_s -20;
+ pos @MMK_L_m @MMK_R_y -25;
+ pos @MMK_L_m @MMK_R_f -20;
+ pos @MMK_L_m @MMK_R_V -80;
+ pos @MMK_L_m @MMK_R_W -65;
+ pos @MMK_L_m @MMK_R_T -135;
+ pos @MMK_L_m @MMK_R_S -35;
+ pos @MMK_L_m @MMK_R_Y -80;
+ pos @MMK_L_b parenright -175;
+ pos @MMK_L_b yen -55;
+ pos @MMK_L_b quotedblleft -105;
+ pos @MMK_L_b quotedblbase -70;
+ pos @MMK_L_b guilsinglright -45;
+ pos @MMK_L_b braceleft -70;
+ pos @MMK_L_b quotesinglbase -70;
+ pos @MMK_L_b asciicircum -60;
+ pos @MMK_L_b questiondown -50;
+ pos @MMK_L_b quoteleft -105;
+ pos @MMK_L_b semicolon -65;
+ pos @MMK_L_b trademark -110;
+ pos @MMK_L_b slash -70;
+ pos @MMK_L_b euro -90;
+ pos @MMK_L_b colon -55;
+ pos @MMK_L_b dollar -100;
+ pos @MMK_L_b quoteright -115;
+ pos @MMK_L_b perthousand -70;
+ pos @MMK_L_b question -175;
+ pos @MMK_L_b ellipsis -55;
+ pos @MMK_L_b underscore -150;
+ pos @MMK_L_b backslash -170;
+ pos @MMK_L_b paragraph -60;
+ pos @MMK_L_b asterisk -75;
+ pos @MMK_L_b braceright -60;
+ pos @MMK_L_b comma -70;
+ pos @MMK_L_b degree -115;
+ pos @MMK_L_b quotedbl -85;
+ pos @MMK_L_b registered -30;
+ pos @MMK_L_b quotedblright -165;
+ pos @MMK_L_b numbersign -70;
+ pos @MMK_L_b multiply -40;
+ pos @MMK_L_b quotesingle -85;
+ pos @MMK_L_b guillemetright -45;
+ pos @MMK_L_b asciitilde -35;
+ pos @MMK_L_b sterling -30;
+ pos @MMK_L_b percent -70;
+ pos @MMK_L_b @MMK_R_Oslash -10;
+ pos @MMK_L_b @MMK_R_tcaron -50;
+ pos @MMK_L_b @MMK_R_Q -10;
+ pos @MMK_L_b @MMK_R_S -95;
+ pos @MMK_L_b @MMK_R_T -135;
+ pos @MMK_L_b @MMK_R_W -80;
+ pos @MMK_L_b @MMK_R_V -95;
+ pos @MMK_L_b @MMK_R_Y -100;
+ pos @MMK_L_b @MMK_R_X -55;
+ pos @MMK_L_b @MMK_R_A -50;
+ pos @MMK_L_b @MMK_R_C -10;
+ pos @MMK_L_b @MMK_R_G -10;
+ pos @MMK_L_b @MMK_R_J -95;
+ pos @MMK_L_b @MMK_R_O -10;
+ pos @MMK_L_b @MMK_R_s -55;
+ pos @MMK_L_b @MMK_R_t -50;
+ pos @MMK_L_b @MMK_R_w -35;
+ pos @MMK_L_b @MMK_R_v -35;
+ pos @MMK_L_b @MMK_R_y -35;
+ pos @MMK_L_b @MMK_R_x -55;
+ pos @MMK_L_b @MMK_R_f -50;
+ pos @MMK_L_germandbls percent -20;
+ pos @MMK_L_germandbls quotesingle -25;
+ pos @MMK_L_germandbls euro -95;
+ pos @MMK_L_germandbls parenright -75;
+ pos @MMK_L_germandbls sterling -40;
+ pos @MMK_L_germandbls copyright -10;
+ pos @MMK_L_germandbls quoteleft -20;
+ pos @MMK_L_germandbls backslash -85;
+ pos @MMK_L_germandbls slash -50;
+ pos @MMK_L_germandbls dollar -50;
+ pos @MMK_L_germandbls colon -20;
+ pos @MMK_L_germandbls registered -20;
+ pos @MMK_L_germandbls guilsinglright -20;
+ pos @MMK_L_germandbls quotedblbase -50;
+ pos @MMK_L_germandbls braceright -60;
+ pos @MMK_L_germandbls comma -50;
+ pos @MMK_L_germandbls semicolon -25;
+ pos @MMK_L_germandbls braceleft -75;
+ pos @MMK_L_germandbls guillemetright -20;
+ pos @MMK_L_germandbls guillemetleft -10;
+ pos @MMK_L_germandbls quotedbl -25;
+ pos @MMK_L_germandbls asciicircum -50;
+ pos @MMK_L_germandbls less -40;
+ pos @MMK_L_germandbls trademark -20;
+ pos @MMK_L_germandbls ellipsis -35;
+ pos @MMK_L_germandbls underscore -125;
+ pos @MMK_L_germandbls quotesinglbase -50;
+ pos @MMK_L_germandbls questiondown -30;
+ pos @MMK_L_germandbls quotedblleft -20;
+ pos @MMK_L_germandbls quotedblright -30;
+ pos @MMK_L_germandbls paragraph -20;
+ pos @MMK_L_germandbls divide -15;
+ pos @MMK_L_germandbls multiply -45;
+ pos @MMK_L_germandbls question -70;
+ pos @MMK_L_germandbls plus -15;
+ pos @MMK_L_germandbls at -10;
+ pos @MMK_L_germandbls bullet -25;
+ pos @MMK_L_germandbls guilsinglleft -10;
+ pos @MMK_L_germandbls periodcentered -20;
+ pos @MMK_L_germandbls asciitilde -75;
+ pos @MMK_L_germandbls perthousand -20;
+ pos @MMK_L_germandbls yen -40;
+ pos @MMK_L_germandbls minus -15;
+ pos @MMK_L_germandbls cent -10;
+ pos @MMK_L_germandbls quoteright -30;
+ pos @MMK_L_germandbls degree -25;
+ pos @MMK_L_germandbls asterisk -20;
+ pos @MMK_L_germandbls numbersign -55;
+ pos @MMK_L_germandbls @MMK_R_J -70;
+ pos @MMK_L_germandbls @MMK_R_O -25;
+ pos @MMK_L_germandbls @MMK_R_Y -55;
+ pos @MMK_L_germandbls @MMK_R_X -40;
+ pos @MMK_L_germandbls @MMK_R_S -45;
+ pos @MMK_L_germandbls @MMK_R_Q -25;
+ pos @MMK_L_germandbls @MMK_R_W -50;
+ pos @MMK_L_germandbls @MMK_R_U -10;
+ pos @MMK_L_germandbls @MMK_R_T -25;
+ pos @MMK_L_germandbls @MMK_R_o -10;
+ pos @MMK_L_germandbls @MMK_R_g -15;
+ pos @MMK_L_germandbls @MMK_R_f -20;
+ pos @MMK_L_germandbls @MMK_R_e -10;
+ pos @MMK_L_germandbls @MMK_R_y -20;
+ pos @MMK_L_germandbls @MMK_R_x -30;
+ pos @MMK_L_germandbls @MMK_R_s -60;
+ pos @MMK_L_germandbls @MMK_R_w -20;
+ pos @MMK_L_germandbls @MMK_R_v -20;
+ pos @MMK_L_germandbls @MMK_R_Oslash -25;
+ pos @MMK_L_germandbls @MMK_R_oslash -10;
+ pos @MMK_L_germandbls @MMK_R_tcaron -20;
+ pos @MMK_L_germandbls @MMK_R_C -30;
+ pos @MMK_L_germandbls @MMK_R_G -25;
+ pos @MMK_L_germandbls @MMK_R_A -35;
+ pos @MMK_L_germandbls @MMK_R_V -55;
+ pos @MMK_L_germandbls @MMK_R_t -20;
+ pos @MMK_L_lslash semicolon -10;
+ pos @MMK_L_lslash braceright -55;
+ pos @MMK_L_lslash quotesinglbase -15;
+ pos @MMK_L_lslash underscore -140;
+ pos @MMK_L_lslash dollar -30;
+ pos @MMK_L_lslash quotedblbase -15;
+ pos @MMK_L_lslash numbersign -50;
+ pos @MMK_L_lslash braceleft -60;
+ pos @MMK_L_lslash quoteright -10;
+ pos @MMK_L_lslash question -15;
+ pos @MMK_L_lslash parenright -25;
+ pos @MMK_L_lslash sterling -30;
+ pos @MMK_L_lslash multiply -40;
+ pos @MMK_L_lslash euro -90;
+ pos @MMK_L_lslash backslash -10;
+ pos @MMK_L_lslash asciicircum -15;
+ pos @MMK_L_lslash asciitilde -30;
+ pos @MMK_L_lslash quotedblright -10;
+ pos @MMK_L_lslash comma -15;
+ pos @MMK_L_lslash @MMK_R_S -25;
+ pos @MMK_L_lslash @MMK_R_J -25;
+ pos @MMK_L_lslash @MMK_R_s -20;
+ pos @MMK_L_dcaron quoteleft 35;
+ pos @MMK_L_dcaron parenright 25;
+ pos @MMK_L_dcaron quotedblright 35;
+ pos @MMK_L_dcaron bracketleft 50;
+ pos @MMK_L_dcaron emdash -15;
+ pos @MMK_L_dcaron minus -15;
+ pos @MMK_L_dcaron greater 50;
+ pos @MMK_L_dcaron divide -15;
+ pos @MMK_L_dcaron quotesingle 50;
+ pos @MMK_L_dcaron asterisk 45;
+ pos @MMK_L_dcaron ampersand -15;
+ pos @MMK_L_dcaron quotedbl 50;
+ pos @MMK_L_dcaron semicolon -10;
+ pos @MMK_L_dcaron question 35;
+ pos @MMK_L_dcaron periodcentered -15;
+ pos @MMK_L_dcaron bar 50;
+ pos @MMK_L_dcaron underscore -255;
+ pos @MMK_L_dcaron backslash 30;
+ pos @MMK_L_dcaron quotesinglbase -30;
+ pos @MMK_L_dcaron perthousand 35;
+ pos @MMK_L_dcaron cent -15;
+ pos @MMK_L_dcaron guillemetleft -10;
+ pos @MMK_L_dcaron sterling -45;
+ pos @MMK_L_dcaron hyphen -15;
+ pos @MMK_L_dcaron bullet -15;
+ pos @MMK_L_dcaron paragraph 30;
+ pos @MMK_L_dcaron guillemetright -10;
+ pos @MMK_L_dcaron asciitilde -40;
+ pos @MMK_L_dcaron comma -30;
+ pos @MMK_L_dcaron trademark 30;
+ pos @MMK_L_dcaron endash -15;
+ pos @MMK_L_dcaron numbersign -65;
+ pos @MMK_L_dcaron copyright -15;
+ pos @MMK_L_dcaron at -15;
+ pos @MMK_L_dcaron parenleft -15;
+ pos @MMK_L_dcaron quotedblleft 35;
+ pos @MMK_L_dcaron yen 45;
+ pos @MMK_L_dcaron quoteright 35;
+ pos @MMK_L_dcaron bracketright 50;
+ pos @MMK_L_dcaron quotedblbase -30;
+ pos @MMK_L_dcaron euro -95;
+ pos @MMK_L_dcaron degree 45;
+ pos @MMK_L_dcaron braceleft -70;
+ pos @MMK_L_dcaron guilsinglright -10;
+ pos @MMK_L_dcaron slash -10;
+ pos @MMK_L_dcaron less -15;
+ pos @MMK_L_dcaron ellipsis -15;
+ pos @MMK_L_dcaron multiply -55;
+ pos @MMK_L_dcaron questiondown -15;
+ pos @MMK_L_dcaron braceright -20;
+ pos @MMK_L_dcaron guilsinglleft -10;
+ pos @MMK_L_dcaron plus -15;
+ pos @MMK_L_dcaron asciicircum -25;
+ pos @MMK_L_dcaron percent 35;
+ pos @MMK_L_dcaron @MMK_R_Oslash -15;
+ pos @MMK_L_dcaron @MMK_R_dcroat -15;
+ pos @MMK_L_dcaron @MMK_R_lslash 50;
+ pos @MMK_L_dcaron @MMK_R_Lslash 50;
+ pos @MMK_L_dcaron @MMK_R_oslash -15;
+ pos @MMK_L_dcaron @MMK_R_eth -15;
+ pos @MMK_L_dcaron @MMK_R_Thorn 50;
+ pos @MMK_L_dcaron @MMK_R_dcaron -15;
+ pos @MMK_L_dcaron @MMK_R_a.alt -15;
+ pos @MMK_L_dcaron @MMK_R_germandbls 30;
+ pos @MMK_L_dcaron @MMK_R_thorn 50;
+ pos @MMK_L_dcaron @MMK_R_Y 45;
+ pos @MMK_L_dcaron @MMK_R_X 40;
+ pos @MMK_L_dcaron @MMK_R_Z 50;
+ pos @MMK_L_dcaron @MMK_R_Q -15;
+ pos @MMK_L_dcaron @MMK_R_P 50;
+ pos @MMK_L_dcaron @MMK_R_R 50;
+ pos @MMK_L_dcaron @MMK_R_U 50;
+ pos @MMK_L_dcaron @MMK_R_T 50;
+ pos @MMK_L_dcaron @MMK_R_W 45;
+ pos @MMK_L_dcaron @MMK_R_V 45;
+ pos @MMK_L_dcaron @MMK_R_I 50;
+ pos @MMK_L_dcaron @MMK_R_H 50;
+ pos @MMK_L_dcaron @MMK_R_K 50;
+ pos @MMK_L_dcaron @MMK_R_J -40;
+ pos @MMK_L_dcaron @MMK_R_M 50;
+ pos @MMK_L_dcaron @MMK_R_L 50;
+ pos @MMK_L_dcaron @MMK_R_O -15;
+ pos @MMK_L_dcaron @MMK_R_N 50;
+ pos @MMK_L_dcaron @MMK_R_A -15;
+ pos @MMK_L_dcaron @MMK_R_C -15;
+ pos @MMK_L_dcaron @MMK_R_B 50;
+ pos @MMK_L_dcaron @MMK_R_E 50;
+ pos @MMK_L_dcaron @MMK_R_D 50;
+ pos @MMK_L_dcaron @MMK_R_G -15;
+ pos @MMK_L_dcaron @MMK_R_F 50;
+ pos @MMK_L_dcaron @MMK_R_x -15;
+ pos @MMK_L_dcaron @MMK_R_q -15;
+ pos @MMK_L_dcaron @MMK_R_s -35;
+ pos @MMK_L_dcaron @MMK_R_i 45;
+ pos @MMK_L_dcaron @MMK_R_h 50;
+ pos @MMK_L_dcaron @MMK_R_j 45;
+ pos @MMK_L_dcaron @MMK_R_l 50;
+ pos @MMK_L_dcaron @MMK_R_o -15;
+ pos @MMK_L_dcaron @MMK_R_a -15;
+ pos @MMK_L_dcaron @MMK_R_c -15;
+ pos @MMK_L_dcaron @MMK_R_b 50;
+ pos @MMK_L_dcaron @MMK_R_e -15;
+ pos @MMK_L_dcaron @MMK_R_d -15;
+ pos @MMK_L_dcaron @MMK_R_g -15;
+ pos @MMK_L_dcaron @MMK_R_Eth 50;
+ pos @MMK_L_dcaron @MMK_R_lcaron 50;
+ pos @MMK_L_q asciicircum -15;
+ pos @MMK_L_q yen -25;
+ pos @MMK_L_q slash 35;
+ pos @MMK_L_q quotedblright -50;
+ pos @MMK_L_q quotesinglbase -10;
+ pos @MMK_L_q quotesingle -10;
+ pos @MMK_L_q braceright -55;
+ pos @MMK_L_q dollar -30;
+ pos @MMK_L_q numbersign -50;
+ pos @MMK_L_q quotedblbase -10;
+ pos @MMK_L_q sterling -30;
+ pos @MMK_L_q braceleft -60;
+ pos @MMK_L_q quoteright -50;
+ pos @MMK_L_q asciitilde -30;
+ pos @MMK_L_q parenright -20;
+ pos @MMK_L_q multiply -40;
+ pos @MMK_L_q quotedbl -10;
+ pos @MMK_L_q euro -90;
+ pos @MMK_L_q backslash -85;
+ pos @MMK_L_q comma -10;
+ pos @MMK_L_q question -145;
+ pos @MMK_L_q degree -15;
+ pos @MMK_L_q @MMK_R_S -25;
+ pos @MMK_L_q @MMK_R_V -40;
+ pos @MMK_L_q @MMK_R_W -35;
+ pos @MMK_L_q @MMK_R_T -135;
+ pos @MMK_L_q @MMK_R_J -25;
+ pos @MMK_L_q @MMK_R_j 85;
+ pos @MMK_L_q @MMK_R_Y -45;
+ pos @MMK_L_q @MMK_R_s -20;
+ pos @MMK_L_eth quotesingle -75;
+ pos @MMK_L_eth quoteright -115;
+ pos @MMK_L_eth quotedblbase -70;
+ pos @MMK_L_eth quoteleft -90;
+ pos @MMK_L_eth questiondown -45;
+ pos @MMK_L_eth trademark -85;
+ pos @MMK_L_eth asterisk -65;
+ pos @MMK_L_eth asciicircum -50;
+ pos @MMK_L_eth quotedblright -120;
+ pos @MMK_L_eth paragraph -55;
+ pos @MMK_L_eth sterling -30;
+ pos @MMK_L_eth numbersign -65;
+ pos @MMK_L_eth question -170;
+ pos @MMK_L_eth comma -70;
+ pos @MMK_L_eth backslash -165;
+ pos @MMK_L_eth underscore -150;
+ pos @MMK_L_eth parenright -170;
+ pos @MMK_L_eth guilsinglright -40;
+ pos @MMK_L_eth quotedblleft -90;
+ pos @MMK_L_eth slash -65;
+ pos @MMK_L_eth quotesinglbase -70;
+ pos @MMK_L_eth percent -65;
+ pos @MMK_L_eth semicolon -60;
+ pos @MMK_L_eth braceleft -70;
+ pos @MMK_L_eth multiply -40;
+ pos @MMK_L_eth registered -30;
+ pos @MMK_L_eth guillemetright -40;
+ pos @MMK_L_eth quotedbl -75;
+ pos @MMK_L_eth euro -90;
+ pos @MMK_L_eth dollar -95;
+ pos @MMK_L_eth colon -50;
+ pos @MMK_L_eth yen -55;
+ pos @MMK_L_eth degree -100;
+ pos @MMK_L_eth perthousand -65;
+ pos @MMK_L_eth ellipsis -50;
+ pos @MMK_L_eth braceright -60;
+ pos @MMK_L_eth asciitilde -35;
+ pos @MMK_L_eth @MMK_R_f -45;
+ pos @MMK_L_eth @MMK_R_x -55;
+ pos @MMK_L_eth @MMK_R_G -10;
+ pos @MMK_L_eth @MMK_R_A -50;
+ pos @MMK_L_eth @MMK_R_C -10;
+ pos @MMK_L_eth @MMK_R_tcaron -45;
+ pos @MMK_L_eth @MMK_R_W -80;
+ pos @MMK_L_eth @MMK_R_Y -100;
+ pos @MMK_L_eth @MMK_R_Oslash -10;
+ pos @MMK_L_eth @MMK_R_t -45;
+ pos @MMK_L_eth @MMK_R_v -35;
+ pos @MMK_L_eth @MMK_R_w -35;
+ pos @MMK_L_eth @MMK_R_s -55;
+ pos @MMK_L_eth @MMK_R_y -35;
+ pos @MMK_L_eth @MMK_R_O -10;
+ pos @MMK_L_eth @MMK_R_J -90;
+ pos @MMK_L_eth @MMK_R_T -135;
+ pos @MMK_L_eth @MMK_R_V -95;
+ pos @MMK_L_eth @MMK_R_Q -10;
+ pos @MMK_L_eth @MMK_R_S -90;
+ pos @MMK_L_eth @MMK_R_X -55;
+ pos @MMK_L_thorn quotedblleft -105;
+ pos @MMK_L_thorn parenright -175;
+ pos @MMK_L_thorn quotesinglbase -70;
+ pos @MMK_L_thorn ellipsis -55;
+ pos @MMK_L_thorn sterling -30;
+ pos @MMK_L_thorn quoteright -115;
+ pos @MMK_L_thorn guilsinglright -45;
+ pos @MMK_L_thorn quoteleft -105;
+ pos @MMK_L_thorn asciitilde -35;
+ pos @MMK_L_thorn yen -55;
+ pos @MMK_L_thorn multiply -40;
+ pos @MMK_L_thorn trademark -110;
+ pos @MMK_L_thorn braceright -60;
+ pos @MMK_L_thorn colon -55;
+ pos @MMK_L_thorn semicolon -65;
+ pos @MMK_L_thorn numbersign -70;
+ pos @MMK_L_thorn quotedbl -85;
+ pos @MMK_L_thorn quotedblbase -70;
+ pos @MMK_L_thorn question -175;
+ pos @MMK_L_thorn asciicircum -60;
+ pos @MMK_L_thorn dollar -100;
+ pos @MMK_L_thorn paragraph -60;
+ pos @MMK_L_thorn backslash -170;
+ pos @MMK_L_thorn quotedblright -165;
+ pos @MMK_L_thorn underscore -150;
+ pos @MMK_L_thorn percent -70;
+ pos @MMK_L_thorn slash -70;
+ pos @MMK_L_thorn registered -30;
+ pos @MMK_L_thorn quotesingle -85;
+ pos @MMK_L_thorn guillemetright -45;
+ pos @MMK_L_thorn questiondown -50;
+ pos @MMK_L_thorn perthousand -70;
+ pos @MMK_L_thorn degree -115;
+ pos @MMK_L_thorn asterisk -75;
+ pos @MMK_L_thorn braceleft -70;
+ pos @MMK_L_thorn comma -70;
+ pos @MMK_L_thorn euro -90;
+ pos @MMK_L_thorn @MMK_R_f -50;
+ pos @MMK_L_thorn @MMK_R_A -50;
+ pos @MMK_L_thorn @MMK_R_C -10;
+ pos @MMK_L_thorn @MMK_R_O -10;
+ pos @MMK_L_thorn @MMK_R_S -95;
+ pos @MMK_L_thorn @MMK_R_s -55;
+ pos @MMK_L_thorn @MMK_R_Oslash -10;
+ pos @MMK_L_thorn @MMK_R_tcaron -50;
+ pos @MMK_L_thorn @MMK_R_G -10;
+ pos @MMK_L_thorn @MMK_R_J -95;
+ pos @MMK_L_thorn @MMK_R_Q -10;
+ pos @MMK_L_thorn @MMK_R_T -135;
+ pos @MMK_L_thorn @MMK_R_V -95;
+ pos @MMK_L_thorn @MMK_R_W -80;
+ pos @MMK_L_thorn @MMK_R_X -55;
+ pos @MMK_L_thorn @MMK_R_Y -100;
+ pos @MMK_L_thorn @MMK_R_t -50;
+ pos @MMK_L_thorn @MMK_R_v -35;
+ pos @MMK_L_thorn @MMK_R_w -35;
+ pos @MMK_L_thorn @MMK_R_x -55;
+ pos @MMK_L_thorn @MMK_R_y -35;
+ pos @MMK_L_a.alt asciitilde -30;
+ pos @MMK_L_a.alt degree -85;
+ pos @MMK_L_a.alt euro -90;
+ pos @MMK_L_a.alt quotedblbase -20;
+ pos @MMK_L_a.alt quotedblleft -75;
+ pos @MMK_L_a.alt asterisk -45;
+ pos @MMK_L_a.alt registered -15;
+ pos @MMK_L_a.alt paragraph -40;
+ pos @MMK_L_a.alt comma -20;
+ pos @MMK_L_a.alt braceleft -65;
+ pos @MMK_L_a.alt underscore -155;
+ pos @MMK_L_a.alt quotedblright -125;
+ pos @MMK_L_a.alt asciicircum -35;
+ pos @MMK_L_a.alt quotesingle -55;
+ pos @MMK_L_a.alt braceright -55;
+ pos @MMK_L_a.alt quotesinglbase -20;
+ pos @MMK_L_a.alt numbersign -50;
+ pos @MMK_L_a.alt quoteright -115;
+ pos @MMK_L_a.alt quoteleft -75;
+ pos @MMK_L_a.alt trademark -75;
+ pos @MMK_L_a.alt quotedbl -55;
+ pos @MMK_L_a.alt percent -45;
+ pos @MMK_L_a.alt semicolon -10;
+ pos @MMK_L_a.alt backslash -145;
+ pos @MMK_L_a.alt multiply -40;
+ pos @MMK_L_a.alt question -175;
+ pos @MMK_L_a.alt perthousand -45;
+ pos @MMK_L_a.alt parenright -85;
+ pos @MMK_L_a.alt dollar -45;
+ pos @MMK_L_a.alt yen -55;
+ pos @MMK_L_a.alt sterling -30;
+ pos @MMK_L_a.alt @MMK_R_tcaron -30;
+ pos @MMK_L_a.alt @MMK_R_Y -85;
+ pos @MMK_L_a.alt @MMK_R_S -35;
+ pos @MMK_L_a.alt @MMK_R_T -135;
+ pos @MMK_L_a.alt @MMK_R_W -70;
+ pos @MMK_L_a.alt @MMK_R_V -80;
+ pos @MMK_L_a.alt @MMK_R_J -25;
+ pos @MMK_L_a.alt @MMK_R_y -25;
+ pos @MMK_L_a.alt @MMK_R_s -20;
+ pos @MMK_L_a.alt @MMK_R_t -30;
+ pos @MMK_L_a.alt @MMK_R_w -25;
+ pos @MMK_L_a.alt @MMK_R_v -30;
+ pos @MMK_L_a.alt @MMK_R_f -30;
+ pos @MMK_L_p quotedbl -85;
+ pos @MMK_L_p numbersign -70;
+ pos @MMK_L_p semicolon -65;
+ pos @MMK_L_p ellipsis -55;
+ pos @MMK_L_p guillemetright -45;
+ pos @MMK_L_p guilsinglright -45;
+ pos @MMK_L_p backslash -170;
+ pos @MMK_L_p perthousand -70;
+ pos @MMK_L_p dollar -100;
+ pos @MMK_L_p braceright -60;
+ pos @MMK_L_p asterisk -75;
+ pos @MMK_L_p trademark -110;
+ pos @MMK_L_p questiondown -50;
+ pos @MMK_L_p yen -55;
+ pos @MMK_L_p paragraph -60;
+ pos @MMK_L_p registered -30;
+ pos @MMK_L_p percent -70;
+ pos @MMK_L_p quoteleft -105;
+ pos @MMK_L_p slash -70;
+ pos @MMK_L_p quotedblleft -105;
+ pos @MMK_L_p asciitilde -35;
+ pos @MMK_L_p colon -55;
+ pos @MMK_L_p parenright -175;
+ pos @MMK_L_p sterling -30;
+ pos @MMK_L_p comma -70;
+ pos @MMK_L_p quotedblright -165;
+ pos @MMK_L_p degree -115;
+ pos @MMK_L_p quotesingle -85;
+ pos @MMK_L_p underscore -150;
+ pos @MMK_L_p asciicircum -60;
+ pos @MMK_L_p multiply -40;
+ pos @MMK_L_p question -175;
+ pos @MMK_L_p quotedblbase -70;
+ pos @MMK_L_p braceleft -70;
+ pos @MMK_L_p quotesinglbase -70;
+ pos @MMK_L_p quoteright -115;
+ pos @MMK_L_p euro -90;
+ pos @MMK_L_p @MMK_R_S -95;
+ pos @MMK_L_p @MMK_R_W -80;
+ pos @MMK_L_p @MMK_R_V -95;
+ pos @MMK_L_p @MMK_R_T -135;
+ pos @MMK_L_p @MMK_R_Y -100;
+ pos @MMK_L_p @MMK_R_X -55;
+ pos @MMK_L_p @MMK_R_C -10;
+ pos @MMK_L_p @MMK_R_A -50;
+ pos @MMK_L_p @MMK_R_G -10;
+ pos @MMK_L_p @MMK_R_J -95;
+ pos @MMK_L_p @MMK_R_O -10;
+ pos @MMK_L_p @MMK_R_s -55;
+ pos @MMK_L_p @MMK_R_w -35;
+ pos @MMK_L_p @MMK_R_v -35;
+ pos @MMK_L_p @MMK_R_t -50;
+ pos @MMK_L_p @MMK_R_y -35;
+ pos @MMK_L_p @MMK_R_x -55;
+ pos @MMK_L_p @MMK_R_f -50;
+ pos @MMK_L_p @MMK_R_tcaron -50;
+ pos @MMK_L_p @MMK_R_Q -10;
+ pos @MMK_L_p @MMK_R_Oslash -10;
+ pos @MMK_L_c question -175;
+ pos @MMK_L_c perthousand -10;
+ pos @MMK_L_c multiply -40;
+ pos @MMK_L_c percent -10;
+ pos @MMK_L_c sterling -30;
+ pos @MMK_L_c braceright -55;
+ pos @MMK_L_c quotedblright -95;
+ pos @MMK_L_c dollar -40;
+ pos @MMK_L_c braceleft -60;
+ pos @MMK_L_c yen -35;
+ pos @MMK_L_c comma -15;
+ pos @MMK_L_c quotedblleft -30;
+ pos @MMK_L_c degree -40;
+ pos @MMK_L_c semicolon -10;
+ pos @MMK_L_c quoteright -95;
+ pos @MMK_L_c quotedblbase -15;
+ pos @MMK_L_c quotesinglbase -15;
+ pos @MMK_L_c underscore -85;
+ pos @MMK_L_c quoteleft -30;
+ pos @MMK_L_c asciicircum -15;
+ pos @MMK_L_c parenright -105;
+ pos @MMK_L_c euro -90;
+ pos @MMK_L_c numbersign -50;
+ pos @MMK_L_c trademark -35;
+ pos @MMK_L_c quotesingle -15;
+ pos @MMK_L_c asciitilde -30;
+ pos @MMK_L_c backslash -110;
+ pos @MMK_L_c slash -10;
+ pos @MMK_L_c quotedbl -15;
+ pos @MMK_L_c @MMK_R_X -10;
+ pos @MMK_L_c @MMK_R_Y -55;
+ pos @MMK_L_c @MMK_R_S -35;
+ pos @MMK_L_c @MMK_R_T -135;
+ pos @MMK_L_c @MMK_R_V -55;
+ pos @MMK_L_c @MMK_R_W -45;
+ pos @MMK_L_c @MMK_R_J -25;
+ pos @MMK_L_c @MMK_R_A -10;
+ pos @MMK_L_c @MMK_R_x -10;
+ pos @MMK_L_c @MMK_R_y -10;
+ pos @MMK_L_c @MMK_R_s -25;
+ pos @MMK_L_c @MMK_R_v -10;
+ pos @MMK_L_c @MMK_R_w -10;
+ pos @MMK_L_v braceright -70;
+ pos @MMK_L_v quotesingle -10;
+ pos @MMK_L_v asciicircum -25;
+ pos @MMK_L_v questiondown -70;
+ pos @MMK_L_v yen -25;
+ pos @MMK_L_v ellipsis -70;
+ pos @MMK_L_v quoteright -50;
+ pos @MMK_L_v dollar -30;
+ pos @MMK_L_v quotesinglbase -85;
+ pos @MMK_L_v parenright -115;
+ pos @MMK_L_v quotedbl -10;
+ pos @MMK_L_v minus -20;
+ pos @MMK_L_v endash -25;
+ pos @MMK_L_v periodcentered -35;
+ pos @MMK_L_v plus -20;
+ pos @MMK_L_v less -20;
+ pos @MMK_L_v guilsinglleft -30;
+ pos @MMK_L_v comma -85;
+ pos @MMK_L_v hyphen -25;
+ pos @MMK_L_v semicolon -10;
+ pos @MMK_L_v asciitilde -55;
+ pos @MMK_L_v emdash -25;
+ pos @MMK_L_v quotedblbase -85;
+ pos @MMK_L_v sterling -55;
+ pos @MMK_L_v guilsinglright -35;
+ pos @MMK_L_v parenleft -30;
+ pos @MMK_L_v underscore -290;
+ pos @MMK_L_v numbersign -105;
+ pos @MMK_L_v backslash -90;
+ pos @MMK_L_v braceleft -85;
+ pos @MMK_L_v copyright -25;
+ pos @MMK_L_v bullet -30;
+ pos @MMK_L_v cent -30;
+ pos @MMK_L_v divide -20;
+ pos @MMK_L_v at -25;
+ pos @MMK_L_v multiply -55;
+ pos @MMK_L_v question -145;
+ pos @MMK_L_v degree -15;
+ pos @MMK_L_v guillemetright -35;
+ pos @MMK_L_v guillemetleft -30;
+ pos @MMK_L_v quotedblright -50;
+ pos @MMK_L_v slash -70;
+ pos @MMK_L_v ampersand -45;
+ pos @MMK_L_v euro -90;
+ pos @MMK_L_v @MMK_R_Oslash -20;
+ pos @MMK_L_v @MMK_R_oslash -30;
+ pos @MMK_L_v @MMK_R_a.alt -50;
+ pos @MMK_L_v @MMK_R_dcaron -35;
+ pos @MMK_L_v @MMK_R_G -20;
+ pos @MMK_L_v @MMK_R_A -75;
+ pos @MMK_L_v @MMK_R_C -15;
+ pos @MMK_L_v @MMK_R_O -20;
+ pos @MMK_L_v @MMK_R_W -35;
+ pos @MMK_L_v @MMK_R_Q -20;
+ pos @MMK_L_v @MMK_R_Y -45;
+ pos @MMK_L_v @MMK_R_e -30;
+ pos @MMK_L_v @MMK_R_d -35;
+ pos @MMK_L_v @MMK_R_g -30;
+ pos @MMK_L_v @MMK_R_a -35;
+ pos @MMK_L_v @MMK_R_c -30;
+ pos @MMK_L_v @MMK_R_o -30;
+ pos @MMK_L_v @MMK_R_q -35;
+ pos @MMK_L_v @MMK_R_s -45;
+ pos @MMK_L_v @MMK_R_x -10;
+ pos @MMK_L_v @MMK_R_X -50;
+ pos @MMK_L_v @MMK_R_J -95;
+ pos @MMK_L_v @MMK_R_T -135;
+ pos @MMK_L_v @MMK_R_V -45;
+ pos @MMK_L_v @MMK_R_S -25;
+ pos @MMK_L_v @MMK_R_eth -35;
+ pos @MMK_L_v @MMK_R_dcroat -35;
+ pos @MMK_L_s parenleft -20;
+ pos @MMK_L_s asciicircum -85;
+ pos @MMK_L_s guilsinglleft -60;
+ pos @MMK_L_s guillemetleft -60;
+ pos @MMK_L_s asciitilde -155;
+ pos @MMK_L_s cent -25;
+ pos @MMK_L_s paragraph -25;
+ pos @MMK_L_s bullet -60;
+ pos @MMK_L_s at -25;
+ pos @MMK_L_s degree -45;
+ pos @MMK_L_s euro -115;
+ pos @MMK_L_s sterling -45;
+ pos @MMK_L_s quotedbl -35;
+ pos @MMK_L_s backslash -115;
+ pos @MMK_L_s emdash -15;
+ pos @MMK_L_s divide -75;
+ pos @MMK_L_s multiply -80;
+ pos @MMK_L_s periodcentered -55;
+ pos @MMK_L_s underscore -90;
+ pos @MMK_L_s quotesingle -35;
+ pos @MMK_L_s minus -75;
+ pos @MMK_L_s percent -30;
+ pos @MMK_L_s endash -15;
+ pos @MMK_L_s parenright -130;
+ pos @MMK_L_s numbersign -50;
+ pos @MMK_L_s braceleft -90;
+ pos @MMK_L_s yen -55;
+ pos @MMK_L_s asterisk -25;
+ pos @MMK_L_s quotesinglbase -30;
+ pos @MMK_L_s ellipsis -15;
+ pos @MMK_L_s braceright -55;
+ pos @MMK_L_s question -175;
+ pos @MMK_L_s copyright -25;
+ pos @MMK_L_s hyphen -15;
+ pos @MMK_L_s plus -75;
+ pos @MMK_L_s quotedblbase -30;
+ pos @MMK_L_s perthousand -30;
+ pos @MMK_L_s slash -30;
+ pos @MMK_L_s colon -15;
+ pos @MMK_L_s trademark -30;
+ pos @MMK_L_s registered -30;
+ pos @MMK_L_s questiondown -10;
+ pos @MMK_L_s semicolon -20;
+ pos @MMK_L_s dollar -60;
+ pos @MMK_L_s quotedblright -80;
+ pos @MMK_L_s quoteright -80;
+ pos @MMK_L_s comma -30;
+ pos @MMK_L_s quotedblleft -35;
+ pos @MMK_L_s ampersand -10;
+ pos @MMK_L_s less -130;
+ pos @MMK_L_s quoteleft -35;
+ pos @MMK_L_s @MMK_R_tcaron -25;
+ pos @MMK_L_s @MMK_R_oslash -25;
+ pos @MMK_L_s @MMK_R_eth -20;
+ pos @MMK_L_s @MMK_R_dcroat -25;
+ pos @MMK_L_s @MMK_R_y -30;
+ pos @MMK_L_s @MMK_R_o -25;
+ pos @MMK_L_s @MMK_R_a -25;
+ pos @MMK_L_s @MMK_R_c -25;
+ pos @MMK_L_s @MMK_R_d -25;
+ pos @MMK_L_s @MMK_R_e -25;
+ pos @MMK_L_s @MMK_R_f -25;
+ pos @MMK_L_s @MMK_R_g -35;
+ pos @MMK_L_s @MMK_R_x -25;
+ pos @MMK_L_s @MMK_R_q -25;
+ pos @MMK_L_s @MMK_R_s -45;
+ pos @MMK_L_s @MMK_R_t -25;
+ pos @MMK_L_s @MMK_R_v -30;
+ pos @MMK_L_s @MMK_R_w -30;
+ pos @MMK_L_s @MMK_R_J -40;
+ pos @MMK_L_s @MMK_R_O -50;
+ pos @MMK_L_s @MMK_R_A -25;
+ pos @MMK_L_s @MMK_R_C -45;
+ pos @MMK_L_s @MMK_R_G -50;
+ pos @MMK_L_s @MMK_R_X -25;
+ pos @MMK_L_s @MMK_R_Y -75;
+ pos @MMK_L_s @MMK_R_Q -50;
+ pos @MMK_L_s @MMK_R_S -50;
+ pos @MMK_L_s @MMK_R_T -135;
+ pos @MMK_L_s @MMK_R_U -25;
+ pos @MMK_L_s @MMK_R_V -70;
+ pos @MMK_L_s @MMK_R_W -65;
+ pos @MMK_L_s @MMK_R_Oslash -50;
+ pos @MMK_L_s @MMK_R_dcaron -25;
+ pos @MMK_L_o quoteright -115;
+ pos @MMK_L_o quotesinglbase -70;
+ pos @MMK_L_o quotedbl -100;
+ pos @MMK_L_o question -175;
+ pos @MMK_L_o questiondown -50;
+ pos @MMK_L_o guilsinglright -45;
+ pos @MMK_L_o trademark -125;
+ pos @MMK_L_o quotesingle -100;
+ pos @MMK_L_o asciitilde -35;
+ pos @MMK_L_o quotedblbase -70;
+ pos @MMK_L_o braceright -60;
+ pos @MMK_L_o numbersign -65;
+ pos @MMK_L_o underscore -165;
+ pos @MMK_L_o asterisk -85;
+ pos @MMK_L_o perthousand -75;
+ pos @MMK_L_o percent -75;
+ pos @MMK_L_o euro -90;
+ pos @MMK_L_o quoteleft -115;
+ pos @MMK_L_o slash -70;
+ pos @MMK_L_o backslash -175;
+ pos @MMK_L_o semicolon -60;
+ pos @MMK_L_o ellipsis -55;
+ pos @MMK_L_o braceleft -70;
+ pos @MMK_L_o degree -125;
+ pos @MMK_L_o registered -35;
+ pos @MMK_L_o yen -55;
+ pos @MMK_L_o multiply -40;
+ pos @MMK_L_o quotedblleft -120;
+ pos @MMK_L_o comma -70;
+ pos @MMK_L_o paragraph -65;
+ pos @MMK_L_o guillemetright -45;
+ pos @MMK_L_o asciicircum -65;
+ pos @MMK_L_o colon -55;
+ pos @MMK_L_o parenright -170;
+ pos @MMK_L_o quotedblright -190;
+ pos @MMK_L_o dollar -110;
+ pos @MMK_L_o sterling -30;
+ pos @MMK_L_o @MMK_R_G -10;
+ pos @MMK_L_o @MMK_R_A -50;
+ pos @MMK_L_o @MMK_R_J -95;
+ pos @MMK_L_o @MMK_R_T -135;
+ pos @MMK_L_o @MMK_R_V -95;
+ pos @MMK_L_o @MMK_R_Q -10;
+ pos @MMK_L_o @MMK_R_S -100;
+ pos @MMK_L_o @MMK_R_X -55;
+ pos @MMK_L_o @MMK_R_Y -100;
+ pos @MMK_L_o @MMK_R_f -65;
+ pos @MMK_L_o @MMK_R_t -65;
+ pos @MMK_L_o @MMK_R_v -40;
+ pos @MMK_L_o @MMK_R_x -55;
+ pos @MMK_L_o @MMK_R_Oslash -10;
+ pos @MMK_L_o @MMK_R_O -10;
+ pos @MMK_L_o @MMK_R_W -80;
+ pos @MMK_L_o @MMK_R_tcaron -65;
+ pos @MMK_L_o @MMK_R_C -10;
+ pos @MMK_L_o @MMK_R_w -35;
+ pos @MMK_L_o @MMK_R_s -60;
+ pos @MMK_L_o @MMK_R_y -35;
+ pos @MMK_L_lcaron registered 25;
+ pos @MMK_L_lcaron quoteright 50;
+ pos @MMK_L_lcaron quotedblbase -15;
+ pos @MMK_L_lcaron braceleft -50;
+ pos @MMK_L_lcaron colon 20;
+ pos @MMK_L_lcaron quoteleft 55;
+ pos @MMK_L_lcaron perthousand 55;
+ pos @MMK_L_lcaron percent 55;
+ pos @MMK_L_lcaron greater 70;
+ pos @MMK_L_lcaron numbersign -50;
+ pos @MMK_L_lcaron comma -15;
+ pos @MMK_L_lcaron quotedbl 65;
+ pos @MMK_L_lcaron trademark 50;
+ pos @MMK_L_lcaron parenright 45;
+ pos @MMK_L_lcaron quotesinglbase -15;
+ pos @MMK_L_lcaron multiply -40;
+ pos @MMK_L_lcaron semicolon 10;
+ pos @MMK_L_lcaron quotedblleft 55;
+ pos @MMK_L_lcaron asciicircum -15;
+ pos @MMK_L_lcaron sterling -30;
+ pos @MMK_L_lcaron euro -70;
+ pos @MMK_L_lcaron yen 65;
+ pos @MMK_L_lcaron bar 70;
+ pos @MMK_L_lcaron underscore -105;
+ pos @MMK_L_lcaron backslash 50;
+ pos @MMK_L_lcaron bracketleft 70;
+ pos @MMK_L_lcaron degree 65;
+ pos @MMK_L_lcaron question 55;
+ pos @MMK_L_lcaron equal 20;
+ pos @MMK_L_lcaron asciitilde -30;
+ pos @MMK_L_lcaron quotedblright 50;
+ pos @MMK_L_lcaron asterisk 65;
+ pos @MMK_L_lcaron bracketright 70;
+ pos @MMK_L_lcaron dollar 25;
+ pos @MMK_L_lcaron paragraph 50;
+ pos @MMK_L_lcaron quotesingle 65;
+ pos @MMK_L_lcaron @MMK_R_tcaron 20;
+ pos @MMK_L_lcaron @MMK_R_X 60;
+ pos @MMK_L_lcaron @MMK_R_h 70;
+ pos @MMK_L_lcaron @MMK_R_r 20;
+ pos @MMK_L_lcaron @MMK_R_Lslash 70;
+ pos @MMK_L_lcaron @MMK_R_D 70;
+ pos @MMK_L_lcaron @MMK_R_I 70;
+ pos @MMK_L_lcaron @MMK_R_K 70;
+ pos @MMK_L_lcaron @MMK_R_J -25;
+ pos @MMK_L_lcaron @MMK_R_M 70;
+ pos @MMK_L_lcaron @MMK_R_N 70;
+ pos @MMK_L_lcaron @MMK_R_P 70;
+ pos @MMK_L_lcaron @MMK_R_R 70;
+ pos @MMK_L_lcaron @MMK_R_U 70;
+ pos @MMK_L_lcaron @MMK_R_W 60;
+ pos @MMK_L_lcaron @MMK_R_V 60;
+ pos @MMK_L_lcaron @MMK_R_Y 60;
+ pos @MMK_L_lcaron @MMK_R_Z 70;
+ pos @MMK_L_lcaron @MMK_R_b 70;
+ pos @MMK_L_lcaron @MMK_R_f 20;
+ pos @MMK_L_lcaron @MMK_R_i 65;
+ pos @MMK_L_lcaron @MMK_R_m 20;
+ pos @MMK_L_lcaron @MMK_R_n 20;
+ pos @MMK_L_lcaron @MMK_R_p 20;
+ pos @MMK_L_lcaron @MMK_R_u 20;
+ pos @MMK_L_lcaron @MMK_R_t 20;
+ pos @MMK_L_lcaron @MMK_R_w 20;
+ pos @MMK_L_lcaron @MMK_R_v 15;
+ pos @MMK_L_lcaron @MMK_R_y 20;
+ pos @MMK_L_lcaron @MMK_R_germandbls 50;
+ pos @MMK_L_lcaron @MMK_R_lcaron 70;
+ pos @MMK_L_lcaron @MMK_R_Eth 70;
+ pos @MMK_L_lcaron @MMK_R_B 70;
+ pos @MMK_L_lcaron @MMK_R_E 70;
+ pos @MMK_L_lcaron @MMK_R_F 70;
+ pos @MMK_L_lcaron @MMK_R_H 70;
+ pos @MMK_L_lcaron @MMK_R_L 70;
+ pos @MMK_L_lcaron @MMK_R_lslash 70;
+ pos @MMK_L_lcaron @MMK_R_S 25;
+ pos @MMK_L_lcaron @MMK_R_T 70;
+ pos @MMK_L_lcaron @MMK_R_thorn 70;
+ pos @MMK_L_lcaron @MMK_R_j 65;
+ pos @MMK_L_lcaron @MMK_R_l 70;
+ pos @MMK_L_lcaron @MMK_R_s -20;
+ pos @MMK_L_lcaron @MMK_R_z 20;
+ pos @MMK_L_lcaron @MMK_R_Thorn 70;
+ pos @MMK_L_tcaron parenleft -35;
+ pos @MMK_L_tcaron quoteright 40;
+ pos @MMK_L_tcaron dollar 15;
+ pos @MMK_L_tcaron minus -220;
+ pos @MMK_L_tcaron parenright 35;
+ pos @MMK_L_tcaron periodcentered -100;
+ pos @MMK_L_tcaron bracketleft 60;
+ pos @MMK_L_tcaron degree 55;
+ pos @MMK_L_tcaron asterisk 55;
+ pos @MMK_L_tcaron guilsinglright -95;
+ pos @MMK_L_tcaron ellipsis -95;
+ pos @MMK_L_tcaron numbersign -120;
+ pos @MMK_L_tcaron quotedblright 40;
+ pos @MMK_L_tcaron bracketright 60;
+ pos @MMK_L_tcaron braceleft -65;
+ pos @MMK_L_tcaron greater 60;
+ pos @MMK_L_tcaron braceright -10;
+ pos @MMK_L_tcaron cent -70;
+ pos @MMK_L_tcaron yen 55;
+ pos @MMK_L_tcaron guillemetright -95;
+ pos @MMK_L_tcaron underscore -75;
+ pos @MMK_L_tcaron hyphen -185;
+ pos @MMK_L_tcaron bar 55;
+ pos @MMK_L_tcaron euro -85;
+ pos @MMK_L_tcaron paragraph 35;
+ pos @MMK_L_tcaron guillemetleft -210;
+ pos @MMK_L_tcaron bullet -120;
+ pos @MMK_L_tcaron sterling -50;
+ pos @MMK_L_tcaron quotedblbase -100;
+ pos @MMK_L_tcaron comma -100;
+ pos @MMK_L_tcaron slash -55;
+ pos @MMK_L_tcaron questiondown -80;
+ pos @MMK_L_tcaron multiply -90;
+ pos @MMK_L_tcaron perthousand 45;
+ pos @MMK_L_tcaron plus -200;
+ pos @MMK_L_tcaron question 45;
+ pos @MMK_L_tcaron quoteleft 45;
+ pos @MMK_L_tcaron registered 15;
+ pos @MMK_L_tcaron trademark 40;
+ pos @MMK_L_tcaron quotesingle 55;
+ pos @MMK_L_tcaron guilsinglleft -170;
+ pos @MMK_L_tcaron emdash -220;
+ pos @MMK_L_tcaron percent 45;
+ pos @MMK_L_tcaron copyright -40;
+ pos @MMK_L_tcaron divide -195;
+ pos @MMK_L_tcaron asciicircum -55;
+ pos @MMK_L_tcaron endash -220;
+ pos @MMK_L_tcaron ampersand -45;
+ pos @MMK_L_tcaron less -140;
+ pos @MMK_L_tcaron quotedblleft 45;
+ pos @MMK_L_tcaron asciitilde -140;
+ pos @MMK_L_tcaron quotesinglbase -100;
+ pos @MMK_L_tcaron at -35;
+ pos @MMK_L_tcaron quotedbl 55;
+ pos @MMK_L_tcaron backslash 40;
+ pos @MMK_L_tcaron @MMK_R_h 60;
+ pos @MMK_L_tcaron @MMK_R_dcaron -90;
+ pos @MMK_L_tcaron @MMK_R_g -80;
+ pos @MMK_L_tcaron @MMK_R_thorn 55;
+ pos @MMK_L_tcaron @MMK_R_Thorn 60;
+ pos @MMK_L_tcaron @MMK_R_a.alt -45;
+ pos @MMK_L_tcaron @MMK_R_l 55;
+ pos @MMK_L_tcaron @MMK_R_c -90;
+ pos @MMK_L_tcaron @MMK_R_b 60;
+ pos @MMK_L_tcaron @MMK_R_e -90;
+ pos @MMK_L_tcaron @MMK_R_S 15;
+ pos @MMK_L_tcaron @MMK_R_R 55;
+ pos @MMK_L_tcaron @MMK_R_i 55;
+ pos @MMK_L_tcaron @MMK_R_j 55;
+ pos @MMK_L_tcaron @MMK_R_o -90;
+ pos @MMK_L_tcaron @MMK_R_s -60;
+ pos @MMK_L_tcaron @MMK_R_I 55;
+ pos @MMK_L_tcaron @MMK_R_H 60;
+ pos @MMK_L_tcaron @MMK_R_K 60;
+ pos @MMK_L_tcaron @MMK_R_J -145;
+ pos @MMK_L_tcaron @MMK_R_L 55;
+ pos @MMK_L_tcaron @MMK_R_O -15;
+ pos @MMK_L_tcaron @MMK_R_A -95;
+ pos @MMK_L_tcaron @MMK_R_C -10;
+ pos @MMK_L_tcaron @MMK_R_E 60;
+ pos @MMK_L_tcaron @MMK_R_D 60;
+ pos @MMK_L_tcaron @MMK_R_G -15;
+ pos @MMK_L_tcaron @MMK_R_F 60;
+ pos @MMK_L_tcaron @MMK_R_Y 50;
+ pos @MMK_L_tcaron @MMK_R_X 50;
+ pos @MMK_L_tcaron @MMK_R_Z 60;
+ pos @MMK_L_tcaron @MMK_R_Q -15;
+ pos @MMK_L_tcaron @MMK_R_P 55;
+ pos @MMK_L_tcaron @MMK_R_U 60;
+ pos @MMK_L_tcaron @MMK_R_T 55;
+ pos @MMK_L_tcaron @MMK_R_W 50;
+ pos @MMK_L_tcaron @MMK_R_V 50;
+ pos @MMK_L_tcaron @MMK_R_lslash 55;
+ pos @MMK_L_tcaron @MMK_R_Lslash 60;
+ pos @MMK_L_tcaron @MMK_R_lcaron 55;
+ pos @MMK_L_tcaron @MMK_R_Eth 60;
+ pos @MMK_L_tcaron @MMK_R_eth -95;
+ pos @MMK_L_tcaron @MMK_R_germandbls 40;
+ pos @MMK_L_tcaron @MMK_R_dcroat -90;
+ pos @MMK_L_tcaron @MMK_R_a -90;
+ pos @MMK_L_tcaron @MMK_R_d -90;
+ pos @MMK_L_tcaron @MMK_R_q -90;
+ pos @MMK_L_tcaron @MMK_R_M 60;
+ pos @MMK_L_tcaron @MMK_R_N 60;
+ pos @MMK_L_tcaron @MMK_R_B 55;
+ pos @MMK_L_tcaron @MMK_R_oslash -90;
+ pos @MMK_L_tcaron @MMK_R_Oslash -15;
+ pos @MMK_L_a braceleft -60;
+ pos @MMK_L_a yen -25;
+ pos @MMK_L_a semicolon -10;
+ pos @MMK_L_a asciitilde -30;
+ pos @MMK_L_a degree -15;
+ pos @MMK_L_a multiply -40;
+ pos @MMK_L_a asciicircum -15;
+ pos @MMK_L_a quotedblright -50;
+ pos @MMK_L_a sterling -30;
+ pos @MMK_L_a parenright -85;
+ pos @MMK_L_a comma -15;
+ pos @MMK_L_a question -145;
+ pos @MMK_L_a backslash -85;
+ pos @MMK_L_a quotedblbase -15;
+ pos @MMK_L_a euro -90;
+ pos @MMK_L_a quoteright -50;
+ pos @MMK_L_a dollar -30;
+ pos @MMK_L_a numbersign -50;
+ pos @MMK_L_a quotedbl -10;
+ pos @MMK_L_a quotesingle -10;
+ pos @MMK_L_a underscore -165;
+ pos @MMK_L_a quotesinglbase -15;
+ pos @MMK_L_a braceright -55;
+ pos @MMK_L_a @MMK_R_J -25;
+ pos @MMK_L_a @MMK_R_Y -45;
+ pos @MMK_L_a @MMK_R_S -25;
+ pos @MMK_L_a @MMK_R_V -40;
+ pos @MMK_L_a @MMK_R_W -35;
+ pos @MMK_L_a @MMK_R_T -135;
+ pos @MMK_L_a @MMK_R_s -20;
+ pos @MMK_L_e braceleft -60;
+ pos @MMK_L_e quoteleft -65;
+ pos @MMK_L_e perthousand -40;
+ pos @MMK_L_e guillemetleft -25;
+ pos @MMK_L_e questiondown -15;
+ pos @MMK_L_e multiply -75;
+ pos @MMK_L_e slash -20;
+ pos @MMK_L_e trademark -70;
+ pos @MMK_L_e numbersign -90;
+ pos @MMK_L_e asterisk -40;
+ pos @MMK_L_e yen -45;
+ pos @MMK_L_e backslash -140;
+ pos @MMK_L_e underscore -95;
+ pos @MMK_L_e percent -40;
+ pos @MMK_L_e ellipsis -15;
+ pos @MMK_L_e guilsinglleft -25;
+ pos @MMK_L_e ampersand -25;
+ pos @MMK_L_e degree -75;
+ pos @MMK_L_e comma -30;
+ pos @MMK_L_e quotesingle -50;
+ pos @MMK_L_e asciitilde -30;
+ pos @MMK_L_e quotedblbase -30;
+ pos @MMK_L_e quoteright -115;
+ pos @MMK_L_e quotedbl -50;
+ pos @MMK_L_e guilsinglright -30;
+ pos @MMK_L_e semicolon -20;
+ pos @MMK_L_e registered -10;
+ pos @MMK_L_e sterling -35;
+ pos @MMK_L_e parenright -115;
+ pos @MMK_L_e quotesinglbase -30;
+ pos @MMK_L_e quotedblleft -65;
+ pos @MMK_L_e euro -90;
+ pos @MMK_L_e question -175;
+ pos @MMK_L_e guillemetright -30;
+ pos @MMK_L_e asciicircum -25;
+ pos @MMK_L_e braceright -60;
+ pos @MMK_L_e colon -15;
+ pos @MMK_L_e dollar -60;
+ pos @MMK_L_e quotedblright -130;
+ pos @MMK_L_e paragraph -30;
+ pos @MMK_L_e periodcentered -10;
+ pos @MMK_L_e @MMK_R_eth -10;
+ pos @MMK_L_e @MMK_R_f -20;
+ pos @MMK_L_e @MMK_R_x -20;
+ pos @MMK_L_e @MMK_R_y -20;
+ pos @MMK_L_e @MMK_R_v -25;
+ pos @MMK_L_e @MMK_R_w -20;
+ pos @MMK_L_e @MMK_R_t -20;
+ pos @MMK_L_e @MMK_R_s -35;
+ pos @MMK_L_e @MMK_R_J -40;
+ pos @MMK_L_e @MMK_R_A -20;
+ pos @MMK_L_e @MMK_R_X -20;
+ pos @MMK_L_e @MMK_R_Y -80;
+ pos @MMK_L_e @MMK_R_V -75;
+ pos @MMK_L_e @MMK_R_W -60;
+ pos @MMK_L_e @MMK_R_T -135;
+ pos @MMK_L_e @MMK_R_S -60;
+ pos @MMK_L_e @MMK_R_a.alt -55;
+ pos @MMK_L_e @MMK_R_tcaron -20;
+ pos @MMK_L_h braceleft -60;
+ pos @MMK_L_h dollar -45;
+ pos @MMK_L_h degree -80;
+ pos @MMK_L_h parenright -85;
+ pos @MMK_L_h quotedblright -120;
+ pos @MMK_L_h quotedblleft -70;
+ pos @MMK_L_h quotedblbase -20;
+ pos @MMK_L_h paragraph -35;
+ pos @MMK_L_h percent -40;
+ pos @MMK_L_h euro -90;
+ pos @MMK_L_h quotesinglbase -20;
+ pos @MMK_L_h quoteright -115;
+ pos @MMK_L_h quotedbl -50;
+ pos @MMK_L_h trademark -65;
+ pos @MMK_L_h braceright -55;
+ pos @MMK_L_h multiply -40;
+ pos @MMK_L_h sterling -30;
+ pos @MMK_L_h backslash -140;
+ pos @MMK_L_h numbersign -50;
+ pos @MMK_L_h quotesingle -50;
+ pos @MMK_L_h underscore -260;
+ pos @MMK_L_h comma -20;
+ pos @MMK_L_h perthousand -40;
+ pos @MMK_L_h registered -10;
+ pos @MMK_L_h semicolon -10;
+ pos @MMK_L_h asciicircum -30;
+ pos @MMK_L_h asciitilde -30;
+ pos @MMK_L_h yen -50;
+ pos @MMK_L_h quoteleft -70;
+ pos @MMK_L_h asterisk -40;
+ pos @MMK_L_h question -175;
+ pos @MMK_L_h @MMK_R_tcaron -20;
+ pos @MMK_L_h @MMK_R_V -80;
+ pos @MMK_L_h @MMK_R_J -25;
+ pos @MMK_L_h @MMK_R_Y -80;
+ pos @MMK_L_h @MMK_R_S -35;
+ pos @MMK_L_h @MMK_R_W -65;
+ pos @MMK_L_h @MMK_R_T -135;
+ pos @MMK_L_h @MMK_R_f -20;
+ pos @MMK_L_h @MMK_R_y -25;
+ pos @MMK_L_h @MMK_R_s -20;
+ pos @MMK_L_h @MMK_R_w -25;
+ pos @MMK_L_h @MMK_R_t -20;
+ pos @MMK_L_h @MMK_R_v -25;
+ pos @MMK_L_t dollar -30;
+ pos @MMK_L_t braceright -60;
+ pos @MMK_L_t underscore -10;
+ pos @MMK_L_t guillemetright -25;
+ pos @MMK_L_t sterling -60;
+ pos @MMK_L_t quotedbl -10;
+ pos @MMK_L_t euro -90;
+ pos @MMK_L_t emdash -155;
+ pos @MMK_L_t question -145;
+ pos @MMK_L_t minus -155;
+ pos @MMK_L_t semicolon -10;
+ pos @MMK_L_t braceleft -110;
+ pos @MMK_L_t at -15;
+ pos @MMK_L_t parenleft -20;
+ pos @MMK_L_t degree -15;
+ pos @MMK_L_t plus -155;
+ pos @MMK_L_t asciicircum -20;
+ pos @MMK_L_t numbersign -100;
+ pos @MMK_L_t parenright -70;
+ pos @MMK_L_t quotesinglbase -35;
+ pos @MMK_L_t endash -155;
+ pos @MMK_L_t ampersand -95;
+ pos @MMK_L_t less -75;
+ pos @MMK_L_t guilsinglleft -145;
+ pos @MMK_L_t yen -25;
+ pos @MMK_L_t quotedblbase -35;
+ pos @MMK_L_t multiply -45;
+ pos @MMK_L_t hyphen -155;
+ pos @MMK_L_t ellipsis -30;
+ pos @MMK_L_t guillemetleft -145;
+ pos @MMK_L_t backslash -90;
+ pos @MMK_L_t questiondown -15;
+ pos @MMK_L_t periodcentered -100;
+ pos @MMK_L_t guilsinglright -25;
+ pos @MMK_L_t divide -155;
+ pos @MMK_L_t quotesingle -10;
+ pos @MMK_L_t quotedblright -50;
+ pos @MMK_L_t slash 10;
+ pos @MMK_L_t cent -30;
+ pos @MMK_L_t asciitilde -70;
+ pos @MMK_L_t quoteright -50;
+ pos @MMK_L_t comma -35;
+ pos @MMK_L_t bullet -50;
+ pos @MMK_L_t copyright -20;
+ pos @MMK_L_t @MMK_R_dcroat -40;
+ pos @MMK_L_t @MMK_R_eth -50;
+ pos @MMK_L_t @MMK_R_a.alt -80;
+ pos @MMK_L_t @MMK_R_d -40;
+ pos @MMK_L_t @MMK_R_dcaron -40;
+ pos @MMK_L_t @MMK_R_q -40;
+ pos @MMK_L_t @MMK_R_a -40;
+ pos @MMK_L_t @MMK_R_s -30;
+ pos @MMK_L_t @MMK_R_x -10;
+ pos @MMK_L_t @MMK_R_g -30;
+ pos @MMK_L_t @MMK_R_e -40;
+ pos @MMK_L_t @MMK_R_c -40;
+ pos @MMK_L_t @MMK_R_o -40;
+ pos @MMK_L_t @MMK_R_W -35;
+ pos @MMK_L_t @MMK_R_V -45;
+ pos @MMK_L_t @MMK_R_T -135;
+ pos @MMK_L_t @MMK_R_S -25;
+ pos @MMK_L_t @MMK_R_Q -10;
+ pos @MMK_L_t @MMK_R_Y -45;
+ pos @MMK_L_t @MMK_R_X -30;
+ pos @MMK_L_t @MMK_R_A -30;
+ pos @MMK_L_t @MMK_R_J -80;
+ pos @MMK_L_t @MMK_R_oslash -40;
+ pos @MMK_L_d quotesinglbase -15;
+ pos @MMK_L_d quotedblright -10;
+ pos @MMK_L_d backslash -10;
+ pos @MMK_L_d parenright -25;
+ pos @MMK_L_d braceright -55;
+ pos @MMK_L_d euro -90;
+ pos @MMK_L_d braceleft -60;
+ pos @MMK_L_d multiply -40;
+ pos @MMK_L_d asciitilde -30;
+ pos @MMK_L_d semicolon -10;
+ pos @MMK_L_d dollar -30;
+ pos @MMK_L_d quoteright -10;
+ pos @MMK_L_d sterling -30;
+ pos @MMK_L_d quotedblbase -15;
+ pos @MMK_L_d asciicircum -15;
+ pos @MMK_L_d numbersign -50;
+ pos @MMK_L_d question -15;
+ pos @MMK_L_d underscore -165;
+ pos @MMK_L_d comma -15;
+ pos @MMK_L_d @MMK_R_s -20;
+ pos @MMK_L_d @MMK_R_J -25;
+ pos @MMK_L_d @MMK_R_S -25;
+ pos @MMK_L_f divide -135;
+ pos @MMK_L_f guillemetright -25;
+ pos @MMK_L_f dollar -30;
+ pos @MMK_L_f braceright -65;
+ pos @MMK_L_f ampersand -95;
+ pos @MMK_L_f guilsinglleft -125;
+ pos @MMK_L_f degree -15;
+ pos @MMK_L_f at -15;
+ pos @MMK_L_f yen -25;
+ pos @MMK_L_f quoteright -50;
+ pos @MMK_L_f semicolon -10;
+ pos @MMK_L_f slash -125;
+ pos @MMK_L_f sterling -80;
+ pos @MMK_L_f multiply -45;
+ pos @MMK_L_f ellipsis -135;
+ pos @MMK_L_f asciitilde -70;
+ pos @MMK_L_f plus -135;
+ pos @MMK_L_f endash -135;
+ pos @MMK_L_f questiondown -135;
+ pos @MMK_L_f underscore -180;
+ pos @MMK_L_f bullet -50;
+ pos @MMK_L_f comma -115;
+ pos @MMK_L_f parenleft -20;
+ pos @MMK_L_f quotedbl -10;
+ pos @MMK_L_f quotesinglbase -115;
+ pos @MMK_L_f quotedblright -50;
+ pos @MMK_L_f numbersign -125;
+ pos @MMK_L_f hyphen -135;
+ pos @MMK_L_f less -75;
+ pos @MMK_L_f guillemetleft -125;
+ pos @MMK_L_f parenright -90;
+ pos @MMK_L_f copyright -20;
+ pos @MMK_L_f minus -135;
+ pos @MMK_L_f question -70;
+ pos @MMK_L_f asciicircum -20;
+ pos @MMK_L_f braceleft -110;
+ pos @MMK_L_f quotedblbase -150;
+ pos @MMK_L_f guilsinglright -25;
+ pos @MMK_L_f cent -30;
+ pos @MMK_L_f quotesingle -10;
+ pos @MMK_L_f emdash -135;
+ pos @MMK_L_f euro -90;
+ pos @MMK_L_f periodcentered -100;
+ pos @MMK_L_f @MMK_R_dcroat -40;
+ pos @MMK_L_f @MMK_R_q -40;
+ pos @MMK_L_f @MMK_R_s -30;
+ pos @MMK_L_f @MMK_R_e -40;
+ pos @MMK_L_f @MMK_R_d -40;
+ pos @MMK_L_f @MMK_R_g -30;
+ pos @MMK_L_f @MMK_R_a -40;
+ pos @MMK_L_f @MMK_R_c -40;
+ pos @MMK_L_f @MMK_R_o -40;
+ pos @MMK_L_f @MMK_R_T -30;
+ pos @MMK_L_f @MMK_R_W -30;
+ pos @MMK_L_f @MMK_R_V -30;
+ pos @MMK_L_f @MMK_R_Q -10;
+ pos @MMK_L_f @MMK_R_S -25;
+ pos @MMK_L_f @MMK_R_Y -30;
+ pos @MMK_L_f @MMK_R_X -35;
+ pos @MMK_L_f @MMK_R_A -105;
+ pos @MMK_L_f @MMK_R_J -155;
+ pos @MMK_L_f @MMK_R_x -10;
+ pos @MMK_L_f @MMK_R_a.alt -80;
+ pos @MMK_L_f @MMK_R_oslash -40;
+ pos @MMK_L_f @MMK_R_eth -50;
+ pos @MMK_L_f @MMK_R_dcaron -40;
+ pos @MMK_L_g quotesinglbase -15;
+ pos @MMK_L_g underscore -10;
+ pos @MMK_L_g dollar -30;
+ pos @MMK_L_g slash 15;
+ pos @MMK_L_g quotedblbase -15;
+ pos @MMK_L_g degree -15;
+ pos @MMK_L_g quotedbl -10;
+ pos @MMK_L_g braceleft -60;
+ pos @MMK_L_g asciitilde -30;
+ pos @MMK_L_g quotesingle -10;
+ pos @MMK_L_g backslash -85;
+ pos @MMK_L_g asciicircum -15;
+ pos @MMK_L_g comma -15;
+ pos @MMK_L_g braceright -55;
+ pos @MMK_L_g quotedblright -50;
+ pos @MMK_L_g question -145;
+ pos @MMK_L_g multiply -40;
+ pos @MMK_L_g euro -90;
+ pos @MMK_L_g quoteright -50;
+ pos @MMK_L_g sterling -30;
+ pos @MMK_L_g numbersign -50;
+ pos @MMK_L_g yen -25;
+ pos @MMK_L_g parenright -45;
+ pos @MMK_L_g @MMK_R_s -20;
+ pos @MMK_L_g @MMK_R_j 50;
+ pos @MMK_L_g @MMK_R_Y -45;
+ pos @MMK_L_g @MMK_R_T -135;
+ pos @MMK_L_g @MMK_R_V -40;
+ pos @MMK_L_g @MMK_R_W -35;
+ pos @MMK_L_g @MMK_R_S -25;
+ pos @MMK_L_g @MMK_R_J -25;
+ pos @MMK_L_n dollar -45;
+ pos @MMK_L_n quoteright -115;
+ pos @MMK_L_n braceright -55;
+ pos @MMK_L_n degree -80;
+ pos @MMK_L_n quotedblright -120;
+ pos @MMK_L_n quoteleft -70;
+ pos @MMK_L_n comma -15;
+ pos @MMK_L_n semicolon -10;
+ pos @MMK_L_n parenright -85;
+ pos @MMK_L_n question -175;
+ pos @MMK_L_n percent -40;
+ pos @MMK_L_n underscore -260;
+ pos @MMK_L_n perthousand -40;
+ pos @MMK_L_n asterisk -40;
+ pos @MMK_L_n asciicircum -30;
+ pos @MMK_L_n quotedblleft -70;
+ pos @MMK_L_n braceleft -60;
+ pos @MMK_L_n trademark -65;
+ pos @MMK_L_n euro -90;
+ pos @MMK_L_n quotedblbase -15;
+ pos @MMK_L_n numbersign -50;
+ pos @MMK_L_n asciitilde -30;
+ pos @MMK_L_n quotesingle -50;
+ pos @MMK_L_n registered -10;
+ pos @MMK_L_n paragraph -35;
+ pos @MMK_L_n multiply -40;
+ pos @MMK_L_n backslash -140;
+ pos @MMK_L_n sterling -30;
+ pos @MMK_L_n yen -50;
+ pos @MMK_L_n quotesinglbase -15;
+ pos @MMK_L_n quotedbl -50;
+ pos @MMK_L_n @MMK_R_y -25;
+ pos @MMK_L_n @MMK_R_t -20;
+ pos @MMK_L_n @MMK_R_w -25;
+ pos @MMK_L_n @MMK_R_v -25;
+ pos @MMK_L_n @MMK_R_s -20;
+ pos @MMK_L_n @MMK_R_f -20;
+ pos @MMK_L_n @MMK_R_T -135;
+ pos @MMK_L_n @MMK_R_W -65;
+ pos @MMK_L_n @MMK_R_V -80;
+ pos @MMK_L_n @MMK_R_S -35;
+ pos @MMK_L_n @MMK_R_J -25;
+ pos @MMK_L_n @MMK_R_Y -80;
+ pos @MMK_L_n @MMK_R_tcaron -20;
+ pos @MMK_L_z semicolon -10;
+ pos @MMK_L_z quotedbl -10;
+ pos @MMK_L_z sterling -30;
+ pos @MMK_L_z asciitilde -25;
+ pos @MMK_L_z quotedblright -50;
+ pos @MMK_L_z quoteright -50;
+ pos @MMK_L_z multiply -40;
+ pos @MMK_L_z degree -15;
+ pos @MMK_L_z yen -25;
+ pos @MMK_L_z underscore -250;
+ pos @MMK_L_z braceright -55;
+ pos @MMK_L_z backslash -85;
+ pos @MMK_L_z parenright -85;
+ pos @MMK_L_z quotedblbase -15;
+ pos @MMK_L_z question -145;
+ pos @MMK_L_z euro -90;
+ pos @MMK_L_z dollar -30;
+ pos @MMK_L_z asciicircum -10;
+ pos @MMK_L_z quotesingle -10;
+ pos @MMK_L_z quotesinglbase -15;
+ pos @MMK_L_z braceleft -60;
+ pos @MMK_L_z comma -15;
+ pos @MMK_L_z numbersign -50;
+ pos @MMK_L_z @MMK_R_s -20;
+ pos @MMK_L_z @MMK_R_J -25;
+ pos @MMK_L_z @MMK_R_Y -45;
+ pos @MMK_L_z @MMK_R_S -25;
+ pos @MMK_L_z @MMK_R_T -135;
+ pos @MMK_L_z @MMK_R_W -35;
+ pos @MMK_L_z @MMK_R_V -40;
+ pos @MMK_L_i euro -85;
+ pos @MMK_L_i quoteright -20;
+ pos @MMK_L_i underscore -85;
+ pos @MMK_L_i multiply -40;
+ pos @MMK_L_i parenright -25;
+ pos @MMK_L_i comma -15;
+ pos @MMK_L_i sterling -30;
+ pos @MMK_L_i numbersign -50;
+ pos @MMK_L_i asciitilde -25;
+ pos @MMK_L_i asciicircum -10;
+ pos @MMK_L_i braceright -55;
+ pos @MMK_L_i dollar -30;
+ pos @MMK_L_i braceleft -60;
+ pos @MMK_L_i semicolon -10;
+ pos @MMK_L_i backslash -20;
+ pos @MMK_L_i quotedblright -20;
+ pos @MMK_L_i question -15;
+ pos @MMK_L_i quotesinglbase -15;
+ pos @MMK_L_i quotedblbase -15;
+ pos @MMK_L_i @MMK_R_S -25;
+ pos @MMK_L_i @MMK_R_V -10;
+ pos @MMK_L_i @MMK_R_Y -10;
+ pos @MMK_L_i @MMK_R_J -25;
+ pos @MMK_L_i @MMK_R_s -20;
+ pos @MMK_L_oslash parenright -145;
+ pos @MMK_L_oslash euro -90;
+ pos @MMK_L_oslash backslash -120;
+ pos @MMK_L_oslash quotesinglbase -70;
+ pos @MMK_L_oslash semicolon -45;
+ pos @MMK_L_oslash perthousand -35;
+ pos @MMK_L_oslash question -175;
+ pos @MMK_L_oslash quotedblleft -40;
+ pos @MMK_L_oslash multiply -40;
+ pos @MMK_L_oslash questiondown -50;
+ pos @MMK_L_oslash paragraph -30;
+ pos @MMK_L_oslash comma -70;
+ pos @MMK_L_oslash asterisk -35;
+ pos @MMK_L_oslash ellipsis -55;
+ pos @MMK_L_oslash registered -35;
+ pos @MMK_L_oslash braceright -60;
+ pos @MMK_L_oslash percent -35;
+ pos @MMK_L_oslash asciicircum -65;
+ pos @MMK_L_oslash degree -50;
+ pos @MMK_L_oslash guilsinglright -45;
+ pos @MMK_L_oslash quotedblright -80;
+ pos @MMK_L_oslash dollar -65;
+ pos @MMK_L_oslash quotedblbase -70;
+ pos @MMK_L_oslash quotesingle -40;
+ pos @MMK_L_oslash quoteright -80;
+ pos @MMK_L_oslash braceleft -70;
+ pos @MMK_L_oslash yen -55;
+ pos @MMK_L_oslash sterling -30;
+ pos @MMK_L_oslash slash -70;
+ pos @MMK_L_oslash asciitilde -35;
+ pos @MMK_L_oslash guillemetright -45;
+ pos @MMK_L_oslash numbersign -65;
+ pos @MMK_L_oslash underscore -165;
+ pos @MMK_L_oslash quoteleft -40;
+ pos @MMK_L_oslash colon -35;
+ pos @MMK_L_oslash trademark -35;
+ pos @MMK_L_oslash quotedbl -40;
+ pos @MMK_L_oslash @MMK_R_tcaron -35;
+ pos @MMK_L_oslash @MMK_R_Oslash -10;
+ pos @MMK_L_oslash @MMK_R_x -45;
+ pos @MMK_L_oslash @MMK_R_S -60;
+ pos @MMK_L_oslash @MMK_R_O -10;
+ pos @MMK_L_oslash @MMK_R_C -10;
+ pos @MMK_L_oslash @MMK_R_y -35;
+ pos @MMK_L_oslash @MMK_R_v -35;
+ pos @MMK_L_oslash @MMK_R_w -35;
+ pos @MMK_L_oslash @MMK_R_t -35;
+ pos @MMK_L_oslash @MMK_R_s -60;
+ pos @MMK_L_oslash @MMK_R_f -35;
+ pos @MMK_L_oslash @MMK_R_X -55;
+ pos @MMK_L_oslash @MMK_R_Y -75;
+ pos @MMK_L_oslash @MMK_R_V -75;
+ pos @MMK_L_oslash @MMK_R_W -65;
+ pos @MMK_L_oslash @MMK_R_T -135;
+ pos @MMK_L_oslash @MMK_R_Q -10;
+ pos @MMK_L_oslash @MMK_R_J -95;
+ pos @MMK_L_oslash @MMK_R_G -10;
+ pos @MMK_L_oslash @MMK_R_A -50;
+ pos @MMK_L_j numbersign -50;
+ pos @MMK_L_j braceright -50;
+ pos @MMK_L_j backslash -20;
+ pos @MMK_L_j question -15;
+ pos @MMK_L_j slash 35;
+ pos @MMK_L_j sterling -30;
+ pos @MMK_L_j quoteright -20;
+ pos @MMK_L_j multiply -40;
+ pos @MMK_L_j quotedblright -20;
+ pos @MMK_L_j parenright -20;
+ pos @MMK_L_j dollar -30;
+ pos @MMK_L_j euro -85;
+ pos @MMK_L_j asciitilde -30;
+ pos @MMK_L_j asciicircum -15;
+ pos @MMK_L_j braceleft -60;
+ pos @MMK_L_j @MMK_R_J -25;
+ pos @MMK_L_j @MMK_R_Y -10;
+ pos @MMK_L_j @MMK_R_S -25;
+ pos @MMK_L_j @MMK_R_W -10;
+ pos @MMK_L_j @MMK_R_V -10;
+ pos @MMK_L_j @MMK_R_s -20;
+ pos @MMK_L_j @MMK_R_j 75;
+ pos @MMK_L_l quotedblbase -15;
+ pos @MMK_L_l asciicircum -15;
+ pos @MMK_L_l braceleft -60;
+ pos @MMK_L_l semicolon -10;
+ pos @MMK_L_l multiply -40;
+ pos @MMK_L_l comma -15;
+ pos @MMK_L_l quoteright -10;
+ pos @MMK_L_l numbersign -50;
+ pos @MMK_L_l dollar -30;
+ pos @MMK_L_l quotesinglbase -15;
+ pos @MMK_L_l asciitilde -30;
+ pos @MMK_L_l quotedblright -10;
+ pos @MMK_L_l euro -85;
+ pos @MMK_L_l question -15;
+ pos @MMK_L_l underscore -85;
+ pos @MMK_L_l parenright -25;
+ pos @MMK_L_l backslash -10;
+ pos @MMK_L_l sterling -30;
+ pos @MMK_L_l braceright -55;
+ pos @MMK_L_l @MMK_R_s -20;
+ pos @MMK_L_l @MMK_R_J -25;
+ pos @MMK_L_l @MMK_R_S -25;
+ pos @MMK_L_u quotesinglbase -15;
+ pos @MMK_L_u multiply -40;
+ pos @MMK_L_u dollar -30;
+ pos @MMK_L_u quotesingle -10;
+ pos @MMK_L_u asciicircum -10;
+ pos @MMK_L_u euro -90;
+ pos @MMK_L_u parenright -85;
+ pos @MMK_L_u degree -15;
+ pos @MMK_L_u comma -15;
+ pos @MMK_L_u braceleft -60;
+ pos @MMK_L_u numbersign -50;
+ pos @MMK_L_u yen -25;
+ pos @MMK_L_u question -145;
+ pos @MMK_L_u backslash -85;
+ pos @MMK_L_u quoteright -50;
+ pos @MMK_L_u quotedbl -10;
+ pos @MMK_L_u quotedblbase -15;
+ pos @MMK_L_u underscore -115;
+ pos @MMK_L_u semicolon -10;
+ pos @MMK_L_u asciitilde -25;
+ pos @MMK_L_u sterling -30;
+ pos @MMK_L_u quotedblright -50;
+ pos @MMK_L_u braceright -55;
+ pos @MMK_L_u @MMK_R_S -25;
+ pos @MMK_L_u @MMK_R_Y -45;
+ pos @MMK_L_u @MMK_R_V -40;
+ pos @MMK_L_u @MMK_R_W -35;
+ pos @MMK_L_u @MMK_R_T -135;
+ pos @MMK_L_u @MMK_R_J -25;
+ pos @MMK_L_u @MMK_R_s -20;
+ pos @MMK_L_dcroat multiply -40;
+ pos @MMK_L_dcroat sterling -30;
+ pos @MMK_L_dcroat braceleft -60;
+ pos @MMK_L_dcroat asciitilde -30;
+ pos @MMK_L_dcroat braceright -55;
+ pos @MMK_L_dcroat dollar -30;
+ pos @MMK_L_dcroat semicolon -10;
+ pos @MMK_L_dcroat quotesinglbase -15;
+ pos @MMK_L_dcroat parenright -25;
+ pos @MMK_L_dcroat quotedblbase -15;
+ pos @MMK_L_dcroat underscore -165;
+ pos @MMK_L_dcroat backslash -10;
+ pos @MMK_L_dcroat numbersign -50;
+ pos @MMK_L_dcroat euro -90;
+ pos @MMK_L_dcroat comma -15;
+ pos @MMK_L_dcroat quotedblright -10;
+ pos @MMK_L_dcroat asciicircum -15;
+ pos @MMK_L_dcroat quoteright -10;
+ pos @MMK_L_dcroat question -15;
+ pos @MMK_L_dcroat @MMK_R_s -20;
+ pos @MMK_L_dcroat @MMK_R_S -25;
+ pos @MMK_L_dcroat @MMK_R_J -25;
+ subtable;
+ pos @MMK_L_S question -75;
+ pos @MMK_L_S quotesinglbase -40;
+ pos @MMK_L_S bullet -30;
+ pos @MMK_L_S guillemetleft -15;
+ pos @MMK_L_S less -50;
+ pos @MMK_L_S colon -25;
+ pos @MMK_L_S quotedblleft -80;
+ pos @MMK_L_S braceright -60;
+ pos @MMK_L_S copyright -15;
+ pos @MMK_L_S multiply -50;
+ pos @MMK_L_S plus -20;
+ pos @MMK_L_S degree -60;
+ pos @MMK_L_S parenright -90;
+ pos @MMK_L_S questiondown -25;
+ pos @MMK_L_S guilsinglleft -15;
+ pos @MMK_L_S asciicircum -195;
+ pos @MMK_L_S at -15;
+ pos @MMK_L_S asciitilde -90;
+ pos @MMK_L_S quoteleft -80;
+ pos @MMK_L_S parenleft -10;
+ pos @MMK_L_S quotedbl -55;
+ pos @MMK_L_S periodcentered -25;
+ pos @MMK_L_S minus -20;
+ pos @MMK_L_S quoteright -70;
+ pos @MMK_L_S numbersign -50;
+ pos @MMK_L_S cent -10;
+ pos @MMK_L_S comma -40;
+ pos @MMK_L_S slash -40;
+ pos @MMK_L_S braceleft -75;
+ pos @MMK_L_S sterling -45;
+ pos @MMK_L_S underscore -100;
+ pos @MMK_L_S quotedblright -70;
+ pos @MMK_L_S euro -95;
+ pos @MMK_L_S semicolon -30;
+ pos @MMK_L_S guillemetright -10;
+ pos @MMK_L_S trademark -115;
+ pos @MMK_L_S registered -75;
+ pos @MMK_L_S dollar -75;
+ pos @MMK_L_S perthousand -75;
+ pos @MMK_L_S guilsinglright -10;
+ pos @MMK_L_S divide -20;
+ pos @MMK_L_S quotesingle -55;
+ pos @MMK_L_S quotedblbase -40;
+ pos @MMK_L_S percent -75;
+ pos @MMK_L_S paragraph -90;
+ pos @MMK_L_S backslash -75;
+ pos @MMK_L_S ellipsis -25;
+ pos @MMK_L_S asterisk -60;
+ pos @MMK_L_S yen -55;
+ pos @MMK_L_S @MMK_R_tcaron -80;
+ pos @MMK_L_S @MMK_R_dcroat -10;
+ pos @MMK_L_S @MMK_R_A -30;
+ pos @MMK_L_S @MMK_R_dcaron -10;
+ pos @MMK_L_S @MMK_R_J -55;
+ pos @MMK_L_S @MMK_R_O -30;
+ pos @MMK_L_S @MMK_R_C -35;
+ pos @MMK_L_S @MMK_R_G -30;
+ pos @MMK_L_S @MMK_R_X -35;
+ pos @MMK_L_S @MMK_R_Y -60;
+ pos @MMK_L_S @MMK_R_Q -30;
+ pos @MMK_L_S @MMK_R_S -65;
+ pos @MMK_L_S @MMK_R_T -50;
+ pos @MMK_L_S @MMK_R_U -15;
+ pos @MMK_L_S @MMK_R_V -60;
+ pos @MMK_L_S @MMK_R_W -60;
+ pos @MMK_L_S @MMK_R_o -15;
+ pos @MMK_L_S @MMK_R_a -10;
+ pos @MMK_L_S @MMK_R_c -10;
+ pos @MMK_L_S @MMK_R_d -10;
+ pos @MMK_L_S @MMK_R_e -10;
+ pos @MMK_L_S @MMK_R_f -80;
+ pos @MMK_L_S @MMK_R_g -15;
+ pos @MMK_L_S @MMK_R_x -35;
+ pos @MMK_L_S @MMK_R_y -45;
+ pos @MMK_L_S @MMK_R_q -10;
+ pos @MMK_L_S @MMK_R_s -60;
+ pos @MMK_L_S @MMK_R_t -80;
+ pos @MMK_L_S @MMK_R_v -50;
+ pos @MMK_L_S @MMK_R_w -45;
+ pos @MMK_L_S @MMK_R_Oslash -30;
+ pos @MMK_L_S @MMK_R_oslash -15;
+ pos @MMK_L_S @MMK_R_eth -10;
+ pos @MMK_L_D quotedblbase -105;
+ pos @MMK_L_D parenright -145;
+ pos @MMK_L_D asciicircum -20;
+ pos @MMK_L_D colon -25;
+ pos @MMK_L_D quotedbl -35;
+ pos @MMK_L_D yen -45;
+ pos @MMK_L_D ampersand -10;
+ pos @MMK_L_D guillemetright -30;
+ pos @MMK_L_D quoteright -65;
+ pos @MMK_L_D euro -90;
+ pos @MMK_L_D braceleft -60;
+ pos @MMK_L_D semicolon -30;
+ pos @MMK_L_D quoteleft -45;
+ pos @MMK_L_D ellipsis -90;
+ pos @MMK_L_D guilsinglright -30;
+ pos @MMK_L_D sterling -35;
+ pos @MMK_L_D degree -55;
+ pos @MMK_L_D paragraph -25;
+ pos @MMK_L_D registered -10;
+ pos @MMK_L_D question -140;
+ pos @MMK_L_D percent -30;
+ pos @MMK_L_D numbersign -85;
+ pos @MMK_L_D trademark -35;
+ pos @MMK_L_D quotedblleft -45;
+ pos @MMK_L_D asterisk -25;
+ pos @MMK_L_D quotesinglbase -105;
+ pos @MMK_L_D quotesingle -35;
+ pos @MMK_L_D braceright -60;
+ pos @MMK_L_D perthousand -30;
+ pos @MMK_L_D asciitilde -25;
+ pos @MMK_L_D multiply -50;
+ pos @MMK_L_D slash -95;
+ pos @MMK_L_D underscore -210;
+ pos @MMK_L_D quotedblright -65;
+ pos @MMK_L_D comma -105;
+ pos @MMK_L_D questiondown -80;
+ pos @MMK_L_D backslash -125;
+ pos @MMK_L_D dollar -60;
+ pos @MMK_L_D @MMK_R_A -65;
+ pos @MMK_L_D @MMK_R_J -135;
+ pos @MMK_L_D @MMK_R_W -60;
+ pos @MMK_L_D @MMK_R_V -75;
+ pos @MMK_L_D @MMK_R_T -75;
+ pos @MMK_L_D @MMK_R_S -55;
+ pos @MMK_L_D @MMK_R_Y -75;
+ pos @MMK_L_D @MMK_R_X -75;
+ pos @MMK_L_D @MMK_R_f -15;
+ pos @MMK_L_D @MMK_R_w -20;
+ pos @MMK_L_D @MMK_R_v -25;
+ pos @MMK_L_D @MMK_R_t -15;
+ pos @MMK_L_D @MMK_R_s -35;
+ pos @MMK_L_D @MMK_R_y -20;
+ pos @MMK_L_D @MMK_R_x -45;
+ pos @MMK_L_D @MMK_R_tcaron -15;
+ pos @MMK_L_D @MMK_R_a.alt -20;
+ pos @MMK_L_G quotedblright -10;
+ pos @MMK_L_G euro -90;
+ pos @MMK_L_G asciitilde -25;
+ pos @MMK_L_G underscore -105;
+ pos @MMK_L_G braceleft -60;
+ pos @MMK_L_G quoteright -10;
+ pos @MMK_L_G yen -10;
+ pos @MMK_L_G sterling -30;
+ pos @MMK_L_G numbersign -50;
+ pos @MMK_L_G dollar -30;
+ pos @MMK_L_G quotedblbase -20;
+ pos @MMK_L_G backslash -45;
+ pos @MMK_L_G parenright -40;
+ pos @MMK_L_G comma -20;
+ pos @MMK_L_G multiply -40;
+ pos @MMK_L_G question -35;
+ pos @MMK_L_G braceright -55;
+ pos @MMK_L_G slash -15;
+ pos @MMK_L_G semicolon -10;
+ pos @MMK_L_G quotesinglbase -20;
+ pos @MMK_L_G asciicircum -10;
+ pos @MMK_L_G @MMK_R_A -15;
+ pos @MMK_L_G @MMK_R_X -15;
+ pos @MMK_L_G @MMK_R_Y -20;
+ pos @MMK_L_G @MMK_R_V -15;
+ pos @MMK_L_G @MMK_R_W -15;
+ pos @MMK_L_G @MMK_R_S -25;
+ pos @MMK_L_G @MMK_R_J -30;
+ pos @MMK_L_G @MMK_R_x -10;
+ pos @MMK_L_G @MMK_R_s -30;
+ pos @MMK_L_E semicolon -10;
+ pos @MMK_L_E euro -90;
+ pos @MMK_L_E numbersign -50;
+ pos @MMK_L_E multiply -40;
+ pos @MMK_L_E quotedblbase -15;
+ pos @MMK_L_E dollar -30;
+ pos @MMK_L_E backslash -15;
+ pos @MMK_L_E question -15;
+ pos @MMK_L_E underscore -310;
+ pos @MMK_L_E braceright -55;
+ pos @MMK_L_E parenright -25;
+ pos @MMK_L_E quotedblright -10;
+ pos @MMK_L_E asciicircum -15;
+ pos @MMK_L_E comma -15;
+ pos @MMK_L_E braceleft -60;
+ pos @MMK_L_E asciitilde -25;
+ pos @MMK_L_E quoteright -10;
+ pos @MMK_L_E sterling -30;
+ pos @MMK_L_E quotesinglbase -15;
+ pos @MMK_L_E @MMK_R_J -25;
+ pos @MMK_L_E @MMK_R_S -25;
+ pos @MMK_L_E @MMK_R_s -20;
+ pos @MMK_L_I backslash -15;
+ pos @MMK_L_I comma -15;
+ pos @MMK_L_I quotedblright -10;
+ pos @MMK_L_I question -15;
+ pos @MMK_L_I quotedblbase -15;
+ pos @MMK_L_I quotesinglbase -15;
+ pos @MMK_L_I underscore -115;
+ pos @MMK_L_I asciicircum -15;
+ pos @MMK_L_I dollar -30;
+ pos @MMK_L_I semicolon -10;
+ pos @MMK_L_I multiply -40;
+ pos @MMK_L_I asciitilde -25;
+ pos @MMK_L_I parenright -25;
+ pos @MMK_L_I euro -90;
+ pos @MMK_L_I numbersign -50;
+ pos @MMK_L_I quoteright -10;
+ pos @MMK_L_I braceright -55;
+ pos @MMK_L_I sterling -30;
+ pos @MMK_L_I braceleft -60;
+ pos @MMK_L_I @MMK_R_s -20;
+ pos @MMK_L_I @MMK_R_S -25;
+ pos @MMK_L_I @MMK_R_J -25;
+ pos @MMK_L_Thorn comma -115;
+ pos @MMK_L_Thorn quotedblbase -180;
+ pos @MMK_L_Thorn braceright -60;
+ pos @MMK_L_Thorn quoteleft -60;
+ pos @MMK_L_Thorn numbersign -90;
+ pos @MMK_L_Thorn yen -50;
+ pos @MMK_L_Thorn ampersand -15;
+ pos @MMK_L_Thorn backslash -140;
+ pos @MMK_L_Thorn quotesingle -45;
+ pos @MMK_L_Thorn multiply -55;
+ pos @MMK_L_Thorn asciicircum -30;
+ pos @MMK_L_Thorn braceleft -60;
+ pos @MMK_L_Thorn question -175;
+ pos @MMK_L_Thorn registered -10;
+ pos @MMK_L_Thorn asterisk -40;
+ pos @MMK_L_Thorn euro -90;
+ pos @MMK_L_Thorn quoteright -100;
+ pos @MMK_L_Thorn quotedblleft -60;
+ pos @MMK_L_Thorn questiondown -115;
+ pos @MMK_L_Thorn semicolon -40;
+ pos @MMK_L_Thorn perthousand -40;
+ pos @MMK_L_Thorn sterling -35;
+ pos @MMK_L_Thorn slash -110;
+ pos @MMK_L_Thorn quotedbl -45;
+ pos @MMK_L_Thorn dollar -70;
+ pos @MMK_L_Thorn parenright -170;
+ pos @MMK_L_Thorn percent -40;
+ pos @MMK_L_Thorn underscore -350;
+ pos @MMK_L_Thorn paragraph -30;
+ pos @MMK_L_Thorn guilsinglright -35;
+ pos @MMK_L_Thorn quotedblright -100;
+ pos @MMK_L_Thorn asciitilde -30;
+ pos @MMK_L_Thorn colon -35;
+ pos @MMK_L_Thorn trademark -60;
+ pos @MMK_L_Thorn quotesinglbase -115;
+ pos @MMK_L_Thorn guillemetright -35;
+ pos @MMK_L_Thorn degree -75;
+ pos @MMK_L_Thorn ellipsis -160;
+ pos @MMK_L_Thorn @MMK_R_a.alt -30;
+ pos @MMK_L_Thorn @MMK_R_f -20;
+ pos @MMK_L_Thorn @MMK_R_s -35;
+ pos @MMK_L_Thorn @MMK_R_t -20;
+ pos @MMK_L_Thorn @MMK_R_v -25;
+ pos @MMK_L_Thorn @MMK_R_w -25;
+ pos @MMK_L_Thorn @MMK_R_x -50;
+ pos @MMK_L_Thorn @MMK_R_y -25;
+ pos @MMK_L_Thorn @MMK_R_A -70;
+ pos @MMK_L_Thorn @MMK_R_J -180;
+ pos @MMK_L_Thorn @MMK_R_S -65;
+ pos @MMK_L_Thorn @MMK_R_T -130;
+ pos @MMK_L_Thorn @MMK_R_V -80;
+ pos @MMK_L_Thorn @MMK_R_W -65;
+ pos @MMK_L_Thorn @MMK_R_X -80;
+ pos @MMK_L_Thorn @MMK_R_Y -80;
+ pos @MMK_L_Thorn @MMK_R_tcaron -20;
+ pos @MMK_L_N euro -90;
+ pos @MMK_L_N dollar -30;
+ pos @MMK_L_N quoteright -10;
+ pos @MMK_L_N asciitilde -25;
+ pos @MMK_L_N quotesinglbase -15;
+ pos @MMK_L_N braceleft -60;
+ pos @MMK_L_N parenright -25;
+ pos @MMK_L_N underscore -355;
+ pos @MMK_L_N braceright -55;
+ pos @MMK_L_N multiply -40;
+ pos @MMK_L_N comma -15;
+ pos @MMK_L_N backslash -15;
+ pos @MMK_L_N numbersign -50;
+ pos @MMK_L_N sterling -30;
+ pos @MMK_L_N semicolon -10;
+ pos @MMK_L_N asciicircum -15;
+ pos @MMK_L_N question -15;
+ pos @MMK_L_N quotedblright -10;
+ pos @MMK_L_N quotedblbase -15;
+ pos @MMK_L_N @MMK_R_S -25;
+ pos @MMK_L_N @MMK_R_J -25;
+ pos @MMK_L_N @MMK_R_s -20;
+ pos @MMK_L_B guillemetright -15;
+ pos @MMK_L_B questiondown -25;
+ pos @MMK_L_B periodcentered -20;
+ pos @MMK_L_B underscore -105;
+ pos @MMK_L_B numbersign -50;
+ pos @MMK_L_B dollar -60;
+ pos @MMK_L_B parenleft -10;
+ pos @MMK_L_B quotesingle -35;
+ pos @MMK_L_B quotedblleft -30;
+ pos @MMK_L_B parenright -90;
+ pos @MMK_L_B trademark -30;
+ pos @MMK_L_B sterling -40;
+ pos @MMK_L_B plus -15;
+ pos @MMK_L_B colon -25;
+ pos @MMK_L_B braceleft -75;
+ pos @MMK_L_B quotesinglbase -45;
+ pos @MMK_L_B asciicircum -50;
+ pos @MMK_L_B copyright -10;
+ pos @MMK_L_B guillemetleft -10;
+ pos @MMK_L_B question -85;
+ pos @MMK_L_B semicolon -35;
+ pos @MMK_L_B asterisk -25;
+ pos @MMK_L_B guilsinglright -15;
+ pos @MMK_L_B multiply -45;
+ pos @MMK_L_B perthousand -30;
+ pos @MMK_L_B slash -45;
+ pos @MMK_L_B backslash -95;
+ pos @MMK_L_B yen -50;
+ pos @MMK_L_B bullet -25;
+ pos @MMK_L_B degree -35;
+ pos @MMK_L_B quoteright -40;
+ pos @MMK_L_B quotedbl -35;
+ pos @MMK_L_B ellipsis -25;
+ pos @MMK_L_B quotedblright -40;
+ pos @MMK_L_B guilsinglleft -10;
+ pos @MMK_L_B comma -45;
+ pos @MMK_L_B cent -10;
+ pos @MMK_L_B percent -30;
+ pos @MMK_L_B quotedblbase -45;
+ pos @MMK_L_B minus -15;
+ pos @MMK_L_B divide -15;
+ pos @MMK_L_B registered -30;
+ pos @MMK_L_B quoteleft -30;
+ pos @MMK_L_B paragraph -25;
+ pos @MMK_L_B less -40;
+ pos @MMK_L_B euro -95;
+ pos @MMK_L_B braceright -55;
+ pos @MMK_L_B at -10;
+ pos @MMK_L_B asciitilde -75;
+ pos @MMK_L_B @MMK_R_q -10;
+ pos @MMK_L_B @MMK_R_s -60;
+ pos @MMK_L_B @MMK_R_t -30;
+ pos @MMK_L_B @MMK_R_w -30;
+ pos @MMK_L_B @MMK_R_v -30;
+ pos @MMK_L_B @MMK_R_y -30;
+ pos @MMK_L_B @MMK_R_x -35;
+ pos @MMK_L_B @MMK_R_a -10;
+ pos @MMK_L_B @MMK_R_c -10;
+ pos @MMK_L_B @MMK_R_e -10;
+ pos @MMK_L_B @MMK_R_d -10;
+ pos @MMK_L_B @MMK_R_g -15;
+ pos @MMK_L_B @MMK_R_f -30;
+ pos @MMK_L_B @MMK_R_o -10;
+ pos @MMK_L_B @MMK_R_Q -25;
+ pos @MMK_L_B @MMK_R_S -55;
+ pos @MMK_L_B @MMK_R_U -10;
+ pos @MMK_L_B @MMK_R_T -40;
+ pos @MMK_L_B @MMK_R_W -60;
+ pos @MMK_L_B @MMK_R_V -65;
+ pos @MMK_L_B @MMK_R_Y -65;
+ pos @MMK_L_B @MMK_R_X -35;
+ pos @MMK_L_B @MMK_R_A -35;
+ pos @MMK_L_B @MMK_R_C -30;
+ pos @MMK_L_B @MMK_R_G -30;
+ pos @MMK_L_B @MMK_R_J -60;
+ pos @MMK_L_B @MMK_R_O -25;
+ pos @MMK_L_B @MMK_R_Oslash -25;
+ pos @MMK_L_B @MMK_R_oslash -10;
+ pos @MMK_L_B @MMK_R_tcaron -30;
+ pos @MMK_L_B @MMK_R_dcaron -10;
+ pos @MMK_L_B @MMK_R_dcroat -10;
+ pos @MMK_L_P quotedblright -20;
+ pos @MMK_L_P braceright -65;
+ pos @MMK_L_P yen -30;
+ pos @MMK_L_P ellipsis -285;
+ pos @MMK_L_P emdash -20;
+ pos @MMK_L_P parenleft -20;
+ pos @MMK_L_P endash -20;
+ pos @MMK_L_P quotedblbase -205;
+ pos @MMK_L_P slash -165;
+ pos @MMK_L_P periodcentered -45;
+ pos @MMK_L_P less -10;
+ pos @MMK_L_P quotedblleft -10;
+ pos @MMK_L_P guillemetright -20;
+ pos @MMK_L_P quotedbl -15;
+ pos @MMK_L_P degree -15;
+ pos @MMK_L_P quotesingle -15;
+ pos @MMK_L_P bullet -25;
+ pos @MMK_L_P quoteright -20;
+ pos @MMK_L_P underscore -350;
+ pos @MMK_L_P question -75;
+ pos @MMK_L_P comma -115;
+ pos @MMK_L_P euro -90;
+ pos @MMK_L_P braceleft -80;
+ pos @MMK_L_P asciitilde -50;
+ pos @MMK_L_P quoteleft -10;
+ pos @MMK_L_P copyright -15;
+ pos @MMK_L_P quotesinglbase -115;
+ pos @MMK_L_P guillemetleft -80;
+ pos @MMK_L_P semicolon -10;
+ pos @MMK_L_P guilsinglleft -80;
+ pos @MMK_L_P guilsinglright -20;
+ pos @MMK_L_P sterling -50;
+ pos @MMK_L_P questiondown -200;
+ pos @MMK_L_P dollar -35;
+ pos @MMK_L_P hyphen -20;
+ pos @MMK_L_P at -15;
+ pos @MMK_L_P asciicircum -15;
+ pos @MMK_L_P parenright -80;
+ pos @MMK_L_P cent -25;
+ pos @MMK_L_P backslash -80;
+ pos @MMK_L_P ampersand -65;
+ pos @MMK_L_P multiply -45;
+ pos @MMK_L_P numbersign -125;
+ pos @MMK_L_P @MMK_R_dcaron -30;
+ pos @MMK_L_P @MMK_R_oslash -25;
+ pos @MMK_L_P @MMK_R_dcroat -30;
+ pos @MMK_L_P @MMK_R_s -30;
+ pos @MMK_L_P @MMK_R_q -30;
+ pos @MMK_L_P @MMK_R_x -15;
+ pos @MMK_L_P @MMK_R_c -30;
+ pos @MMK_L_P @MMK_R_a -30;
+ pos @MMK_L_P @MMK_R_g -25;
+ pos @MMK_L_P @MMK_R_e -30;
+ pos @MMK_L_P @MMK_R_d -30;
+ pos @MMK_L_P @MMK_R_o -25;
+ pos @MMK_L_P @MMK_R_S -30;
+ pos @MMK_L_P @MMK_R_W -40;
+ pos @MMK_L_P @MMK_R_V -45;
+ pos @MMK_L_P @MMK_R_T -25;
+ pos @MMK_L_P @MMK_R_Y -50;
+ pos @MMK_L_P @MMK_R_A -105;
+ pos @MMK_L_P @MMK_R_J -285;
+ pos @MMK_L_P @MMK_R_X -55;
+ pos @MMK_L_P @MMK_R_a.alt -80;
+ pos @MMK_L_P @MMK_R_eth -35;
+ pos @MMK_L_Q yen -50;
+ pos @MMK_L_Q multiply -50;
+ pos @MMK_L_Q guillemetright -30;
+ pos @MMK_L_Q asciitilde -25;
+ pos @MMK_L_Q quotedblbase -90;
+ pos @MMK_L_Q questiondown -75;
+ pos @MMK_L_Q sterling -35;
+ pos @MMK_L_Q guilsinglright -30;
+ pos @MMK_L_Q degree -60;
+ pos @MMK_L_Q perthousand -30;
+ pos @MMK_L_Q asterisk -30;
+ pos @MMK_L_Q braceleft -60;
+ pos @MMK_L_Q parenright -150;
+ pos @MMK_L_Q underscore -150;
+ pos @MMK_L_Q semicolon -35;
+ pos @MMK_L_Q slash -90;
+ pos @MMK_L_Q registered -10;
+ pos @MMK_L_Q backslash -130;
+ pos @MMK_L_Q numbersign -85;
+ pos @MMK_L_Q ellipsis -75;
+ pos @MMK_L_Q euro -90;
+ pos @MMK_L_Q paragraph -25;
+ pos @MMK_L_Q braceright -60;
+ pos @MMK_L_Q asciicircum -25;
+ pos @MMK_L_Q dollar -60;
+ pos @MMK_L_Q comma -90;
+ pos @MMK_L_Q ampersand -10;
+ pos @MMK_L_Q quotedbl -35;
+ pos @MMK_L_Q quoteright -70;
+ pos @MMK_L_Q quotesingle -35;
+ pos @MMK_L_Q quoteleft -45;
+ pos @MMK_L_Q percent -30;
+ pos @MMK_L_Q quotesinglbase -90;
+ pos @MMK_L_Q quotedblleft -45;
+ pos @MMK_L_Q question -145;
+ pos @MMK_L_Q trademark -40;
+ pos @MMK_L_Q colon -25;
+ pos @MMK_L_Q quotedblright -70;
+ pos @MMK_L_Q @MMK_R_a.alt -20;
+ pos @MMK_L_Q @MMK_R_x -45;
+ pos @MMK_L_Q @MMK_R_y -20;
+ pos @MMK_L_Q @MMK_R_s -35;
+ pos @MMK_L_Q @MMK_R_v -25;
+ pos @MMK_L_Q @MMK_R_w -20;
+ pos @MMK_L_Q @MMK_R_t -15;
+ pos @MMK_L_Q @MMK_R_f -15;
+ pos @MMK_L_Q @MMK_R_Y -75;
+ pos @MMK_L_Q @MMK_R_S -55;
+ pos @MMK_L_Q @MMK_R_V -75;
+ pos @MMK_L_Q @MMK_R_W -60;
+ pos @MMK_L_Q @MMK_R_T -80;
+ pos @MMK_L_Q @MMK_R_J -115;
+ pos @MMK_L_Q @MMK_R_A -65;
+ pos @MMK_L_Q @MMK_R_X -75;
+ pos @MMK_L_Q @MMK_R_tcaron -15;
+ pos @MMK_L_F parenright -25;
+ pos @MMK_L_F braceright -60;
+ pos @MMK_L_F quotedblright -10;
+ pos @MMK_L_F backslash -15;
+ pos @MMK_L_F slash -105;
+ pos @MMK_L_F multiply -45;
+ pos @MMK_L_F braceleft -60;
+ pos @MMK_L_F asciitilde -25;
+ pos @MMK_L_F numbersign -85;
+ pos @MMK_L_F underscore -320;
+ pos @MMK_L_F comma -115;
+ pos @MMK_L_F quoteright -10;
+ pos @MMK_L_F question -15;
+ pos @MMK_L_F questiondown -195;
+ pos @MMK_L_F quotesinglbase -115;
+ pos @MMK_L_F semicolon -10;
+ pos @MMK_L_F ellipsis -285;
+ pos @MMK_L_F guilsinglright -20;
+ pos @MMK_L_F dollar -30;
+ pos @MMK_L_F quotedblbase -205;
+ pos @MMK_L_F euro -90;
+ pos @MMK_L_F sterling -35;
+ pos @MMK_L_F asciicircum -15;
+ pos @MMK_L_F guillemetright -20;
+ pos @MMK_L_F @MMK_R_a.alt -25;
+ pos @MMK_L_F @MMK_R_S -25;
+ pos @MMK_L_F @MMK_R_A -65;
+ pos @MMK_L_F @MMK_R_J -285;
+ pos @MMK_L_F @MMK_R_s -30;
+ pos @MMK_L_F @MMK_R_x -10;
+ pos @MMK_L_R at -15;
+ pos @MMK_L_R minus -10;
+ pos @MMK_L_R questiondown -35;
+ pos @MMK_L_R sterling -55;
+ pos @MMK_L_R quotedblleft -10;
+ pos @MMK_L_R dollar -35;
+ pos @MMK_L_R semicolon -10;
+ pos @MMK_L_R quotesingle -15;
+ pos @MMK_L_R divide -10;
+ pos @MMK_L_R copyright -15;
+ pos @MMK_L_R question -75;
+ pos @MMK_L_R ellipsis -40;
+ pos @MMK_L_R euro -90;
+ pos @MMK_L_R numbersign -105;
+ pos @MMK_L_R slash -30;
+ pos @MMK_L_R hyphen -25;
+ pos @MMK_L_R endash -25;
+ pos @MMK_L_R quotedblright -20;
+ pos @MMK_L_R less -10;
+ pos @MMK_L_R backslash -85;
+ pos @MMK_L_R cent -25;
+ pos @MMK_L_R quotesinglbase -55;
+ pos @MMK_L_R guilsinglleft -80;
+ pos @MMK_L_R yen -30;
+ pos @MMK_L_R quotedblbase -55;
+ pos @MMK_L_R quoteleft -10;
+ pos @MMK_L_R emdash -25;
+ pos @MMK_L_R periodcentered -45;
+ pos @MMK_L_R braceleft -85;
+ pos @MMK_L_R asciitilde -55;
+ pos @MMK_L_R plus -10;
+ pos @MMK_L_R quoteright -20;
+ pos @MMK_L_R degree -20;
+ pos @MMK_L_R parenright -80;
+ pos @MMK_L_R guillemetleft -80;
+ pos @MMK_L_R bullet -25;
+ pos @MMK_L_R quotedbl -15;
+ pos @MMK_L_R guilsinglright -20;
+ pos @MMK_L_R guillemetright -20;
+ pos @MMK_L_R parenleft -20;
+ pos @MMK_L_R comma -55;
+ pos @MMK_L_R asciicircum -15;
+ pos @MMK_L_R braceright -65;
+ pos @MMK_L_R multiply -45;
+ pos @MMK_L_R ampersand -65;
+ pos @MMK_L_R underscore -350;
+ pos @MMK_L_R @MMK_R_q -30;
+ pos @MMK_L_R @MMK_R_dcaron -30;
+ pos @MMK_L_R @MMK_R_A -35;
+ pos @MMK_L_R @MMK_R_J -85;
+ pos @MMK_L_R @MMK_R_O -10;
+ pos @MMK_L_R @MMK_R_Q -10;
+ pos @MMK_L_R @MMK_R_S -30;
+ pos @MMK_L_R @MMK_R_T -25;
+ pos @MMK_L_R @MMK_R_W -40;
+ pos @MMK_L_R @MMK_R_V -45;
+ pos @MMK_L_R @MMK_R_Y -50;
+ pos @MMK_L_R @MMK_R_X -35;
+ pos @MMK_L_R @MMK_R_a -30;
+ pos @MMK_L_R @MMK_R_c -30;
+ pos @MMK_L_R @MMK_R_e -30;
+ pos @MMK_L_R @MMK_R_d -30;
+ pos @MMK_L_R @MMK_R_g -25;
+ pos @MMK_L_R @MMK_R_o -30;
+ pos @MMK_L_R @MMK_R_s -30;
+ pos @MMK_L_R @MMK_R_x -15;
+ pos @MMK_L_R @MMK_R_oslash -30;
+ pos @MMK_L_R @MMK_R_eth -35;
+ pos @MMK_L_R @MMK_R_dcroat -30;
+ pos @MMK_L_R @MMK_R_Oslash -10;
+ pos @MMK_L_R @MMK_R_a.alt -80;
+ pos @MMK_L_L comma -15;
+ pos @MMK_L_L quoteleft -115;
+ pos @MMK_L_L cent -20;
+ pos @MMK_L_L underscore -300;
+ pos @MMK_L_L multiply -105;
+ pos @MMK_L_L asciitilde -240;
+ pos @MMK_L_L divide -220;
+ pos @MMK_L_L registered -155;
+ pos @MMK_L_L quotedblleft -200;
+ pos @MMK_L_L degree -215;
+ pos @MMK_L_L braceright -55;
+ pos @MMK_L_L quotedblbase -15;
+ pos @MMK_L_L quotedbl -200;
+ pos @MMK_L_L at -20;
+ pos @MMK_L_L guilsinglleft -75;
+ pos @MMK_L_L dollar -45;
+ pos @MMK_L_L perthousand -85;
+ pos @MMK_L_L asterisk -190;
+ pos @MMK_L_L numbersign -50;
+ pos @MMK_L_L backslash -235;
+ pos @MMK_L_L sterling -30;
+ pos @MMK_L_L parenright -85;
+ pos @MMK_L_L plus -235;
+ pos @MMK_L_L minus -300;
+ pos @MMK_L_L asciicircum -260;
+ pos @MMK_L_L percent -85;
+ pos @MMK_L_L quotedblright -200;
+ pos @MMK_L_L copyright -20;
+ pos @MMK_L_L semicolon -10;
+ pos @MMK_L_L paragraph -220;
+ pos @MMK_L_L braceleft -105;
+ pos @MMK_L_L question -180;
+ pos @MMK_L_L euro -190;
+ pos @MMK_L_L periodcentered -100;
+ pos @MMK_L_L emdash -300;
+ pos @MMK_L_L bullet -80;
+ pos @MMK_L_L guillemetleft -75;
+ pos @MMK_L_L endash -290;
+ pos @MMK_L_L hyphen -185;
+ pos @MMK_L_L trademark -300;
+ pos @MMK_L_L quotesingle -110;
+ pos @MMK_L_L quotesinglbase -15;
+ pos @MMK_L_L parenleft -15;
+ pos @MMK_L_L yen -55;
+ pos @MMK_L_L quoteright -115;
+ pos @MMK_L_L less -295;
+ pos @MMK_L_L @MMK_R_dcaron -15;
+ pos @MMK_L_L @MMK_R_tcaron -80;
+ pos @MMK_L_L @MMK_R_oslash -20;
+ pos @MMK_L_L @MMK_R_dcroat -15;
+ pos @MMK_L_L @MMK_R_eth -15;
+ pos @MMK_L_L @MMK_R_Q -50;
+ pos @MMK_L_L @MMK_R_O -50;
+ pos @MMK_L_L @MMK_R_J -25;
+ pos @MMK_L_L @MMK_R_G -50;
+ pos @MMK_L_L @MMK_R_C -55;
+ pos @MMK_L_L @MMK_R_Y -100;
+ pos @MMK_L_L @MMK_R_W -100;
+ pos @MMK_L_L @MMK_R_V -125;
+ pos @MMK_L_L @MMK_R_U -20;
+ pos @MMK_L_L @MMK_R_T -135;
+ pos @MMK_L_L @MMK_R_S -35;
+ pos @MMK_L_L @MMK_R_o -20;
+ pos @MMK_L_L @MMK_R_g -30;
+ pos @MMK_L_L @MMK_R_f -80;
+ pos @MMK_L_L @MMK_R_e -20;
+ pos @MMK_L_L @MMK_R_d -15;
+ pos @MMK_L_L @MMK_R_c -15;
+ pos @MMK_L_L @MMK_R_a -15;
+ pos @MMK_L_L @MMK_R_y -45;
+ pos @MMK_L_L @MMK_R_w -50;
+ pos @MMK_L_L @MMK_R_v -55;
+ pos @MMK_L_L @MMK_R_t -80;
+ pos @MMK_L_L @MMK_R_s -20;
+ pos @MMK_L_L @MMK_R_q -15;
+ pos @MMK_L_Y braceright -70;
+ pos @MMK_L_Y hyphen -85;
+ pos @MMK_L_Y quotedbl -10;
+ pos @MMK_L_Y quotedblleft -30;
+ pos @MMK_L_Y quotedblbase -120;
+ pos @MMK_L_Y asterisk -15;
+ pos @MMK_L_Y dollar -60;
+ pos @MMK_L_Y plus -75;
+ pos @MMK_L_Y asciitilde -115;
+ pos @MMK_L_Y semicolon -55;
+ pos @MMK_L_Y degree -15;
+ pos @MMK_L_Y perthousand -30;
+ pos @MMK_L_Y guilsinglleft -95;
+ pos @MMK_L_Y minus -75;
+ pos @MMK_L_Y quoteleft -30;
+ pos @MMK_L_Y endash -85;
+ pos @MMK_L_Y euro -135;
+ pos @MMK_L_Y guillemetleft -95;
+ pos @MMK_L_Y underscore -355;
+ pos @MMK_L_Y cent -90;
+ pos @MMK_L_Y braceleft -135;
+ pos @MMK_L_Y multiply -105;
+ pos @MMK_L_Y ellipsis -105;
+ pos @MMK_L_Y guillemetright -85;
+ pos @MMK_L_Y less -75;
+ pos @MMK_L_Y trademark -30;
+ pos @MMK_L_Y parenright -40;
+ pos @MMK_L_Y divide -75;
+ pos @MMK_L_Y question -25;
+ pos @MMK_L_Y registered -50;
+ pos @MMK_L_Y paragraph -35;
+ pos @MMK_L_Y quotesinglbase -115;
+ pos @MMK_L_Y comma -115;
+ pos @MMK_L_Y at -80;
+ pos @MMK_L_Y slash -100;
+ pos @MMK_L_Y backslash -15;
+ pos @MMK_L_Y questiondown -105;
+ pos @MMK_L_Y periodcentered -100;
+ pos @MMK_L_Y asciicircum -80;
+ pos @MMK_L_Y ampersand -105;
+ pos @MMK_L_Y bullet -90;
+ pos @MMK_L_Y guilsinglright -85;
+ pos @MMK_L_Y quotesingle -10;
+ pos @MMK_L_Y equal -45;
+ pos @MMK_L_Y copyright -85;
+ pos @MMK_L_Y quoteright -25;
+ pos @MMK_L_Y sterling -115;
+ pos @MMK_L_Y parenleft -85;
+ pos @MMK_L_Y percent -30;
+ pos @MMK_L_Y emdash -85;
+ pos @MMK_L_Y colon -50;
+ pos @MMK_L_Y quotedblright -25;
+ pos @MMK_L_Y numbersign -155;
+ pos @MMK_L_Y @MMK_R_C -65;
+ pos @MMK_L_Y @MMK_R_A -105;
+ pos @MMK_L_Y @MMK_R_G -70;
+ pos @MMK_L_Y @MMK_R_J -130;
+ pos @MMK_L_Y @MMK_R_S -55;
+ pos @MMK_L_Y @MMK_R_Q -70;
+ pos @MMK_L_Y @MMK_R_c -95;
+ pos @MMK_L_Y @MMK_R_a -95;
+ pos @MMK_L_Y @MMK_R_g -90;
+ pos @MMK_L_Y @MMK_R_d -95;
+ pos @MMK_L_Y @MMK_R_e -95;
+ pos @MMK_L_Y @MMK_R_n -45;
+ pos @MMK_L_Y @MMK_R_o -95;
+ pos @MMK_L_Y @MMK_R_m -45;
+ pos @MMK_L_Y @MMK_R_r -45;
+ pos @MMK_L_Y @MMK_R_s -95;
+ pos @MMK_L_Y @MMK_R_q -95;
+ pos @MMK_L_Y @MMK_R_v -45;
+ pos @MMK_L_Y @MMK_R_w -45;
+ pos @MMK_L_Y @MMK_R_t -45;
+ pos @MMK_L_Y @MMK_R_u -45;
+ pos @MMK_L_Y @MMK_R_z -45;
+ pos @MMK_L_Y @MMK_R_x -55;
+ pos @MMK_L_Y @MMK_R_y -45;
+ pos @MMK_L_Y @MMK_R_germandbls -35;
+ pos @MMK_L_Y @MMK_R_a.alt -105;
+ pos @MMK_L_Y @MMK_R_O -70;
+ pos @MMK_L_Y @MMK_R_f -45;
+ pos @MMK_L_Y @MMK_R_p -45;
+ pos @MMK_L_Y @MMK_R_Oslash -70;
+ pos @MMK_L_Y @MMK_R_eth -95;
+ pos @MMK_L_Y @MMK_R_dcaron -95;
+ pos @MMK_L_Y @MMK_R_dcroat -95;
+ pos @MMK_L_Y @MMK_R_tcaron -45;
+ pos @MMK_L_Y @MMK_R_oslash -95;
+ pos @MMK_L_X perthousand -30;
+ pos @MMK_L_X quotedblleft -30;
+ pos @MMK_L_X emdash -55;
+ pos @MMK_L_X guilsinglleft -70;
+ pos @MMK_L_X paragraph -40;
+ pos @MMK_L_X plus -75;
+ pos @MMK_L_X quotesingle -10;
+ pos @MMK_L_X quoteleft -30;
+ pos @MMK_L_X degree -15;
+ pos @MMK_L_X copyright -65;
+ pos @MMK_L_X quotedblbase -25;
+ pos @MMK_L_X endash -55;
+ pos @MMK_L_X asterisk -20;
+ pos @MMK_L_X quotesinglbase -25;
+ pos @MMK_L_X cent -65;
+ pos @MMK_L_X less -85;
+ pos @MMK_L_X question -25;
+ pos @MMK_L_X braceleft -110;
+ pos @MMK_L_X guilsinglright -15;
+ pos @MMK_L_X minus -75;
+ pos @MMK_L_X dollar -55;
+ pos @MMK_L_X euro -140;
+ pos @MMK_L_X ellipsis -10;
+ pos @MMK_L_X quotedbl -10;
+ pos @MMK_L_X percent -30;
+ pos @MMK_L_X underscore -355;
+ pos @MMK_L_X sterling -35;
+ pos @MMK_L_X colon -10;
+ pos @MMK_L_X trademark -35;
+ pos @MMK_L_X equal -45;
+ pos @MMK_L_X numbersign -75;
+ pos @MMK_L_X asciitilde -120;
+ pos @MMK_L_X guillemetleft -70;
+ pos @MMK_L_X quoteright -25;
+ pos @MMK_L_X bullet -85;
+ pos @MMK_L_X divide -75;
+ pos @MMK_L_X hyphen -55;
+ pos @MMK_L_X ampersand -50;
+ pos @MMK_L_X registered -55;
+ pos @MMK_L_X periodcentered -80;
+ pos @MMK_L_X semicolon -15;
+ pos @MMK_L_X parenleft -60;
+ pos @MMK_L_X braceright -55;
+ pos @MMK_L_X asciicircum -90;
+ pos @MMK_L_X at -65;
+ pos @MMK_L_X parenright -40;
+ pos @MMK_L_X guillemetright -15;
+ pos @MMK_L_X multiply -105;
+ pos @MMK_L_X comma -25;
+ pos @MMK_L_X quotedblright -25;
+ pos @MMK_L_X backslash -15;
+ pos @MMK_L_X @MMK_R_dcaron -65;
+ pos @MMK_L_X @MMK_R_y -50;
+ pos @MMK_L_X @MMK_R_s -30;
+ pos @MMK_L_X @MMK_R_q -65;
+ pos @MMK_L_X @MMK_R_w -50;
+ pos @MMK_L_X @MMK_R_v -50;
+ pos @MMK_L_X @MMK_R_u -45;
+ pos @MMK_L_X @MMK_R_t -50;
+ pos @MMK_L_X @MMK_R_o -70;
+ pos @MMK_L_X @MMK_R_c -65;
+ pos @MMK_L_X @MMK_R_a -65;
+ pos @MMK_L_X @MMK_R_g -75;
+ pos @MMK_L_X @MMK_R_f -50;
+ pos @MMK_L_X @MMK_R_e -65;
+ pos @MMK_L_X @MMK_R_d -65;
+ pos @MMK_L_X @MMK_R_S -50;
+ pos @MMK_L_X @MMK_R_J -40;
+ pos @MMK_L_X @MMK_R_O -80;
+ pos @MMK_L_X @MMK_R_C -75;
+ pos @MMK_L_X @MMK_R_G -75;
+ pos @MMK_L_X @MMK_R_eth -60;
+ pos @MMK_L_X @MMK_R_a.alt -40;
+ pos @MMK_L_X @MMK_R_oslash -25;
+ pos @MMK_L_X @MMK_R_dcroat -65;
+ pos @MMK_L_X @MMK_R_Q -80;
+ pos @MMK_L_X @MMK_R_tcaron -50;
+ pos @MMK_L_Oslash quoteright -50;
+ pos @MMK_L_Oslash slash -100;
+ pos @MMK_L_Oslash perthousand -35;
+ pos @MMK_L_Oslash yen -25;
+ pos @MMK_L_Oslash quotesinglbase -110;
+ pos @MMK_L_Oslash dollar -65;
+ pos @MMK_L_Oslash multiply -50;
+ pos @MMK_L_Oslash backslash -35;
+ pos @MMK_L_Oslash quoteleft -45;
+ pos @MMK_L_Oslash quotedblbase -110;
+ pos @MMK_L_Oslash quotesingle -35;
+ pos @MMK_L_Oslash braceleft -60;
+ pos @MMK_L_Oslash guilsinglright -30;
+ pos @MMK_L_Oslash colon -25;
+ pos @MMK_L_Oslash ampersand -10;
+ pos @MMK_L_Oslash paragraph -25;
+ pos @MMK_L_Oslash question -70;
+ pos @MMK_L_Oslash quotedblleft -45;
+ pos @MMK_L_Oslash degree -40;
+ pos @MMK_L_Oslash semicolon -35;
+ pos @MMK_L_Oslash ellipsis -95;
+ pos @MMK_L_Oslash guillemetright -30;
+ pos @MMK_L_Oslash parenright -90;
+ pos @MMK_L_Oslash comma -110;
+ pos @MMK_L_Oslash quotedblright -50;
+ pos @MMK_L_Oslash asciicircum -25;
+ pos @MMK_L_Oslash registered -10;
+ pos @MMK_L_Oslash trademark -40;
+ pos @MMK_L_Oslash sterling -35;
+ pos @MMK_L_Oslash braceright -60;
+ pos @MMK_L_Oslash quotedbl -35;
+ pos @MMK_L_Oslash questiondown -80;
+ pos @MMK_L_Oslash asciitilde -30;
+ pos @MMK_L_Oslash numbersign -85;
+ pos @MMK_L_Oslash euro -90;
+ pos @MMK_L_Oslash percent -35;
+ pos @MMK_L_Oslash asterisk -30;
+ pos @MMK_L_Oslash underscore -200;
+ pos @MMK_L_Oslash @MMK_R_X -25;
+ pos @MMK_L_Oslash @MMK_R_x -45;
+ pos @MMK_L_Oslash @MMK_R_tcaron -15;
+ pos @MMK_L_Oslash @MMK_R_a.alt -20;
+ pos @MMK_L_Oslash @MMK_R_Y -25;
+ pos @MMK_L_Oslash @MMK_R_V -25;
+ pos @MMK_L_Oslash @MMK_R_W -25;
+ pos @MMK_L_Oslash @MMK_R_T -25;
+ pos @MMK_L_Oslash @MMK_R_S -60;
+ pos @MMK_L_Oslash @MMK_R_J -135;
+ pos @MMK_L_Oslash @MMK_R_A -70;
+ pos @MMK_L_Oslash @MMK_R_y -25;
+ pos @MMK_L_Oslash @MMK_R_v -25;
+ pos @MMK_L_Oslash @MMK_R_w -25;
+ pos @MMK_L_Oslash @MMK_R_t -15;
+ pos @MMK_L_Oslash @MMK_R_s -35;
+ pos @MMK_L_Oslash @MMK_R_f -15;
+ pos @MMK_L_W ellipsis -125;
+ pos @MMK_L_W colon -35;
+ pos @MMK_L_W quotedbl -10;
+ pos @MMK_L_W underscore -355;
+ pos @MMK_L_W plus -60;
+ pos @MMK_L_W parenleft -70;
+ pos @MMK_L_W asciicircum -65;
+ pos @MMK_L_W registered -40;
+ pos @MMK_L_W equal -35;
+ pos @MMK_L_W guillemetleft -75;
+ pos @MMK_L_W guilsinglleft -75;
+ pos @MMK_L_W parenright -35;
+ pos @MMK_L_W guilsinglright -70;
+ pos @MMK_L_W asciitilde -100;
+ pos @MMK_L_W hyphen -65;
+ pos @MMK_L_W quoteright -25;
+ pos @MMK_L_W periodcentered -75;
+ pos @MMK_L_W degree -15;
+ pos @MMK_L_W ampersand -90;
+ pos @MMK_L_W quotesingle -10;
+ pos @MMK_L_W semicolon -45;
+ pos @MMK_L_W braceleft -125;
+ pos @MMK_L_W at -65;
+ pos @MMK_L_W asterisk -15;
+ pos @MMK_L_W cent -70;
+ pos @MMK_L_W quotedblleft -20;
+ pos @MMK_L_W perthousand -25;
+ pos @MMK_L_W paragraph -30;
+ pos @MMK_L_W euro -125;
+ pos @MMK_L_W quotedblbase -140;
+ pos @MMK_L_W dollar -55;
+ pos @MMK_L_W quoteleft -20;
+ pos @MMK_L_W comma -115;
+ pos @MMK_L_W braceright -70;
+ pos @MMK_L_W endash -65;
+ pos @MMK_L_W divide -60;
+ pos @MMK_L_W quotesinglbase -115;
+ pos @MMK_L_W questiondown -125;
+ pos @MMK_L_W guillemetright -70;
+ pos @MMK_L_W question -25;
+ pos @MMK_L_W quotedblright -25;
+ pos @MMK_L_W copyright -65;
+ pos @MMK_L_W bullet -70;
+ pos @MMK_L_W backslash -15;
+ pos @MMK_L_W less -60;
+ pos @MMK_L_W multiply -90;
+ pos @MMK_L_W percent -25;
+ pos @MMK_L_W sterling -100;
+ pos @MMK_L_W minus -60;
+ pos @MMK_L_W emdash -65;
+ pos @MMK_L_W slash -130;
+ pos @MMK_L_W numbersign -160;
+ pos @MMK_L_W trademark -25;
+ pos @MMK_L_W @MMK_R_m -35;
+ pos @MMK_L_W @MMK_R_n -35;
+ pos @MMK_L_W @MMK_R_o -75;
+ pos @MMK_L_W @MMK_R_d -75;
+ pos @MMK_L_W @MMK_R_f -35;
+ pos @MMK_L_W @MMK_R_g -70;
+ pos @MMK_L_W @MMK_R_a -75;
+ pos @MMK_L_W @MMK_R_c -75;
+ pos @MMK_L_W @MMK_R_x -45;
+ pos @MMK_L_W @MMK_R_z -35;
+ pos @MMK_L_W @MMK_R_t -35;
+ pos @MMK_L_W @MMK_R_u -35;
+ pos @MMK_L_W @MMK_R_v -35;
+ pos @MMK_L_W @MMK_R_w -35;
+ pos @MMK_L_W @MMK_R_p -35;
+ pos @MMK_L_W @MMK_R_q -75;
+ pos @MMK_L_W @MMK_R_r -35;
+ pos @MMK_L_W @MMK_R_s -80;
+ pos @MMK_L_W @MMK_R_O -55;
+ pos @MMK_L_W @MMK_R_J -150;
+ pos @MMK_L_W @MMK_R_G -55;
+ pos @MMK_L_W @MMK_R_A -135;
+ pos @MMK_L_W @MMK_R_C -55;
+ pos @MMK_L_W @MMK_R_Q -60;
+ pos @MMK_L_W @MMK_R_S -50;
+ pos @MMK_L_W @MMK_R_a.alt -95;
+ pos @MMK_L_W @MMK_R_eth -75;
+ pos @MMK_L_W @MMK_R_germandbls -25;
+ pos @MMK_L_W @MMK_R_Oslash -55;
+ pos @MMK_L_W @MMK_R_y -35;
+ pos @MMK_L_W @MMK_R_tcaron -35;
+ pos @MMK_L_W @MMK_R_e -75;
+ pos @MMK_L_W @MMK_R_oslash -75;
+ pos @MMK_L_W @MMK_R_dcaron -75;
+ pos @MMK_L_W @MMK_R_dcroat -75;
+ pos @MMK_L_T parenleft -75;
+ pos @MMK_L_T quoteright -15;
+ pos @MMK_L_T colon -105;
+ pos @MMK_L_T less -135;
+ pos @MMK_L_T guillemetright -130;
+ pos @MMK_L_T braceright -70;
+ pos @MMK_L_T backslash -15;
+ pos @MMK_L_T questiondown -135;
+ pos @MMK_L_T hyphen -135;
+ pos @MMK_L_T parenright -25;
+ pos @MMK_L_T asciitilde -160;
+ pos @MMK_L_T periodcentered -100;
+ pos @MMK_L_T semicolon -75;
+ pos @MMK_L_T registered -25;
+ pos @MMK_L_T slash -130;
+ pos @MMK_L_T braceleft -110;
+ pos @MMK_L_T question -15;
+ pos @MMK_L_T asciicircum -100;
+ pos @MMK_L_T quotedblright -15;
+ pos @MMK_L_T minus -135;
+ pos @MMK_L_T endash -135;
+ pos @MMK_L_T guilsinglleft -130;
+ pos @MMK_L_T dollar -30;
+ pos @MMK_L_T ellipsis -135;
+ pos @MMK_L_T sterling -90;
+ pos @MMK_L_T underscore -345;
+ pos @MMK_L_T guilsinglright -130;
+ pos @MMK_L_T quotesinglbase -115;
+ pos @MMK_L_T multiply -175;
+ pos @MMK_L_T equal -135;
+ pos @MMK_L_T guillemetleft -130;
+ pos @MMK_L_T euro -190;
+ pos @MMK_L_T copyright -85;
+ pos @MMK_L_T emdash -135;
+ pos @MMK_L_T ampersand -90;
+ pos @MMK_L_T comma -115;
+ pos @MMK_L_T at -80;
+ pos @MMK_L_T numbersign -185;
+ pos @MMK_L_T cent -135;
+ pos @MMK_L_T quotedblbase -150;
+ pos @MMK_L_T bullet -135;
+ pos @MMK_L_T plus -135;
+ pos @MMK_L_T divide -135;
+ pos @MMK_L_T @MMK_R_Oslash -55;
+ pos @MMK_L_T @MMK_R_eth -135;
+ pos @MMK_L_T @MMK_R_oslash -135;
+ pos @MMK_L_T @MMK_R_S -30;
+ pos @MMK_L_T @MMK_R_Q -60;
+ pos @MMK_L_T @MMK_R_G -55;
+ pos @MMK_L_T @MMK_R_C -50;
+ pos @MMK_L_T @MMK_R_A -135;
+ pos @MMK_L_T @MMK_R_O -60;
+ pos @MMK_L_T @MMK_R_J -160;
+ pos @MMK_L_T @MMK_R_w -135;
+ pos @MMK_L_T @MMK_R_v -135;
+ pos @MMK_L_T @MMK_R_u -135;
+ pos @MMK_L_T @MMK_R_t -80;
+ pos @MMK_L_T @MMK_R_s -155;
+ pos @MMK_L_T @MMK_R_r -135;
+ pos @MMK_L_T @MMK_R_q -135;
+ pos @MMK_L_T @MMK_R_p -135;
+ pos @MMK_L_T @MMK_R_z -135;
+ pos @MMK_L_T @MMK_R_y -135;
+ pos @MMK_L_T @MMK_R_x -135;
+ pos @MMK_L_T @MMK_R_g -135;
+ pos @MMK_L_T @MMK_R_f -80;
+ pos @MMK_L_T @MMK_R_e -135;
+ pos @MMK_L_T @MMK_R_d -135;
+ pos @MMK_L_T @MMK_R_c -135;
+ pos @MMK_L_T @MMK_R_a -135;
+ pos @MMK_L_T @MMK_R_o -135;
+ pos @MMK_L_T @MMK_R_n -135;
+ pos @MMK_L_T @MMK_R_m -135;
+ pos @MMK_L_T @MMK_R_tcaron -80;
+ pos @MMK_L_T @MMK_R_a.alt -135;
+ pos @MMK_L_T @MMK_R_dcaron -135;
+ pos @MMK_L_T @MMK_R_dcroat -135;
+ pos @MMK_L_Lslash euro -220;
+ pos @MMK_L_Lslash quoteleft -115;
+ pos @MMK_L_Lslash braceright -55;
+ pos @MMK_L_Lslash semicolon -10;
+ pos @MMK_L_Lslash endash -290;
+ pos @MMK_L_Lslash numbersign -70;
+ pos @MMK_L_Lslash backslash -235;
+ pos @MMK_L_Lslash ampersand -15;
+ pos @MMK_L_Lslash hyphen -185;
+ pos @MMK_L_Lslash cent -35;
+ pos @MMK_L_Lslash comma -15;
+ pos @MMK_L_Lslash yen -55;
+ pos @MMK_L_Lslash guillemetleft -110;
+ pos @MMK_L_Lslash underscore -345;
+ pos @MMK_L_Lslash sterling -30;
+ pos @MMK_L_Lslash multiply -145;
+ pos @MMK_L_Lslash percent -85;
+ pos @MMK_L_Lslash quoteright -115;
+ pos @MMK_L_Lslash registered -240;
+ pos @MMK_L_Lslash parenright -85;
+ pos @MMK_L_Lslash paragraph -220;
+ pos @MMK_L_Lslash degree -215;
+ pos @MMK_L_Lslash asciitilde -240;
+ pos @MMK_L_Lslash less -305;
+ pos @MMK_L_Lslash copyright -35;
+ pos @MMK_L_Lslash question -180;
+ pos @MMK_L_Lslash bullet -175;
+ pos @MMK_L_Lslash periodcentered -100;
+ pos @MMK_L_Lslash at -35;
+ pos @MMK_L_Lslash guilsinglleft -110;
+ pos @MMK_L_Lslash minus -320;
+ pos @MMK_L_Lslash plus -235;
+ pos @MMK_L_Lslash perthousand -85;
+ pos @MMK_L_Lslash quotesingle -110;
+ pos @MMK_L_Lslash quotedblleft -200;
+ pos @MMK_L_Lslash braceleft -110;
+ pos @MMK_L_Lslash asterisk -190;
+ pos @MMK_L_Lslash quotesinglbase -15;
+ pos @MMK_L_Lslash quotedblright -200;
+ pos @MMK_L_Lslash quotedblbase -15;
+ pos @MMK_L_Lslash emdash -320;
+ pos @MMK_L_Lslash dollar -45;
+ pos @MMK_L_Lslash divide -245;
+ pos @MMK_L_Lslash trademark -320;
+ pos @MMK_L_Lslash parenleft -25;
+ pos @MMK_L_Lslash equal -320;
+ pos @MMK_L_Lslash asciicircum -260;
+ pos @MMK_L_Lslash quotedbl -200;
+ pos @MMK_L_Lslash @MMK_R_tcaron -80;
+ pos @MMK_L_Lslash @MMK_R_dcroat -35;
+ pos @MMK_L_Lslash @MMK_R_y -55;
+ pos @MMK_L_Lslash @MMK_R_w -55;
+ pos @MMK_L_Lslash @MMK_R_v -60;
+ pos @MMK_L_Lslash @MMK_R_u -10;
+ pos @MMK_L_Lslash @MMK_R_s -20;
+ pos @MMK_L_Lslash @MMK_R_q -35;
+ pos @MMK_L_Lslash @MMK_R_g -55;
+ pos @MMK_L_Lslash @MMK_R_f -80;
+ pos @MMK_L_Lslash @MMK_R_e -35;
+ pos @MMK_L_Lslash @MMK_R_d -35;
+ pos @MMK_L_Lslash @MMK_R_c -35;
+ pos @MMK_L_Lslash @MMK_R_Y -100;
+ pos @MMK_L_Lslash @MMK_R_V -135;
+ pos @MMK_L_Lslash @MMK_R_U -35;
+ pos @MMK_L_Lslash @MMK_R_T -135;
+ pos @MMK_L_Lslash @MMK_R_S -35;
+ pos @MMK_L_Lslash @MMK_R_Q -75;
+ pos @MMK_L_Lslash @MMK_R_O -70;
+ pos @MMK_L_Lslash @MMK_R_J -25;
+ pos @MMK_L_Lslash @MMK_R_G -75;
+ pos @MMK_L_Lslash @MMK_R_C -80;
+ pos @MMK_L_Lslash @MMK_R_eth -30;
+ pos @MMK_L_Lslash @MMK_R_t -80;
+ pos @MMK_L_Lslash @MMK_R_o -40;
+ pos @MMK_L_Lslash @MMK_R_a -35;
+ pos @MMK_L_Lslash @MMK_R_W -110;
+ pos @MMK_L_Lslash @MMK_R_dcaron -35;
+ pos @MMK_L_Lslash @MMK_R_oslash -20;
+ pos @MMK_L_A endash -45;
+ pos @MMK_L_A divide -65;
+ pos @MMK_L_A quoteright -115;
+ pos @MMK_L_A quoteleft -115;
+ pos @MMK_L_A plus -65;
+ pos @MMK_L_A degree -140;
+ pos @MMK_L_A copyright -60;
+ pos @MMK_L_A percent -85;
+ pos @MMK_L_A guillemetright -10;
+ pos @MMK_L_A asterisk -120;
+ pos @MMK_L_A trademark -125;
+ pos @MMK_L_A quotedbl -130;
+ pos @MMK_L_A braceleft -110;
+ pos @MMK_L_A registered -100;
+ pos @MMK_L_A euro -140;
+ pos @MMK_L_A multiply -95;
+ pos @MMK_L_A perthousand -85;
+ pos @MMK_L_A periodcentered -65;
+ pos @MMK_L_A quotesinglbase -20;
+ pos @MMK_L_A equal -35;
+ pos @MMK_L_A yen -55;
+ pos @MMK_L_A paragraph -115;
+ pos @MMK_L_A semicolon -15;
+ pos @MMK_L_A hyphen -45;
+ pos @MMK_L_A underscore -355;
+ pos @MMK_L_A comma -20;
+ pos @MMK_L_A bullet -70;
+ pos @MMK_L_A backslash -180;
+ pos @MMK_L_A emdash -45;
+ pos @MMK_L_A less -75;
+ pos @MMK_L_A guilsinglleft -55;
+ pos @MMK_L_A at -60;
+ pos @MMK_L_A numbersign -70;
+ pos @MMK_L_A quotedblbase -20;
+ pos @MMK_L_A sterling -30;
+ pos @MMK_L_A parenright -85;
+ pos @MMK_L_A minus -65;
+ pos @MMK_L_A ampersand -45;
+ pos @MMK_L_A parenleft -50;
+ pos @MMK_L_A cent -55;
+ pos @MMK_L_A guilsinglright -10;
+ pos @MMK_L_A guillemetleft -55;
+ pos @MMK_L_A question -170;
+ pos @MMK_L_A quotesingle -110;
+ pos @MMK_L_A dollar -50;
+ pos @MMK_L_A asciicircum -115;
+ pos @MMK_L_A braceright -55;
+ pos @MMK_L_A quotedblright -140;
+ pos @MMK_L_A asciitilde -105;
+ pos @MMK_L_A quotedblleft -130;
+ pos @MMK_L_A @MMK_R_w -70;
+ pos @MMK_L_A @MMK_R_V -165;
+ pos @MMK_L_A @MMK_R_o -60;
+ pos @MMK_L_A @MMK_R_c -55;
+ pos @MMK_L_A @MMK_R_a -55;
+ pos @MMK_L_A @MMK_R_f -80;
+ pos @MMK_L_A @MMK_R_g -65;
+ pos @MMK_L_A @MMK_R_d -55;
+ pos @MMK_L_A @MMK_R_e -55;
+ pos @MMK_L_A @MMK_R_y -70;
+ pos @MMK_L_A @MMK_R_s -30;
+ pos @MMK_L_A @MMK_R_q -55;
+ pos @MMK_L_A @MMK_R_v -75;
+ pos @MMK_L_A @MMK_R_t -105;
+ pos @MMK_L_A @MMK_R_u -40;
+ pos @MMK_L_A @MMK_R_J -35;
+ pos @MMK_L_A @MMK_R_O -75;
+ pos @MMK_L_A @MMK_R_C -80;
+ pos @MMK_L_A @MMK_R_G -75;
+ pos @MMK_L_A @MMK_R_Y -100;
+ pos @MMK_L_A @MMK_R_S -45;
+ pos @MMK_L_A @MMK_R_Q -75;
+ pos @MMK_L_A @MMK_R_W -135;
+ pos @MMK_L_A @MMK_R_T -135;
+ pos @MMK_L_A @MMK_R_U -60;
+ pos @MMK_L_A @MMK_R_dcroat -55;
+ pos @MMK_L_A @MMK_R_eth -55;
+ pos @MMK_L_A @MMK_R_tcaron -105;
+ pos @MMK_L_A @MMK_R_oslash -20;
+ pos @MMK_L_A @MMK_R_dcaron -55;
+ pos @MMK_L_A @MMK_R_a.alt -35;
+ pos @MMK_L_O semicolon -35;
+ pos @MMK_L_O dollar -60;
+ pos @MMK_L_O quotedblleft -45;
+ pos @MMK_L_O asciicircum -25;
+ pos @MMK_L_O asterisk -30;
+ pos @MMK_L_O braceright -60;
+ pos @MMK_L_O questiondown -80;
+ pos @MMK_L_O yen -50;
+ pos @MMK_L_O numbersign -85;
+ pos @MMK_L_O slash -95;
+ pos @MMK_L_O paragraph -25;
+ pos @MMK_L_O perthousand -30;
+ pos @MMK_L_O multiply -50;
+ pos @MMK_L_O quotedblright -65;
+ pos @MMK_L_O question -140;
+ pos @MMK_L_O degree -55;
+ pos @MMK_L_O guillemetright -30;
+ pos @MMK_L_O guilsinglright -30;
+ pos @MMK_L_O registered -10;
+ pos @MMK_L_O quoteright -65;
+ pos @MMK_L_O sterling -35;
+ pos @MMK_L_O colon -25;
+ pos @MMK_L_O quotedbl -35;
+ pos @MMK_L_O trademark -40;
+ pos @MMK_L_O percent -30;
+ pos @MMK_L_O quotesinglbase -105;
+ pos @MMK_L_O quoteleft -45;
+ pos @MMK_L_O comma -105;
+ pos @MMK_L_O quotedblbase -105;
+ pos @MMK_L_O parenright -145;
+ pos @MMK_L_O underscore -200;
+ pos @MMK_L_O ampersand -10;
+ pos @MMK_L_O backslash -130;
+ pos @MMK_L_O asciitilde -25;
+ pos @MMK_L_O euro -90;
+ pos @MMK_L_O braceleft -60;
+ pos @MMK_L_O quotesingle -35;
+ pos @MMK_L_O ellipsis -90;
+ pos @MMK_L_O @MMK_R_f -15;
+ pos @MMK_L_O @MMK_R_t -15;
+ pos @MMK_L_O @MMK_R_v -25;
+ pos @MMK_L_O @MMK_R_s -35;
+ pos @MMK_L_O @MMK_R_x -45;
+ pos @MMK_L_O @MMK_R_y -20;
+ pos @MMK_L_O @MMK_R_A -65;
+ pos @MMK_L_O @MMK_R_J -135;
+ pos @MMK_L_O @MMK_R_T -75;
+ pos @MMK_L_O @MMK_R_V -75;
+ pos @MMK_L_O @MMK_R_S -55;
+ pos @MMK_L_O @MMK_R_X -75;
+ pos @MMK_L_O @MMK_R_Y -75;
+ pos @MMK_L_O @MMK_R_w -20;
+ pos @MMK_L_O @MMK_R_W -60;
+ pos @MMK_L_O @MMK_R_a.alt -20;
+ pos @MMK_L_O @MMK_R_tcaron -15;
+ pos @MMK_L_V plus -70;
+ pos @MMK_L_V at -75;
+ pos @MMK_L_V questiondown -150;
+ pos @MMK_L_V quoteleft -25;
+ pos @MMK_L_V guillemetleft -95;
+ pos @MMK_L_V question -25;
+ pos @MMK_L_V guillemetright -80;
+ pos @MMK_L_V guilsinglright -80;
+ pos @MMK_L_V less -70;
+ pos @MMK_L_V ampersand -105;
+ pos @MMK_L_V parenleft -80;
+ pos @MMK_L_V minus -70;
+ pos @MMK_L_V periodcentered -90;
+ pos @MMK_L_V asciitilde -110;
+ pos @MMK_L_V copyright -80;
+ pos @MMK_L_V asterisk -15;
+ pos @MMK_L_V bullet -85;
+ pos @MMK_L_V quotedblright -25;
+ pos @MMK_L_V endash -80;
+ pos @MMK_L_V quotedblbase -170;
+ pos @MMK_L_V percent -25;
+ pos @MMK_L_V ellipsis -150;
+ pos @MMK_L_V quotesingle -10;
+ pos @MMK_L_V comma -115;
+ pos @MMK_L_V registered -50;
+ pos @MMK_L_V semicolon -55;
+ pos @MMK_L_V guilsinglleft -95;
+ pos @MMK_L_V colon -45;
+ pos @MMK_L_V braceright -70;
+ pos @MMK_L_V euro -135;
+ pos @MMK_L_V emdash -80;
+ pos @MMK_L_V equal -45;
+ pos @MMK_L_V multiply -100;
+ pos @MMK_L_V backslash -15;
+ pos @MMK_L_V numbersign -180;
+ pos @MMK_L_V braceleft -135;
+ pos @MMK_L_V underscore -335;
+ pos @MMK_L_V parenright -35;
+ pos @MMK_L_V trademark -30;
+ pos @MMK_L_V divide -70;
+ pos @MMK_L_V perthousand -25;
+ pos @MMK_L_V sterling -110;
+ pos @MMK_L_V quotesinglbase -115;
+ pos @MMK_L_V slash -155;
+ pos @MMK_L_V dollar -60;
+ pos @MMK_L_V degree -15;
+ pos @MMK_L_V cent -85;
+ pos @MMK_L_V paragraph -35;
+ pos @MMK_L_V asciicircum -75;
+ pos @MMK_L_V hyphen -80;
+ pos @MMK_L_V quotedblleft -25;
+ pos @MMK_L_V quotedbl -10;
+ pos @MMK_L_V quoteright -25;
+ pos @MMK_L_V @MMK_R_a.alt -105;
+ pos @MMK_L_V @MMK_R_oslash -85;
+ pos @MMK_L_V @MMK_R_Oslash -65;
+ pos @MMK_L_V @MMK_R_eth -90;
+ pos @MMK_L_V @MMK_R_dcroat -90;
+ pos @MMK_L_V @MMK_R_dcaron -90;
+ pos @MMK_L_V @MMK_R_germandbls -30;
+ pos @MMK_L_V @MMK_R_p -45;
+ pos @MMK_L_V @MMK_R_S -55;
+ pos @MMK_L_V @MMK_R_tcaron -45;
+ pos @MMK_L_V @MMK_R_e -90;
+ pos @MMK_L_V @MMK_R_d -90;
+ pos @MMK_L_V @MMK_R_g -85;
+ pos @MMK_L_V @MMK_R_f -45;
+ pos @MMK_L_V @MMK_R_a -90;
+ pos @MMK_L_V @MMK_R_c -90;
+ pos @MMK_L_V @MMK_R_m -45;
+ pos @MMK_L_V @MMK_R_o -85;
+ pos @MMK_L_V @MMK_R_n -45;
+ pos @MMK_L_V @MMK_R_u -45;
+ pos @MMK_L_V @MMK_R_t -45;
+ pos @MMK_L_V @MMK_R_w -45;
+ pos @MMK_L_V @MMK_R_v -45;
+ pos @MMK_L_V @MMK_R_q -90;
+ pos @MMK_L_V @MMK_R_s -90;
+ pos @MMK_L_V @MMK_R_r -45;
+ pos @MMK_L_V @MMK_R_y -45;
+ pos @MMK_L_V @MMK_R_x -55;
+ pos @MMK_L_V @MMK_R_z -45;
+ pos @MMK_L_V @MMK_R_G -65;
+ pos @MMK_L_V @MMK_R_A -160;
+ pos @MMK_L_V @MMK_R_C -65;
+ pos @MMK_L_V @MMK_R_O -65;
+ pos @MMK_L_V @MMK_R_J -175;
+ pos @MMK_L_V @MMK_R_Q -65;
+ pos @MMK_L_H braceright -55;
+ pos @MMK_L_H quotedblright -10;
+ pos @MMK_L_H comma -15;
+ pos @MMK_L_H backslash -15;
+ pos @MMK_L_H quotesinglbase -15;
+ pos @MMK_L_H quotedblbase -15;
+ pos @MMK_L_H quoteright -10;
+ pos @MMK_L_H asciicircum -15;
+ pos @MMK_L_H parenright -25;
+ pos @MMK_L_H semicolon -10;
+ pos @MMK_L_H sterling -30;
+ pos @MMK_L_H euro -90;
+ pos @MMK_L_H braceleft -60;
+ pos @MMK_L_H asciitilde -25;
+ pos @MMK_L_H multiply -40;
+ pos @MMK_L_H numbersign -50;
+ pos @MMK_L_H question -15;
+ pos @MMK_L_H dollar -30;
+ pos @MMK_L_H underscore -355;
+ pos @MMK_L_H @MMK_R_s -20;
+ pos @MMK_L_H @MMK_R_J -25;
+ pos @MMK_L_H @MMK_R_S -25;
+ pos @MMK_L_C sterling -30;
+ pos @MMK_L_C quotedblright -10;
+ pos @MMK_L_C braceright -55;
+ pos @MMK_L_C asciitilde -25;
+ pos @MMK_L_C multiply -40;
+ pos @MMK_L_C quotesinglbase -15;
+ pos @MMK_L_C asciicircum -15;
+ pos @MMK_L_C dollar -30;
+ pos @MMK_L_C euro -90;
+ pos @MMK_L_C quoteright -10;
+ pos @MMK_L_C quotedblbase -15;
+ pos @MMK_L_C yen -10;
+ pos @MMK_L_C braceleft -60;
+ pos @MMK_L_C question -35;
+ pos @MMK_L_C backslash -45;
+ pos @MMK_L_C semicolon -10;
+ pos @MMK_L_C comma -15;
+ pos @MMK_L_C parenright -40;
+ pos @MMK_L_C numbersign -50;
+ pos @MMK_L_C slash -15;
+ pos @MMK_L_C underscore -100;
+ pos @MMK_L_C @MMK_R_x -10;
+ pos @MMK_L_C @MMK_R_s -30;
+ pos @MMK_L_C @MMK_R_X -15;
+ pos @MMK_L_C @MMK_R_Y -20;
+ pos @MMK_L_C @MMK_R_S -25;
+ pos @MMK_L_C @MMK_R_V -20;
+ pos @MMK_L_C @MMK_R_W -15;
+ pos @MMK_L_C @MMK_R_J -30;
+ pos @MMK_L_C @MMK_R_A -10;
+ pos @MMK_L_J underscore -90;
+ pos @MMK_L_J quoteright -10;
+ pos @MMK_L_J numbersign -55;
+ pos @MMK_L_J quotedblright -10;
+ pos @MMK_L_J dollar -30;
+ pos @MMK_L_J euro -90;
+ pos @MMK_L_J ellipsis -30;
+ pos @MMK_L_J sterling -30;
+ pos @MMK_L_J quotesinglbase -45;
+ pos @MMK_L_J semicolon -10;
+ pos @MMK_L_J backslash -15;
+ pos @MMK_L_J multiply -40;
+ pos @MMK_L_J slash -45;
+ pos @MMK_L_J comma -45;
+ pos @MMK_L_J asciicircum -15;
+ pos @MMK_L_J asciitilde -25;
+ pos @MMK_L_J question -15;
+ pos @MMK_L_J parenright -25;
+ pos @MMK_L_J questiondown -30;
+ pos @MMK_L_J quotedblbase -45;
+ pos @MMK_L_J braceright -60;
+ pos @MMK_L_J braceleft -60;
+ pos @MMK_L_J guillemetright -15;
+ pos @MMK_L_J guilsinglright -15;
+ pos @MMK_L_J @MMK_R_s -30;
+ pos @MMK_L_J @MMK_R_x -10;
+ pos @MMK_L_J @MMK_R_S -25;
+ pos @MMK_L_J @MMK_R_J -60;
+ pos @MMK_L_J @MMK_R_A -35;
+ pos @MMK_L_K multiply -85;
+ pos @MMK_L_K euro -135;
+ pos @MMK_L_K less -65;
+ pos @MMK_L_K periodcentered -60;
+ pos @MMK_L_K numbersign -70;
+ pos @MMK_L_K paragraph -40;
+ pos @MMK_L_K emdash -40;
+ pos @MMK_L_K semicolon -15;
+ pos @MMK_L_K plus -55;
+ pos @MMK_L_K cent -50;
+ pos @MMK_L_K parenleft -45;
+ pos @MMK_L_K asciicircum -95;
+ pos @MMK_L_K equal -30;
+ pos @MMK_L_K copyright -50;
+ pos @MMK_L_K braceright -55;
+ pos @MMK_L_K question -30;
+ pos @MMK_L_K dollar -50;
+ pos @MMK_L_K trademark -35;
+ pos @MMK_L_K quotesinglbase -20;
+ pos @MMK_L_K quotesingle -15;
+ pos @MMK_L_K percent -30;
+ pos @MMK_L_K guilsinglleft -50;
+ pos @MMK_L_K quotedbl -15;
+ pos @MMK_L_K sterling -30;
+ pos @MMK_L_K degree -20;
+ pos @MMK_L_K hyphen -40;
+ pos @MMK_L_K quotedblright -30;
+ pos @MMK_L_K guillemetleft -50;
+ pos @MMK_L_K minus -55;
+ pos @MMK_L_K quoteleft -35;
+ pos @MMK_L_K asterisk -20;
+ pos @MMK_L_K quotedblleft -35;
+ pos @MMK_L_K quoteright -30;
+ pos @MMK_L_K asciitilde -95;
+ pos @MMK_L_K divide -55;
+ pos @MMK_L_K braceleft -110;
+ pos @MMK_L_K perthousand -30;
+ pos @MMK_L_K guillemetright -10;
+ pos @MMK_L_K comma -20;
+ pos @MMK_L_K guilsinglright -10;
+ pos @MMK_L_K endash -40;
+ pos @MMK_L_K at -50;
+ pos @MMK_L_K underscore -335;
+ pos @MMK_L_K ampersand -40;
+ pos @MMK_L_K registered -60;
+ pos @MMK_L_K quotedblbase -20;
+ pos @MMK_L_K backslash -15;
+ pos @MMK_L_K bullet -60;
+ pos @MMK_L_K parenright -40;
+ pos @MMK_L_K @MMK_R_dcaron -50;
+ pos @MMK_L_K @MMK_R_w -55;
+ pos @MMK_L_K @MMK_R_C -70;
+ pos @MMK_L_K @MMK_R_tcaron -55;
+ pos @MMK_L_K @MMK_R_oslash -20;
+ pos @MMK_L_K @MMK_R_dcroat -50;
+ pos @MMK_L_K @MMK_R_G -65;
+ pos @MMK_L_K @MMK_R_J -30;
+ pos @MMK_L_K @MMK_R_O -65;
+ pos @MMK_L_K @MMK_R_Q -65;
+ pos @MMK_L_K @MMK_R_S -45;
+ pos @MMK_L_K @MMK_R_a -50;
+ pos @MMK_L_K @MMK_R_c -50;
+ pos @MMK_L_K @MMK_R_d -50;
+ pos @MMK_L_K @MMK_R_e -50;
+ pos @MMK_L_K @MMK_R_f -55;
+ pos @MMK_L_K @MMK_R_g -55;
+ pos @MMK_L_K @MMK_R_o -50;
+ pos @MMK_L_K @MMK_R_q -50;
+ pos @MMK_L_K @MMK_R_s -25;
+ pos @MMK_L_K @MMK_R_t -55;
+ pos @MMK_L_K @MMK_R_u -35;
+ pos @MMK_L_K @MMK_R_v -55;
+ pos @MMK_L_K @MMK_R_y -55;
+ pos @MMK_L_K @MMK_R_eth -45;
+ pos @MMK_L_K @MMK_R_a.alt -30;
+ pos @MMK_L_M multiply -40;
+ pos @MMK_L_M question -15;
+ pos @MMK_L_M sterling -30;
+ pos @MMK_L_M asciicircum -15;
+ pos @MMK_L_M numbersign -50;
+ pos @MMK_L_M euro -90;
+ pos @MMK_L_M backslash -15;
+ pos @MMK_L_M quoteright -10;
+ pos @MMK_L_M underscore -355;
+ pos @MMK_L_M braceright -55;
+ pos @MMK_L_M semicolon -10;
+ pos @MMK_L_M quotedblright -10;
+ pos @MMK_L_M quotedblbase -15;
+ pos @MMK_L_M quotesinglbase -15;
+ pos @MMK_L_M parenright -25;
+ pos @MMK_L_M braceleft -60;
+ pos @MMK_L_M asciitilde -25;
+ pos @MMK_L_M comma -15;
+ pos @MMK_L_M dollar -30;
+ pos @MMK_L_M @MMK_R_S -25;
+ pos @MMK_L_M @MMK_R_J -25;
+ pos @MMK_L_M @MMK_R_s -20;
+ pos @MMK_L_Z parenright -25;
+ pos @MMK_L_Z quoteright -10;
+ pos @MMK_L_Z question -15;
+ pos @MMK_L_Z numbersign -50;
+ pos @MMK_L_Z braceright -55;
+ pos @MMK_L_Z backslash -15;
+ pos @MMK_L_Z multiply -40;
+ pos @MMK_L_Z quotesinglbase -15;
+ pos @MMK_L_Z euro -90;
+ pos @MMK_L_Z asciicircum -15;
+ pos @MMK_L_Z comma -15;
+ pos @MMK_L_Z quotedblbase -15;
+ pos @MMK_L_Z asciitilde -25;
+ pos @MMK_L_Z semicolon -10;
+ pos @MMK_L_Z sterling -30;
+ pos @MMK_L_Z dollar -30;
+ pos @MMK_L_Z underscore -325;
+ pos @MMK_L_Z quotedblright -10;
+ pos @MMK_L_Z braceleft -60;
+ pos @MMK_L_Z @MMK_R_J -25;
+ pos @MMK_L_Z @MMK_R_S -25;
+ pos @MMK_L_Z @MMK_R_s -20;
+ pos @MMK_L_U braceleft -60;
+ pos @MMK_L_U asciitilde -30;
+ pos @MMK_L_U ellipsis -50;
+ pos @MMK_L_U guillemetright -20;
+ pos @MMK_L_U multiply -40;
+ pos @MMK_L_U sterling -30;
+ pos @MMK_L_U underscore -125;
+ pos @MMK_L_U numbersign -65;
+ pos @MMK_L_U comma -65;
+ pos @MMK_L_U quoteright -10;
+ pos @MMK_L_U asciicircum -15;
+ pos @MMK_L_U quotesinglbase -65;
+ pos @MMK_L_U braceright -60;
+ pos @MMK_L_U quotedblright -10;
+ pos @MMK_L_U quotedblbase -65;
+ pos @MMK_L_U questiondown -45;
+ pos @MMK_L_U slash -65;
+ pos @MMK_L_U semicolon -10;
+ pos @MMK_L_U parenright -25;
+ pos @MMK_L_U euro -90;
+ pos @MMK_L_U question -15;
+ pos @MMK_L_U guilsinglright -20;
+ pos @MMK_L_U backslash -15;
+ pos @MMK_L_U dollar -30;
+ pos @MMK_L_U @MMK_R_s -30;
+ pos @MMK_L_U @MMK_R_S -25;
+ pos @MMK_L_U @MMK_R_J -80;
+ pos @MMK_L_U @MMK_R_A -50;
+ pos @MMK_L_U @MMK_R_x -10;
+ subtable;
+ } kern_latn;
+ lookupflag 0;
+} kern;
+
+ markClass [dotaccentcomb] @mark_top;
+ markClass [commaaccentcomb] @mark_top;
+feature mark {
+ lookup markDFLT {
+ pos base [cent] mark @mark_top;
+ pos base [dollar] mark @mark_top;
+ pos base [euro] mark @mark_top;
+ pos base [yen] mark @mark_top;
+ pos base [asciitilde] mark @mark_top;
+ } markDFLT;
+ lookup marklatn {
+ pos base [A] mark @mark_top;
+ pos base [Aacute] mark @mark_top;
+ pos base [Abreve] mark @mark_top;
+ pos base [Acircumflex] mark @mark_top;
+ pos base [Adieresis] mark @mark_top;
+ pos base [Agrave] mark @mark_top;
+ pos base [Amacron] mark @mark_top;
+ pos base [Aogonek] mark @mark_top;
+ pos base [Aring] mark @mark_top;
+ pos base [Atilde] mark @mark_top;
+ pos base [C] mark @mark_top;
+ pos base [Cacute] mark @mark_top;
+ pos base [Ccaron] mark @mark_top;
+ pos base [Ccedilla] mark @mark_top;
+ pos base [D] mark @mark_top;
+ pos base [Dcaron] mark @mark_top;
+ pos base [E] mark @mark_top;
+ pos base [Eacute] mark @mark_top;
+ pos base [Ecaron] mark @mark_top;
+ pos base [Ecircumflex] mark @mark_top;
+ pos base [Edieresis] mark @mark_top;
+ pos base [Edotaccent] mark @mark_top;
+ pos base [Edotbelow] mark @mark_top;
+ pos base [Egrave] mark @mark_top;
+ pos base [Emacron] mark @mark_top;
+ pos base [Eogonek] mark @mark_top;
+ pos base [Etilde] mark @mark_top;
+ pos base [G] mark @mark_top;
+ pos base [Gbreve] mark @mark_top;
+ pos base [Gcommaaccent] mark @mark_top;
+ pos base [I] mark @mark_top;
+ pos base [Iacute] mark @mark_top;
+ pos base [Icircumflex] mark @mark_top;
+ pos base [Idieresis] mark @mark_top;
+ pos base [Idotaccent] mark @mark_top;
+ pos base [Igrave] mark @mark_top;
+ pos base [Imacron]